-
Notifications
You must be signed in to change notification settings - Fork 22
/
http2.cabal
303 lines (286 loc) · 10.9 KB
/
http2.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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
Name: http2
Version: 1.6.0
Author: Kazu Yamamoto <[email protected]>
Maintainer: Kazu Yamamoto <[email protected]>
License: BSD3
License-File: LICENSE
Synopsis: HTTP/2.0 library including frames and HPACK
Description: HTTP/2.0 library including frames and HPACK.
Category: Network
Cabal-Version: >= 1.10
Build-Type: Simple
Extra-Source-Files: ChangeLog.md
test-hpack/hpack-test-case/go-hpack/*.json
test-hpack/hpack-test-case/haskell-http2-linear/*.json
test-hpack/hpack-test-case/haskell-http2-linear-huffman/*.json
test-hpack/hpack-test-case/haskell-http2-naive/*.json
test-hpack/hpack-test-case/haskell-http2-naive-huffman/*.json
test-hpack/hpack-test-case/haskell-http2-static/*.json
test-hpack/hpack-test-case/haskell-http2-static-huffman/*.json
test-hpack/hpack-test-case/nghttp2/*.json
test-hpack/hpack-test-case/nghttp2-16384-4096/*.json
test-hpack/hpack-test-case/nghttp2-change-table-size/*.json
test-hpack/hpack-test-case/node-http2-hpack/*.json
test-frame/http2-frame-test-case/continuation/*.json
test-frame/http2-frame-test-case/data/*.json
test-frame/http2-frame-test-case/error/*.json
test-frame/http2-frame-test-case/goaway/*.json
test-frame/http2-frame-test-case/headers/*.json
test-frame/http2-frame-test-case/ping/*.json
test-frame/http2-frame-test-case/priority/*.json
test-frame/http2-frame-test-case/push_promise/*.json
test-frame/http2-frame-test-case/rst_stream/*.json
test-frame/http2-frame-test-case/settings/*.json
test-frame/http2-frame-test-case/window_update/*.json
bench-hpack/headers.hs
----------------------------------------------------------------
Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/http2
Flag devel
Description: Development commands
Default: False
----------------------------------------------------------------
Library
Default-Language: Haskell2010
GHC-Options: -Wall
Exposed-Modules: Network.HPACK
Network.HPACK.Token
Network.HTTP2
Network.HTTP2.Priority
Other-Modules: Network.HPACK.Buffer
Network.HPACK.Builder
Network.HPACK.Huffman
Network.HPACK.Huffman.Bit
Network.HPACK.Huffman.ByteString
Network.HPACK.Huffman.Decode
Network.HPACK.Huffman.Encode
Network.HPACK.Huffman.Params
Network.HPACK.Huffman.Table
Network.HPACK.Huffman.Tree
Network.HPACK.HeaderBlock
Network.HPACK.HeaderBlock.Decode
Network.HPACK.HeaderBlock.Encode
Network.HPACK.HeaderBlock.Integer
Network.HPACK.Table
Network.HPACK.Table.Dynamic
Network.HPACK.Table.Entry
Network.HPACK.Table.RevIndex
Network.HPACK.Table.Static
Network.HPACK.Types
Network.HTTP2.Decode
Network.HTTP2.Encode
Network.HTTP2.Priority.PSQ
Network.HTTP2.Priority.Queue
Network.HTTP2.Types
Build-Depends: base >= 4.6 && < 5
, array
, bytestring >= 0.10
, bytestring-builder
, case-insensitive
, containers >= 0.5
, psqueues
, stm
----------------------------------------------------------------
Test-Suite doctest
Type: exitcode-stdio-1.0
Default-Language: Haskell2010
HS-Source-Dirs: test
Ghc-Options: -Wall
Main-Is: doctests.hs
Build-Depends: base >= 4 && < 5
, doctest >= 0.9.3
Test-Suite spec
Type: exitcode-stdio-1.0
Default-Language: Haskell2010
HS-Source-Dirs: test, .
Ghc-Options: -Wall
Main-Is: Spec.hs
Other-Modules: HPACK.DecodeSpec
HPACK.EncodeSpec
HPACK.HeaderBlock
HPACK.HuffmanSpec
HPACK.IntegerSpec
HTTP2.FrameSpec
HTTP2.PrioritySpec
Build-Depends: base >= 4 && < 5
, array
, bytestring
, bytestring-builder
, case-insensitive
, containers
, hex
, hspec >= 1.3
, psqueues
, stm
, word8
Test-Suite hpack
Type: exitcode-stdio-1.0
Default-Language: Haskell2010
HS-Source-Dirs: test-hpack, .
Ghc-Options: -Wall
Main-Is: Spec.hs
Other-Modules: HPACKDecode
HPACKSpec
JSON
Build-Depends: base >= 4 && < 5
, aeson
, aeson-pretty
, array
, bytestring
, bytestring-builder
, case-insensitive
, containers
, directory
, filepath
, hex
, hspec >= 1.3
, text
, unordered-containers
, vector
, word8
Test-Suite frame
Type: exitcode-stdio-1.0
Default-Language: Haskell2010
HS-Source-Dirs: test-frame
GHC-Options: -Wall
Main-Is: Spec.hs
Other-Modules: Case
JSON
Build-Depends: base >= 4 && < 5
, Glob
, aeson
, aeson-pretty
, bytestring
, directory
, filepath
, hex
, hspec >= 1.3
, http2
, text
, unordered-containers
----------------------------------------------------------------
Executable hpack-encode
Default-Language: Haskell2010
HS-Source-Dirs: test-hpack, .
GHC-Options: -Wall
if flag(devel)
Buildable: True
else
Buildable: False
Main-Is: hpack-encode.hs
Other-Modules: HPACKEncode
Build-Depends: base >= 4 && < 5
, aeson
, aeson-pretty
, array
, bytestring
, bytestring-builder
, case-insensitive
, containers
, hex
, text
, unordered-containers
, vector
, word8
Executable hpack-debug
Default-Language: Haskell2010
HS-Source-Dirs: test-hpack, .
GHC-Options: -Wall
if flag(devel)
Buildable: True
else
Buildable: False
Main-Is: hpack-debug.hs
Build-Depends: base >= 4 && < 5
, aeson
, array
, bytestring
, bytestring-builder
, case-insensitive
, containers
, hex
, text
, unordered-containers
, vector
, word8
Executable hpack-stat
Default-Language: Haskell2010
HS-Source-Dirs: test-hpack, .
GHC-Options: -Wall
if flag(devel)
Buildable: True
else
Buildable: False
Main-Is: hpack-stat.hs
Build-Depends: base >= 4 && < 5
, aeson
, aeson-pretty
, array
, bytestring
, bytestring-builder
, case-insensitive
, containers
, directory
, filepath
, text
, unordered-containers
, vector
, word8
Executable frame-encode
Default-Language: Haskell2010
HS-Source-Dirs: test-frame
GHC-Options: -Wall
if flag(devel)
Buildable: True
else
Buildable: False
Main-Is: frame-encode.hs
Other-Modules: Case
JSON
Build-Depends: base >= 4 && < 5
, aeson
, aeson-pretty
, bytestring
, hex
, http2
, text
, unordered-containers
Benchmark priority
Type: exitcode-stdio-1.0
Default-Language: Haskell2010
Hs-Source-Dirs: bench-priority, .
Ghc-Options: -Wall
Main-Is: Main.hs
Other-Modules: BinaryHeap
BinaryHeapSTM
DoublyLinkedQueueIO
Heap
RandomSkewHeap
RingOfQueues
RingOfQueuesSTM
Build-Depends: base
, array
, case-insensitive
, containers
, criterion
, hashtables
, heaps
, mwc-random
, psqueues
, random
, stm
Benchmark header-compression
Type: exitcode-stdio-1.0
Default-Language: Haskell2010
Hs-Source-Dirs: bench-hpack, .
Ghc-Options: -Wall
Main-Is: Main.hs
Build-Depends: base
, array
, bytestring
, case-insensitive
, containers
, criterion
, hashtables
, stm