From 6745cee72c5719f182a16eec58365d546f0c395f Mon Sep 17 00:00:00 2001 From: Tim Kuehn Date: Sat, 11 May 2019 13:00:35 -0700 Subject: [PATCH] Bump tarpc to v0.18.0 --- README.md | 2 +- bincode-transport/Cargo.toml | 4 ++-- example-service/Cargo.toml | 6 +++--- rpc/Cargo.toml | 2 +- tarpc/Cargo.toml | 6 +++--- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ebade6c..96da841 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ arguments to tarpc fns. Add to your `Cargo.toml` dependencies: ```toml -tarpc = "0.17.0" +tarpc = "0.18.0" ``` The `service!` macro expands to a collection of items that form an diff --git a/bincode-transport/Cargo.toml b/bincode-transport/Cargo.toml index 1074bd5..3acca11 100644 --- a/bincode-transport/Cargo.toml +++ b/bincode-transport/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tarpc-bincode-transport" -version = "0.6.0" +version = "0.7.0" authors = ["Tim Kuehn "] edition = '2018' license = "MIT" @@ -17,7 +17,7 @@ bincode = "1" futures-preview = { version = "0.3.0-alpha.16", features = ["compat"] } futures_legacy = { version = "0.1", package = "futures" } pin-utils = "0.1.0-alpha.4" -rpc = { package = "tarpc-lib", version = "0.5", path = "../rpc", features = ["serde1"] } +rpc = { package = "tarpc-lib", version = "0.6", path = "../rpc", features = ["serde1"] } serde = "1.0" tokio-io = "0.1" async-bincode = "0.4" diff --git a/example-service/Cargo.toml b/example-service/Cargo.toml index 752ca18..fff599a 100644 --- a/example-service/Cargo.toml +++ b/example-service/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tarpc-example-service" -version = "0.5.0" +version = "0.6.0" authors = ["Tim Kuehn "] edition = "2018" license = "MIT" @@ -13,11 +13,11 @@ readme = "../README.md" description = "An example server built on tarpc." [dependencies] -bincode-transport = { package = "tarpc-bincode-transport", version = "0.6", path = "../bincode-transport" } +bincode-transport = { package = "tarpc-bincode-transport", version = "0.7", path = "../bincode-transport" } clap = "2.0" futures-preview = { version = "0.3.0-alpha.16", features = ["compat"] } serde = { version = "1.0" } -tarpc = { version = "0.17", path = "../tarpc", features = ["serde1"] } +tarpc = { version = "0.18", path = "../tarpc", features = ["serde1"] } tokio = "0.1" tokio-executor = "0.1" diff --git a/rpc/Cargo.toml b/rpc/Cargo.toml index c331698..520b6db 100644 --- a/rpc/Cargo.toml +++ b/rpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tarpc-lib" -version = "0.5.0" +version = "0.6.0" authors = ["Tim Kuehn "] edition = '2018' license = "MIT" diff --git a/tarpc/Cargo.toml b/tarpc/Cargo.toml index 2dea6c2..fd4cc91 100644 --- a/tarpc/Cargo.toml +++ b/tarpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tarpc" -version = "0.17.0" +version = "0.18.0" authors = ["Adam Wright ", "Tim Kuehn "] edition = "2018" license = "MIT" @@ -22,14 +22,14 @@ travis-ci = { repository = "google/tarpc" } futures-preview = { version = "0.3.0-alpha.16", features = ["compat"] } log = "0.4" serde = { optional = true, version = "1.0" } -rpc = { package = "tarpc-lib", path = "../rpc", version = "0.5" } +rpc = { package = "tarpc-lib", path = "../rpc", version = "0.6" } tarpc-plugins = { path = "../plugins", version = "0.5.0" } [dev-dependencies] bincode = "1" bytes = { version = "0.4", features = ["serde"] } humantime = "1.0" -bincode-transport = { package = "tarpc-bincode-transport", version = "0.6", path = "../bincode-transport" } +bincode-transport = { package = "tarpc-bincode-transport", version = "0.7", path = "../bincode-transport" } env_logger = "0.6" libtest = "0.0.1" tokio = "0.1"