Cleanup unused dependencies (#364)

I've run `cargo udeps` to discover some unused/misplaced dependencies.
This commit is contained in:
Oliver Gould 2019-11-11 09:52:33 -08:00 committed by GitHub
parent 4a4593d522
commit 2d24d84e7c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 8 deletions

View File

@ -8,11 +8,11 @@ publish = false
futures = "0.1"
hdrhistogram = "6.0"
log = "0.4.1"
tower-service = "0.2.0"
tower-filter = { version = "0.1", path = "../tower-filter" }
tokio-mock-task = { git = "https://github.com/carllerche/tokio-mock-task" }
tokio-timer = "0.2.6"
tower-filter = { version = "0.1", path = "../tower-filter" }
tower-service = "0.2.0"
[dev-dependencies]
tower-test = { version = "0.1", path = "../tower-test" }
tokio-executor = "0.1.2"
tokio-mock-task = { git = "https://github.com/carllerche/tokio-mock-task" }
tower-test = { version = "0.1", path = "../tower-test" }

View File

@ -21,9 +21,7 @@ Decorates a `Service` to allow easy composition between `Service`s.
categories = ["asynchronous", "network-programming"]
edition = "2018"
[dependencies]
[dev-dependencies]
futures = "0.1.26"
tower-service = "0.2.0"
[dev-dependencies]
void = "1.0.2"

View File

@ -43,5 +43,4 @@ tower-util = { version = "0.1.0", features = ["io"] }
futures = "0.1.26"
log = "0.4.1"
tokio = "0.1"
env_logger = { version = "0.5.3", default-features = false }
void = "1.0.2"