-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.yaml
56 lines (56 loc) · 1.33 KB
/
package.yaml
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
name: cacco
version: '0.1.0.0'
category: Language
author: Kazuhiro Mizushima
maintainer: [email protected]
copyright: 2017 Kazuhiro Mizushima
license: BSD3
github: VoQn/cacco
extra-source-files:
- README.asciidoc
dependencies:
- base >=4.7 && <5
- text >=1.2 && <2
- prettyprinter >=1.1 && <2.0
- half >=0.2 && <1
- scientific >=0.3 && <0.4
- megaparsec >=7 && <8
- lens >=4.15 && <5
- recursion-schemes >=5.0 && <6
library:
source-dirs: src
ghc-options: -Wall -Wcompat
dependencies:
- vector
- deepseq >=1.4 && <2
- mtl >=2.2 && <3
- containers >=0.5 && <1
- haskeline >=0.7 && <0.8
executables:
cacco:
main: Main.hs
source-dirs: app
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- base
- cacco
tests:
test:
main: Tasty.hs
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- tasty >=1.0 && <2.0
- tasty-discover >=4.0 && <5.0
- tasty-hspec
- tasty-quickcheck
- tasty-smallcheck
- smallcheck >=1.1 && <2.0
- QuickCheck >=2.10 && <3.0
- cacco