update crates to depend on core from crates.io (#113)

This branch updates `tracing`, `tracing-fmt`, and `tracing-log`
to depend on `tracing-core` 0.1 from crates.io.

Signed-off-by: Eliza Weisman <eliza@buoyant.io>
This commit is contained in:
Eliza Weisman 2019-06-27 17:05:18 -07:00 committed by GitHub
parent 3829901112
commit 1c6b4388d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -8,7 +8,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"

View File

@ -4,6 +4,6 @@ version = "0.0.1"
authors = ["Eliza Weisman <eliza@buoyant.io>"]
[dependencies]
tracing-core = { version = "0.1", path = "../tracing-core" }
tracing-core = "0.1"
tracing-subscriber = { path = "../tracing-subscriber" }
log = "0.4"

View File

@ -22,7 +22,7 @@ categories = ["development-tools::debugging", "asynchronous"]
keywords = ["logging", "tracing"]
[dependencies]
tracing-core = { path = "../tracing-core" }
tracing-core = "0.1"
log = { version = "0.4", optional = true }
cfg-if = "0.1.7"