forked from lambda-llama/bitset
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbitset.cabal
85 lines (71 loc) · 2.57 KB
/
bitset.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
Name: bitset
Version: 1.5
Synopsis: A space-efficient set data structure.
Description:
A /bit set/ is a compact data structure, which maintains a set of members
from a type that can be enumerated (i. e. has an `Enum' instance).
Category: Data Structures
License: MIT
License-file: LICENSE
Data-files: CHANGES
Author: Sergei Lebedev <[email protected]>
, Aleksey Kladov <[email protected]>
, Fedor Gogolev <[email protected]>
Maintainer: [email protected]
Bug-reports: http://github.com/lambda-llama/bitset/issues
Stability: Experimental
Cabal-Version: >= 1.12
Build-type: Custom
Tested-with: GHC >= 7.4.1
Extra-Source-Files: bin/mkDerivedGmpConstants.c
Source-repository head
Type: git
Location: https://github.com/lambda-llama/bitset
Library
Hs-source-dirs: src
Ghc-options: -Wall -fno-warn-orphans
Default-language: Haskell2010
C-sources: cbits/gmp-extras.cmm
Include-dirs: cbits
if os(windows)
Extra-libraries: gmp-10
else
Extra-libraries: gmp
Build-depends: base >= 4.4.0 && < 4.9
, deepseq
, integer-gmp >= 1.0.0.0
, ghc-prim
Exposed-modules: Data.BitSet
, Data.BitSet.Dynamic
, Data.BitSet.Generic
, Data.BitSet.Word
Other-modules: GHC.Integer.GMP.PrimExt
, GHC.Integer.GMP.TypeExt
Test-suite bitset-tests
Hs-source-dirs: tests
Ghc-options: -Wall -O2 -fno-warn-orphans
Default-language: Haskell2010
Type: exitcode-stdio-1.0
Main-is: Tests.hs
Build-depends: base
, QuickCheck
, tasty
, tasty-quickcheck
, bitset
Benchmark bitset-benchmarks
Hs-source-dirs: src benchmarks
Ghc-options: -Wall -fno-warn-orphans -O2 -optc-O3 -optc-msse4.1
Default-language: Haskell2010
C-sources: cbits/gmp-extras.cmm
Include-dirs: cbits
Extra-libraries: gmp
Type: exitcode-stdio-1.0
Main-is: Benchmarks.hs
Build-depends: base
, deepseq
, integer-gmp
, ghc-prim
, criterion
, containers
, random
, random-shuffle