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.9" 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[dependencies] 36bytes = "1" 37fnv = "1.0.5" 38itoa = "1" 39 40[dev-dependencies] 41indexmap = "<=1.8" 42quickcheck = "0.9.0" 43rand = "0.7.0" 44seahash = "3.0.5" 45serde = "1.0" 46serde_json = "1.0" 47doc-comment = "0.3" 48