1
+ cabal-version : 3.0
2
+
1
3
-- To run tests and binaries you'll need to rename the name of the library
2
4
-- and all the local dependencies on it. If not, cabal is unable to come up
3
5
-- with a build plan.
@@ -25,7 +27,6 @@ synopsis: Binary serialisation for Haskell values using lazy ByteStrings
25
27
category : Data, Parsing
26
28
stability : provisional
27
29
build-type : Simple
28
- cabal-version : >= 1.8
29
30
tested-with : GHC == 7.8.4 , GHC == 7.10.3 , GHC == 8.0.2 , GHC == 8.2.2 , GHC == 8.4.4 , GHC == 8.6.5
30
31
extra-source-files :
31
32
README.md changelog.md docs/hcar/binary-Lb.tex tools/derive/*.hs
@@ -59,6 +60,7 @@ library
59
60
60
61
if impl(ghc >= 8.0 )
61
62
ghc-options : -Wcompat -Wnoncanonical-monad-instances -Wnoncanonical-monadfail-instances
63
+ default-language : Haskell2010
62
64
63
65
test-suite qc
64
66
type : exitcode-stdio-1.0
@@ -83,6 +85,7 @@ test-suite qc
83
85
if impl(ghc <= 7.6 )
84
86
-- prior to ghc-7.4 generics lived in ghc-prim
85
87
build-depends : ghc-prim
88
+ default-language : Haskell2010
86
89
87
90
88
91
test-suite read-write-file
@@ -104,6 +107,7 @@ test-suite read-write-file
104
107
if impl(ghc <= 7.6 )
105
108
-- prior to ghc-7.4 generics lived in ghc-prim
106
109
build-depends : ghc-prim
110
+ default-language : Haskell2010
107
111
108
112
109
113
benchmark bench
@@ -124,6 +128,7 @@ benchmark bench
124
128
if impl(ghc <= 7.6 )
125
129
-- prior to ghc-7.4 generics lived in ghc-prim
126
130
build-depends : ghc-prim
131
+ default-language : Haskell2010
127
132
128
133
129
134
benchmark get
@@ -145,6 +150,7 @@ benchmark get
145
150
if impl(ghc <= 7.6 )
146
151
-- prior to ghc-7.4 generics lived in ghc-prim
147
152
build-depends : ghc-prim
153
+ default-language : Haskell2010
148
154
149
155
150
156
benchmark put
@@ -163,6 +169,7 @@ benchmark put
163
169
if impl(ghc <= 7.6 )
164
170
-- prior to ghc-7.4 generics lived in ghc-prim
165
171
build-depends : ghc-prim
172
+ default-language : Haskell2010
166
173
167
174
benchmark generics-bench
168
175
type : exitcode-stdio-1.0
@@ -192,6 +199,7 @@ benchmark generics-bench
192
199
if impl(ghc <= 7.6 )
193
200
-- prior to ghc-7.4 generics lived in ghc-prim
194
201
build-depends : ghc-prim
202
+ default-language : Haskell2010
195
203
196
204
benchmark builder
197
205
type : exitcode-stdio-1.0
@@ -210,3 +218,4 @@ benchmark builder
210
218
if impl(ghc <= 7.6 )
211
219
-- prior to ghc-7.4 generics lived in ghc-prim
212
220
build-depends : ghc-prim
221
+ default-language : Haskell2010
0 commit comments