From 2ca214bd2cc3f7d4b9e870f2a8a7736125b1435a Mon Sep 17 00:00:00 2001 From: Carl Lerche Date: Fri, 30 Mar 2018 15:32:25 -0700 Subject: [PATCH] Fix tokio dependency versions (#272) --- Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ab2871d25..8936c41ae 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -39,14 +39,14 @@ appveyor = { repository = "carllerche/tokio" } [dependencies] tokio-io = { version = "0.1.6", path = "tokio-io" } -tokio-executor = { version = "0.1.1", path = "tokio-executor" } +tokio-executor = { version = "0.1.2", path = "tokio-executor" } tokio-reactor = { version = "0.1.1", path = "tokio-reactor" } -tokio-threadpool = { version = "0.1.1", path = "tokio-threadpool" } +tokio-threadpool = { version = "0.1.2", path = "tokio-threadpool" } tokio-tcp = { version = "0.1.0", path = "tokio-tcp" } tokio-udp = { version = "0.1.0", path = "tokio-udp" } tokio-timer = { version = "0.2.0", path = "tokio-timer" } -futures = "0.1.19" +futures = "0.1.20" # Needed until `reactor` is removed from `tokio`. mio = "0.6.14"