Remove path deps for `tower-service` (#441)

This commit is contained in:
Lucio Franco 2020-04-17 14:00:38 -04:00 committed by GitHub
parent 5e1788f494
commit 85b657bf93
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 3 deletions

View File

@ -15,6 +15,9 @@ confidence-threshold = 0.8
[bans]
multiple-versions = "deny"
highlight = "all"
skip-tree = [
{ name = "tower", version = "=0.3"}
]
[sources]
unknown-registry = "warn"

View File

@ -24,4 +24,4 @@ edition = "2018"
[dependencies]
[dev-dependencies]
tower-service = { version = "0.3.0", path = "../tower-service" }
tower-service = { version = "0.3.0" }

View File

@ -26,7 +26,7 @@ futures-util = { version = "0.3", default-features = false }
tokio = { version = "0.2", features = ["sync"]}
tower-layer = { version = "0.3", path = "../tower-layer" }
tokio-test = "0.2"
tower-service = { version = "0.3", path = "../tower-service" }
tower-service = { version = "0.3" }
pin-project = "0.4"
[dev-dependencies]

View File

@ -47,7 +47,7 @@ util = ["futures-util"]
futures-core = "0.3"
pin-project = "0.4"
tower-layer = { version = "0.3", path = "../tower-layer" }
tower-service = { version = "0.3", path = "../tower-service" }
tower-service = { version = "0.3" }
tracing = "0.1.2"
futures-util = { version = "0.3", default-features = false, features = ["alloc"], optional = true }