Publish tarpc v0.15.0

This commit is contained in:
Tim Kuehn
2019-03-26 20:17:51 -07:00
parent 5516034bbc
commit 4e0be5b626
7 changed files with 13 additions and 13 deletions

View File

@@ -33,7 +33,7 @@ arguments to tarpc fns.
Add to your `Cargo.toml` dependencies:
```toml
tarpc = "0.14.0"
tarpc = "0.15.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.3.0"
version = "0.4.0"
authors = ["Tim Kuehn <tikue@google.com>"]
edition = '2018'
license = "MIT"
@@ -16,7 +16,7 @@ description = "A bincode-based transport for tarpc services."
bincode = { version = "1.0", features = ["i128"] }
futures_legacy = { version = "0.1", package = "futures" }
pin-utils = "0.1.0-alpha.4"
rpc = { package = "tarpc-lib", version = "0.2", path = "../rpc", features = ["serde1"] }
rpc = { package = "tarpc-lib", version = "0.3", 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.2.0"
version = "0.3.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.3", path = "../bincode-transport" }
bincode-transport = { package = "tarpc-bincode-transport", version = "0.4", path = "../bincode-transport" }
clap = "2.0"
futures-preview = { version = "0.3.0-alpha.13", features = ["compat"] }
serde = { version = "1.0" }
tarpc = { version = "0.14", path = "../tarpc", features = ["serde1"] }
tarpc = { version = "0.15", path = "../tarpc", features = ["serde1"] }
tokio = "0.1"
tokio-executor = "0.1"

View File

@@ -1,6 +1,6 @@
[package]
name = "tarpc-plugins"
version = "0.5.0"
version = "0.5.1"
authors = ["Adam Wright <adam.austin.wright@gmail.com>", "Tim Kuehn <timothy.j.kuehn@gmail.com>"]
license = "MIT"
documentation = "https://docs.rs/tarpc-plugins"

View File

@@ -1,6 +1,6 @@
[package]
name = "tarpc-lib"
version = "0.2.0"
version = "0.3.0"
authors = ["Tim Kuehn <tikue@google.com>"]
edition = '2018'
license = "MIT"
@@ -23,7 +23,7 @@ log = "0.4"
pin-utils = "0.1.0-alpha.4"
rand = "0.6"
tokio-timer = "0.2"
trace = { package = "tarpc-trace", version = "0.1", path = "../trace" }
trace = { package = "tarpc-trace", version = "0.2", path = "../trace" }
serde = { optional = true, version = "1.0" }
[target.'cfg(not(test))'.dependencies]

View File

@@ -1,6 +1,6 @@
[package]
name = "tarpc"
version = "0.14.1"
version = "0.15.0"
authors = ["Adam Wright <adam.austin.wright@gmail.com>", "Tim Kuehn <timothy.j.kuehn@gmail.com>"]
edition = "2018"
license = "MIT"
@@ -22,7 +22,7 @@ travis-ci = { repository = "google/tarpc" }
log = "0.4"
serde = { optional = true, version = "1.0" }
tarpc-plugins = { path = "../plugins", version = "0.5.0" }
rpc = { package = "tarpc-lib", path = "../rpc", version = "0.2" }
rpc = { package = "tarpc-lib", path = "../rpc", version = "0.3" }
[target.'cfg(not(test))'.dependencies]
futures-preview = "0.3.0-alpha.13"
@@ -32,7 +32,7 @@ bincode = "1.0"
bytes = { version = "0.4", features = ["serde"] }
humantime = "1.0"
futures-preview = { version = "0.3.0-alpha.13", features = ["compat"] }
bincode-transport = { package = "tarpc-bincode-transport", version = "0.3", path = "../bincode-transport" }
bincode-transport = { package = "tarpc-bincode-transport", version = "0.4", path = "../bincode-transport" }
env_logger = "0.6"
libtest = "0.0.1"
tokio = "0.1"

View File

@@ -1,6 +1,6 @@
[package]
name = "tarpc-trace"
version = "0.1.0"
version = "0.2.0"
authors = ["tikue <tikue@google.com>"]
edition = '2018'
license = "MIT"