[package]
name = "http-types-2"
version = "3.1.0"
license = "MIT OR Apache-2.0"
repository = "https://github.com/http-rs/http-types"
documentation = "https://docs.rs/http-types"
description = "Common types for HTTP operations."
keywords = ["http", "types", "request", "response", "h2"]
categories = ["asynchronous", "web-programming", "web-programming::http-client", "web-programming::http-server", "web-programming::websocket"]
authors = ["Yoshua Wuyts <yoshuawuyts@gmail.com>"]
readme = "README.md"
edition = "2018"
[package.metadata.docs.rs]
features = ["docs"]
rustdoc-args = ["--cfg", "feature=\"docs\""]
[features]
default = ["fs", "cookie-secure", "serde"]
docs = ["unstable"]
unstable = []
hyperium_http = ["http"]
async_std = ["fs"]
cookies = ["cookie"]
cookie-secure = ["cookies", "cookie/secure"]
fs = ["async-std"]
serde = ["serde_qs", "serde_crate", "serde_json", "serde_urlencoded", "url/serde"]
[dependencies]
fastrand = "2.0"
base64 = "0.22"
futures-lite = "2.0"
async-channel = "1.9"
infer = "0.15"
pin-project-lite = "0.2"
url = "2.5"
anyhow = "1.0"
async-std = { version = "1.12", optional = true }
http = { version = "1.0", optional = true }
cookie = { version = "0.18", features = ["percent-encode"], optional = true }
serde_json = { version = "1.0", optional = true }
serde_crate = { version = "1.0", features = ["derive"], optional = true, package = "serde" }
serde_urlencoded = { version = "0.7", optional = true}
serde_qs = { version = "0.13", optional = true }
[dev-dependencies]
http = "1.0"
async-std = { version = "1.12", features = ["attributes"] }