-
Notifications
You must be signed in to change notification settings - Fork 3
/
http3.cabal
208 lines (190 loc) · 4.91 KB
/
http3.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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
cabal-version: 2.4
name: http3
version: 0.0.20
license: BSD-3-Clause
license-file: LICENSE
maintainer: Kazu Yamamoto <[email protected]>
author: Kazu Yamamoto <[email protected]>
homepage: https://github.com/kazu-yamamoto/http3
synopsis: HTTP/3 library
description: HTTP/3 library including frames, QPACK, client and server.
category: Network
build-type: Simple
extra-source-files:
ChangeLog.md
test/servercert.pem
test/serverkey.pem
test/inputFile
qifs/qifs/*.qif
qifs/encoded/qpack-05/examples/*.1
qifs/encoded/qpack-05/f5/*.0
qifs/encoded/qpack-05/f5/*.1
qifs/encoded/qpack-05/ls-qpack/*.0
qifs/encoded/qpack-05/ls-qpack/*.1
qifs/encoded/qpack-05/nghttp3/*.0
qifs/encoded/qpack-05/nghttp3/*.1
qifs/encoded/qpack-05/proxygen/*.0
qifs/encoded/qpack-05/proxygen/*.1
qifs/encoded/qpack-05/qthingey/*.0
qifs/encoded/qpack-05/qthingey/*.1
qifs/encoded/qpack-05/quinn/*.0
qifs/encoded/qpack-05/quinn/*.1
source-repository head
type: git
location: http3://github.com/kazu-yamamoto/http3
flag devel
description: Development commands
default: False
library
exposed-modules:
Network.HQ.Client
Network.HQ.Server
Network.HTTP3.Client
Network.HTTP3.Internal
Network.HTTP3.Server
Network.QPACK
Network.QPACK.Internal
other-modules:
Imports
Network.HTTP3.Config
Network.HTTP3.Context
Network.HTTP3.Control
Network.HTTP3.Error
Network.HTTP3.Frame
Network.HTTP3.Recv
Network.HTTP3.Send
Network.HTTP3.Settings
Network.HTTP3.Stream
Network.QPACK.Error
Network.QPACK.HeaderBlock
Network.QPACK.HeaderBlock.Decode
Network.QPACK.HeaderBlock.Encode
Network.QPACK.HeaderBlock.Prefix
Network.QPACK.Instruction
Network.QPACK.Table
Network.QPACK.Table.Dynamic
Network.QPACK.Table.RevIndex
Network.QPACK.Table.Static
Network.QPACK.Token
Network.QPACK.Types
default-language: Haskell2010
default-extensions: Strict StrictData
ghc-options: -Wall
build-depends:
base >=4.9 && <5,
async,
array,
bytestring,
case-insensitive,
containers,
http-semantics >= 0.3 && <0.4,
http-types,
http2 >=5.3.4 && <5.4,
network,
network-byte-order,
quic >= 0.2 && < 0.3,
sockaddr,
stm,
time-manager
executable h3-server
main-is: h3-server.hs
hs-source-dirs: util
other-modules:
Common
ServerX
default-language: Haskell2010
default-extensions: Strict StrictData
ghc-options: -Wall -threaded -rtsopts
build-depends:
base >=4.9 && <5,
base16-bytestring,
bytestring,
crypton,
filepath,
http-types,
http2,
http3,
quic,
tls < 2.2,
tls-session-manager
if flag(devel)
else
buildable: False
executable h3-client
main-is: h3-client.hs
hs-source-dirs: util
other-modules:
Common
ClientX
default-language: Haskell2010
default-extensions: Strict StrictData
ghc-options: -Wall -threaded -rtsopts
build-depends:
base >=4.9 && <5,
async,
base16-bytestring,
bytestring,
filepath,
http-types,
http3,
quic,
tls,
unix-time
if flag(devel)
else
buildable: False
executable qif
main-is: qif.hs
hs-source-dirs: util
default-language: Haskell2010
default-extensions: Strict StrictData
ghc-options: -Wall -threaded -rtsopts
build-depends:
base >=4.9 && <5,
attoparsec,
bytestring,
conduit,
conduit-extra,
http3,
quic,
stm
if flag(devel)
else
buildable: False
test-suite spec
type: exitcode-stdio-1.0
main-is: Spec.hs
build-tool-depends: hspec-discover:hspec-discover
hs-source-dirs: test
other-modules:
HTTP3.Config
HTTP3.Error
HTTP3.ErrorSpec
HTTP3.Server
HTTP3.ServerSpec
QPACK.InstructionSpec
QPACK.QIFSpec
QPACK.TableSpec
default-language: Haskell2010
default-extensions: Strict StrictData
ghc-options: -Wall -threaded
build-depends:
base >=4.9 && <5,
QuickCheck,
attoparsec,
async,
base16-bytestring,
bytestring,
conduit,
conduit-extra,
crypton,
hspec >=1.3,
http-semantics,
http-types,
http2,
http3,
iproute,
network,
quic,
stm,
tls