@@ -17,7 +17,7 @@ description: This package provides a pure interface for compressing and
17
17
tasks and for the few cases where more control is needed it
18
18
provides access to the full zlib feature set.
19
19
build-type : Simple
20
- cabal-version : >= 1.8
20
+ cabal-version : >= 1.10
21
21
extra-source-files : cbits/crc32.h cbits/inffast.h cbits/inflate.h
22
22
cbits/trees.h cbits/deflate.h cbits/inffixed.h
23
23
cbits/inftrees.h cbits/zutil.h
@@ -34,7 +34,8 @@ library
34
34
Codec.Compression.Zlib.Raw,
35
35
Codec.Compression.Zlib.Internal
36
36
other-modules : Codec.Compression.Zlib.Stream
37
- extensions : CPP, ForeignFunctionInterface
37
+ default-language : Haskell2010
38
+ other-extensions : CPP, ForeignFunctionInterface, RankNTypes, BangPatterns
38
39
build-depends : base >= 3 && < 5 ,
39
40
bytestring >= 0.9 && < 0.12
40
41
includes : zlib.h
@@ -59,6 +60,7 @@ test-suite tests
59
60
Test.Codec.Compression.Zlib.Internal,
60
61
Test.Codec.Compression.Zlib.Stream
61
62
hs-source-dirs : test
63
+ default-language : Haskell2010
62
64
build-depends : base, bytestring, zlib,
63
65
QuickCheck == 2. *,
64
66
HUnit == 1.2. *,
0 commit comments