[package]
edition = "2021"
rust-version = "1.80.0"
name = "kawa"
version = "0.7.0"
authors = [
"Eloi Démolis <eloi.demolis@clever-cloud.com>",
"Emmanuel Bosquet <emmanuel.bosquest@clever-cloud.com>",
"Florentin Dubois <florentin.dubois@clever-cloud.com>",
]
build = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Agnostic representation of HTTP/1.1 and HTTP/2.0 for parsing, generating and translating HTTP messages, with zero-copy, made for Sōzu."
readme = "README.md"
keywords = [
"http",
"h1",
"h2",
"clevercloud",
]
license-file = "LICENSE"
repository = "https://github.com/CleverCloud/kawa"
[profile.release]
lto = true
codegen-units = 1
debug = 2
[lib]
name = "kawa"
path = "src/lib.rs"
[[test]]
name = "bench"
path = "tests/bench.rs"
[[test]]
name = "edge_cases"
path = "tests/edge_cases.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "streaming"
path = "tests/streaming.rs"
[dependencies.log]
version = "^0.4.33"
[dependencies.nom]
version = "^8.0.0"
[features]
custom-vecdeque = []
default = [
"simd",
"tolerant-parsing",
"rc-alloc",
]
rc-alloc = []
simd = []
tolerant-parsing = []