-
Notifications
You must be signed in to change notification settings - Fork 0
/
unordered-containers.cabal
123 lines (105 loc) · 2.93 KB
/
unordered-containers.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
name: unordered-containers
version: 0.2.1.0
synopsis: Efficient hashing-based container types
description:
Efficient hashing-based container types. The containers have been
optimized for performance critical use, both in terms of large data
quantities and high speed.
.
The declared cost of each operation is either worst-case or
amortized, but remains valid even if structures are shared.
license: BSD3
license-file: LICENSE
author: Johan Tibell
maintainer: [email protected]
bug-reports: https://github.com/tibbe/unordered-containers/issues
copyright: 2010-2012 Johan Tibell
2010 Edward Z. Yang
category: Data
build-type: Simple
cabal-version: >=1.8
flag debug
description: Enable debug support
default: False
library
exposed-modules:
Data.HashMap.Lazy
Data.HashMap.Strict
Data.HashSet
other-modules:
Data.HashMap.Array
Data.HashMap.Base
Data.HashMap.PopCount
Data.HashMap.Unsafe
Data.HashMap.UnsafeShift
build-depends:
base >= 4 && < 4.6,
deepseq >= 1.1 && < 1.4,
hashable >= 1.0.1.1 && < 1.2
if impl(ghc < 7.4)
c-sources: cbits/popc.c
ghc-options: -Wall -O2
if impl(ghc >= 6.8)
ghc-options: -fwarn-tabs
if impl(ghc > 6.10)
ghc-options: -fregs-graph
if flag(debug)
cpp-options: -DASSERTS
test-suite hashmap-lazy-properties
hs-source-dirs: tests
main-is: HashMapProperties.hs
type: exitcode-stdio-1.0
build-depends:
base,
containers >= 0.4.1 && < 0.5,
hashable >= 1.0.1.1 && < 1.2,
QuickCheck >= 2.4.0.1,
test-framework >= 0.3.3 && < 0.7,
test-framework-quickcheck2 >= 0.2.9 && < 0.3,
unordered-containers
ghc-options: -Wall
cpp-options: -DASSERTS
test-suite hashmap-strict-properties
hs-source-dirs: tests
main-is: HashMapProperties.hs
type: exitcode-stdio-1.0
build-depends:
base,
containers >= 0.4.1 && < 0.5,
hashable >= 1.0.1.1 && < 1.2,
QuickCheck >= 2.4.0.1,
test-framework >= 0.3.3 && < 0.7,
test-framework-quickcheck2 >= 0.2.9 && < 0.3,
unordered-containers
ghc-options: -Wall
cpp-options: -DASSERTS -DSTRICT
test-suite hashset-properties
hs-source-dirs: tests
main-is: HashSetProperties.hs
type: exitcode-stdio-1.0
build-depends:
base,
containers >= 0.4.2 && < 0.5,
hashable >= 1.0.1.1 && < 1.2,
QuickCheck >= 2.4.0.1,
test-framework >= 0.3.3 && < 0.7,
test-framework-quickcheck2 >= 0.2.9 && < 0.3,
unordered-containers
ghc-options: -Wall
cpp-options: -DASSERTS
test-suite regressions
hs-source-dirs: tests
main-is: Regressions.hs
type: exitcode-stdio-1.0
build-depends:
base,
hashable >= 1.0.1.1 && < 1.2,
HUnit,
test-framework >= 0.3.3 && < 0.7,
test-framework-hunit,
unordered-containers
ghc-options: -Wall
cpp-options: -DASSERTS
source-repository head
type: git
location: https://github.com/tibbe/unordered-containers.git