Bump to v0.16.0

This commit is contained in:
Tim Kuehn
2019-04-16 10:46:53 -07:00
parent bbfc8ac352
commit 9b90f6ae51
4 changed files with 9 additions and 9 deletions

View File

@@ -1,6 +1,6 @@
[package]
name = "tarpc-bincode-transport"
version = "0.4.0"
version = "0.5.0"
authors = ["Tim Kuehn <tikue@google.com>"]
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"

View File

@@ -1,6 +1,6 @@
[package]
name = "tarpc-example-service"
version = "0.3.0"
version = "0.4.0"
authors = ["Tim Kuehn <tikue@google.com>"]
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"

View File

@@ -1,6 +1,6 @@
[package]
name = "tarpc-lib"
version = "0.3.0"
version = "0.4.0"
authors = ["Tim Kuehn <tikue@google.com>"]
edition = '2018'
license = "MIT"

View File

@@ -1,6 +1,6 @@
[package]
name = "tarpc"
version = "0.15.0"
version = "0.16.0"
authors = ["Adam Wright <adam.austin.wright@gmail.com>", "Tim Kuehn <timothy.j.kuehn@gmail.com>"]
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"