-
-
Notifications
You must be signed in to change notification settings - Fork 128
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (32 loc) · 845 Bytes
/
Cargo.toml
File metadata and controls
38 lines (32 loc) · 845 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[package]
name = "httparse"
version = "1.10.1"
authors = ["Sean McArthur <sean@seanmonstar.com>"]
license = "MIT OR Apache-2.0"
description = "A tiny, safe, speedy, zero-copy HTTP/1.x parser."
repository = "https://github.com/seanmonstar/httparse"
documentation = "https://docs.rs/httparse"
readme = "README.md"
keywords = ["http", "parser", "no_std"]
categories = ["network-programming", "no-std", "parser-implementations", "web-programming"]
edition = "2021"
rust-version = "1.59"
[features]
default = ["std"]
std = []
[dev-dependencies]
criterion = { version = "0.3.5", features = ["html_reports"] }
rand = "0.8.5"
[lib]
bench = false
[[bench]]
name = "parse"
harness = false
[profile.bench]
lto = true
codegen-units = 1
opt-level = 3
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = [
'cfg(httparse_disable_simd)',
] }