-
Notifications
You must be signed in to change notification settings - Fork 2
/
http2-tls.cabal
95 lines (84 loc) · 2.34 KB
/
http2-tls.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
cabal-version: >=1.10
name: http2-tls
version: 0.4.5
license: BSD3
license-file: LICENSE
maintainer: Kazu Yamamoto <[email protected]>
author: Kazu Yamamoto <[email protected]>
homepage: https://github.com/kazu-yamamoto/http2-tls
synopsis: Library for HTTP/2 over TLS
description: Using the HTTP/2 library over TLS
category: Network
build-type: Simple
source-repository head
type: git
location: https://github.com/kazu-yamamoto/http2-tls
flag devel
description: Development commands
default: False
library
exposed-modules:
Network.HTTP2.TLS.Client
Network.HTTP2.TLS.Internal
Network.HTTP2.TLS.Server
other-modules:
Network.HTTP2.TLS.Client.Settings
Network.HTTP2.TLS.Config
Network.HTTP2.TLS.IO
Network.HTTP2.TLS.Server.Settings
Network.HTTP2.TLS.Supported
default-language: Haskell2010
default-extensions: Strict StrictData
ghc-options: -Wall
build-depends:
base >=4.9 && <5,
bytestring >=0.10,
crypton-x509-store >=1.6 && <1.7,
crypton-x509-validation >=1.6 && <1.7,
http2 >=5.3.9 && <5.4,
network >=3.1.4,
network-control >=0.1 && <0.2,
network-run >=0.4 && <0.5,
recv >=0.1.0 && <0.2,
time-manager >=0.2 && <0.3,
tls >=2.1.4 && <2.2,
utf8-string >=1.0 && <1.1
executable h2-client
main-is: h2-client.hs
hs-source-dirs: util
other-modules: Client
default-language: Haskell2010
default-extensions: Strict StrictData
ghc-options: -Wall -threaded -rtsopts
build-depends:
base >=4.9 && <5,
async,
bytestring,
case-insensitive,
http-semantics,
http-types,
http2,
http2-tls,
tls
if flag(devel)
else
buildable: False
executable h2-server
main-is: h2-server.hs
hs-source-dirs: util
other-modules: Server
default-language: Haskell2010
default-extensions: Strict StrictData
ghc-options: -Wall -threaded
build-depends:
base >=4.9 && <5,
bytestring,
crypton,
http-types,
http2,
http2-tls,
tls,
tls-session-manager
if flag(devel)
else
buildable: False