@@ -25,33 +25,34 @@ source-repository head
25
25
26
26
common base { build-depends : base >= 4.7 && < 5 }
27
27
28
- common QuickCheck { build-depends : QuickCheck }
29
- common ansi-wl-pprint { build-depends : ansi-wl-pprint }
30
- common array { build-depends : array }
31
- common attoparsec { build-depends : attoparsec }
32
- common bytestring { build-depends : bytestring }
33
- common cereal { build-depends : cereal }
34
- common conduit { build-depends : conduit }
35
- common containers { build-depends : containers }
36
- common criterion { build-depends : criterion }
37
- common deepseq { build-depends : deepseq }
38
- common ghc-prim { build-depends : ghc-prim }
39
- common hspec { build-depends : hspec }
40
- common hw-balancedparens { build-depends : hw-balancedparens >= 0.2.0.1 }
41
- common hw-bits { build-depends : hw-bits >= 0.7.0.2 }
42
- common hw-conduit { build-depends : hw-conduit >= 0.2.0.2 }
43
- common hw-parser { build-depends : hw-parser }
44
- common hw-prim { build-depends : hw-prim >= 0.4.0.0 }
45
- common hw-rankselect { build-depends : hw-rankselect >= 0.10.0.3 }
46
- common hw-rankselect-base { build-depends : hw-rankselect-base >= 0.2.0.0 }
47
- common hw-xml { build-depends : hw-xml }
48
- common lens { build-depends : lens }
49
- common mmap { build-depends : mmap }
50
- common mtl { build-depends : mtl }
51
- common resourcet { build-depends : resourcet }
52
- common transformers { build-depends : transformers }
53
- common vector { build-depends : vector }
54
- common word8 { build-depends : word8 }
28
+ common QuickCheck { build-depends : QuickCheck >= 2.13.1 && < 3 }
29
+ common ansi-wl-pprint { build-depends : ansi-wl-pprint >= 0.6.9 && < 0.7 }
30
+ common array { build-depends : array >= 0.5.2.0 && < 0.6 }
31
+ common attoparsec { build-depends : attoparsec >= 0.13.2.2 && < 0.14 }
32
+ common bytestring { build-depends : bytestring >= 0.10.8.2 && < 0.11 }
33
+ common cereal { build-depends : cereal >= 0.5.8.1 && < 0.6 }
34
+ common conduit { build-depends : conduit >= 1.3.1.1 && < 1.4 }
35
+ common containers { build-depends : containers >= 0.6.2.1 && < 0.7 }
36
+ common criterion { build-depends : criterion >= 1.5.5.0 && < 1.6 }
37
+ common deepseq { build-depends : deepseq >= 1.4.3.0 && < 1.5 }
38
+ common ghc-prim { build-depends : ghc-prim >= 0.5 && < 0.6 }
39
+ common hedgehog { build-depends : hedgehog >= 1.0 && < 1.1 }
40
+ common hspec { build-depends : hspec >= 2.5 && < 3.0 }
41
+ common hw-balancedparens { build-depends : hw-balancedparens >= 0.3.0.0 && < 0.4 }
42
+ common hw-bits { build-depends : hw-bits >= 0.7.0.6 && < 0.8 }
43
+ common hw-conduit { build-depends : hw-conduit >= 0.2.0.5 && < 0.3 }
44
+ common hw-hspec-hedgehog { build-depends : hw-hspec-hedgehog >= 0.1 && < 0.2 }
45
+ common hw-parser { build-depends : hw-parser >= 0.1.0.1 && < 0.2 }
46
+ common hw-prim { build-depends : hw-prim >= 0.6.2.28 && < 0.7 }
47
+ common hw-rankselect { build-depends : hw-rankselect >= 0.13.1.0 && < 0.14 }
48
+ common hw-rankselect-base { build-depends : hw-rankselect-base >= 0.3.2.1 && < 0.4 }
49
+ common lens { build-depends : lens >= 4.17.1 && < 5.0 }
50
+ common mmap { build-depends : mmap >= 0.5.9 && < 0.6 }
51
+ common mtl { build-depends : mtl >= 2.2.2 && < 3 }
52
+ common resourcet { build-depends : resourcet >= 1.2.2 && < 1.3 }
53
+ common transformers { build-depends : transformers >= 0.5.5.0 && < 0.6 }
54
+ common vector { build-depends : vector >= 0.12.0.3 && < 0.13 }
55
+ common word8 { build-depends : word8 >= 0.1.3 && < 0.2 }
55
56
56
57
common config
57
58
default-language : Haskell2010
@@ -121,11 +122,11 @@ executable hw-xml-example
121
122
, hw-bits
122
123
, hw-prim
123
124
, hw-rankselect
124
- , hw-xml
125
125
, vector
126
126
main-is : Main.hs
127
127
other-modules : Paths_hw_xml
128
128
autogen-modules : Paths_hw_xml
129
+ build-depends : hw-xml
129
130
hs-source-dirs : app
130
131
ghc-options : -threaded -rtsopts -with-rtsopts=-N -O2 -Wall -msse4.2
131
132
@@ -143,11 +144,11 @@ test-suite hw-xml-test
143
144
, hw-prim
144
145
, hw-rankselect
145
146
, hw-rankselect-base
146
- , hw-xml
147
147
, vector
148
148
type : exitcode-stdio-1.0
149
149
main-is : Spec.hs
150
150
hs-source-dirs : test
151
+ build-depends : hw-xml
151
152
ghc-options : -threaded -rtsopts -with-rtsopts=-N
152
153
default-language : Haskell2010
153
154
build-tool-depends : hspec-discover :hspec-discover
@@ -171,13 +172,13 @@ benchmark bench
171
172
, hw-bits
172
173
, hw-conduit
173
174
, hw-prim
174
- , hw-xml
175
175
, mmap
176
176
, resourcet
177
177
, vector
178
178
type : exitcode-stdio-1.0
179
179
main-is : Main.hs
180
180
other-modules : Paths_hw_xml
181
+ build-depends : hw-xml
181
182
autogen-modules : Paths_hw_xml
182
183
hs-source-dirs : bench
183
184
ghc-options : -O2 -Wall -msse4.2
0 commit comments