-
Notifications
You must be signed in to change notification settings - Fork 115
/
package.yaml
87 lines (80 loc) · 1.49 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
name: scheme
version: 0.1
synopsis: Write You a Scheme
license-file: LICENSE
author: "Adam Wespiser"
maintainer: "adamwespiser@gmail.com"
default-extensions:
- OverloadedStrings
dependencies:
- base >= 4.8 && <5.0
- bytestring
- containers
- directory
- haskeline
- mtl
- optparse-applicative
- parsec
- text
- transformers
- HTTP
- tasty
- tasty-golden
- hspec
ghc-options:
- -Werror
- -fno-warn-unused-do-bind
- -fno-warn-unused-binds
- -fno-warn-type-defaults
- -fno-warn-type-defaults
- -fno-warn-name-shadowing
- -fwarn-duplicate-exports
- -fwarn-dodgy-exports
- -fwarn-dodgy-imports
- -fwarn-incomplete-patterns
- -fwarn-incomplete-record-updates
- -fwarn-missing-fields
- -fwarn-missing-methods
- -fwarn-orphans
- -fwarn-overlapping-patterns
- -fwarn-unused-imports
- -fwarn-tabs
- -fwarn-unrecognised-pragmas
library:
source-dirs: src/
executables:
scheme:
main: Main.hs
source-dirs: exec
dependencies:
- base >= 4.8 && < 5
- scheme
docs:
main: Build.hs
dependencies:
- base >= 4.8 && < 5.0
- shake
- pandoc
tests:
test:
main: Main.hs
source-dirs: test-hs/Spec/
dependencies:
- scheme
- hspec
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
test-golden:
main: Main.hs
source-dirs: test-hs/Golden
dependencies:
- scheme
- tasty
- tasty-golden
- bytestring
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N