Bump tarpc to v0.18.0

This commit is contained in:
Tim Kuehn
2019-05-11 13:00:35 -07:00
parent 31abea18b3
commit 6745cee72c
5 changed files with 10 additions and 10 deletions

View File

@@ -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

View File

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

View File

@@ -1,6 +1,6 @@
[package]
name = "tarpc-example-service"
version = "0.5.0"
version = "0.6.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.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"

View File

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

View File

@@ -1,6 +1,6 @@
[package]
name = "tarpc"
version = "0.17.0"
version = "0.18.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.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"