| 1 | [package] |
| 2 | name = "http" |
| 3 | # When releasing to crates.io: |
| 4 | # - Update html_root_url in lib.rs. |
| 5 | # - Update CHANGELOG.md. |
| 6 | # - Create git tag |
| 7 | version = "1.3.1" |
| 8 | readme = "README.md" |
| 9 | documentation = "https://docs.rs/http" |
| 10 | repository = "https://github.com/hyperium/http" |
| 11 | license = "MIT OR Apache-2.0" |
| 12 | authors = [ |
| 13 | "Alex Crichton <alex@alexcrichton.com>" , |
| 14 | "Carl Lerche <me@carllerche.com>" , |
| 15 | "Sean McArthur <sean@seanmonstar.com>" , |
| 16 | ] |
| 17 | description = "" " |
| 18 | A set of types for representing HTTP requests and responses. |
| 19 | " "" |
| 20 | keywords = ["http" ] |
| 21 | categories = ["web-programming" ] |
| 22 | edition = "2018" |
| 23 | # When updating this value, don't forget to also adjust the GitHub Actions config. |
| 24 | rust-version = "1.49.0" |
| 25 | |
| 26 | [workspace] |
| 27 | members = [ |
| 28 | "." , |
| 29 | ] |
| 30 | exclude = [ |
| 31 | "fuzz" , |
| 32 | "benches" |
| 33 | ] |
| 34 | |
| 35 | [features] |
| 36 | default = ["std" ] |
| 37 | std = [] |
| 38 | |
| 39 | [dependencies] |
| 40 | bytes = "1" |
| 41 | fnv = "1.0.5" |
| 42 | itoa = "1" |
| 43 | |
| 44 | [dev-dependencies] |
| 45 | quickcheck = "1" |
| 46 | rand = "0.8.0" |
| 47 | serde = "1.0" |
| 48 | serde_json = "1.0" |
| 49 | doc-comment = "0.3" |
| 50 | |