This repository was archived by the owner on Feb 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconcurrent-map.cabal
More file actions
61 lines (56 loc) · 1.73 KB
/
concurrent-map.cabal
File metadata and controls
61 lines (56 loc) · 1.73 KB
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
name: concurrent-map
version: 1.0
build-type: Simple
cabal-version: >=1.10
flag Testing
description: Build testing and benchmark utility
default: False
library
exposed-modules: ConcurrentMap
other-modules: Skiplist, GuardedValue
build-depends: base,
ghc-prim,
random,
array,
containers
hs-source-dirs: src
default-language: Haskell2010
executable benchmark-skiplist
main-is: benchmarkSkiplist.hs
hs-source-dirs: src
ghc-options: -threaded -O2 "-with-rtsopts=-N -H2G"
build-depends: base,
random,
time,
array,
containers,
hstats
default-language: Haskell2010
if flag(Testing)
buildable: True
else
buildable: False
executable test-skiplist
main-is: testSkipList.hs
hs-source-dirs: src
ghc-options: -threaded -O2 "-with-rtsopts=-N -H2G"
build-depends: base,
random,
containers,
time,
text,
array
default-language: Haskell2010
if flag(Testing)
buildable: True
else
buildable: False
test-suite test-conc-map
type: exitcode-stdio-1.0
main-is: Tests.hs
hs-source-dirs: src, test
build-depends: base,
HUnit,
test-framework,
test-framework-hunit
default-language: Haskell2010