forked from Xandaros/abnf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabnf.cabal
More file actions
78 lines (71 loc) · 2.52 KB
/
Copy pathabnf.cabal
File metadata and controls
78 lines (71 loc) · 2.52 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
cabal-version: 2.2
-- Initial abnf.cabal generated by cabal init. For further documentation,
-- see http://haskell.org/cabal/users-guide/
name: abnf
version: 0.3.2.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: BSD-2-Clause
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:
common shared-properties
default-language: Haskell2010
ghc-options:
-W
-- other-modules:
-- other-extensions:
build-depends: base >=4.8 && <5,
text,
megaparsec,
attoparsec,
containers,
mtl
source-repository head
type: git
location: https://github.com/Xandaros/abnf.git
library
import: shared-properties
exposed-modules: Text.ABNF,
Text.ABNF.ABNF,
Text.ABNF.ABNF.Parser,
Text.ABNF.ABNF.Types,
Text.ABNF.ABNF.Canonicalizer,
Text.ABNF.ABNF.CFG,
Text.ABNF.Document,
Text.ABNF.Document.Parser,
Text.ABNF.Document.Types,
Text.ABNF.Document.Operations,
Text.ABNF.PrettyPrinter
hs-source-dirs: src
test-suite test
import: shared-properties
type: exitcode-stdio-1.0
main-is: Main.hs
other-modules: ABNF,
Document,
Util
hs-source-dirs: test
build-depends: test-framework,
test-framework-hunit,
HUnit,
tasty,
tasty-hunit,
abnf
default-language: Haskell2010
test-suite qc
import: shared-properties
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: qc
build-depends: QuickCheck,
pretty-simple,
abnf