-
Notifications
You must be signed in to change notification settings - Fork 12
/
regex-applicative.cabal
91 lines (86 loc) · 2.76 KB
/
regex-applicative.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
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
Name: regex-applicative
Version: 0.3.4
Synopsis: Regex-based parsing with applicative interface
Description:
regex-applicative is a Haskell library for parsing using regular expressions.
Parsers can be built using Applicative interface.
Homepage: https://github.com/UnkindPartition/regex-applicative
License: MIT
License-file: LICENSE
Author: Roman Cheplyaka
Maintainer: Roman Cheplyaka <[email protected]>
Category: Text
Build-type: Simple
Extra-source-files: README.md CREDITS.md CHANGES.md
Cabal-version: >=1.10
Tested-With:
GHC ==8.0.2 ||
==8.2.2 ||
==8.4.4 ||
==8.6.5 ||
==8.8.2
Source-repository head
type: git
location: git://github.com/UnkindPartition/regex-applicative.git
Library
Default-language: Haskell2010
Default-extensions: LambdaCase
Build-depends: base < 5,
filtrable >= 0.1.3,
containers,
transformers
Exposed-modules: Text.Regex.Applicative
Text.Regex.Applicative.Object
Text.Regex.Applicative.Common
Text.Regex.Applicative.Reference
Text.Regex.Applicative.StateQueue
Other-modules: Text.Regex.Applicative.Interface
Text.Regex.Applicative.Types
Text.Regex.Applicative.Compile
GHC-Options: -Wall
-Werror=incomplete-patterns
-fno-warn-name-shadowing
Test-Suite test-regex-applicative
type: exitcode-stdio-1.0
hs-source-dirs:
tests
main-is:
test.hs
other-modules:
StateQueue
GHC-Options: -threaded
Default-language: Haskell2010
Build-depends: base < 5,
containers,
filtrable >= 0.1.3,
transformers,
smallcheck >= 1.0,
tasty,
tasty-smallcheck,
tasty-hunit,
regex-applicative
test-suite doctest
type:
exitcode-stdio-1.0
hs-source-dirs:
doctest
main-is:
doctest.hs
default-language: Haskell2010
ghc-options: -threaded
build-depends: base, text, doctest >= 0.8
Benchmark bench-regex-applicative
type: exitcode-stdio-1.0
hs-source-dirs: benchmark
main-is: benchmark.hs
build-depends: base <5
, criterion
, regex-applicative
, parsers
, deepseq
, parsec
, attoparsec
, megaparsec
, parsers-megaparsec
, bytestring
default-language: Haskell2010