-
Notifications
You must be signed in to change notification settings - Fork 13
/
Octree.cabal
59 lines (52 loc) · 2 KB
/
Octree.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
name: Octree
version: 0.6.1.0
stability: beta
homepage: https://github.com/mgajda/octree
package-url: http://hackage.haskell.org/package/octree
synopsis: Simple unbalanced Octree for storing data about 3D points
description: Octree data structure is relatively shallow data structure for space partitioning.
category: Data
license: BSD3
license-file: LICENSE
extra-source-files: changelog
author: Michal J. Gajda
copyright: Copyright by Michal J. Gajda '2012
maintainer: [email protected]
bug-reports: mailto:[email protected]
build-type: Simple
cabal-version: >=1.8
tested-with: GHC==7.10.3
,GHC==8.0.1
,GHC==8.2.2
,GHC==8.4.3
,GHC==8.6.5
source-repository head
type: git
location: [email protected]:mgajda/octree.git
Library
build-depends: base>=4.0 && < 4.13,
deepseq >= 1.2.0.0,
lens >= 4.13.0,
linear >= 1.18.0,
QuickCheck >= 2.4.0
exposed-modules: Data.Octree
other-modules: Data.Octree.Internal
exposed: True
extensions: ScopedTypeVariables
Test-suite test_Octree
Type: exitcode-stdio-1.0
Build-depends: base>=4.0 && < 4.13, linear >= 1.20.0, QuickCheck >= 2.8.0,
deepseq >= 1.2.0.0,
lens >= 4.13.0
other-modules: Data.Octree
Data.Octree.Internal
Main-is: tests/test_Octree.hs
benchmark bench-octree
type: exitcode-stdio-1.0
other-modules: Data.Octree.Internal
main-is: tests/benchmark.hs
build-depends: base >=4.0 && <4.13, deepseq, ghc-prim,
linear >= 1.18.0, QuickCheck >= 2.8.0,
lens >= 4.13.0,
criterion
extensions: ScopedTypeVariables