-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.yaml
60 lines (54 loc) · 1.14 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
name: mac-intro-to-haskell
version: 0.1.0.0
license: MIT
author: Lauren Yim
copyright: 2023–2024 Lauren Yim
dependencies:
- base >= 4.7 && < 5
- containers
default-extensions:
- ImportQualifiedPost
ghc-options:
- -Weverything
- -Wno-implicit-prelude
- -Wno-missing-deriving-strategies
# easier for testing out stuff in stack ghci for this workshop
- -Wno-missing-export-lists
# types
- -Wno-missing-kind-signatures
- -Wno-missing-local-signatures
- -Wno-monomorphism-restriction
# specialisations
- -Wno-all-missed-specialisations
- -Wno-missed-specialisations
# safe mode
- -Wno-safe
- -Wno-unsafe
- -Wno-missing-safe-haskell-mode
library:
source-dirs: src
tests:
test:
main: Test.hs
source-dirs: test
ghc-options:
- -Wno-unused-packages # QuickCheck for doctest
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- QuickCheck
- ansi-terminal
- directory
- doctest
- fsnotify
executables:
calculator:
main: Main.hs
source-dirs: app
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- mac-intro-to-haskell