-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
47 lines (42 loc) · 980 Bytes
/
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
[package]
name = "http"
# When releasing to crates.io:
# - Update html_root_url in lib.rs.
# - Update CHANGELOG.md.
# - Create git tag
version = "0.1.13"
readme = "README.md"
documentation = "https://docs.rs/http"
repository = "https://github.com/hyperium/http"
homepage = "https://github.com/hyperium/http"
license = "MIT/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"]
[dependencies]
bytes = {path = "../bytes"}
fnv = "1.0.5"
itoa = "0.4.1"
[dev-dependencies]
indexmap = "1.0"
quickcheck = "0.6"
rand = "0.4"
seahash = "3.0.5"
serde = "1.0"
serde_json = "1.0"
[[bench]]
name = "header_map"
path = "benches/header_map/mod.rs"
[[bench]]
name = "header_value"
path = "benches/header_value.rs"
[[bench]]
name = "uri"
path = "benches/uri.rs"