1[package]
2name = "http"
3# When releasing to crates.io:
4# - Update html_root_url in lib.rs.
5# - Update CHANGELOG.md.
6# - Create git tag
7version = "0.2.4"
8readme = "README.md"
9documentation = "https://docs.rs/http"
10repository = "https://github.com/hyperium/http"
11license = "MIT/Apache-2.0"
12authors = [
13  "Alex Crichton <alex@alexcrichton.com>",
14  "Carl Lerche <me@carllerche.com>",
15  "Sean McArthur <sean@seanmonstar.com>",
16]
17description = """
18A set of types for representing HTTP requests and responses.
19"""
20keywords = ["http"]
21categories = ["web-programming"]
22edition = "2018"
23
24[dependencies]
25bytes = "1"
26fnv = "1.0.5"
27itoa = "0.4.1"
28
29[dev-dependencies]
30indexmap = "1.0"
31quickcheck = "0.9.0"
32rand = "0.7.0"
33seahash = "3.0.5"
34serde = "1.0"
35serde_json = "1.0"
36doc-comment = "0.3"
37
38[[bench]]
39name = "header_map"
40path = "benches/header_map/mod.rs"
41
42[[bench]]
43name = "header_name"
44path = "benches/header_name.rs"
45
46[[bench]]
47name = "header_value"
48path = "benches/header_value.rs"
49
50[[bench]]
51name = "method"
52path = "benches/method.rs"
53
54[[bench]]
55name = "uri"
56path = "benches/uri.rs"
57