From a612736f544261af2e2a87e293622561972eaf2f Mon Sep 17 00:00:00 2001 From: Klaus Purer Date: Wed, 28 Mar 2018 00:47:11 +0200 Subject: [PATCH] fix(cargo): Bump dependencies so that Tokio compiles with minimal versions (#258) --- tokio-io/Cargo.toml | 2 +- tokio-threadpool/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tokio-io/Cargo.toml b/tokio-io/Cargo.toml index 95a9db3ed..ab04fbbeb 100644 --- a/tokio-io/Cargo.toml +++ b/tokio-io/Cargo.toml @@ -17,6 +17,6 @@ Core I/O primitives for asynchronous I/O in Rust. categories = ["asynchronous"] [dependencies] -bytes = "0.4" +bytes = "0.4.1" futures = "0.1.18" log = "0.4" diff --git a/tokio-threadpool/Cargo.toml b/tokio-threadpool/Cargo.toml index 6bf852999..c05b35570 100644 --- a/tokio-threadpool/Cargo.toml +++ b/tokio-threadpool/Cargo.toml @@ -18,7 +18,7 @@ futures = "0.1.19" crossbeam-deque = "0.3" num_cpus = "1.2" rand = "0.4" -log = "0.3" +log = "0.4" # Futures 0.2 integration futures2 = { version = "0.1", path = "../futures2", optional = true }