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