1
1
name : servant-swagger
2
- version : 1.1.6
2
+ version : 1.1.7
3
3
synopsis : Generate Swagger specification for your servant API.
4
4
description :
5
5
Swagger is a project used to describe and document RESTful APIs.
@@ -27,9 +27,7 @@ category: Web, Servant, Swagger
27
27
build-type : Custom
28
28
cabal-version : 1.18
29
29
tested-with :
30
- GHC == 7.8.4
31
- || == 7.10.3
32
- || == 8.0.2
30
+ GHC == 8.0.2
33
31
|| == 8.2.2
34
32
|| == 8.4.4
35
33
|| == 8.6.1
@@ -53,8 +51,8 @@ source-repository head
53
51
54
52
custom-setup
55
53
setup-depends :
56
- base >= 4.7 && < 4.13 ,
57
- Cabal >= 1.18 && < 2.5 ,
54
+ base >= 4.9 && < 4.13 ,
55
+ Cabal >= 1.24 && < 2.5 ,
58
56
cabal-doctest >= 1.0.2 && < 1.1
59
57
60
58
library
@@ -66,24 +64,26 @@ library
66
64
67
65
-- Internal modules
68
66
Servant.Swagger.Internal
67
+ Servant.Swagger.Internal.Orphans
69
68
Servant.Swagger.Internal.Test
70
69
Servant.Swagger.Internal.TypeLevel
71
70
Servant.Swagger.Internal.TypeLevel.API
72
71
Servant.Swagger.Internal.TypeLevel.Every
73
72
Servant.Swagger.Internal.TypeLevel.TMap
74
73
hs-source-dirs : src
75
- build-depends : aeson >= 0.11.2.0 && < 1.5
76
- , aeson-pretty >= 0.4 && < 0.9
77
- , base >= 4.7.0.0 && < 4.13
78
- , bytestring >= 0.10.4.0 && < 0.11
79
- , http-media >= 0.6.3 && < 0.8
80
- , insert-ordered-containers >= 0.1.0.0 && < 0.3
81
- , lens >= 4.7.0.1 && < 4.18
82
- , servant >= 0.13 && < 0.15
83
- , singleton-bool >= 0.1.3 && < 0.2
84
- , swagger2 >= 2.1 && < 2.4
85
- , text >= 1.2.0.6 && < 1.3
86
- , unordered-containers >= 0.2.5.1 && < 0.3
74
+ build-depends : aeson >= 1.4.1.0 && < 1.5
75
+ , aeson-pretty >= 0.8.7 && < 0.9
76
+ , base >= 4.9.1.0 && < 4.13
77
+ , base-compat >= 0.10.5 && < 0.11
78
+ , bytestring >= 0.10.8.1 && < 0.11
79
+ , http-media >= 0.7.1.3 && < 0.8
80
+ , insert-ordered-containers >= 0.2.1.0 && < 0.3
81
+ , lens >= 4.17 && < 4.18
82
+ , servant >= 0.15 && < 0.16
83
+ , singleton-bool >= 0.1.4 && < 0.2
84
+ , swagger2 >= 2.3.0.1 && < 2.4
85
+ , text >= 1.2.3.0 && < 1.3
86
+ , unordered-containers >= 0.2.9.0 && < 0.3
87
87
88
88
, hspec
89
89
, QuickCheck
@@ -108,11 +108,11 @@ test-suite spec
108
108
type : exitcode-stdio-1.0
109
109
hs-source-dirs : test
110
110
main-is : Spec.hs
111
- build-tool-depends : hspec-discover :hspec-discover
111
+ build-tool-depends : hspec-discover :hspec-discover >= 2.6.0 && < 2.7
112
112
build-depends : base
113
- , base-compat >= 0.10.4 && < 0.11
113
+ , base-compat
114
114
, aeson
115
- , hspec
115
+ , hspec >= 2.6.0 && < 2.7
116
116
, QuickCheck
117
117
, lens
118
118
, servant
0 commit comments