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 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357
|
cabal-version: >=1.10
name: http2
version: 5.0.1
license: BSD3
license-file: LICENSE
maintainer: Kazu Yamamoto <kazu@iij.ad.jp>
author: Kazu Yamamoto <kazu@iij.ad.jp>
homepage: https://github.com/kazu-yamamoto/http2
synopsis: HTTP/2 library
description:
HTTP/2 library including frames, priority queues, HPACK, client and server.
category: Network
build-type: Simple
extra-source-files:
ChangeLog.md
test/inputFile
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
flag h2spec
description: Development commands
default: False
library
exposed-modules:
Network.HPACK
Network.HPACK.Internal
Network.HPACK.Table
Network.HPACK.Token
Network.HTTP2.Client
Network.HTTP2.Client.Internal
Network.HTTP2.Frame
Network.HTTP2.Internal
Network.HTTP2.Server
Network.HTTP2.Server.Internal
other-modules:
Imports
Network.HPACK.Builder
Network.HTTP2.Client.Types
Network.HTTP2.Client.Run
Network.HPACK.HeaderBlock
Network.HPACK.HeaderBlock.Decode
Network.HPACK.HeaderBlock.Encode
Network.HPACK.HeaderBlock.Integer
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.Table.Dynamic
Network.HPACK.Table.Entry
Network.HPACK.Table.RevIndex
Network.HPACK.Table.Static
Network.HPACK.Types
Network.HTTP2.H2
Network.HTTP2.H2.Config
Network.HTTP2.H2.Context
Network.HTTP2.H2.EncodeFrame
Network.HTTP2.H2.File
Network.HTTP2.H2.HPACK
Network.HTTP2.H2.Manager
Network.HTTP2.H2.Queue
Network.HTTP2.H2.ReadN
Network.HTTP2.H2.Receiver
Network.HTTP2.H2.Sender
Network.HTTP2.H2.Settings
Network.HTTP2.H2.Status
Network.HTTP2.H2.Stream
Network.HTTP2.H2.StreamTable
Network.HTTP2.H2.Types
Network.HTTP2.H2.Window
Network.HTTP2.Frame.Decode
Network.HTTP2.Frame.Encode
Network.HTTP2.Frame.Types
Network.HTTP2.Server.Run
Network.HTTP2.Server.Types
Network.HTTP2.Server.Worker
default-language: Haskell2010
default-extensions: Strict StrictData
ghc-options: -Wall
build-depends:
base >=4.9 && <5,
array >= 0.5 && < 0.6,
async >= 2.2 && < 2.3,
bytestring >= 0.10 && < 0.13,
containers >= 0.6 && < 0.7,
stm >= 2.5 && < 2.6,
case-insensitive >= 1.2 && < 1.3,
http-types >= 0.12 && < 0.13,
network >= 3.1 && < 3.2,
network-byte-order >= 0.1.7 && < 0.2,
network-control >= 0.0.2 && < 0.1,
unix-time >= 0.4.11 && < 0.5,
time-manager >= 0.0.1 && < 0.1,
unliftio >= 0.2 && < 0.3
executable client
main-is: client.hs
hs-source-dirs: util
default-language: Haskell2010
default-extensions: Strict StrictData
ghc-options: -Wall -threaded -rtsopts
build-depends:
base >=4.9 && <5,
async,
bytestring,
http-types,
http2,
network-run
if flag(devel)
else
buildable: False
executable server
main-is: server.hs
hs-source-dirs: util
default-language: Haskell2010
default-extensions: Strict StrictData
ghc-options: -Wall -threaded
build-depends:
base >=4.9 && <5,
bytestring,
crypton,
http2,
http-types,
network-run
if flag(devel)
else
buildable: False
executable hpack-encode
main-is: hpack-encode.hs
hs-source-dirs: test-hpack
other-modules:
HPACKEncode
JSON
default-language: Haskell2010
default-extensions: Strict StrictData
ghc-options: -Wall
build-depends:
base >=4.9 && <5,
aeson >=2,
aeson-pretty,
array,
base16-bytestring >=1.0,
bytestring,
case-insensitive,
containers,
http2,
network-byte-order,
text,
unordered-containers,
vector,
word8
if flag(devel)
else
buildable: False
executable hpack-debug
main-is: hpack-debug.hs
hs-source-dirs: test-hpack
other-modules:
HPACKDecode
JSON
default-language: Haskell2010
default-extensions: Strict StrictData
ghc-options: -Wall
build-depends:
base >=4.9 && <5,
aeson >=2,
array,
base16-bytestring >=1.0,
bytestring,
case-insensitive,
containers,
http2,
network-byte-order,
text,
unordered-containers,
vector,
word8
if flag(devel)
else
buildable: False
executable hpack-stat
main-is: hpack-stat.hs
hs-source-dirs: test-hpack
other-modules: JSON
default-language: Haskell2010
default-extensions: Strict StrictData
ghc-options: -Wall
build-depends:
base >=4.9 && <5,
aeson >=2,
aeson-pretty,
array,
bytestring,
case-insensitive,
containers,
directory,
filepath,
http2,
network-byte-order,
text,
unordered-containers,
vector,
word8
if flag(devel)
else
buildable: False
executable frame-encode
main-is: frame-encode.hs
hs-source-dirs: test-frame
other-modules:
Case
JSON
default-language: Haskell2010
default-extensions: Strict StrictData
ghc-options: -Wall
build-depends:
base >=4.9 && <5,
aeson >=2,
aeson-pretty,
base16-bytestring >=1.0,
bytestring,
http2,
text,
unordered-containers
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:
HPACK.DecodeSpec
HPACK.EncodeSpec
HPACK.HeaderBlock
HPACK.HuffmanSpec
HPACK.IntegerSpec
HTTP2.ClientSpec
HTTP2.FrameSpec
HTTP2.ServerSpec
default-language: Haskell2010
default-extensions: Strict StrictData
ghc-options: -Wall -threaded
build-depends:
base >=4.9 && <5,
async,
base16-bytestring >=1.0,
bytestring,
crypton,
hspec >=1.3,
http-types,
http2,
network,
network-run >=0.1.0,
random,
typed-process
test-suite spec2
type: exitcode-stdio-1.0
main-is: Spec.hs
build-tool-depends: hspec-discover:hspec-discover
hs-source-dirs: test2
other-modules: ServerSpec
default-language: Haskell2010
default-extensions: Strict StrictData
ghc-options: -Wall -threaded
build-depends:
base >=4.9 && <5,
bytestring,
hspec >=1.3,
http-types,
http2,
network-run >=0.1.0,
typed-process
if flag(h2spec)
else
buildable: False
benchmark header-compression
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: bench-hpack
default-language: Haskell2010
default-extensions: Strict StrictData
ghc-options: -Wall
build-depends:
base,
array,
bytestring,
case-insensitive,
containers,
gauge,
network-byte-order,
stm,
http2
|