-
Notifications
You must be signed in to change notification settings - Fork 7
/
b-tree.cabal
81 lines (74 loc) · 2.76 KB
/
b-tree.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
name: b-tree
version: 0.1.4
synopsis: Immutable disk-based B* trees
description: Immutable disk-based B* trees
homepage: http://github.com/bgamari/b-tree
license: BSD3
license-file: LICENSE
author: Ben Gamari
maintainer: [email protected]
copyright: (c) 2014 Ben Gamari
category: Data
build-type: Simple
cabal-version: >=1.10
source-repository head
type: git
location: [email protected]:bgamari/b-tree
library
exposed-modules: BTree,
BTree.BinaryList
other-modules: BTree.Types,
BTree.Merge,
BTree.Builder,
BTree.Lookup,
BTree.Walk,
BTree.BinaryFile,
BTree.BuildUnordered
other-extensions: DeriveGeneric,
FlexibleContexts,
TemplateHaskell,
UndecidableInstances,
StandaloneDeriving,
BangPatterns,
GeneralizedNewtypeDeriving
hs-source-dirs: src
build-depends: base >=4.6 && <4.15,
mtl >=2.0 && <3.0,
pipes >=4.1 && <4.4,
pipes-interleave >= 1.0 && <2.2,
bytestring >=0.10 && <0.12,
binary >=0.8.4 && <0.11,
transformers >=0.3 && <0.6,
lens >=3.10 && <5.2,
containers >=0.5 && <0.7,
vector >=0.10 && <0.13,
vector-binary-instances >= 0.2 && < 0.3,
errors >=2.0 && <2.4,
exceptions >= 0.8 && < 0.11,
filepath >=1.3 && <1.5,
directory >=1.2 && <1.4,
mmap >=0.5 && <0.6
default-language: Haskell2010
ghc-options: -Wall
test-suite btree-quickcheck
type: exitcode-stdio-1.0
main-is: QuickCheck.hs
hs-source-dirs: tests
default-language: Haskell2010
build-depends: base,
containers,
pipes,
binary,
b-tree,
QuickCheck >= 2.8.2,
tasty,
tasty-quickcheck
benchmark btree-benchmark
type: exitcode-stdio-1.0
main-is: Benchmark.hs
hs-source-dirs: benchmarks
default-language: Haskell2010
build-depends: base,
b-tree,
pipes,
criterion >=0.8 && <2.0