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 = "1.3.1"
8readme = "README.md"
9documentation = "https://docs.rs/http"
10repository = "https://github.com/hyperium/http"
11license = "MIT OR 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# When updating this value, don't forget to also adjust the GitHub Actions config.
24rust-version = "1.49.0"
25
26[workspace]
27members = [
28 ".",
29]
30exclude = [
31 "fuzz",
32 "benches"
33]
34
35[features]
36default = ["std"]
37std = []
38
39[dependencies]
40bytes = "1"
41fnv = "1.0.5"
42itoa = "1"
43
44[dev-dependencies]
45quickcheck = "1"
46rand = "0.8.0"
47serde = "1.0"
48serde_json = "1.0"
49doc-comment = "0.3"
50