-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhash-cons.cabal
40 lines (38 loc) · 1.21 KB
/
hash-cons.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
name: hash-cons
version: 0.2.0.0
synopsis: Opportunistic hash-consing data structure
description: Provides a pure interface for hash-consing values.
license: BSD3
license-file: LICENSE
author: Ryan Trinkle
maintainer: ryan@trinkle.org
category: Data Structures
build-type: Simple
cabal-version: >=1.10
library
hs-source-dirs: src
exposed-modules:
Data.HashCons
Data.HashCons.IntMap
Data.HashCons.IntMap.Internal
Data.HashCons.Internal
Data.HashCons.WordMap
Data.HashCons.WordMap.Internal
build-depends: base >=4.9 && <5,
hashable >= 1.4.0 && < 1.5
default-language: Haskell2010
test-suite tests
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
other-modules:
Data.HashCons.Internal.Test
Data.HashCons.IntMap.Test
build-depends: base >=4.9 && <5,
async,
hash-cons,
hashable,
tasty,
tasty-hunit,
tasty-quickcheck
default-language: Haskell2010