From abb014efc2dad72baed6375fa81c58f8abed3cb2 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Wed, 24 Apr 2019 17:24:59 +0200 Subject: [PATCH] tokio: Bump min version of tokio-sync (#1054) It is needed for lock functionality which tokio now uses. --- tokio/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tokio/Cargo.toml b/tokio/Cargo.toml index e9cf2bc4e..d6be6d5c5 100644 --- a/tokio/Cargo.toml +++ b/tokio/Cargo.toml @@ -73,7 +73,7 @@ tokio-fs = { version = "0.1.6", optional = true } tokio-io = { version = "0.1.6", optional = true } tokio-executor = { version = "0.1.7", optional = true } tokio-reactor = { version = "0.1.1", optional = true } -tokio-sync = { version = "0.1.3", optional = true, path = "../tokio-sync" } +tokio-sync = { version = "0.1.5", optional = true } tokio-threadpool = { version = "0.1.13", optional = true } tokio-tcp = { version = "0.1.0", optional = true } tokio-udp = { version = "0.1.0", optional = true }