-
Notifications
You must be signed in to change notification settings - Fork 12
/
bitset.cabal
93 lines (79 loc) · 3.02 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
86
87
88
89
90
91
92
93
Name: bitset
Version: 1.4.8
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, GHC == 7.6.3, GHC == 7.8.4
Extra-Source-Files: bin/mkDerivedGmpConstants.c, include/bitset.h
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
Other-extensions: CPP, NamedFieldPuns, MagicHash, UnboxedTuples,
BangPatterns, ForeignFunctionInterface,
GHCForeignImportPrim, MagicHash,
UnliftedFFITypes, UnboxedTuples,
GeneralizedNewtypeDeriving, TypeFamilies,
DeriveDataTypeable
C-sources: cbits/gmp-extras.cmm
Include-dirs: cbits, include
if os(windows)
Extra-libraries: gmp-10
else
Extra-libraries: gmp
Build-depends: base >= 4.4.0 && < 4.8
, deepseq
, integer-gmp
, 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
Other-extensions: CPP
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
Other-extensions: CPP, ExistentialQuantification
C-sources: cbits/gmp-extras.cmm
Include-dirs: cbits, include
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