-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.yaml
63 lines (58 loc) · 1.08 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
name: mtl-style-example
version: '0.0.0'
category: Other
synopsis: A small example of using mtl style to unit test effectful code.
description: A small example of using mtl style to unit test effectful code.
maintainer: Alexis King
extra-source-files:
- package.yaml
- README.md
- stack.yaml
ghc-options: -Wall
default-extensions:
- DefaultSignatures
- GADTs
- GeneralizedNewtypeDeriving
- LambdaCase
- OverloadedStrings
library:
dependencies:
- base
- monad-logger
- monad-time
- mtl
- text
- time
- transformers
source-dirs: library
executables:
mtl-style-example:
dependencies:
- base
- mtl-style-example
ghc-options:
- -rtsopts
- -threaded
- -with-rtsopts=-N
main: Main.hs
source-dirs: executable
tests:
mtl-style-example-test-suite:
dependencies:
- base
- bytestring
- fast-logger
- hspec
- monad-logger
- monad-time
- mtl
- mtl-style-example
- text
- time
- transformers
ghc-options:
- -rtsopts
- -threaded
- -with-rtsopts=-N
main: Main.hs
source-dirs: test-suite