forked from seanmonstar/httparse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
51 lines (44 loc) · 1.03 KB
/
Cargo.toml
File metadata and controls
51 lines (44 loc) · 1.03 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
[package]
name = "httparser"
version = "1.10.1"
authors = ["Kylee Tilley <kyleetilley@gmail.com>"]
license = "MIT OR Apache-2.0"
description = "A parser for partially correct HTTP messages"
repository = "https://github.com/testingrequired/httparser"
documentation = "https://docs.rs/httparse"
readme = "README.md"
keywords = ["http", "parser", "no_std"]
categories = [
"network-programming",
"no-std",
"parser-implementations",
"web-programming",
]
edition = "2018"
build = "build.rs"
[features]
default = ["std"]
std = []
[dependencies]
log = "0.4.27"
tracing = { version = "0.1", features = ["log"] }
[dev-dependencies]
criterion = "0.3.5"
rand = "0.8.5"
env_logger = "0.11.8"
[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_simd)',
'cfg(httparse_simd_target_feature_avx2)',
'cfg(httparse_simd_target_feature_sse42)',
'cfg(httparse_simd_neon_intrinsics)',
] }