-
Notifications
You must be signed in to change notification settings - Fork 3
/
hedgehog-servant.cabal
130 lines (114 loc) · 2.99 KB
/
hedgehog-servant.cabal
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
name:
hedgehog-servant
version:
0.0.1.1
synopsis:
Hedgehog property testing for Servant APIs
description:
An adapter for using Hedgehog to create requests against Servant APIs.
bug-reports:
https://github.com/felixmulder/hedgehog-servant
cabal-version:
1.24
license:
BSD3
license-file:
LICENSE
author:
Felix Mulder
maintainer:
copyright:
Felix Mulder
category:
testing
build-type:
Simple
extra-source-files:
README.md
CHANGELOG.md
source-repository head
type: git
location: git://github.com/felixmulder/hedgehog-servant.git
library
default-extensions:
DataKinds
DeriveGeneric
FlexibleContexts
FlexibleInstances
GADTs
KindSignatures
MultiParamTypeClasses
OverloadedStrings
PolyKinds
RankNTypes
ScopedTypeVariables
TypeApplications
TypeOperators
ViewPatterns
ghc-options:
-Wall -Wredundant-constraints -fhide-source-paths
exposed-modules:
Hedgehog.Servant
build-depends:
base >= 4.9 && < 5
, bytestring >= 0.10 && < 0.11
, case-insensitive >= 1.2 && < 1.3
, hedgehog >= 0.6 && < 1.1
, http-client >= 0.5.14 && < 0.7
, http-media >= 0.8 && < 0.9
, http-types >= 0.12 && < 0.13
, servant >= 0.16 && < 0.19
, servant-client >= 0.16 && < 0.19
, servant-server >= 0.16 && < 0.19
, string-conversions >= 0.4 && < 0.5
, text >= 1.2 && < 1.3
hs-source-dirs:
src
default-language:
Haskell2010
test-suite hedgehog-servant-tests
type:
exitcode-stdio-1.0
default-language:
Haskell2010
main-is:
Main.hs
ghc-options:
-Wall -Wredundant-constraints -fhide-source-paths -threaded
hs-source-dirs:
test
other-modules:
Test.Hedgehog.Servant
default-extensions:
DataKinds
DeriveGeneric
DerivingStrategies
FlexibleContexts
FlexibleInstances
GADTs
GeneralizedNewtypeDeriving
KindSignatures
MultiParamTypeClasses
OverloadedStrings
PolyKinds
RankNTypes
ScopedTypeVariables
TypeApplications
TypeOperators
ViewPatterns
build-depends:
hedgehog-servant
, aeson >= 1.4 && < 1.5
, base >= 4.9 && < 5
, bytestring >= 0.10 && < 0.11
, case-insensitive >= 1.2 && < 1.3
, hedgehog >= 0.6 && < 1.1
, http-client >= 0.5.14 && < 0.7
, http-media >= 0.8 && < 0.9
, http-types >= 0.12 && < 0.13
, servant >= 0.16 && < 0.19
, servant-client >= 0.16 && < 0.19
, servant-server >= 0.16 && < 0.19
, string-conversions >= 0.4 && < 0.5
, text >= 1.2 && < 1.3