From a7fb4d22cc62a8bda8a3142322e42a730d9afcdc Mon Sep 17 00:00:00 2001 From: Artem Vorotnikov Date: Fri, 22 Mar 2019 16:10:11 +0300 Subject: [PATCH] Switch to master branch of futures-preview --- bincode-transport/Cargo.toml | 4 ++-- example-service/Cargo.toml | 2 +- rpc/Cargo.toml | 6 +++--- tarpc/Cargo.toml | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/bincode-transport/Cargo.toml b/bincode-transport/Cargo.toml index 94a9ffb..70ab758 100644 --- a/bincode-transport/Cargo.toml +++ b/bincode-transport/Cargo.toml @@ -23,10 +23,10 @@ async-bincode = "0.4" tokio-tcp = "0.1" [target.'cfg(not(test))'.dependencies] -futures-preview = { version = "0.3.0-alpha.13", features = ["compat"] } +futures-preview = { git = "https://github.com/rust-lang-nursery/futures-rs", features = ["compat"] } [dev-dependencies] -futures-preview = { version = "0.3.0-alpha.13", features = ["compat"] } +futures-preview = { git = "https://github.com/rust-lang-nursery/futures-rs", features = ["compat"] } env_logger = "0.6" humantime = "1.0" libtest = "0.0.1" diff --git a/example-service/Cargo.toml b/example-service/Cargo.toml index 92fc4f9..996960d 100644 --- a/example-service/Cargo.toml +++ b/example-service/Cargo.toml @@ -15,7 +15,7 @@ description = "An example server built on tarpc." [dependencies] bincode-transport = { package = "tarpc-bincode-transport", version = "0.4", path = "../bincode-transport" } clap = "2.0" -futures-preview = { version = "0.3.0-alpha.13", features = ["compat"] } +futures-preview = { git = "https://github.com/rust-lang-nursery/futures-rs", features = ["compat"] } serde = { version = "1.0" } tarpc = { version = "0.15", path = "../tarpc", features = ["serde1"] } tokio = "0.1" diff --git a/rpc/Cargo.toml b/rpc/Cargo.toml index 2c4f568..eca2bf4 100644 --- a/rpc/Cargo.toml +++ b/rpc/Cargo.toml @@ -27,10 +27,10 @@ trace = { package = "tarpc-trace", version = "0.2", path = "../trace" } serde = { optional = true, version = "1.0" } [target.'cfg(not(test))'.dependencies] -futures-preview = { version = "0.3.0-alpha.13", features = ["compat"] } +futures-preview = { git = "https://github.com/rust-lang-nursery/futures-rs", features = ["compat"] } [dev-dependencies] -futures-preview = { version = "0.3.0-alpha.13", features = ["compat"] } -futures-test-preview = { version = "0.3.0-alpha.13" } +futures-preview = { git = "https://github.com/rust-lang-nursery/futures-rs", features = ["compat"] } +futures-test-preview = { git = "https://github.com/rust-lang-nursery/futures-rs" } env_logger = "0.6" tokio = "0.1" diff --git a/tarpc/Cargo.toml b/tarpc/Cargo.toml index 7392079..c5ab8fb 100644 --- a/tarpc/Cargo.toml +++ b/tarpc/Cargo.toml @@ -25,13 +25,13 @@ tarpc-plugins = { path = "../plugins", version = "0.5.0" } rpc = { package = "tarpc-lib", path = "../rpc", version = "0.3" } [target.'cfg(not(test))'.dependencies] -futures-preview = "0.3.0-alpha.13" +futures-preview = { git = "https://github.com/rust-lang-nursery/futures-rs" } [dev-dependencies] bincode = "1" bytes = { version = "0.4", features = ["serde"] } humantime = "1.0" -futures-preview = { version = "0.3.0-alpha.13", features = ["compat"] } +futures-preview = { git = "https://github.com/rust-lang-nursery/futures-rs", features = ["compat"] } bincode-transport = { package = "tarpc-bincode-transport", version = "0.4", path = "../bincode-transport" } env_logger = "0.6" libtest = "0.0.1"