# 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.70" name = "oxhttp" version = "0.2.4" authors = ["Tpt "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = """ Very 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", ] [lib] name = "oxhttp" path = "src/lib.rs" [dependencies.flate2] version = "1" optional = true [dependencies.httparse] version = "1.8" [dependencies.native-tls] version = "0.2.11" optional = true [dependencies.rustls] version = "0.23.16" features = [ "std", "tls12", ] optional = true default-features = false [dependencies.rustls-native-certs] version = "0.8" optional = true [dependencies.rustls-pki-types] version = "1.10" optional = true [dependencies.rustls-platform-verifier] version = "0.4" optional = true [dependencies.url] version = "2.4" [dependencies.webpki-roots] version = "0.26" optional = true [features] client = [] default = [ "client", "server", ] rustls-aws-lc-native = [ "rustls/aws_lc_rs", "rustls-native-certs", "rustls-pki-types", ] rustls-aws-lc-platform-verifier = [ "rustls/aws_lc_rs", "rustls-pki-types", "rustls-platform-verifier", ] rustls-aws-lc-webpki = [ "rustls/aws_lc_rs", "rustls-pki-types", "webpki-roots", ] rustls-ring-native = [ "rustls/ring", "rustls-native-certs", "rustls-pki-types", ] rustls-ring-platform-verifier = [ "rustls/ring", "rustls-pki-types", "rustls-platform-verifier", ] rustls-ring-webpki = [ "rustls/ring", "rustls-pki-types", "webpki-roots", ] server = []