[[bench]]
harness = false
name = "parse"
path = "benches/parse.rs"
[dev-dependencies.criterion]
version = "0.3.5"
[dev-dependencies.rand]
version = "0.8.5"
[features]
default = ["std"]
std = []
[lib]
bench = false
name = "httparse"
path = "src/lib.rs"
[lints.rust.unexpected_cfgs]
check-cfg = ["cfg(httparse_simd)", "cfg(httparse_simd_target_feature_avx2)", "cfg(httparse_simd_target_feature_sse42)", "cfg(httparse_simd_neon_intrinsics)"]
level = "warn"
priority = 0
[package]
authors = ["Sean McArthur <sean@seanmonstar.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = "build.rs"
categories = ["network-programming", "no-std", "parser-implementations", "web-programming"]
description = "A tiny, safe, speedy, zero-copy HTTP/1.x parser."
documentation = "https://docs.rs/httparse"
edition = "2018"
keywords = ["http", "parser", "no_std"]
license = "MIT OR Apache-2.0"
name = "httparse"
readme = "README.md"
repository = "https://github.com/seanmonstar/httparse"
version = "1.10.0"
[profile.bench]
codegen-units = 1
lto = true
opt-level = 3
[[test]]
name = "uri"
path = "tests/uri.rs"