-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrobinhood.cabal
53 lines (44 loc) · 1.03 KB
/
robinhood.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
name: robinhood
version: 0.1.0.0
-- synopsis:
-- description:
license: Apache-2.0
license-file: LICENSE
author: Lennart Kolmodin
maintainer: [email protected]
copyright: 2013 Google Inc.
category: Data
build-type: Simple
cabal-version: >=1.10
extra-source-files:
README.md
library
default-language:
Haskell2010
exposed-modules:
Data.HashMap.RobinHood
Data.HashMap.RobinHood.Base
Data.HashMap.RobinHood.ST
other-modules:
Data.HashMap.RobinHood.Internal
Data.HashMap.RobinHood.Ref
Data.HashMap.RobinHood.Monad
other-extensions:
BangPatterns
MultiParamTypeClasses
TypeFamilies
build-depends:
base > 4.6 && < 5,
mtl,
primitive == 0.5.*,
hashable == 1.2.*,
vector == 0.10.*
executable example
default-language:
Haskell2010
main-is: example.hs
hs-source-dirs: tests
build-depends:
base > 4.6 && < 5,
robinhood,
unordered-containers