From af9d71ed0d8c13f8cb2bd5ed0c9b96178f998349 Mon Sep 17 00:00:00 2001 From: Artem Vorotnikov Date: Mon, 29 Apr 2019 06:13:06 +0300 Subject: [PATCH] Bump futures to 0.3.0-alpha.15 (#226) --- 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 0f51d31..3ff5ea4 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 = { version = "0.3.0-alpha.14", features = ["compat"] } +futures-preview = { version = "0.3.0-alpha.15", features = ["compat"] } futures_legacy = { version = "0.1", package = "futures" } pin-utils = "0.1.0-alpha.4" rpc = { package = "tarpc-lib", version = "0.4", path = "../rpc", features = ["serde1"] } diff --git a/example-service/Cargo.toml b/example-service/Cargo.toml index 210e17e..1af0a0e 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.5", path = "../bincode-transport" } clap = "2.0" -futures-preview = { version = "0.3.0-alpha.14", features = ["compat"] } +futures-preview = { version = "0.3.0-alpha.15", features = ["compat"] } serde = { version = "1.0" } tarpc = { version = "0.16", path = "../tarpc", features = ["serde1"] } tokio = "0.1" diff --git a/rpc/Cargo.toml b/rpc/Cargo.toml index 702e2cb..9237d65 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 = { version = "0.3.0-alpha.14", features = ["compat"] } +futures-preview = { version = "0.3.0-alpha.15", features = ["compat"] } humantime = "1.0" log = "0.4" pin-utils = "0.1.0-alpha.4" @@ -28,6 +28,6 @@ trace = { package = "tarpc-trace", version = "0.2", path = "../trace" } serde = { optional = true, version = "1.0" } [dev-dependencies] -futures-test-preview = { version = "0.3.0-alpha.14" } +futures-test-preview = { version = "0.3.0-alpha.15" } env_logger = "0.6" tokio = "0.1" diff --git a/tarpc/Cargo.toml b/tarpc/Cargo.toml index e7e17df..18a307d 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 = { version = "0.3.0-alpha.14", features = ["compat"] } +futures-preview = { version = "0.3.0-alpha.15", features = ["compat"] } log = "0.4" serde = { optional = true, version = "1.0" } rpc = { package = "tarpc-lib", path = "../rpc", version = "0.4" }