From 58a0eced19e26d717acdb767367e926804fa313f Mon Sep 17 00:00:00 2001 From: Artem Vorotnikov Date: Mon, 15 Apr 2019 21:16:20 +0300 Subject: [PATCH] Depend on futures-preview 0.3.0-alpha.14 --- bincode-transport/Cargo.toml | 2 +- example-service/Cargo.toml | 2 +- rpc/Cargo.toml | 4 ++-- tarpc/Cargo.toml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bincode-transport/Cargo.toml b/bincode-transport/Cargo.toml index 47e4c32..916dbbf 100644 --- a/bincode-transport/Cargo.toml +++ b/bincode-transport/Cargo.toml @@ -14,7 +14,7 @@ description = "A bincode-based transport for tarpc services." [dependencies] bincode = "1" -futures-preview = { git = "https://github.com/rust-lang-nursery/futures-rs", features = ["compat"] } +futures-preview = { version = "0.3.0-alpha.14", features = ["compat"] } futures_legacy = { version = "0.1", package = "futures" } pin-utils = "0.1.0-alpha.4" rpc = { package = "tarpc-lib", version = "0.3", path = "../rpc", features = ["serde1"] } diff --git a/example-service/Cargo.toml b/example-service/Cargo.toml index 996960d..bf5f8b8 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 = { git = "https://github.com/rust-lang-nursery/futures-rs", features = ["compat"] } +futures-preview = { version = "0.3.0-alpha.14", 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 b9125d4..bcad929 100644 --- a/rpc/Cargo.toml +++ b/rpc/Cargo.toml @@ -18,7 +18,7 @@ serde1 = ["trace/serde", "serde", "serde/derive"] [dependencies] fnv = "1.0" -futures-preview = { git = "https://github.com/rust-lang-nursery/futures-rs", features = ["compat"] } +futures-preview = { version = "0.3.0-alpha.14", features = ["compat"] } humantime = "1.0" log = "0.4" parking_lot = "0.7" @@ -29,6 +29,6 @@ trace = { package = "tarpc-trace", version = "0.2", path = "../trace" } serde = { optional = true, version = "1.0" } [dev-dependencies] -futures-test-preview = { git = "https://github.com/rust-lang-nursery/futures-rs" } +futures-test-preview = { version = "0.3.0-alpha.14" } env_logger = "0.6" tokio = "0.1" diff --git a/tarpc/Cargo.toml b/tarpc/Cargo.toml index 8a497c0..9c24fe7 100644 --- a/tarpc/Cargo.toml +++ b/tarpc/Cargo.toml @@ -19,7 +19,7 @@ serde1 = ["rpc/serde1", "serde", "serde/derive"] travis-ci = { repository = "google/tarpc" } [dependencies] -futures-preview = { git = "https://github.com/rust-lang-nursery/futures-rs", features = ["compat"] } +futures-preview = { version = "0.3.0-alpha.14", features = ["compat"] } log = "0.4" serde = { optional = true, version = "1.0" } rpc = { package = "tarpc-lib", path = "../rpc", version = "0.3" }