-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrange-tree.cabal
110 lines (103 loc) · 3.84 KB
/
range-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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
name: range-tree
version: 1.0
synopsis: multidimentional range tree with fractional cascading
cabal-version: >=1.18
category: Algorithms
build-type: Simple
library
exposed-modules: Data.Range.Tree
other-modules: Data.Range.Tree.Class
, Data.Range.Tree.Data
, Data.Range.Tree.Raw
, Data.Range.Tree.Wrappers
build-depends: ansi-terminal
, array
, base >= 4.8 && < 5
, containers
, data-default
, deepseq >= 1.4.2
, dlist >= 0.8
, exceptions
, extra
, formatting
, hashable
, lens
, mtl
, monad-loops
, monad-control
, QuickCheck >= 2.8.1
, quickcheck-instances
, safe
, split >= 0.2.3
, vector >= 0.11
, text >= 1.2.2.0
, text-format
, transformers >= 0.4.2.0
, transformers-base
, unordered-containers >= 0.2.7
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall -fno-warn-orphans
default-extensions: RecordWildCards
OverloadedStrings
DeriveDataTypeable
DeriveGeneric
GeneralizedNewtypeDeriving
test-suite tests
main-is: Test.hs
other-modules: Spec
Test.Commons
Test.GeneralSpec
type: exitcode-stdio-1.0
build-depends: async >= 2.0.1
, base >= 4.8 && < 5
, containers >= 0.5.7
, exceptions >= 0.8.2.1
, hspec >= 2.1.10
, lens >= 4.13
, mtl
, QuickCheck >= 2.8.1
, random >= 1.1
, range-tree
, vector >= 0.11
, template-haskell >= 2.11
, text >= 1.2.2.0
, text-format
, transformers >= 0.4.2.0
hs-source-dirs: test
default-language: Haskell2010
ghc-options: -threaded -Wall -fno-warn-orphans
default-extensions: OverloadedStrings
, RecordWildCards
, DeriveDataTypeable
, GeneralizedNewtypeDeriving
test-suite benchmarks
main-is: Main.hs
other-modules: Test.Commons
type: exitcode-stdio-1.0
build-depends: async >= 2.0.1
, base >= 4.8 && < 5
, containers >= 0.5.7
, criterion >= 1.1
, deepseq >= 1.4.2
, exceptions >= 0.8.2.1
, hspec >= 2.1.10
, lens >= 4.13
, MonadRandom >= 0.4.2
, mtl
, QuickCheck >= 2.8.1
, random >= 1.1
, range-tree
, vector >= 0.11
, template-haskell >= 2.11
, text >= 1.2.2.0
, text-format
, transformers >= 0.4.2.0
hs-source-dirs: bench
, test
default-language: Haskell2010
ghc-options: -threaded -Wall -fno-warn-orphans
default-extensions: OverloadedStrings
, RecordWildCards
, DeriveDataTypeable
, GeneralizedNewtypeDeriving