From 8f2517b06edbf8c914993763bee905177dedddfe Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 11 Mar 2021 14:04:47 +0100 Subject: [PATCH] Bump tracing from 0.1.22 to 0.1.25 (#8263) Bumps [tracing](https://github.com/tokio-rs/tracing) from 0.1.22 to 0.1.25. - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-0.1.22...tracing-0.1.25) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- substrate/Cargo.lock | 8 ++++---- substrate/client/executor/Cargo.toml | 2 +- substrate/client/service/Cargo.toml | 2 +- substrate/client/tracing/Cargo.toml | 2 +- substrate/primitives/io/Cargo.toml | 2 +- substrate/primitives/runtime-interface/test/Cargo.toml | 2 +- substrate/primitives/tracing/Cargo.toml | 2 +- 7 files changed, 10 insertions(+), 10 deletions(-) diff --git a/substrate/Cargo.lock b/substrate/Cargo.lock index ffdb78686c..25bcac940d 100644 --- a/substrate/Cargo.lock +++ b/substrate/Cargo.lock @@ -9969,9 +9969,9 @@ checksum = "360dfd1d6d30e05fda32ace2c8c70e9c0a9da713275777f5a4dbb8a1893930c6" [[package]] name = "tracing" -version = "0.1.22" +version = "0.1.25" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9f47026cdc4080c07e49b37087de021820269d996f581aac150ef9e5583eefe3" +checksum = "01ebdc2bb4498ab1ab5f5b73c5803825e60199229ccba0698170e3be0e7f959f" dependencies = [ "cfg-if 1.0.0", "log", @@ -9982,9 +9982,9 @@ dependencies = [ [[package]] name = "tracing-attributes" -version = "0.1.11" +version = "0.1.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "80e0ccfc3378da0cce270c946b676a376943f5cd16aeba64568e7939806f4ada" +checksum = "41768be5b9f3489491825f56f01f25290aa1d3e7cc97e182d4d34360493ba6fa" dependencies = [ "proc-macro2", "quote", diff --git a/substrate/client/executor/Cargo.toml b/substrate/client/executor/Cargo.toml index e0b21b7fb6..f678029d06 100644 --- a/substrate/client/executor/Cargo.toml +++ b/substrate/client/executor/Cargo.toml @@ -47,7 +47,7 @@ sp-state-machine = { version = "0.9.0", path = "../../primitives/state-machine" sp-runtime = { version = "3.0.0", path = "../../primitives/runtime" } sp-tracing = { version = "3.0.0", path = "../../primitives/tracing" } sc-tracing = { version = "3.0.0", path = "../tracing" } -tracing = "0.1.22" +tracing = "0.1.25" tracing-subscriber = "0.2.15" paste = "1.0" diff --git a/substrate/client/service/Cargo.toml b/substrate/client/service/Cargo.toml index d402564be7..6ce1ed8b34 100644 --- a/substrate/client/service/Cargo.toml +++ b/substrate/client/service/Cargo.toml @@ -75,7 +75,7 @@ sc-offchain = { version = "3.0.0", path = "../offchain" } prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus", version = "0.9.0"} sc-tracing = { version = "3.0.0", path = "../tracing" } sp-tracing = { version = "3.0.0", path = "../../primitives/tracing" } -tracing = "0.1.22" +tracing = "0.1.25" tracing-futures = { version = "0.2.4" } parity-util-mem = { version = "0.9.0", default-features = false, features = ["primitive-types"] } diff --git a/substrate/client/tracing/Cargo.toml b/substrate/client/tracing/Cargo.toml index a119fb48b3..d84f89b9bc 100644 --- a/substrate/client/tracing/Cargo.toml +++ b/substrate/client/tracing/Cargo.toml @@ -25,7 +25,7 @@ rustc-hash = "1.1.0" serde = "1.0.101" serde_json = "1.0.41" thiserror = "1.0.21" -tracing = "0.1.22" +tracing = "0.1.25" tracing-core = "0.1.17" tracing-log = "0.1.1" tracing-subscriber = "0.2.15" diff --git a/substrate/primitives/io/Cargo.toml b/substrate/primitives/io/Cargo.toml index f87711b172..cbbda1807c 100644 --- a/substrate/primitives/io/Cargo.toml +++ b/substrate/primitives/io/Cargo.toml @@ -30,7 +30,7 @@ sp-tracing = { version = "3.0.0", default-features = false, path = "../tracing" log = { version = "0.4.8", optional = true } futures = { version = "0.3.1", features = ["thread-pool"], optional = true } parking_lot = { version = "0.11.1", optional = true } -tracing = { version = "0.1.22", default-features = false } +tracing = { version = "0.1.25", default-features = false } tracing-core = { version = "0.1.17", default-features = false} [features] diff --git a/substrate/primitives/runtime-interface/test/Cargo.toml b/substrate/primitives/runtime-interface/test/Cargo.toml index f25183f021..8b6c9cbe5d 100644 --- a/substrate/primitives/runtime-interface/test/Cargo.toml +++ b/substrate/primitives/runtime-interface/test/Cargo.toml @@ -20,5 +20,5 @@ sp-state-machine = { version = "0.9.0", path = "../../state-machine" } sp-runtime = { version = "3.0.0", path = "../../runtime" } sp-core = { version = "3.0.0", path = "../../core" } sp-io = { version = "3.0.0", path = "../../io" } -tracing = "0.1.22" +tracing = "0.1.25" tracing-core = "0.1.17" diff --git a/substrate/primitives/tracing/Cargo.toml b/substrate/primitives/tracing/Cargo.toml index 13804353ec..4fc70bd1b7 100644 --- a/substrate/primitives/tracing/Cargo.toml +++ b/substrate/primitives/tracing/Cargo.toml @@ -20,7 +20,7 @@ targets = ["x86_64-unknown-linux-gnu", "wasm32-unknown-unknown"] [dependencies] sp-std = { version = "3.0.0", path = "../std", default-features = false} codec = { version = "2.0.0", package = "parity-scale-codec", default-features = false, features = ["derive"]} -tracing = { version = "0.1.22", default-features = false } +tracing = { version = "0.1.25", default-features = false } tracing-core = { version = "0.1.17", default-features = false } log = { version = "0.4.8", optional = true } tracing-subscriber = { version = "0.2.15", optional = true, features = ["tracing-log"] }