-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabnf.cabal
55 lines (51 loc) · 2.35 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
name: abnf
version: 0.1.0.3
synopsis: RFC5234 ABNF (Augmented Backus–Naur Form) Grammar Parser and Printer
description: This library is used to parse and pretty print
grammar definitions which are specified using
ABNF. Note that we are only parsing the
specification of the grammar, not the grammar
that is being defined.
homepage: http://www.happstack.com/
license: BSD3
license-file: LICENSE
author: Jeremy Shaw
maintainer: jeremy@n-heptane.com
category: Text
build-type: Simple
cabal-version: >=1.10
tested-with: GHC==8.0.2, GHC==8.2.2, GHC==8.4.4, GHC==8.6.5, GHC==8.8.4, GHC==8.10.7, GHC==9.0.2, GHC==9.2.2
source-repository head
type: git
location: https://github.com/Happstack/abnf.git
library
default-language: Haskell2010
exposed-modules: ABNF.CoreRules
ABNF.Gen
ABNF.Parser
ABNF.Printer
ABNF.RFC5234
ABNF.Types
build-depends: base >= 4.6 && < 4.17,
text >= 0.11 && < 2.1,
containers >= 0.5 && < 0.7,
mtl >= 2.1 && < 2.3,
parsec == 3.1.*,
pretty == 1.1.*,
QuickCheck >= 2.6 && < 2.15,
string-qq >= 0.0 && < 0.1,
template-haskell >= 2.8 && < 2.19,
th-lift >= 0.6 && < 0.9
test-suite test-abnf
default-language: Haskell2010
main-is: tests/Test.hs
type: exitcode-stdio-1.0
build-depends: base >= 4.6 && < 4.17,
containers >= 0.5 && < 0.7,
mtl >= 2.1 && < 2.3,
parsec == 3.1.*,
pretty == 1.1.*,
string-qq >= 0.0 && < 0.1,
text >= 0.11 && < 2.1,
template-haskell >= 2.8 && < 2.19,
th-lift >= 0.6 && < 0.9