-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.yaml
90 lines (84 loc) · 2.16 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
name: curl-runnings
version: 0.17.2
github: aviaviavi/curl-runnings
license: MIT
author: Avi Press
maintainer: mail@avi.press
copyright: 2018-2022 Avi Press
category: Testing
synopsis: A framework for declaratively writing curl based API tests
extra-source-files:
- README.md
- examples/*
description: Please see the README on Github at <https://github.com/aviaviavi/curl-runnings#readme>
dependencies:
- base >= 4.0 && < 5
library:
source-dirs: src
exposed-modules:
- Testing.CurlRunnings
- Testing.CurlRunnings.Types
- Testing.CurlRunnings.Internal
- Testing.CurlRunnings.Internal.Aeson
- Testing.CurlRunnings.Internal.Parser
- Testing.CurlRunnings.Internal.Headers
- Testing.CurlRunnings.Internal.KeyValuePairs
- Testing.CurlRunnings.Internal.Payload
dependencies:
- aeson >=1.2.4.0
- bytestring >=0.10.8.2
- case-insensitive >=0.2.1
- base64-bytestring >=1.0.0.2
- clock >=0.7.2
- dhall >=1.8.2
- dhall-json >= 1.0.9
- directory >=1.3.0.2
- hashable >= 1.2.7.0
- http-conduit >=2.3.6
- megaparsec >=7.0.4
- connection >=0.2.8
- http-client-tls >=0.3.5.3
- http-types >=0.12.3
- pretty-simple >=2.0.2.1
- regex-posix >=0.95.2
- text >=1.2.2.2
- transformers >=0.5.2.0
- unordered-containers >=0.2.8.0
- vector >=0.12.0
- yaml >=0.8.28
executables:
curl-runnings:
main: Main.hs
source-dirs: app
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- base >=4.7
- cmdargs >=0.10.20
- directory >=1.3.0.2
- aeson >=1.2.4.0
- http-conduit >=2.2.4
- bytestring >=0.10.8.2
- curl-runnings
- tar >=0.5.0.3
- text >=1.2.2.2
- zlib >=0.6.1.2
tests:
curl-runnings-test:
main: Spec.hs
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- bytestring >=0.10.8.2
- curl-runnings
- directory >=1.3.0.2
- aeson >=1.2.4.0
- hspec >= 2.4.4
- hspec-expectations >=0.8.2
- raw-strings-qq >= 1.1
- text >=1.2.2.2