From 9609055edf229fbba6ebf9f47b46ddfe4850287d Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Sat, 18 Aug 2018 13:06:19 -0700 Subject: [PATCH] Also patch tokio Not sure how tests previously compiled? --- Cargo.toml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 2190cd51..4b86c68f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,9 +11,10 @@ members = [ ] [patch.crates-io] -tokio-uds = { git = "https://github.com/tokio-rs/tokio" } -tokio-io = { git = "https://github.com/tokio-rs/tokio" } -tokio-timer = { git = "https://github.com/tokio-rs/tokio" } +tokio = { git = "https://github.com/tokio-rs/tokio" } tokio-codec = { git = "https://github.com/tokio-rs/tokio" } -tokio-reactor = { git = "https://github.com/tokio-rs/tokio" } tokio-executor = { git = "https://github.com/tokio-rs/tokio" } +tokio-io = { git = "https://github.com/tokio-rs/tokio" } +tokio-reactor = { git = "https://github.com/tokio-rs/tokio" } +tokio-timer = { git = "https://github.com/tokio-rs/tokio" } +tokio-uds = { git = "https://github.com/tokio-rs/tokio" }