From 9b90f6ae519b2b4aa661d4c937aaebb4b73799dd Mon Sep 17 00:00:00 2001 From: Tim Kuehn Date: Tue, 16 Apr 2019 10:46:53 -0700 Subject: [PATCH] Bump to v0.16.0 --- bincode-transport/Cargo.toml | 4 ++-- example-service/Cargo.toml | 6 +++--- rpc/Cargo.toml | 2 +- tarpc/Cargo.toml | 6 +++--- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/bincode-transport/Cargo.toml b/bincode-transport/Cargo.toml index 916dbbf..0f51d31 100644 --- a/bincode-transport/Cargo.toml +++ b/bincode-transport/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tarpc-bincode-transport" -version = "0.4.0" +version = "0.5.0" authors = ["Tim Kuehn "] edition = '2018' license = "MIT" @@ -17,7 +17,7 @@ bincode = "1" 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"] } +rpc = { package = "tarpc-lib", version = "0.4", 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 bf5f8b8..210e17e 100644 --- a/example-service/Cargo.toml +++ b/example-service/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tarpc-example-service" -version = "0.3.0" +version = "0.4.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.4", path = "../bincode-transport" } +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"] } serde = { version = "1.0" } -tarpc = { version = "0.15", path = "../tarpc", features = ["serde1"] } +tarpc = { version = "0.16", path = "../tarpc", features = ["serde1"] } tokio = "0.1" tokio-executor = "0.1" diff --git a/rpc/Cargo.toml b/rpc/Cargo.toml index a68f7fb..702e2cb 100644 --- a/rpc/Cargo.toml +++ b/rpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tarpc-lib" -version = "0.3.0" +version = "0.4.0" authors = ["Tim Kuehn "] edition = '2018' license = "MIT" diff --git a/tarpc/Cargo.toml b/tarpc/Cargo.toml index 9c24fe7..e7e17df 100644 --- a/tarpc/Cargo.toml +++ b/tarpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tarpc" -version = "0.15.0" +version = "0.16.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.14", features = ["compat"] } log = "0.4" serde = { optional = true, version = "1.0" } -rpc = { package = "tarpc-lib", path = "../rpc", version = "0.3" } +rpc = { package = "tarpc-lib", path = "../rpc", version = "0.4" } 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.4", path = "../bincode-transport" } +bincode-transport = { package = "tarpc-bincode-transport", version = "0.5", path = "../bincode-transport" } env_logger = "0.6" libtest = "0.0.1" tokio = "0.1"