From 4861354d462df65279afc33d81c1467feceffe58 Mon Sep 17 00:00:00 2001 From: Lucio Franco Date: Sun, 1 Sep 2019 12:53:12 -0400 Subject: [PATCH] remove extra path deps --- tonic-examples/Cargo.toml | 2 +- tonic/Cargo.toml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tonic-examples/Cargo.toml b/tonic-examples/Cargo.toml index 65a11b7..09953c4 100644 --- a/tonic-examples/Cargo.toml +++ b/tonic-examples/Cargo.toml @@ -32,7 +32,7 @@ prost-derive = "0.5" bytes = "0.4" serde_json = "1.0" serde = { version = "1.0", features = ["derive"] } -async-stream = { path = "../../async-stream/async-stream" } +async-stream = { git = "https://github.com/tokio-rs/async-stream" } http = "0.1" [build-dependencies] diff --git a/tonic/Cargo.toml b/tonic/Cargo.toml index ce22a95..5d284e7 100644 --- a/tonic/Cargo.toml +++ b/tonic/Cargo.toml @@ -24,10 +24,10 @@ pin-project = "0.4.0-alpha.2" hyper = { git = "https://github.com/hyperium/hyper", optional = true} tokio = { version = "=0.2.0-alpha.4", default-features = false, features = ["tcp"], optional = true } tower-make = "=0.1.0-alpha.2" -tower-reconnect = { path = "../../tower/tower-reconnect", optional = true } -tower-buffer = { path = "../../tower/tower-buffer", optional = true } +tower-reconnect = { git = "https://github.com/tower-rs/tower", branch = "lucio/update-reconnect-buffer", optional = true } +tower-buffer = { git = "https://github.com/tower-rs/tower", branch = "lucio/update-reconnect-buffer", optional = true } -# openssl +# openssl tokio-openssl = { version = "=0.4.0-alpha.4", optional = true } openssl = { version = "0.10", optional = true }