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