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