forked from hyperium/http
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
64 lines (56 loc) · 1.26 KB
/
Cargo.toml
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
52
53
54
55
56
57
58
59
60
61
62
63
64
[package]
name = "http"
# When releasing to crates.io:
# - Update html_root_url in lib.rs.
# - Update CHANGELOG.md.
# - Create git tag
version = "0.2.8"
readme = "README.md"
documentation = "https://docs.rs/http"
repository = "https://github.com/hyperium/http"
license = "MIT OR Apache-2.0"
authors = [
"Alex Crichton <[email protected]>",
"Carl Lerche <[email protected]>",
"Sean McArthur <[email protected]>",
]
description = """
A set of types for representing HTTP requests and responses.
"""
keywords = ["http"]
categories = ["web-programming"]
edition = "2018"
# When updating this value, don't forget to also adjust the GitHub Actions config.
rust-version = "1.49.0"
[dependencies]
bytes = "1"
fnv = "1.0.5"
itoa = "1"
[dev-dependencies]
indexmap = "<=1.8"
quickcheck = "0.9.0"
rand = "0.7.0"
seahash = "3.0.5"
serde = "1.0"
serde_json = "1.0"
doc-comment = "0.3"
criterion = "0.3.2"
[[bench]]
name = "header_map"
path = "benches/header_map/mod.rs"
[[bench]]
name = "header_name"
path = "benches/header_name.rs"
[[bench]]
name = "header_name2"
path = "benches/header_name2.rs"
harness = false
[[bench]]
name = "header_value"
path = "benches/header_value.rs"
[[bench]]
name = "method"
path = "benches/method.rs"
[[bench]]
name = "uri"
path = "benches/uri.rs"