-
Notifications
You must be signed in to change notification settings - Fork 12
/
r-tree.cabal
106 lines (72 loc) · 2.89 KB
/
r-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
cabal-version: 2.2
name: r-tree
version: 1.0.0.0
synopsis: R-/R*-trees.
description: R-trees and R*-trees.
See the <https://github.com/sebastian-philipp/r-tree/blob/master/README.md README>
for a brief overview of the data structures included in this package.
license: MIT
license-file: LICENSE
author: Sebastian Wagner, Birte Wagner, Oleksii Divak
maintainer: Oleksii Divak <[email protected]>
copyright: Sebastian Wagner, Birte Wagner, Oleksii Divak
category: Data Structures
build-type: Simple
extra-doc-files: CHANGELOG.md
README.md
bug-reports: https://github.com/sebastian-philipp/r-tree/issues
homepage: https://github.com/sebastian-philipp/r-tree
source-repository head
type: git
location: https://github.com/sebastian-philipp/r-tree.git
library
build-depends: base >= 4.12 && < 5
, deepseq >= 1.4.3 && < 1.6
hs-source-dirs: src
exposed-modules: Data.R2Tree.Double
Data.R2Tree.Double.Debug
Data.R2Tree.Double.Unsafe
Data.R2Tree.Float
Data.R2Tree.Float.Debug
Data.R2Tree.Float.Unsafe
other-modules: Data.R2Tree.Double.Internal
Data.R2Tree.Float.Internal
ghc-options: -Wall
default-language: Haskell2010
benchmark time
build-depends: base
, r-tree
, deepseq
, tasty-bench >= 0.3 && < 0.5
, random >= 1.2 && < 1.3
type: exitcode-stdio-1.0
main-is: Main.hs
ghc-options: -Wall
hs-source-dirs: benchmark/time
default-language: Haskell2010
benchmark space
build-depends: base
, r-tree
, random
, weigh >= 0.0.16 && < 0.1
type: exitcode-stdio-1.0
main-is: Main.hs
ghc-options: -Wall
hs-source-dirs: benchmark/space
default-language: Haskell2010
test-suite properties
build-depends: base
, r-tree
, deepseq
, hspec >= 2 && < 2.12
, random
type: exitcode-stdio-1.0
main-is: Main.hs
other-modules: No.Tree.D2
Test.Kit
Test.R2Tree.Double
Test.R2Tree.Double.Sample
ghc-options: -Wall
hs-source-dirs: no
, test/properties
default-language: Haskell2010