diff --git a/Cargo.lock b/Cargo.lock index 68272e1df9c8c..bc8dd13848caf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4179,15 +4179,6 @@ version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4" -[[package]] -name = "matchers" -version = "0.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f099785f7595cc4b4553a174ce30dd7589ef93391ff414dbb67f62392b9e0ce1" -dependencies = [ - "regex-automata", -] - [[package]] name = "matches" version = "0.1.8" @@ -7481,7 +7472,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ae1ded71d66a4a97f5e961fd0cb25a5f366a42a41570d16a763a69c092c26ae4" dependencies = [ "byteorder", - "regex-syntax", ] [[package]] @@ -11076,37 +11066,19 @@ dependencies = [ "tracing-core", ] -[[package]] -name = "tracing-serde" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fb65ea441fbb84f9f6748fd496cf7f63ec9af5bca94dd86456978d055e8eb28b" -dependencies = [ - "serde", - "tracing-core", -] - [[package]] name = "tracing-subscriber" -version = "0.2.25" +version = "0.3.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0e0d2eaa99c3c2e41547cfa109e910a68ea03823cccad4a0525dcbc9b01e8c71" +checksum = "4bc28f93baff38037f64e6f43d34cfa1605f27a49c34e8a04c5e78b0babf2596" dependencies = [ "ansi_term", - "chrono", - "lazy_static", - "matchers", - "parking_lot 0.11.2", - "regex", - "serde", - "serde_json", + "parking_lot 0.12.0", "sharded-slab", "smallvec", "thread_local", - "tracing", "tracing-core", "tracing-log", - "tracing-serde", ] [[package]] diff --git a/client/executor/Cargo.toml b/client/executor/Cargo.toml index ad2288b9272d3..30bc9778d35c3 100644 --- a/client/executor/Cargo.toml +++ b/client/executor/Cargo.toml @@ -45,7 +45,7 @@ sp-state-machine = { version = "0.12.0", path = "../../primitives/state-machine" sp-runtime = { version = "6.0.0", path = "../../primitives/runtime" } sp-maybe-compressed-blob = { version = "4.1.0-dev", path = "../../primitives/maybe-compressed-blob" } sc-tracing = { version = "4.0.0-dev", path = "../tracing" } -tracing-subscriber = "0.2.19" +tracing-subscriber = "0.3.11" paste = "1.0" regex = "1.5.5" criterion = "0.3" diff --git a/client/tracing/Cargo.toml b/client/tracing/Cargo.toml index 058b718a783a4..ef2877449a839 100644 --- a/client/tracing/Cargo.toml +++ b/client/tracing/Cargo.toml @@ -27,7 +27,7 @@ serde = "1.0.136" thiserror = "1.0.30" tracing = "0.1.29" tracing-log = { version = "0.1.3", features = ["interest-cache"] } -tracing-subscriber = { version = "0.2.25", features = ["parking_lot"] } +tracing-subscriber = { version = "0.3.11", features = ["parking_lot"] } sc-client-api = { version = "4.0.0-dev", path = "../api" } sc-rpc-server = { version = "4.0.0-dev", path = "../rpc-servers" } sc-tracing-proc-macro = { version = "4.0.0-dev", path = "./proc-macro" } diff --git a/primitives/tracing/Cargo.toml b/primitives/tracing/Cargo.toml index d305b756e2d68..0b7806a7085c4 100644 --- a/primitives/tracing/Cargo.toml +++ b/primitives/tracing/Cargo.toml @@ -24,7 +24,7 @@ codec = { version = "3.0.0", package = "parity-scale-codec", default-features = ] } tracing = { version = "0.1.29", default-features = false } tracing-core = { version = "0.1.26", default-features = false } -tracing-subscriber = { version = "0.2.25", optional = true, features = [ +tracing-subscriber = { version = "0.3.11", optional = true, features = [ "tracing-log", ] }