-
Notifications
You must be signed in to change notification settings - Fork 2
/
bounded-intmap.cabal
48 lines (44 loc) · 1.61 KB
/
bounded-intmap.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
Name: bounded-intmap
Version: 0.1
Description: A reimplementation of `Data.IntMap` that uses minimum and maximum bounds on subtrees instread of bit prefixes.
Author: Jonathan S
License: MIT
License-File: LICENSE
Build-Type: Simple
Cabal-Version: >=1.8
library
HS-Source-Dirs: src
Build-Depends: base, deepseq, bits-extras, containers
Exposed-modules: Data.WordMap,
Data.WordMap.Base,
Data.WordMap.Lazy,
Data.WordMap.Strict,
Data.WordMap.Merge.Base,
Data.WordMap.Merge.Lazy,
Data.WordMap.Merge.Strict,
Data.WordSet,
Data.WordSet.Internal,
Data.IntMap.Bounded,
Data.IntMap.Bounded.Base,
Data.IntMap.Bounded.Lazy,
Data.IntMap.Bounded.Strict
Other-Modules: Data.StrictPair
ghc-options: -Wall
benchmark intmap
Type: exitcode-stdio-1.0
HS-Source-Dirs: benchmarks
Main-Is: IntMapBench.hs
Build-Depends: base, containers, deepseq, criterion, bounded-intmap
ghc-options: -Wall
benchmark intset
Type: exitcode-stdio-1.0
HS-Source-Dirs: benchmarks
Main-Is: IntSet.hs
Build-Depends: base, containers, deepseq, criterion, bounded-intmap
ghc-options: -Wall
test-suite wordmap
Type: exitcode-stdio-1.0
HS-Source-Dirs: tests
Main-Is: WordMap.hs
Build-Depends: base, tasty, QuickCheck, tasty-quickcheck, tasty-hunit, bounded-intmap
GHC-Options: -Wall