-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparser-regex.cabal
92 lines (80 loc) · 2.26 KB
/
parser-regex.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
92
cabal-version: 2.4
name: parser-regex
version: 0.2.0.1
synopsis: Regex based parsers
homepage: https://github.com/meooow25/parser-regex
bug-reports: https://github.com/meooow25/parser-regex/issues
license: BSD-3-Clause
license-file: LICENSE
author: Soumik Sarkar
maintainer: [email protected]
category: Parsing
build-type: Simple
extra-doc-files:
README.md
CHANGELOG.md
description:
Regex based parsers. See
.
["Regex.Text"]: To work with @Text@ from the @text@ library.
.
["Regex.List"]: To work with @String@s or lists.
.
["Regex.Base"]: To work with other sequences.
tested-with:
GHC == 9.0.2
, GHC == 9.2.8
, GHC == 9.4.8
, GHC == 9.6.6
, GHC == 9.8.4
, GHC == 9.10.1
, GHC == 9.12.1
source-repository head
type: git
location: https://github.com/meooow25/parser-regex.git
common warnings
ghc-options:
-Wall -Wcompat -Widentities -Wredundant-constraints -Wunused-packages
library
import: warnings
exposed-modules:
Data.CharSet
Regex.Base
Regex.List
Regex.Text
Regex.Internal.CharSet
Regex.Internal.Debug
Regex.Internal.Parser
Regex.Internal.Regex
Regex.Internal.Text
Regex.Internal.Unique
other-modules:
Regex.Internal.CharSets
Regex.Internal.Generated.CaseFold
Regex.Internal.List
Regex.Internal.Num
build-depends:
base >= 4.15 && < 5.0
, containers >= 0.6.4 && < 0.8
, deepseq >= 1.4.5 && < 1.6
, ghc-bignum >= 1.1 && < 1.4
, primitive >= 0.7.3 && < 0.10
, text >= 2.0.1 && < 2.2
, transformers >= 0.5.6 && < 0.7
hs-source-dirs: src
default-language: Haskell2010
test-suite test
import: warnings
build-depends:
base
, parser-regex
, QuickCheck >= 2.14.3 && < 2.16
, quickcheck-classes-base >= 0.6.2 && < 0.7
, tasty >= 1.5 && < 1.6
, tasty-hunit >= 0.10.1 && < 0.11
, tasty-quickcheck >= 0.10.3 && < 0.12
, text
hs-source-dirs: test
main-is: Test.hs
default-language: Haskell2010
type: exitcode-stdio-1.0