-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.yaml
95 lines (88 loc) · 1.65 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
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
name: study
version: '0.1.0'
github: "expede/study"
license: MIT
author: "Brooklyn Zelenka"
maintainer: "Brooklyn Zelenka"
license-file: LICENSE.md
synopsis: A simple project starter to aid learning
description: Designed for the Vancouver HFFP Reading Group
extra-source-files:
- CHANGELOG.md
- LICENSE.md
- package.yaml
- README.md
- stack.yaml
ghc-options:
- -Wall
# as recommended in:
# https://functor.tokyo/blog/2017-07-28-ghc-warnings-you-should-enable
- -Wincomplete-uni-patterns
- -Wincomplete-record-updates
dependencies:
- async
- base
- flow
- pretty-show
- protolude
- mtl
- text
library:
source-dirs: library
exposed-modules:
- Study
executables:
study:
source-dirs: executable
main: Main.hs
dependencies:
- study
ghc-options:
- -rtsopts
- -threaded
- -with-rtsopts=-N
benchmarks:
study-benchmarks:
source-dirs: benchmark
main: Main.hs
dependencies:
- base
- study
- criterion
ghc-options:
- -rtsopts
- -threaded
- -with-rtsopts=-N
tests:
study-test:
main: Driver.hs
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
- -O2
dependencies:
- base
- hspec
- hspec-discover
- study
- tasty
- tasty-discover >= 4.1
- tasty-hunit
- tasty-hspec
- tasty-smallcheck
- tasty-rerun
study-doctest:
main: Main.hs
source-dirs: test/doctest
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
- -O2
dependencies:
- doctest
- Glob
- QuickCheck
- study