summaryrefslogtreecommitdiff
path: root/base32-bytestring.cabal
diff options
context:
space:
mode:
Diffstat (limited to 'base32-bytestring.cabal')
-rw-r--r--base32-bytestring.cabal7
1 files changed, 6 insertions, 1 deletions
diff --git a/base32-bytestring.cabal b/base32-bytestring.cabal
index a96d3fa..aa82911 100644
--- a/base32-bytestring.cabal
+++ b/base32-bytestring.cabal
@@ -20,6 +20,10 @@ description:
20extra-source-files: README.md 20extra-source-files: README.md
21 , ChangeLog 21 , ChangeLog
22 22
23flag bits-extras
24 description: Use more-effecient bits-extras bitwise operations.
25 default: False
26
23source-repository head 27source-repository head
24 type: git 28 type: git
25 location: git://github.com/pxqr/base32-bytestring.git 29 location: git://github.com/pxqr/base32-bytestring.git
@@ -41,7 +45,8 @@ library
41 build-depends: base == 4.* 45 build-depends: base == 4.*
42 , bytestring >= 0.9 46 , bytestring >= 0.9
43 , cpu == 0.1.* 47 , cpu == 0.1.*
44 , bits-extras == 0.1.* 48 if flag(bits-extras)
49 build-depends: bits-extras == 0.1.*
45 ghc-options: -O2 -Wall 50 ghc-options: -O2 -Wall
46 51
47test-suite spec 52test-suite spec