1[package]
2
3name = "httparse"
4version = "1.8.0"
5authors = ["Sean McArthur <sean@seanmonstar.com>"]
6license = "MIT/Apache-2.0"
7description = "A tiny, safe, speedy, zero-copy HTTP/1.x parser."
8repository = "https://github.com/seanmonstar/httparse"
9documentation = "https://docs.rs/httparse"
10readme = "README.md"
11keywords = ["http", "parser", "no_std"]
12categories = ["network-programming", "no-std", "parser-implementations", "web-programming"]
13edition = "2018"
14build = "build.rs"
15
16[features]
17default = ["std"]
18std = []
19
20[dev-dependencies]
21criterion = "0.3.5"
22
23[lib]
24bench = false
25
26[[bench]]
27name = "parse"
28harness = false
29
30[profile.bench]
31lto = true
32codegen-units = 1
33opt-level = 3
34