-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.yaml
76 lines (68 loc) · 1.36 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
name: roboservant
version: 0.1.0.3
github: "mwotton/roboservant"
license: BSD3
copyright: "2020 Mark Wotton, Samuel Schlesinger"
synopsis: Automatic session-aware servant testing
category: Web
description: Please see the README on GitHub at <https://github.com/mwotton/roboservant#readme>
extra-source-files:
- README.md
- ChangeLog.md
dependencies:
- base >= 4.7 && < 5
- bytestring
- containers
- random
- hashable
- http-types
- lifted-base
- monad-control
- mtl
- servant # >= 0.17
- servant-client # >= 0.17
- servant-flatten
- servant-server # >= 0.17
- string-conversions
- vinyl
- dependent-sum
- dependent-map
- unordered-containers
- text
- time
ghc-options:
- -Wall
- -fwrite-ide-info
- -hiedir=.hie
library:
source-dirs: src
tests:
roboservant-test:
main: Spec.hs
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- roboservant
- aeson
- hspec
- hspec-core
- http-api-data
- http-client
- hspec-wai
- wai
- warp
example:
main: Example.lhs
source-dirs: .
dependencies:
- roboservant
- hspec
- warp
- http-client
- aeson
- hspec-core
ghc-options: -pgmL markdown-unlit
build-tools: markdown-unlit