oxhttp 0.3.1

Simple implementation of HTTP 1.1 (both client and server)
Documentation
[[bench]]
harness = false
name = "lib"
path = "benches/lib.rs"

[dependencies.flate2]
optional = true
version = "1"

[dependencies.http]
version = "1.1"

[dependencies.httparse]
version = "1.8"

[dependencies.native-tls]
optional = true
version = "0.2.11"

[dependencies.rustls]
default-features = false
features = ["std", "tls12"]
optional = true
version = "0.23.27"

[dependencies.rustls-pki-types]
optional = true
version = "1.11"

[dependencies.rustls-platform-verifier]
optional = true
version = "0.6"

[dependencies.url]
optional = true
version = "2.4"

[dependencies.webpki-roots]
optional = true
version = ">=0.26,<2.0"

[dev-dependencies.codspeed-criterion-compat]
version = "2"

[features]
client = ["dep:url"]
default = ["client", "server"]
flate2 = ["dep:flate2"]
native-tls = ["dep:native-tls"]
rustls-aws-lc-native = ["dep:rustls", "rustls/aws_lc_rs", "dep:rustls-platform-verifier", "dep:rustls-pki-types"]
rustls-aws-lc-webpki = ["dep:rustls", "rustls/aws_lc_rs", "dep:rustls-pki-types", "dep:webpki-roots"]
rustls-ring-native = ["dep:rustls", "rustls/ring", "dep:rustls-platform-verifier", "dep:rustls-pki-types"]
rustls-ring-webpki = ["dep:rustls", "rustls/ring", "dep:rustls-pki-types", "dep:webpki-roots"]
server = []

[lib]
name = "oxhttp"
path = "src/lib.rs"

[package]
authors = ["Tpt <thomas@pellissier-tanon.fr>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = """
Simple implementation of HTTP 1.1 (both client and server)
"""
documentation = "https://docs.rs/oxhttp"
edition = "2021"
keywords = ["HTTP"]
license = "MIT OR Apache-2.0"
name = "oxhttp"
readme = "README.md"
repository = "https://github.com/oxigraph/oxhttp"
rust-version = "1.74"
version = "0.3.1"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]