| 1 | [package] |
| 2 | name = "http-body" |
| 3 | # When releasing to crates.io: |
| 4 | # - Remove path dependencies |
| 5 | # - Update doc url |
| 6 | # - Cargo.toml |
| 7 | # - README.md |
| 8 | # - Update CHANGELOG.md. |
| 9 | # - Create "http-body-x.y.z" git tag. |
| 10 | version = "1.0.1" |
| 11 | authors = [ |
| 12 | "Carl Lerche <me@carllerche.com>" , |
| 13 | "Lucio Franco <luciofranco14@gmail.com>" , |
| 14 | "Sean McArthur <sean@seanmonstar.com>" , |
| 15 | ] |
| 16 | edition = "2018" |
| 17 | readme = "../README.md" |
| 18 | documentation = "https://docs.rs/http-body" |
| 19 | repository = "https://github.com/hyperium/http-body" |
| 20 | license = "MIT" |
| 21 | description = "" " |
| 22 | Trait representing an asynchronous, streaming, HTTP request or response body. |
| 23 | " "" |
| 24 | keywords = ["http" ] |
| 25 | categories = ["web-programming" ] |
| 26 | rust-version = "1.49" |
| 27 | |
| 28 | [dependencies] |
| 29 | bytes = "1" |
| 30 | http = "1" |
| 31 | |