[package]
edition = "2024"
name = "qpack"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "HTTP3 QPACK header compression algorithm accoring to IETF#9204."
readme = "README.md"
license = "MIT"
repository = "https://codeberg.org/gnunicorn/qpack-rs"
[features]
default = ["http-headers"]
http-headers = ["http"]
tracing = ["dep:tracing"]
[lib]
name = "qpack"
path = "src/lib.rs"
[dependencies.bytes]
version = "1.11.0"
[dependencies.http]
version = "1.4.0"
optional = true
[dependencies.tracing]
version = "0.1.34"
optional = true
[dev-dependencies.assert_matches]
version = "1.5.0"
[dev-dependencies.http]
version = "1.4.0"
[dev-dependencies.proptest]
version = "1.9.0"