forked from rodrigosetti/swagger-test
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathswagger-test.cabal
More file actions
81 lines (78 loc) · 2.83 KB
/
Copy pathswagger-test.cabal
File metadata and controls
81 lines (78 loc) · 2.83 KB
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
name: swagger-test
version: 0.2.7
synopsis: Testing of Swagger APIs
description: This package provides a library and executable tool
that supports testing APIs specified with Swagger. It
allows one to generate arbitrary Swagger requests for any
given specification.
homepage: https://github.com/rodrigosetti/swagger-test
bug-reports: https://github.com/rodrigosetti/swagger-test/issues
license: BSD3
license-file: LICENSE
author: Rodrigo Setti
maintainer: rodrigosetti@gmail.com
copyright: 2017 Rodrigo Setti. All rights reserved
category: Testing
build-type: Simple
extra-source-files: README.md
, CHANGELOG.md
cabal-version: >=1.10
stability: alpha
library
default-language: Haskell2010
hs-source-dirs: src
ghc-options: -Wall
exposed-modules: Test.Swagger
other-modules: Paths_swagger_test
, Test.Swagger.Gen
, Test.Swagger.Print
, Test.Swagger.Report
, Test.Swagger.Request
, Test.Swagger.Types
, Test.Swagger.Validate
build-depends: base >= 4.7 && < 5
, QuickCheck
, aeson
, async
, attoparsec
, binary
, blaze-html
, bytestring
, case-insensitive
, containers
, filepath
, http-client
, http-client-tls
, http-media
, http-types
, insert-ordered-containers
, lens
, random
, scientific
, swagger2 >= 2.1.5 && < 3
, syb
, text
, time
, unordered-containers
, vector
executable swagger-test
hs-source-dirs: app
main-is: Main.hs
other-modules: Paths_swagger_test
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
build-depends: base
, aeson
, async
, bytestring
, directory
, filepath
, lens
, optparse-applicative
, random
, swagger-test
, swagger2 >= 2.1.5 && < 3
, text
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/rodrigosetti/swagger-test