1
- cabal-version : 1.12
1
+ cabal-version : 1.24
2
2
name : regex-tdfa
3
- version : 1.3.2.2
4
- x-revision : 3
3
+ version : 1.3.2.3
5
4
6
5
build-Type : Simple
7
6
license : BSD3
@@ -20,9 +19,11 @@ description:
20
19
Please consult the "Text.Regex.TDFA" module for API documentation including a tutorial with usage examples;
21
20
see also <https://wiki.haskell.org/Regular_expressions> for general information about regular expression support in Haskell.
22
21
23
- extra-source -files :
22
+ extra-doc -files :
24
23
CHANGELOG.md
25
24
README.md
25
+
26
+ extra-source-files :
26
27
test/cases/*.txt
27
28
28
29
tested-with :
@@ -47,7 +48,7 @@ source-repository head
47
48
source-repository this
48
49
type : git
49
50
location : https://github.com/haskell-hvr/regex-tdfa.git
50
- tag : v1.3.2.2-r3
51
+ tag : v1.3.2.3
51
52
52
53
flag force-O2
53
54
default : False
@@ -93,21 +94,10 @@ library
93
94
94
95
other-modules : Paths_regex_tdfa
95
96
96
- -- Support Semigroup instances uniformly
97
- --
98
- -- See also
99
- -- https://prime.haskell.org/wiki/Libraries/Proposals/SemigroupMonoid#RecommendedVariant
100
- --
101
- -- NB: This is the same logic `parsec.cabal` uses, so this doesn't
102
- -- add any new dependency that isn't already incurred by
103
- -- `regex-tdfa`'s transitive deps
104
- if !impl(ghc >= 8.0 )
105
- build-depends : fail == 4.9. *
106
- , semigroups == 0.18. * || == 0.19. *
107
- build-depends : array >= 0.4 && < 0.6
108
- , base >= 4.5 && < 5
109
- , bytestring >= 0.9.2 && < 0.13
110
- , containers >= 0.4.2 && < 0.8
97
+ build-depends : array >= 0.5 && < 0.6
98
+ , base >= 4.9 && < 5
99
+ , bytestring >= 0.10 && < 0.13
100
+ , containers >= 0.5 && < 1
111
101
, mtl >= 2.1.3 && < 2.4
112
102
, parsec == 3.1. *
113
103
, regex-base == 0.94. *
@@ -131,13 +121,16 @@ library
131
121
UnliftedFFITypes
132
122
other-extensions : CPP
133
123
134
- ghc-options : -Wall -funbox-strict-fields -fspec-constr-count= 10 -fno-warn-orphans
135
-
136
- if impl(ghc >= 8.0 )
137
- ghc-options : -Wcompat
124
+ ghc-options :
125
+ -funbox-strict-fields
126
+ -fspec-constr-count= 10
127
+ -Wall
128
+ -Wno-orphans
129
+ -Wcompat
138
130
139
131
if flag(force-O2)
140
- ghc-options : -O2
132
+ ghc-options :
133
+ -O2
141
134
142
135
143
136
test-suite regex-tdfa-unittest
@@ -150,9 +143,6 @@ test-suite regex-tdfa-unittest
150
143
build-depends : regex-tdfa
151
144
152
145
-- dependencies whose version constraints are inherited via intra-package 'regex-tdfa' dependency
153
- if !impl(ghc >= 8.0 )
154
- build-depends : fail
155
- , semigroups
156
146
build-depends : array
157
147
, base
158
148
, bytestring
0 commit comments