-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathkeyvalue.cabal
More file actions
68 lines (65 loc) · 1.63 KB
/
Copy pathkeyvalue.cabal
File metadata and controls
68 lines (65 loc) · 1.63 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
62
63
64
65
66
67
68
name: keyvalue
version: 0.1.0.0
cabal-version: >=1.10
build-type: Simple
license: GPL-3
license-file: LICENSE
maintainer: anshu.avinash35@gmail.com
category: Database
author: Anshu Avinash
extra-source-files:
README.md
library
build-depends:
base >=4.5 && <4.8,
hashtables >=1.2 && <1.3,
directory >=1.2 && <1.3,
bytestring -any,
cereal -any,
filemanip -any,
filepath -any,
temporary -any,
time -any
exposed-modules:
Database.KeyValue
default-language: Haskell2010
other-modules:
Database.KeyValue.Init
Database.KeyValue.Types
Database.KeyValue.Merge
Database.KeyValue.Parsing
Database.KeyValue.Timestamp
Database.KeyValue.LogOperations
Database.KeyValue.FileOperations
test-suite test-keyvalue
build-depends:
base >=4.5 && <4.8,
hashtables >=1.2 && <1.3,
directory >=1.2 && <1.3,
bytestring -any,
cereal -any,
filemanip -any,
filepath -any,
temporary -any,
time -any,
QuickCheck -any,
hspec -any
type: exitcode-stdio-1.0
main-is: test/test-keyvalue.hs
default-language: Haskell2010
benchmark bench-keyvalue
build-depends:
base >=4.5 && <4.8,
hashtables >=1.2 && <1.3,
directory >=1.2 && <1.3,
bytestring -any,
cereal -any,
filemanip -any,
filepath -any,
temporary -any,
time -any,
criterion -any
type: exitcode-stdio-1.0
main-is: benchmarks/Main.hs
default-language: Haskell2010
ghc-options: -Wall -O2