diff --git a/Cargo.lock b/Cargo.lock index 3447bed57ac3..9536fb89247f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -11014,9 +11014,9 @@ checksum = "360dfd1d6d30e05fda32ace2c8c70e9c0a9da713275777f5a4dbb8a1893930c6" [[package]] name = "tracing" -version = "0.1.30" +version = "0.1.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2d8d93354fe2a8e50d5953f5ae2e47a3fc2ef03292e7ea46e3cc38f549525fb9" +checksum = "f6c650a8ef0cd2dd93736f033d21cbd1224c5a967aa0c258d00fcf7dafef9b9f" dependencies = [ "cfg-if 1.0.0", "log", diff --git a/node/collation-generation/Cargo.toml b/node/collation-generation/Cargo.toml index 5a38feca86fb..09cc647e441c 100644 --- a/node/collation-generation/Cargo.toml +++ b/node/collation-generation/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" [dependencies] futures = "0.3.21" -tracing = "0.1.30" +tracing = "0.1.31" polkadot-erasure-coding = { path = "../../erasure-coding" } polkadot-node-primitives = { path = "../primitives" } polkadot-node-subsystem = { path = "../subsystem" } diff --git a/node/core/approval-voting/Cargo.toml b/node/core/approval-voting/Cargo.toml index 501e6f320278..a328dec18d50 100644 --- a/node/core/approval-voting/Cargo.toml +++ b/node/core/approval-voting/Cargo.toml @@ -8,7 +8,7 @@ edition = "2018" futures = "0.3.21" futures-timer = "3.0.2" parity-scale-codec = { version = "2.3.1", default-features = false, features = ["bit-vec", "derive"] } -tracing = "0.1.30" +tracing = "0.1.31" bitvec = { version = "0.20.1", default-features = false, features = ["alloc"] } lru = "0.7" merlin = "2.0" diff --git a/node/core/av-store/Cargo.toml b/node/core/av-store/Cargo.toml index c50fc3af2e4c..4c79fc9fcff5 100644 --- a/node/core/av-store/Cargo.toml +++ b/node/core/av-store/Cargo.toml @@ -9,7 +9,7 @@ futures = "0.3.21" futures-timer = "3.0.2" kvdb = "0.10.0" thiserror = "1.0.30" -tracing = "0.1.30" +tracing = "0.1.31" bitvec = "0.20.1" parity-scale-codec = { version = "2.3.1", features = ["derive"] } diff --git a/node/core/backing/Cargo.toml b/node/core/backing/Cargo.toml index 82dab678f855..0bc7ff04c1c3 100644 --- a/node/core/backing/Cargo.toml +++ b/node/core/backing/Cargo.toml @@ -14,7 +14,7 @@ polkadot-node-subsystem-util = { path = "../../subsystem-util" } erasure-coding = { package = "polkadot-erasure-coding", path = "../../../erasure-coding" } statement-table = { package = "polkadot-statement-table", path = "../../../statement-table" } bitvec = { version = "0.20.1", default-features = false, features = ["alloc"] } -tracing = "0.1.30" +tracing = "0.1.31" thiserror = "1.0.30" [dev-dependencies] diff --git a/node/core/bitfield-signing/Cargo.toml b/node/core/bitfield-signing/Cargo.toml index 0828547a9f45..60501a3137a7 100644 --- a/node/core/bitfield-signing/Cargo.toml +++ b/node/core/bitfield-signing/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" [dependencies] futures = "0.3.21" -tracing = "0.1.30" +tracing = "0.1.31" polkadot-primitives = { path = "../../../primitives" } polkadot-node-subsystem = { path = "../../subsystem" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } diff --git a/node/core/candidate-validation/Cargo.toml b/node/core/candidate-validation/Cargo.toml index 1425b94a1cf2..ab0fbccf1268 100644 --- a/node/core/candidate-validation/Cargo.toml +++ b/node/core/candidate-validation/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] async-trait = "0.1.52" futures = "0.3.21" -tracing = "0.1.30" +tracing = "0.1.31" sp-maybe-compressed-blob = { package = "sp-maybe-compressed-blob", git = "https://github.com/paritytech/substrate", branch = "master" } parity-scale-codec = { version = "2.3.1", default-features = false, features = ["bit-vec", "derive"] } diff --git a/node/core/chain-api/Cargo.toml b/node/core/chain-api/Cargo.toml index 084536ca1751..ecac94abcb46 100644 --- a/node/core/chain-api/Cargo.toml +++ b/node/core/chain-api/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" [dependencies] futures = "0.3.21" -tracing = "0.1.30" +tracing = "0.1.31" sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } polkadot-primitives = { path = "../../../primitives" } polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsystem" } diff --git a/node/core/chain-selection/Cargo.toml b/node/core/chain-selection/Cargo.toml index fc1050bd05c8..38544cf0574c 100644 --- a/node/core/chain-selection/Cargo.toml +++ b/node/core/chain-selection/Cargo.toml @@ -8,7 +8,7 @@ edition = "2018" [dependencies] futures = "0.3.21" futures-timer = "3" -tracing = "0.1.30" +tracing = "0.1.31" polkadot-primitives = { path = "../../../primitives" } polkadot-node-primitives = { path = "../../primitives" } polkadot-node-subsystem = { path = "../../subsystem" } diff --git a/node/core/dispute-coordinator/Cargo.toml b/node/core/dispute-coordinator/Cargo.toml index 0a60fe631ceb..686441352bbe 100644 --- a/node/core/dispute-coordinator/Cargo.toml +++ b/node/core/dispute-coordinator/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" [dependencies] futures = "0.3.21" -tracing = "0.1.30" +tracing = "0.1.31" parity-scale-codec = "2" kvdb = "0.10.0" thiserror = "1.0.30" diff --git a/node/core/parachains-inherent/Cargo.toml b/node/core/parachains-inherent/Cargo.toml index 465dccf844e5..a050d4a6974e 100644 --- a/node/core/parachains-inherent/Cargo.toml +++ b/node/core/parachains-inherent/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] futures = "0.3.21" futures-timer = "3.0.2" -tracing = "0.1.30" +tracing = "0.1.31" thiserror = "1.0.30" async-trait = "0.1.52" polkadot-node-subsystem = { path = "../../subsystem" } diff --git a/node/core/provisioner/Cargo.toml b/node/core/provisioner/Cargo.toml index 002ea24018cc..1fbe9f83bef8 100644 --- a/node/core/provisioner/Cargo.toml +++ b/node/core/provisioner/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] bitvec = { version = "0.20.1", default-features = false, features = ["alloc"] } futures = "0.3.21" -tracing = "0.1.30" +tracing = "0.1.31" thiserror = "1.0.30" polkadot-primitives = { path = "../../../primitives" } polkadot-node-primitives = { path = "../../primitives" } diff --git a/node/core/pvf-checker/Cargo.toml b/node/core/pvf-checker/Cargo.toml index 1dc2289991eb..efb3b1d2ac0a 100644 --- a/node/core/pvf-checker/Cargo.toml +++ b/node/core/pvf-checker/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] futures = "0.3.21" thiserror = "1.0.30" -tracing = "0.1.30" +tracing = "0.1.31" polkadot-node-primitives = { path = "../../primitives" } polkadot-node-subsystem = { path = "../../subsystem" } diff --git a/node/core/pvf/Cargo.toml b/node/core/pvf/Cargo.toml index 0e770930f943..ee486b3c66dd 100644 --- a/node/core/pvf/Cargo.toml +++ b/node/core/pvf/Cargo.toml @@ -16,7 +16,7 @@ assert_matches = "1.4.0" futures = "0.3.21" futures-timer = "3.0.2" slotmap = "1.0" -tracing = "0.1.30" +tracing = "0.1.31" pin-project = "1.0.9" rand = "0.8.5" parity-scale-codec = { version = "2.3.1", default-features = false, features = ["derive"] } diff --git a/node/core/runtime-api/Cargo.toml b/node/core/runtime-api/Cargo.toml index 65bb38af421e..143d7b5dca9a 100644 --- a/node/core/runtime-api/Cargo.toml +++ b/node/core/runtime-api/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" [dependencies] futures = "0.3.21" -tracing = "0.1.30" +tracing = "0.1.31" memory-lru = "0.1.0" parity-util-mem = { version = "0.10.0", default-features = false } diff --git a/node/malus/Cargo.toml b/node/malus/Cargo.toml index 960520b4875f..8b72a4a6feac 100644 --- a/node/malus/Cargo.toml +++ b/node/malus/Cargo.toml @@ -31,7 +31,7 @@ sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "maste clap = { version = "3.0", features = ["derive"] } futures = "0.3.21" futures-timer = "3.0.2" -tracing = "0.1.30" +tracing = "0.1.31" [features] default = [] diff --git a/node/metered-channel/Cargo.toml b/node/metered-channel/Cargo.toml index 3a0463731c54..2d21321130b7 100644 --- a/node/metered-channel/Cargo.toml +++ b/node/metered-channel/Cargo.toml @@ -9,7 +9,7 @@ description = "Channels with attached Meters" futures = "0.3.21" futures-timer = "3.0.2" derive_more = "0.99" -tracing = "0.1.30" +tracing = "0.1.31" thiserror = "1.0.30" [dev-dependencies] @@ -17,4 +17,4 @@ futures = { version = "0.3.21", features = ["thread-pool"] } assert_matches = "1.5" env_logger = "0.9" log = "0.4" -tracing = { version = "0.1.30", features = ["log"] } +tracing = { version = "0.1.31", features = ["log"] } diff --git a/node/metrics/Cargo.toml b/node/metrics/Cargo.toml index 822bd54e0120..4c0ad72bad2f 100644 --- a/node/metrics/Cargo.toml +++ b/node/metrics/Cargo.toml @@ -8,7 +8,7 @@ description = "Subsystem metric helpers" [dependencies] futures = "0.3.21" futures-timer = "3.0.2" -tracing = "0.1.30" +tracing = "0.1.31" metered-channel = { path = "../metered-channel" } diff --git a/node/network/approval-distribution/Cargo.toml b/node/network/approval-distribution/Cargo.toml index ab1b8717f6ce..83e628663767 100644 --- a/node/network/approval-distribution/Cargo.toml +++ b/node/network/approval-distribution/Cargo.toml @@ -12,7 +12,7 @@ polkadot-node-subsystem-util = { path = "../../subsystem-util" } polkadot-primitives = { path = "../../../primitives" } futures = "0.3.21" -tracing = "0.1.30" +tracing = "0.1.31" [dev-dependencies] sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", features = ["std"] } diff --git a/node/network/availability-distribution/Cargo.toml b/node/network/availability-distribution/Cargo.toml index 3813f33f0495..41e8d4d40195 100644 --- a/node/network/availability-distribution/Cargo.toml +++ b/node/network/availability-distribution/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" [dependencies] futures = "0.3.21" -tracing = "0.1.30" +tracing = "0.1.31" parity-scale-codec = { version = "2.3.1", features = ["std"] } polkadot-primitives = { path = "../../../primitives" } polkadot-erasure-coding = { path = "../../../erasure-coding" } diff --git a/node/network/availability-recovery/Cargo.toml b/node/network/availability-recovery/Cargo.toml index 2df7405dc16d..70756fefdab8 100644 --- a/node/network/availability-recovery/Cargo.toml +++ b/node/network/availability-recovery/Cargo.toml @@ -9,7 +9,7 @@ futures = "0.3.21" lru = "0.7.2" rand = "0.8.5" thiserror = "1.0.30" -tracing = "0.1.30" +tracing = "0.1.31" polkadot-erasure-coding = { path = "../../../erasure-coding" } polkadot-primitives = { path = "../../../primitives" } diff --git a/node/network/bitfield-distribution/Cargo.toml b/node/network/bitfield-distribution/Cargo.toml index 5bf1eef3753d..346a26353cb1 100644 --- a/node/network/bitfield-distribution/Cargo.toml +++ b/node/network/bitfield-distribution/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" [dependencies] futures = "0.3.21" -tracing = "0.1.30" +tracing = "0.1.31" polkadot-primitives = { path = "../../../primitives" } polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsystem" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } diff --git a/node/network/bridge/Cargo.toml b/node/network/bridge/Cargo.toml index 0f51e647e686..4062d463b8a7 100644 --- a/node/network/bridge/Cargo.toml +++ b/node/network/bridge/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] async-trait = "0.1.52" futures = "0.3.21" -tracing = "0.1.30" +tracing = "0.1.31" polkadot-primitives = { path = "../../../primitives" } parity-scale-codec = { version = "2.3.1", default-features = false, features = ["derive"] } sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/node/network/collator-protocol/Cargo.toml b/node/network/collator-protocol/Cargo.toml index cc14ecc08c01..21ec6620cbf4 100644 --- a/node/network/collator-protocol/Cargo.toml +++ b/node/network/collator-protocol/Cargo.toml @@ -10,7 +10,7 @@ derive_more = "0.99.17" futures = "0.3.21" futures-timer = "3" thiserror = "1.0.30" -tracing = "0.1.30" +tracing = "0.1.31" sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/node/network/dispute-distribution/Cargo.toml b/node/network/dispute-distribution/Cargo.toml index 4f995111ab16..7c2f0436d6da 100644 --- a/node/network/dispute-distribution/Cargo.toml +++ b/node/network/dispute-distribution/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" [dependencies] futures = "0.3.21" -tracing = "0.1.30" +tracing = "0.1.31" derive_more = "0.99.17" parity-scale-codec = { version = "2.3.1", features = ["std"] } polkadot-primitives = { path = "../../../primitives" } diff --git a/node/network/gossip-support/Cargo.toml b/node/network/gossip-support/Cargo.toml index 8deeb67ecada..221f6de7bd2b 100644 --- a/node/network/gossip-support/Cargo.toml +++ b/node/network/gossip-support/Cargo.toml @@ -19,7 +19,7 @@ futures = "0.3.21" futures-timer = "3.0.2" rand = { version = "0.8.5", default-features = false } rand_chacha = { version = "0.3.1", default-features = false } -tracing = "0.1.30" +tracing = "0.1.31" [dev-dependencies] sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/node/network/statement-distribution/Cargo.toml b/node/network/statement-distribution/Cargo.toml index 7a74c1c1e3b5..4a3a06a25a96 100644 --- a/node/network/statement-distribution/Cargo.toml +++ b/node/network/statement-distribution/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] futures = "0.3.21" -tracing = "0.1.30" +tracing = "0.1.31" polkadot-primitives = { path = "../../../primitives" } sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/node/overseer/Cargo.toml b/node/overseer/Cargo.toml index b758a53a3c6f..4392b6997d6f 100644 --- a/node/overseer/Cargo.toml +++ b/node/overseer/Cargo.toml @@ -16,7 +16,7 @@ polkadot-node-subsystem-types = { path = "../subsystem-types" } polkadot-node-metrics = { path = "../metrics" } polkadot-primitives = { path = "../../primitives" } polkadot-overseer-gen = { path = "./overseer-gen" } -tracing = "0.1.30" +tracing = "0.1.31" lru = "0.7" parity-util-mem = { version = ">= 0.10.1", default-features = false } diff --git a/node/service/Cargo.toml b/node/service/Cargo.toml index 84c68136ffc9..b06b59339e8b 100644 --- a/node/service/Cargo.toml +++ b/node/service/Cargo.toml @@ -63,7 +63,7 @@ prometheus-endpoint = { package = "substrate-prometheus-endpoint", git = "https: # External Crates futures = "0.3.21" hex-literal = "0.3.4" -tracing = "0.1.30" +tracing = "0.1.31" serde = { version = "1.0.136", features = ["derive"] } thiserror = "1.0.30" kvdb = "0.10.0" diff --git a/node/subsystem-util/Cargo.toml b/node/subsystem-util/Cargo.toml index 5d591d2e1c8f..7b2596a5ac25 100644 --- a/node/subsystem-util/Cargo.toml +++ b/node/subsystem-util/Cargo.toml @@ -13,7 +13,7 @@ parity-scale-codec = { version = "2.3.1", default-features = false, features = [ pin-project = "1.0.9" rand = "0.8.5" thiserror = "1.0.30" -tracing = "0.1.30" +tracing = "0.1.31" derive_more = "0.99.17" lru = "0.7.2" diff --git a/node/test/service/Cargo.toml b/node/test/service/Cargo.toml index 3b262b6214b8..98aaf24bf5a6 100644 --- a/node/test/service/Cargo.toml +++ b/node/test/service/Cargo.toml @@ -8,7 +8,7 @@ edition = "2018" futures = "0.3.21" futures01 = { package = "futures", version = "0.1.29" } hex = "0.4.3" -tracing = "0.1.30" +tracing = "0.1.31" rand = "0.8.5" tempfile = "3.2.0" tokio = "1.16.1" diff --git a/node/zombienet-backchannel/Cargo.toml b/node/zombienet-backchannel/Cargo.toml index 1e585579226b..aa5313509d0b 100644 --- a/node/zombienet-backchannel/Cargo.toml +++ b/node/zombienet-backchannel/Cargo.toml @@ -17,6 +17,6 @@ lazy_static = "1.4.0" parity-scale-codec = { version = "2.3.1", features = ["derive"] } reqwest = "0.11" thiserror = "1.0.30" -tracing = "0.1.30" +tracing = "0.1.31" serde = { version = "1.0", features = ["derive"] } serde_json = "1"