use tracing 0.1.15 release

This commit is contained in:
Pat Hickey
2020-06-03 10:52:05 -07:00
parent 220733b974
commit 6910c1e03d
2 changed files with 11 additions and 39 deletions

48
Cargo.lock generated
View File

@@ -2108,34 +2108,14 @@ dependencies = [
[[package]]
name = "tracing"
version = "0.1.14"
source = "git+https://github.com/tokio-rs/tracing#180e494c7a13c0a18c09f3c7b465e8734c51f5e2"
version = "0.1.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a41f40ed0e162c911ac6fcb53ecdc8134c46905fdbbae8c50add462a538b495f"
dependencies = [
"cfg-if",
"log",
"tracing-attributes 0.1.8 (git+https://github.com/tokio-rs/tracing)",
"tracing-core 0.1.10 (git+https://github.com/tokio-rs/tracing)",
]
[[package]]
name = "tracing"
version = "0.1.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a7c6b59d116d218cb2d990eb06b77b64043e0268ef7323aae63d8b30ae462923"
dependencies = [
"cfg-if",
"tracing-attributes 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
"tracing-core 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "tracing-attributes"
version = "0.1.8"
source = "git+https://github.com/tokio-rs/tracing#180e494c7a13c0a18c09f3c7b465e8734c51f5e2"
dependencies = [
"proc-macro2",
"quote",
"syn",
"tracing-attributes",
"tracing-core",
]
[[package]]
@@ -2149,14 +2129,6 @@ dependencies = [
"syn",
]
[[package]]
name = "tracing-core"
version = "0.1.10"
source = "git+https://github.com/tokio-rs/tracing#180e494c7a13c0a18c09f3c7b465e8734c51f5e2"
dependencies = [
"lazy_static",
]
[[package]]
name = "tracing-core"
version = "0.1.10"
@@ -2174,7 +2146,7 @@ checksum = "5e0f8c7178e13481ff6765bd169b33e8d554c5d2bbede5e32c356194be02b9b9"
dependencies = [
"lazy_static",
"log",
"tracing-core 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
"tracing-core",
]
[[package]]
@@ -2184,7 +2156,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6ccba2f8f16e0ed268fc765d9b7ff22e965e7185d32f8f1ec8294fe17d86e79"
dependencies = [
"serde",
"tracing-core 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
"tracing-core",
]
[[package]]
@@ -2202,7 +2174,7 @@ dependencies = [
"serde_json",
"sharded-slab",
"smallvec",
"tracing-core 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
"tracing-core",
"tracing-log",
"tracing-serde",
]
@@ -2652,7 +2624,7 @@ version = "0.17.0"
dependencies = [
"proptest",
"thiserror",
"tracing 0.1.14 (git+https://github.com/tokio-rs/tracing)",
"tracing",
"wiggle-macro",
"wiggle-test",
"witx",
@@ -2688,7 +2660,7 @@ dependencies = [
"env_logger 0.7.1",
"proptest",
"thiserror",
"tracing 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)",
"tracing",
"tracing-subscriber",
"wiggle",
]

View File

@@ -14,7 +14,7 @@ include = ["src/**/*", "LICENSE"]
thiserror = "1"
witx = { path = "../wasi-common/WASI/tools/witx", version = "0.8.5", optional = true }
wiggle-macro = { path = "macro", version = "0.17.0" }
tracing = { git = "https://github.com/tokio-rs/tracing" }
tracing = "0.1.15"
[badges]
maintenance = { status = "actively-developed" }