This repository has been archived by the owner on Jan 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
orthotope.cabal
75 lines (66 loc) · 2.24 KB
/
orthotope.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
name: orthotope
version: 0.1.0.0
copyright: 2018 Google Inc
build-type: Simple
cabal-version: >=1.10
library
hs-source-dirs: .
ghc-options: -Wall
exposed-modules: Data.Array.Convert
, Data.Array.Dynamic
, Data.Array.DynamicG
, Data.Array.DynamicS
, Data.Array.DynamicU
, Data.Array.Ranked
, Data.Array.RankedG
, Data.Array.RankedS
, Data.Array.RankedU
, Data.Array.Shape
, Data.Array.Shaped
, Data.Array.ShapedG
, Data.Array.ShapedS
, Data.Array.ShapedU
, Data.Array.Internal
, Data.Array.Internal.Dynamic
, Data.Array.Internal.DynamicG
, Data.Array.Internal.DynamicS
, Data.Array.Internal.DynamicU
, Data.Array.Internal.Ranked
, Data.Array.Internal.RankedG
, Data.Array.Internal.RankedS
, Data.Array.Internal.RankedU
, Data.Array.Internal.Shape
, Data.Array.Internal.Shaped
, Data.Array.Internal.ShapedG
, Data.Array.Internal.ShapedS
, Data.Array.Internal.ShapedU
build-depends: base
, deepseq
, dlist
, pretty
, QuickCheck
, vector
default-language: Haskell2010
test-suite tests
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: Tests.hs
default-language: Haskell2010
other-modules: DynamicTest
, DynamicUTest
, RankedTest
, RankedUTest
, ShapedTest
, ShapedUTest
ghc-options:
-Wall -rtsopts
build-depends:
base,
deepseq,
orthotope,
test-framework >= 0.3.3,
test-framework-quickcheck2,
test-framework-hunit,
HUnit,
QuickCheck >= 2.4.0.1,
vector