From 8235eefbf0cb4d8cbbb0cc8bf6554c66ef4e3346 Mon Sep 17 00:00:00 2001 From: Carl Lerche Date: Wed, 2 May 2018 13:12:33 -0700 Subject: [PATCH] Fix some dependency versions (#337) --- Cargo.toml | 2 +- tokio-fs/Cargo.toml | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 32ea89a0f..f81e38ad6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -42,7 +42,7 @@ appveyor = { repository = "carllerche/tokio", id = "s83yxhy9qeb58va7" } tokio-io = { version = "0.1.6", path = "tokio-io" } tokio-executor = { version = "0.1.2", path = "tokio-executor" } tokio-reactor = { version = "0.1.1", path = "tokio-reactor" } -tokio-threadpool = { version = "0.1.2", path = "tokio-threadpool" } +tokio-threadpool = { version = "0.1.3", 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.1", path = "tokio-timer" } diff --git a/tokio-fs/Cargo.toml b/tokio-fs/Cargo.toml index 7bc4db67d..922eca164 100644 --- a/tokio-fs/Cargo.toml +++ b/tokio-fs/Cargo.toml @@ -20,8 +20,7 @@ categories = ["asynchronous", "network-programming", "filesystem"] [dependencies] futures = "0.1.21" -# TODO: Set real version -tokio-threadpool = { version = "0.1.1", path = "../tokio-threadpool" } +tokio-threadpool = { version = "0.1.3", path = "../tokio-threadpool" } tokio-io = { version = "0.1.6", path = "../tokio-io" } [dev-dependencies]