From 8d8c895a1c97198e9461c4e01098f9c73ce626fe Mon Sep 17 00:00:00 2001 From: Carl Lerche Date: Fri, 8 Jun 2018 09:56:40 -0700 Subject: [PATCH] Remove `tokio-codec` dependency from `tokio` (#397) This will be added again later once types are re-exported. --- Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index e66f0333d..f3f490315 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,7 +40,6 @@ travis-ci = { repository = "tokio-rs/tokio" } appveyor = { repository = "carllerche/tokio", id = "s83yxhy9qeb58va7" } [dependencies] -tokio-codec = { version = "0.1.0", path = "tokio-codec" } tokio-io = { version = "0.1.6", path = "tokio-io" } tokio-executor = { version = "0.1.2", path = "tokio-executor" } tokio-reactor = { version = "0.1.1", path = "tokio-reactor" } @@ -56,6 +55,8 @@ futures = "0.1.20" mio = "0.6.14" [dev-dependencies] +tokio-codec = { version = "0.1.0", path = "tokio-codec" } + bytes = "0.4" env_logger = { version = "0.4", default-features = false } flate2 = { version = "1", features = ["tokio"] }