-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlambda-rays.cabal
80 lines (71 loc) · 2.42 KB
/
lambda-rays.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: lambda-rays
version: 0.1.0.0
-- synopsis:
-- description:
license: ISC
license-file: LICENSE
author: Victor Jalencas
maintainer: [email protected]
copyright: © 2018 Victor Jalencas
homepage: https://github.com/victor/lambda-rays
bug-reports: https://github.com/victor/lambda-rays/issues
category: Graphics
build-type: Simple
stability: alpha (experimental)
cabal-version: >=1.10
extra-source-files:
README.md
stack.yaml
source-repository head
type: git
location: https://github.com/victor/lambda-rays
library
default-language: Haskell2010
ghc-options: -Wall -Werror -O2
hs-source-dirs: src
exposed-modules: Quadruple,Projectile,Canvas
build-depends: base >= 4.8 && < 5, array
executable lambda-rays
default-language: Haskell2010
ghc-options: -Wall -Werror -O2 -threaded -rtsopts -with-rtsopts=-N
hs-source-dirs: src-exe
main-is: Main.hs
build-depends: base >= 4.8 && < 5
, lambda-rays
test-suite lambda-rays-test
type: exitcode-stdio-1.0
default-language: Haskell2010
ghc-options: -Wall -Werror -O2 -threaded -rtsopts -with-rtsopts=-N
hs-source-dirs: src-test
main-is: Spec.hs
build-depends: base >= 4.8 && < 5
, tasty >= 0.11
, tasty-hunit >= 0.9
, tasty-smallcheck >= 0.8
, tasty-hspec
, lambda-rays
, tasty-discover
other-modules:
QuadrupleSpec
ProjectileSpec
CanvasSpec
test-suite lambda-rays-doctest
type: exitcode-stdio-1.0
default-language: Haskell2010
ghc-options: -Wall -Werror -O2 -threaded -rtsopts -with-rtsopts=-N
hs-source-dirs: src-doctest
main-is: Main.hs
build-depends: base >= 4.8 && < 5
, doctest >=0.10
, Glob >= 0.7
, QuickCheck >= 2.5
, lambda-rays
benchmark lambda-rays-benchmark
type: exitcode-stdio-1.0
default-language: Haskell2010
ghc-options: -Wall -Werror -O2 -threaded -rtsopts -with-rtsopts=-N
hs-source-dirs: src-benchmark
main-is: Main.hs
build-depends: base >= 4.8 && < 5
, criterion >= 1.1
, lambda-rays