forked from tweag/haskell-training
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.yaml
70 lines (63 loc) · 1.28 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
name: haskell-training
version: 0.1.0.0
homepage: https://github.com/tweag/haskell-training#readme
license: CC-BY-NC-4.0
author: Marco Perone
maintainer: [email protected]
copyright: 2022 Tweag I/O
extra-source-files:
- README.md
dependencies:
- aeson
- base >= 4.7 && < 5
- bytestring
- hasql
- openapi3
- QuickCheck
- rel8
- servant
- servant-server
- text
- transformers
- uuid
- warp
ghc-options:
-W
-fwrite-ide-info
-hiedir=.hie
library:
source-dirs: src
executables:
forms:
source-dirs: forms
main: Main.hs
dependencies:
- haskell-training
#- bytestring
#- hasql
openapi:
source-dirs: openapi
main: Main.hs
dependencies:
- haskell-training
- aeson-pretty
- bytestring
- servant-openapi3
tests:
forms-spec:
main: Spec.hs
source-dirs: spec
dependencies:
- haskell-training
- containers
- hspec
- microlens-platform
- QuickCheck
- stm
forms-doctest:
source-dirs: test
main: doctests.hs
ghc-options: -threaded
dependencies:
- haskell-training
- doctest-parallel >= 0.1