oxhttp 0.3.2

Simple implementation of HTTP 1.1 (both client and server)
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

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

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

[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"

[[bench]]
name = "lib"
path = "benches/lib.rs"
harness = false

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

[dependencies.http]
version = "1.1"

[dependencies.httparse]
version = "1.8"

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

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

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

[dependencies.rustls-platform-verifier]
version = ">=0.6,<0.8"
optional = true

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

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

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