remove extra path deps

This commit is contained in:
Lucio Franco
2019-09-01 12:53:12 -04:00
parent 420ca8484a
commit 4861354d46
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ prost-derive = "0.5"
bytes = "0.4" bytes = "0.4"
serde_json = "1.0" serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] } 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" http = "0.1"
[build-dependencies] [build-dependencies]
+2 -2
View File
@@ -24,8 +24,8 @@ pin-project = "0.4.0-alpha.2"
hyper = { git = "https://github.com/hyperium/hyper", optional = true} hyper = { git = "https://github.com/hyperium/hyper", optional = true}
tokio = { version = "=0.2.0-alpha.4", default-features = false, features = ["tcp"], optional = true } tokio = { version = "=0.2.0-alpha.4", default-features = false, features = ["tcp"], optional = true }
tower-make = "=0.1.0-alpha.2" tower-make = "=0.1.0-alpha.2"
tower-reconnect = { path = "../../tower/tower-reconnect", optional = true } tower-reconnect = { git = "https://github.com/tower-rs/tower", branch = "lucio/update-reconnect-buffer", optional = true }
tower-buffer = { path = "../../tower/tower-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 } tokio-openssl = { version = "=0.4.0-alpha.4", optional = true }