-
Notifications
You must be signed in to change notification settings - Fork 0
/
test-https-client-resource-vanished.cabal
62 lines (52 loc) · 2.02 KB
/
test-https-client-resource-vanished.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
-- Initial test-http-https-server.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: test-https-client-resource-vanished
version: 0.0.0.0
synopsis: A trivial HTTP and HTTPS server for testing clients
-- description:
license: MIT
license-file: LICENSE
author: Erik de Castro Lopo
maintainer: [email protected]
category: Testing
build-type: Simple
cabal-version: >= 1.10
source-repository head
type: git
location: https://github.com/erikd/test-https-client-resource-vanished
executable https-server
main-is: https-server.hs
hs-source-dirs: main
default-language: Haskell2010
ghc-options: -Wall -threaded -O2 -rtsopts -with-rtsopts "-T -N"
build-depends: base >= 4.8 && < 4.10
, bytestring
, case-insensitive
, http-types
, wai
, warp
, warp-tls
executable https-client
main-is: https-client.hs
hs-source-dirs: main
default-language: Haskell2010
ghc-options: -Wall -threaded -O2 -rtsopts -with-rtsopts "-T -N"
build-depends: base >= 4.8 && < 4.10
, bytestring
, conduit
, connection
, http-conduit
, resourcet
executable https-client-two
main-is: https-client-two.hs
hs-source-dirs: main
default-language: Haskell2010
ghc-options: -Wall -threaded -O2 -rtsopts -with-rtsopts "-T -N"
build-depends: base >= 4.8 && < 4.10
, async
, bytestring
, conduit
, connection
, http-conduit
, resourcet
, tls