-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.yaml
74 lines (70 loc) · 1.21 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
name: escli
version: 0.1.0.0
github: "DaveCTurner/escli"
license: BSD3
author: "David Turner"
maintainer: "[email protected]"
copyright: "2018-2023 David Turner"
dependencies:
- base >= 4.7 && < 5
- aeson
- aeson-pretty
- attoparsec
- bytestring
- conduit
- conduit-extra
- connection
- data-default-class
- directory
- filepath
- http-client
- http-client-tls
- http-media
- http-types
- iso8601-time
- mtl
- network-uri
- optparse-applicative
- process
- text
- time
- tls
- x509-store
- x509-system
- x509-validation
- MissingH
library:
source-dirs: lib
exposed-modules:
- Cloud.Responses
- Config
- Config.Parser
- Config.File
- ESCommand
- HttpClient
ghc-options:
- -Wall -Werror
executables:
escli:
main: Main.hs
source-dirs: src
dependencies:
- escli
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
- -Wall -Werror
tests:
escli-test:
main: Spec.hs
source-dirs: test
dependencies:
- base
- escli
- hspec
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
- -Wall -Werror