http-types-2 3.1.0

Common types for HTTP operations.
Documentation
[dependencies.anyhow]
version = "1.0"

[dependencies.async-channel]
version = "1.9"

[dependencies.async-std]
optional = true
version = "1.12"

[dependencies.base64]
version = "0.22"

[dependencies.cookie]
features = ["percent-encode"]
optional = true
version = "0.18"

[dependencies.fastrand]
version = "2.0"

[dependencies.futures-lite]
version = "2.0"

[dependencies.http]
optional = true
version = "1.0"

[dependencies.infer]
version = "0.15"

[dependencies.pin-project-lite]
version = "0.2"

[dependencies.serde_crate]
features = ["derive"]
optional = true
package = "serde"
version = "1.0"

[dependencies.serde_json]
optional = true
version = "1.0"

[dependencies.serde_qs]
optional = true
version = "0.13"

[dependencies.serde_urlencoded]
optional = true
version = "0.7"

[dependencies.url]
version = "2.5"

[dev-dependencies.async-std]
features = ["attributes"]
version = "1.12"

[dev-dependencies.http]
version = "1.0"

[features]
async_std = ["fs"]
cookie-secure = ["cookies", "cookie/secure"]
cookies = ["cookie"]
default = ["fs", "cookie-secure", "serde"]
docs = ["unstable"]
fs = ["async-std"]
hyperium_http = ["http"]
serde = ["serde_qs", "serde_crate", "serde_json", "serde_urlencoded", "url/serde"]
unstable = []

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

[package]
authors = ["Yoshua Wuyts <yoshuawuyts@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = "build.rs"
categories = ["asynchronous", "web-programming", "web-programming::http-client", "web-programming::http-server", "web-programming::websocket"]
description = "Common types for HTTP operations."
documentation = "https://docs.rs/http-types"
edition = "2018"
keywords = ["http", "types", "request", "response", "h2"]
license = "MIT OR Apache-2.0"
name = "http-types-2"
readme = "README.md"
repository = "https://github.com/http-rs/http-types"
version = "3.1.0"

[package.metadata.docs.rs]
features = ["docs"]
rustdoc-args = ["--cfg", 'feature="docs"']

[[test]]
name = "error"
path = "tests/error.rs"

[[test]]
name = "headers"
path = "tests/headers.rs"

[[test]]
name = "mime"
path = "tests/mime.rs"

[[test]]
name = "querystring"
path = "tests/querystring.rs"

[[test]]
name = "req_res_body"
path = "tests/req_res_body.rs"

[[test]]
name = "security"
path = "tests/security.rs"