-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathabnf.cabal
66 lines (62 loc) · 2.29 KB
/
abnf.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
-- Initial abnf.cabal generated by cabal init. For further documentation,
-- see http://haskell.org/cabal/users-guide/
name: abnf
version: 0.5.0.0
synopsis: Parse ABNF and generate parsers for the specified document
description: You can use this library to parse an ABNF document and
generate a parser from that ABNF to read a document
described by the ABNF.
license: BSD2
license-file: LICENSE
author: Xandaros
maintainer: mz.bremerhaven@gmail.com
-- copyright:
homepage: https://github.com/Xandaros/abnf.git
category: Text
build-type: Simple
stability: alpha
-- extra-source-files:
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/Xandaros/abnf.git
library
exposed-modules: Text.ABNF,
Text.ABNF.ABNF,
Text.ABNF.ABNF.Parser,
Text.ABNF.ABNF.Types,
Text.ABNF.ABNF.Canonicalizer,
Text.ABNF.Document,
Text.ABNF.Document.Parser,
Text.ABNF.Document.Types,
Text.ABNF.Document.Operations,
Text.ABNF.PrettyPrinter
ghc-options: -Wall
-- other-modules:
-- other-extensions:
build-depends: base >=4.8 && <5,
text,
megaparsec >=9.0.0 && <10.0.0,
attoparsec,
containers
hs-source-dirs: src
default-language: Haskell2010
test-suite test
type: exitcode-stdio-1.0
main-is: Main.hs
other-modules: ABNF,
Document,
Util
hs-source-dirs: test
build-depends: base >= 4.8 && <5,
text,
containers,
test-framework,
test-framework-hunit,
megaparsec,
attoparsec,
HUnit,
tasty,
tasty-hunit,
abnf
default-language: Haskell2010