build(deps): bump tracing-subscriber from 0.2.10 to 0.2.11 (#873)

Bumps [tracing-subscriber](https://github.com/tokio-rs/tracing) from 0.2.10 to 0.2.11.
- [Release notes](https://github.com/tokio-rs/tracing/releases)
- [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.2.10...tracing-subscriber-0.2.11)

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
dependabot[bot] 2020-08-11 10:30:50 -07:00 committed by GitHub
parent 69ab12a4bb
commit 945b019739
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 13 additions and 12 deletions

17
Cargo.lock generated
View File

@ -2618,7 +2618,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b4d7c0b83d4a500748fa5879461652b361edf5c9d51ede2a2ac03875ca185e24"
dependencies = [
"tracing",
"tracing-subscriber 0.2.10",
"tracing-subscriber 0.2.11",
]
[[package]]
@ -2629,7 +2629,7 @@ checksum = "bd520fe41c667b437952383f3a1ec14f1fa45d653f719a77eedd6e6a02d8fa54"
dependencies = [
"lazy_static",
"tracing",
"tracing-subscriber 0.2.10",
"tracing-subscriber 0.2.11",
]
[[package]]
@ -2682,9 +2682,9 @@ dependencies = [
[[package]]
name = "tracing-subscriber"
version = "0.2.10"
version = "0.2.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f7b33f8b2ef2ab0c3778c12646d9c42a24f7772bee4cdafc72199644a9f58fdc"
checksum = "abd165311cc4d7a555ad11cc77a37756df836182db0d81aac908c8184c584f40"
dependencies = [
"ansi_term 0.12.1",
"chrono",
@ -2695,6 +2695,7 @@ dependencies = [
"serde_json",
"sharded-slab",
"smallvec 1.4.1",
"thread_local",
"tracing-core",
"tracing-log",
"tracing-serde",
@ -2920,7 +2921,7 @@ dependencies = [
"tracing",
"tracing-error",
"tracing-futures",
"tracing-subscriber 0.2.10",
"tracing-subscriber 0.2.11",
"zebra-chain",
"zebra-state",
"zebra-test",
@ -3004,7 +3005,7 @@ dependencies = [
"tower",
"tracing",
"tracing-error",
"tracing-subscriber 0.2.10",
"tracing-subscriber 0.2.11",
]
[[package]]
@ -3017,7 +3018,7 @@ dependencies = [
"serde_json",
"structopt",
"tracing-error",
"tracing-subscriber 0.2.10",
"tracing-subscriber 0.2.11",
"zebra-chain",
"zebra-consensus",
]
@ -3047,7 +3048,7 @@ dependencies = [
"tracing-error",
"tracing-flame",
"tracing-futures",
"tracing-subscriber 0.2.10",
"tracing-subscriber 0.2.11",
"zebra-chain",
"zebra-consensus",
"zebra-network",

View File

@ -31,6 +31,6 @@ rand = "0.7"
spandoc = "0.2"
tokio = { version = "0.2", features = ["full"] }
tracing-error = "0.1.2"
tracing-subscriber = "0.2.10"
tracing-subscriber = "0.2.11"
zebra-test = { path = "../zebra-test/" }

View File

@ -14,7 +14,7 @@ tower = "0.3.1"
futures = "0.3.5"
color-eyre = "0.5"
tracing = "0.1.19"
tracing-subscriber = "0.2.10"
tracing-subscriber = "0.2.11"
tracing-error = "0.1.2"
tempdir = "0.3.7"
spandoc = "0.2.0"

View File

@ -12,7 +12,7 @@ color-eyre = "0.5.1"
hex = "0.4"
serde_json = "1.0"
tracing-error = { version = "0.1.2", features = ["traced-error"] }
tracing-subscriber = { version = "0.2.10", features = ["tracing-log"] }
tracing-subscriber = { version = "0.2.11", features = ["tracing-log"] }
zebra-chain = { path = "../zebra-chain" }
zebra-consensus = { path = "../zebra-consensus" }

View File

@ -28,7 +28,7 @@ color-eyre = "0.5"
thiserror = "1"
tracing = "0.1"
tracing-futures = "0.2"
tracing-subscriber = { version = "0.2.10", features = ["tracing-log"] }
tracing-subscriber = { version = "0.2.11", features = ["tracing-log"] }
tracing-error = "0.1.2"
metrics-runtime = "0.13"