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