forked from haskell/parsec
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathparsec.cabal
More file actions
102 lines (95 loc) · 3.03 KB
/
Copy pathparsec.cabal
File metadata and controls
102 lines (95 loc) · 3.03 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
name: parsec
version: 3.1.12
cabal-version: >= 1.10
license: BSD3
license-file: LICENSE
author: Daan Leijen <daan@microsoft.com>, Paolo Martini <paolo@nemail.it>
maintainer: Antoine Latter <aslatter@gmail.com>
homepage: https://github.com/haskell/parsec
bug-reports: https://github.com/haskell/parsec/issues
category: Parsing
synopsis: Monadic parser combinators
build-type: Simple
description:
Parsec is designed from scratch as an industrial-strength parser
library. It is simple, safe, well documented (on the package
homepage), has extensive libraries, good error messages,
and is fast. It is defined as a monad transformer that can be
stacked on arbitrary monads, and it is also parametric in the
input stream type.
extra-source-files: CHANGES, README.md
tested-with: GHC==8.2.1, GHC==8.0.2, GHC==7.10.3, GHC==7.8.4, GHC==7.6.3, GHC==7.4.2, GHC==7.2.2, GHC==7.0.4
source-repository head
type: git
location: https://github.com/haskell/parsec
library
exposed-modules:
Text.Parsec,
Text.Parsec.String,
Text.Parsec.ByteString,
Text.Parsec.ByteString.Lazy,
Text.Parsec.Text,
Text.Parsec.Text.Lazy,
Text.Parsec.Pos,
Text.Parsec.Error,
Text.Parsec.Prim,
Text.Parsec.Char,
Text.Parsec.Combinator,
Text.Parsec.Token,
Text.Parsec.Expr,
Text.Parsec.Language,
Text.Parsec.Perm,
Text.ParserCombinators.Parsec,
Text.ParserCombinators.Parsec.Char,
Text.ParserCombinators.Parsec.Combinator,
Text.ParserCombinators.Parsec.Error,
Text.ParserCombinators.Parsec.Expr,
Text.ParserCombinators.Parsec.Language,
Text.ParserCombinators.Parsec.Perm,
Text.ParserCombinators.Parsec.Pos,
Text.ParserCombinators.Parsec.Prim,
Text.ParserCombinators.Parsec.Token
build-depends:
base >= 4 && < 5,
mtl,
bytestring,
text >= 0.2 && < 1.3
default-language: Haskell2010
other-extensions:
CPP
DeriveDataTypeable
ExistentialQuantification
FlexibleContexts
FlexibleInstances
FunctionalDependencies
MultiParamTypeClasses
PolymorphicComponents
StandaloneDeriving
UndecidableInstances
ghc-options: -Wall
if impl(ghc >= 8.0)
ghc-options: -Wcompat -Wnoncanonical-monad-instances -Wnoncanonical-monadfail-instances
else
-- provide/emulate `Control.Monad.Fail` API for pre-GHC8
build-depends: fail == 4.9.*
Test-Suite tests
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
other-modules:
Bugs,
Bugs.Bug2,
Bugs.Bug6,
Bugs.Bug9,
Bugs.Bug35,
Features,
Features.Feature80,
Util
build-depends:
base,
parsec,
HUnit >= 1.2 && < 1.4,
test-framework >= 0.6 && < 0.9,
test-framework-hunit >= 0.2 && < 0.4
ghc-options: -Wall