From 1a3f365965be2dbfd4cd4d3023b1c4cbaf457e92 Mon Sep 17 00:00:00 2001 From: Lucio Franco Date: Wed, 3 Jul 2019 17:11:20 -0400 Subject: [PATCH] =?UTF-8?q?fmt,futures,tower,tower-http:=20Use=20crates.io?= =?UTF-8?q?=20instead=20of=20local=20pat=E2=80=A6=20(#139)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Lucio Franco --- tracing-env-logger/Cargo.toml | 4 ++-- tracing-fmt/Cargo.toml | 4 ++-- tracing-futures/Cargo.toml | 6 +++--- tracing-proc-macros/Cargo.toml | 2 +- tracing-tower-http/Cargo.toml | 3 +-- tracing-tower/Cargo.toml | 2 +- 6 files changed, 10 insertions(+), 11 deletions(-) diff --git a/tracing-env-logger/Cargo.toml b/tracing-env-logger/Cargo.toml index 9c121c04..b828bd18 100644 --- a/tracing-env-logger/Cargo.toml +++ b/tracing-env-logger/Cargo.toml @@ -9,10 +9,10 @@ env_logger = "0.5" log = "0.4" [dev-dependencies] -tracing = { version = "0.1", path = "../tracing" } +tracing = "0.1" tracing-fmt = { path = "../tracing-fmt" } tracing-futures = { path = "../tracing-futures" } tracing-subscriber = { path = "../tracing-subscriber" } hyper = "=0.12.25" futures = "0.1" -tokio = "0.1.21" +tokio = "0.1.22" diff --git a/tracing-fmt/Cargo.toml b/tracing-fmt/Cargo.toml index 1908914e..21aa803c 100644 --- a/tracing-fmt/Cargo.toml +++ b/tracing-fmt/Cargo.toml @@ -9,7 +9,7 @@ default = ["ansi", "chrono"] ansi = ["ansi_term"] [dependencies] -tracing-core = { version = "0.1", path = "../tracing-core" } +tracing-core = "0.1" ansi_term = { version = "0.11", optional = true } regex = "1" lazy_static = "1" @@ -19,4 +19,4 @@ lock_api = "0.1" chrono = { version = "0.4", optional = true } [dev-dependencies] -tracing = { version = "0.1", path = "../tracing" } +tracing = "0.1" diff --git a/tracing-futures/Cargo.toml b/tracing-futures/Cargo.toml index e3f8b486..791e3a49 100644 --- a/tracing-futures/Cargo.toml +++ b/tracing-futures/Cargo.toml @@ -9,11 +9,11 @@ default = ["tokio"] [dependencies] futures = "0.1" -tracing = { version = "0.1", path = "../tracing" } +tracing = "0.1" tokio = { version = "0.1", optional = true } tokio-executor = { version = "0.1", optional = true } [dev-dependencies] -tokio = "0.1.21" +tokio = "0.1.22" tracing-fmt = { path = "../tracing-fmt" } -tracing-core = { path = "../tracing-core" } +tracing-core = "0.1" diff --git a/tracing-proc-macros/Cargo.toml b/tracing-proc-macros/Cargo.toml index c59e0ea9..15a662f9 100644 --- a/tracing-proc-macros/Cargo.toml +++ b/tracing-proc-macros/Cargo.toml @@ -7,7 +7,7 @@ authors = ["Eliza Weisman ", "David Barsky "] edition = "2018" [dependencies] - -tracing = { version = "0.1", path = "../tracing" } +tracing = "0.1" tracing-futures = { path = "../tracing-futures" } futures = "0.1" tower-service = "0.2" diff --git a/tracing-tower/Cargo.toml b/tracing-tower/Cargo.toml index d990b752..53dfece7 100644 --- a/tracing-tower/Cargo.toml +++ b/tracing-tower/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Eliza Weisman "] edition = "2018" [dependencies] -tracing = { version = "0.1", path = "../tracing" } +tracing = "0.1" tracing-futures = { path = "../tracing-futures" } futures = "0.1" tower-service = "0.2"