-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.yaml
170 lines (165 loc) · 3.55 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
name: haskell-servant-cookbook
version: 0.1.1.0
synopsis: Haskell Servant Cookbook
description: Please see README.md
homepage: https://github.com/algas/haskell-servant-cookbook#readme
license: BSD3
license-file: LICENSE
author: Masahiro Yamauchi
maintainer: [email protected]
copyright: 2021 Masahiro Yamauchi
category: Web
build-type: Simple
github: algas/haskell-servant-cookbook
extra-source-files:
- README.md
dependencies:
- base >= 4.7 && < 5
- aeson
- text
- transformers
library:
source-dirs: lib
dependencies:
- text
- http-client
- wai
- servant
- servant-client
- servant-server
executables:
hello-client:
source-dirs: hello-client
main: Main.hs
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- haskell-servant-cookbook
- http-client
- wai
- servant
- servant-client
- servant-server
hello-server:
source-dirs: hello-server
main: Main.hs
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- haskell-servant-cookbook
- wai
- warp
- servant
- servant-server
logger:
source-dirs: logger
main: Main.hs
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- haskell-servant-cookbook
- wai
- wai-logger
- warp
- servant
- servant-server
https-client:
source-dirs: https-client
main: Main.hs
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- haskell-servant-cookbook
- http-client
- http-client-tls
- warp
- servant
- servant-client
https-server:
source-dirs: https-server
main: Main.hs
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- haskell-servant-cookbook
- wai
- warp
- warp-tls
- servant
- servant-server
persistent:
source-dirs: persistent
main: Main.hs
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- haskell-servant-cookbook
- either
- wai
- warp
- mtl
- monad-logger
- resourcet
- persistent
- persistent-mysql
- persistent-template
- servant
- servant-server
session:
source-dirs: session
main: Main.hs
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- haskell-servant-cookbook
- bytestring
- containers
- wai
- warp
- servant
- servant-server
strongly-typing:
source-dirs: strongly-typing
main: Main.hs
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- haskell-servant-cookbook
- bytestring
- containers
- email-validate
- scientific
- MissingH
- wai
- warp
- servant
- servant-server
tests:
test:
main: Spec.hs
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- haskell-servant-cookbook
- hspec
- hspec-wai
- hspec-wai-json