forked from hyperium/http
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
56 lines (49 loc) · 1.05 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
[package]
name = "http"
# When releasing to crates.io:
# - Update html_root_url in lib.rs.
# - Update CHANGELOG.md.
# - Create git tag
version = "0.2.4"
readme = "README.md"
documentation = "https://docs.rs/http"
repository = "https://github.com/hyperium/http"
license = "MIT/Apache-2.0"
authors = [
"Alex Crichton <alex@alexcrichton.com>",
"Carl Lerche <me@carllerche.com>",
"Sean McArthur <sean@seanmonstar.com>",
]
description = """
A set of types for representing HTTP requests and responses.
"""
keywords = ["http"]
categories = ["web-programming"]
edition = "2018"
[dependencies]
bytes = "1"
fnv = "1.0.5"
itoa = "0.4.1"
[dev-dependencies]
indexmap = "1.0"
quickcheck = "0.9.0"
rand = "0.7.0"
seahash = "3.0.5"
serde = "1.0"
serde_json = "1.0"
doc-comment = "0.3"
[[bench]]
name = "header_map"
path = "benches/header_map/mod.rs"
[[bench]]
name = "header_name"
path = "benches/header_name.rs"
[[bench]]
name = "header_value"
path = "benches/header_value.rs"
[[bench]]
name = "method"
path = "benches/method.rs"
[[bench]]
name = "uri"
path = "benches/uri.rs"