[package] name = "http-body-util" # When releasing to crates.io: # - Remove path dependencies # - Update html_root_url. # - Update doc url # - Cargo.toml # - README.md # - Update CHANGELOG.md. # - Create "http-body-util-x.y.z" git tag. version = "0.1.2" authors = [ "Carl Lerche ", "Lucio Franco ", "Sean McArthur ", ] edition = "2018" readme = "../README.md" documentation = "https://docs.rs/http-body-util" repository = "https://github.com/hyperium/http-body" license = "MIT" description = """ Combinators and adapters for HTTP request or response bodies. """ keywords = ["http"] categories = ["web-programming"] rust-version = "1.49" [dependencies] bytes = "1" futures-util = { version = "0.3", default-features = false } http = "1" http-body = { version = "1", path = "../http-body" } pin-project-lite = "0.2" [dev-dependencies] tokio = { version = "1", features = ["macros", "rt", "sync", "rt-multi-thread"] }