[package]
edition = "2021"
rust-version = "1.57.0"
name = "http"
version = "1.4.1"
authors = [
"Alex Crichton <alex@alexcrichton.com>",
"Carl Lerche <me@carllerche.com>",
"Sean McArthur <sean@seanmonstar.com>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
A set of types for representing HTTP requests and responses.
"""
documentation = "https://docs.rs/http"
readme = "README.md"
keywords = ["http"]
categories = ["web-programming"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/hyperium/http"
[features]
default = ["std"]
std = []
[lib]
name = "http"
path = "src/lib.rs"
[[test]]
name = "header_map"
path = "tests/header_map.rs"
[[test]]
name = "header_map_fuzz"
path = "tests/header_map_fuzz.rs"
[[test]]
name = "status_code"
path = "tests/status_code.rs"
[dependencies.bytes]
version = "1"
[dependencies.itoa]
version = "1"
[dev-dependencies.doc-comment]
version = "0.3"
[dev-dependencies.quickcheck]
version = "1"
[dev-dependencies.rand]
version = "0.10"
[dev-dependencies.serde]
version = "1.0"
[dev-dependencies.serde_json]
version = "1.0"