diff --git a/bincode-transport/Cargo.toml b/bincode-transport/Cargo.toml index 951124b..6b08d9d 100644 --- a/bincode-transport/Cargo.toml +++ b/bincode-transport/Cargo.toml @@ -2,7 +2,7 @@ cargo-features = ["rename-dependency"] [package] name = "tarpc-bincode-transport" -version = "0.2.0" +version = "0.3.0" authors = ["Tim Kuehn "] edition = '2018' license = "MIT" @@ -17,8 +17,8 @@ description = "A bincode-based transport for tarpc services." [dependencies] bincode = { version = "1.0", features = ["i128"] } futures_legacy = { version = "0.1", package = "futures" } -pin-utils = "0.1.0-alpha.2" -rpc = { package = "tarpc-lib", version = "0.1", path = "../rpc", features = ["serde1"] } +pin-utils = "0.1.0-alpha.3" +rpc = { package = "tarpc-lib", version = "0.2", 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 9b36772..582a90f 100644 --- a/example-service/Cargo.toml +++ b/example-service/Cargo.toml @@ -2,7 +2,7 @@ cargo-features = ["rename-dependency"] [package] name = "tarpc-example-service" -version = "0.1.0" +version = "0.2.0" authors = ["Tim Kuehn "] edition = "2018" license = "MIT" @@ -15,11 +15,11 @@ readme = "../README.md" description = "An example server built on tarpc." [dependencies] -bincode-transport = { package = "tarpc-bincode-transport", version = "0.2", path = "../bincode-transport" } +bincode-transport = { package = "tarpc-bincode-transport", version = "0.3", path = "../bincode-transport" } clap = "2.0" futures-preview = { version = "0.3.0-alpha.9", features = ["compat", "tokio-compat"] } serde = { version = "1.0" } -tarpc = { version = "0.13", path = "../tarpc", features = ["serde1"] } +tarpc = { version = "0.14", path = "../tarpc", features = ["serde1"] } tokio = "0.1" tokio-executor = "0.1" diff --git a/rpc/Cargo.toml b/rpc/Cargo.toml index 1f621e0..8def42f 100644 --- a/rpc/Cargo.toml +++ b/rpc/Cargo.toml @@ -2,7 +2,7 @@ cargo-features = ["rename-dependency"] [package] name = "tarpc-lib" -version = "0.1.0" +version = "0.2.0" authors = ["Tim Kuehn "] edition = '2018' license = "MIT" @@ -22,7 +22,7 @@ serde1 = ["trace/serde", "serde", "serde/derive"] fnv = "1.0" humantime = "1.0" log = "0.4" -pin-utils = "0.1.0-alpha.2" +pin-utils = "0.1.0-alpha.3" rand = "0.5" tokio-timer = "0.2" trace = { package = "tarpc-trace", version = "0.1", path = "../trace" } diff --git a/tarpc/Cargo.toml b/tarpc/Cargo.toml index 5e410c5..3451f26 100644 --- a/tarpc/Cargo.toml +++ b/tarpc/Cargo.toml @@ -2,7 +2,7 @@ cargo-features = ["rename-dependency"] [package] name = "tarpc" -version = "0.13.0" +version = "0.14.0" authors = ["Adam Wright ", "Tim Kuehn "] edition = "2018" license = "MIT" @@ -24,7 +24,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.1" } +rpc = { package = "tarpc-lib", path = "../rpc", version = "0.2" } [target.'cfg(not(test))'.dependencies] futures-preview = "0.3.0-alpha.9" @@ -34,7 +34,7 @@ bincode = "1.0" bytes = { version = "0.4", features = ["serde"] } humantime = "1.0" futures-preview = { version = "0.3.0-alpha.9", features = ["compat", "tokio-compat"] } -bincode-transport = { package = "tarpc-bincode-transport", version = "0.2", path = "../bincode-transport" } +bincode-transport = { package = "tarpc-bincode-transport", version = "0.3", path = "../bincode-transport" } env_logger = "0.5" tokio = "0.1" tokio-executor = "0.1"