Bump tokio-buf to v0.1.0 (#925)

This commit is contained in:
Carl Lerche 2019-02-23 21:58:47 -08:00 committed by GitHub
parent 047d0b821c
commit 0e2e07812a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 4 deletions

View File

@ -1,3 +1,3 @@
# 0.1.0 (unreleased)
# 0.1.0 (February 23, 2019)
* Initial release

View File

@ -3,6 +3,9 @@ name = "tokio-buf"
# When releasing to crates.io:
# - Update html_root_url.
# - Update doc url
# - Cargo.toml
# - README.md
# - Update CHANGELOG.md.
# - Create "v0.1.x" git tag.
version = "0.1.0"
@ -10,14 +13,14 @@ authors = ["Carl Lerche <me@carllerche.com>"]
license = "MIT"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://tokio.rs"
documentation = "https://docs.rs/tokio-buf/0.1.0"
documentation = "https://docs.rs/tokio-buf/0.1.0/tokio_buf"
description = """
Asynchronous stream of byte buffers
"""
categories = ["asynchronous"]
[dependencies]
bytes = { version = "0.4.10" }
bytes = "0.4.10"
either = { version = "1.5", optional = true}
futures = "0.1.23"

View File

@ -10,7 +10,7 @@ First, add this to your `Cargo.toml`:
```toml
[dependencies]
tokio-buf = "0.1"
tokio-buf = "0.1.0"
```
Next, add this to your crate: