Bump tokio to v0.1.2 (#201)

This also bumps tokio-io to v0.1.6 and prepares for the initial release
of tokio-executor, tokio-reactor, and tokio-threadpool.
This commit is contained in:
Carl Lerche
2018-03-08 20:15:51 -08:00
committed by GitHub
parent bb9de276ae
commit e18c23afa1
14 changed files with 46 additions and 16 deletions
+6 -6
View File
@@ -5,7 +5,7 @@ name = "tokio"
# - Update html_root_url.
# - Update CHANGELOG.md.
# - Create "v0.1.x" git tag.
version = "0.1.1"
version = "0.1.2"
authors = ["Carl Lerche <[email protected]>"]
license = "MIT/Apache-2.0"
readme = "README.md"
@@ -34,16 +34,16 @@ travis-ci = { repository = "tokio-rs/tokio" }
appveyor = { repository = "carllerche/tokio" }
[dependencies]
tokio-io = { version = "0.1", path = "tokio-io" }
tokio-executor = { version = "0.1", path = "tokio-executor" }
tokio-reactor = { version = "0.1", path = "tokio-reactor" }
tokio-threadpool = { version = "0.1", path = "tokio-threadpool" }
tokio-io = { version = "0.1.6", path = "tokio-io" }
tokio-executor = { version = "0.1.0", path = "tokio-executor" }
tokio-reactor = { version = "0.1.0", path = "tokio-reactor" }
tokio-threadpool = { version = "0.1.0", path = "tokio-threadpool" }
bytes = "0.4"
log = "0.4"
mio = "0.6.14"
slab = "0.4"
iovec = "0.1"
futures = "0.1.16"
futures = "0.1.18"
[dev-dependencies]
env_logger = { version = "0.4", default-features = false }