1[package] 2name = "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. 11version = "0.4.6" 12authors = [ 13 "Carl Lerche <me@carllerche.com>", 14 "Lucio Franco <luciofranco14@gmail.com>", 15 "Sean McArthur <sean@seanmonstar.com>", 16] 17edition = "2018" 18readme = "README.md" 19documentation = "https://docs.rs/http-body" 20repository = "https://github.com/hyperium/http-body" 21license = "MIT" 22description = """ 23Trait representing an asynchronous, streaming, HTTP request or response body. 24""" 25keywords = ["http"] 26categories = ["web-programming"] 27 28[dependencies] 29bytes = "1" 30http = "0.2" 31pin-project-lite = "0.2" 32 33[dev-dependencies] 34tokio = { version = "1", features = ["macros", "rt"] } 35