From 6fdd026010fbe1ae8eb14fdb4065aded4e2c5301 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Fri, 18 Feb 2022 09:54:13 +0000
Subject: [PATCH] Bump tracing from 0.1.30 to 0.1.31 (#4941)

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

---
updated-dependencies:
- dependency-name: tracing
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

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

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
---
 polkadot/Cargo.lock                                        | 4 ++--
 polkadot/node/collation-generation/Cargo.toml              | 2 +-
 polkadot/node/core/approval-voting/Cargo.toml              | 2 +-
 polkadot/node/core/av-store/Cargo.toml                     | 2 +-
 polkadot/node/core/backing/Cargo.toml                      | 2 +-
 polkadot/node/core/bitfield-signing/Cargo.toml             | 2 +-
 polkadot/node/core/candidate-validation/Cargo.toml         | 2 +-
 polkadot/node/core/chain-api/Cargo.toml                    | 2 +-
 polkadot/node/core/chain-selection/Cargo.toml              | 2 +-
 polkadot/node/core/dispute-coordinator/Cargo.toml          | 2 +-
 polkadot/node/core/parachains-inherent/Cargo.toml          | 2 +-
 polkadot/node/core/provisioner/Cargo.toml                  | 2 +-
 polkadot/node/core/pvf-checker/Cargo.toml                  | 2 +-
 polkadot/node/core/pvf/Cargo.toml                          | 2 +-
 polkadot/node/core/runtime-api/Cargo.toml                  | 2 +-
 polkadot/node/malus/Cargo.toml                             | 2 +-
 polkadot/node/metered-channel/Cargo.toml                   | 4 ++--
 polkadot/node/metrics/Cargo.toml                           | 2 +-
 polkadot/node/network/approval-distribution/Cargo.toml     | 2 +-
 polkadot/node/network/availability-distribution/Cargo.toml | 2 +-
 polkadot/node/network/availability-recovery/Cargo.toml     | 2 +-
 polkadot/node/network/bitfield-distribution/Cargo.toml     | 2 +-
 polkadot/node/network/bridge/Cargo.toml                    | 2 +-
 polkadot/node/network/collator-protocol/Cargo.toml         | 2 +-
 polkadot/node/network/dispute-distribution/Cargo.toml      | 2 +-
 polkadot/node/network/gossip-support/Cargo.toml            | 2 +-
 polkadot/node/network/statement-distribution/Cargo.toml    | 2 +-
 polkadot/node/overseer/Cargo.toml                          | 2 +-
 polkadot/node/service/Cargo.toml                           | 2 +-
 polkadot/node/subsystem-util/Cargo.toml                    | 2 +-
 polkadot/node/test/service/Cargo.toml                      | 2 +-
 polkadot/node/zombienet-backchannel/Cargo.toml             | 2 +-
 32 files changed, 34 insertions(+), 34 deletions(-)

diff --git a/polkadot/Cargo.lock b/polkadot/Cargo.lock
index 3447bed57ac..9536fb89247 100644
--- a/polkadot/Cargo.lock
+++ b/polkadot/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/polkadot/node/collation-generation/Cargo.toml b/polkadot/node/collation-generation/Cargo.toml
index 5a38feca86f..09cc647e441 100644
--- a/polkadot/node/collation-generation/Cargo.toml
+++ b/polkadot/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/polkadot/node/core/approval-voting/Cargo.toml b/polkadot/node/core/approval-voting/Cargo.toml
index 501e6f32027..a328dec18d5 100644
--- a/polkadot/node/core/approval-voting/Cargo.toml
+++ b/polkadot/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/polkadot/node/core/av-store/Cargo.toml b/polkadot/node/core/av-store/Cargo.toml
index c50fc3af2e4..4c79fc9fcff 100644
--- a/polkadot/node/core/av-store/Cargo.toml
+++ b/polkadot/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/polkadot/node/core/backing/Cargo.toml b/polkadot/node/core/backing/Cargo.toml
index 82dab678f85..0bc7ff04c1c 100644
--- a/polkadot/node/core/backing/Cargo.toml
+++ b/polkadot/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/polkadot/node/core/bitfield-signing/Cargo.toml b/polkadot/node/core/bitfield-signing/Cargo.toml
index 0828547a9f4..60501a3137a 100644
--- a/polkadot/node/core/bitfield-signing/Cargo.toml
+++ b/polkadot/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/polkadot/node/core/candidate-validation/Cargo.toml b/polkadot/node/core/candidate-validation/Cargo.toml
index 1425b94a1cf..ab0fbccf126 100644
--- a/polkadot/node/core/candidate-validation/Cargo.toml
+++ b/polkadot/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/polkadot/node/core/chain-api/Cargo.toml b/polkadot/node/core/chain-api/Cargo.toml
index 084536ca175..ecac94abcb4 100644
--- a/polkadot/node/core/chain-api/Cargo.toml
+++ b/polkadot/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/polkadot/node/core/chain-selection/Cargo.toml b/polkadot/node/core/chain-selection/Cargo.toml
index fc1050bd05c..38544cf0574 100644
--- a/polkadot/node/core/chain-selection/Cargo.toml
+++ b/polkadot/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/polkadot/node/core/dispute-coordinator/Cargo.toml b/polkadot/node/core/dispute-coordinator/Cargo.toml
index 0a60fe631ce..686441352bb 100644
--- a/polkadot/node/core/dispute-coordinator/Cargo.toml
+++ b/polkadot/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/polkadot/node/core/parachains-inherent/Cargo.toml b/polkadot/node/core/parachains-inherent/Cargo.toml
index 465dccf844e..a050d4a6974 100644
--- a/polkadot/node/core/parachains-inherent/Cargo.toml
+++ b/polkadot/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/polkadot/node/core/provisioner/Cargo.toml b/polkadot/node/core/provisioner/Cargo.toml
index 002ea24018c..1fbe9f83bef 100644
--- a/polkadot/node/core/provisioner/Cargo.toml
+++ b/polkadot/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/polkadot/node/core/pvf-checker/Cargo.toml b/polkadot/node/core/pvf-checker/Cargo.toml
index 1dc2289991e..efb3b1d2ac0 100644
--- a/polkadot/node/core/pvf-checker/Cargo.toml
+++ b/polkadot/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/polkadot/node/core/pvf/Cargo.toml b/polkadot/node/core/pvf/Cargo.toml
index 0e770930f94..ee486b3c66d 100644
--- a/polkadot/node/core/pvf/Cargo.toml
+++ b/polkadot/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/polkadot/node/core/runtime-api/Cargo.toml b/polkadot/node/core/runtime-api/Cargo.toml
index 65bb38af421..143d7b5dca9 100644
--- a/polkadot/node/core/runtime-api/Cargo.toml
+++ b/polkadot/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/polkadot/node/malus/Cargo.toml b/polkadot/node/malus/Cargo.toml
index 960520b4875..8b72a4a6fea 100644
--- a/polkadot/node/malus/Cargo.toml
+++ b/polkadot/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/polkadot/node/metered-channel/Cargo.toml b/polkadot/node/metered-channel/Cargo.toml
index 3a0463731c5..2d21321130b 100644
--- a/polkadot/node/metered-channel/Cargo.toml
+++ b/polkadot/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/polkadot/node/metrics/Cargo.toml b/polkadot/node/metrics/Cargo.toml
index 822bd54e012..4c0ad72bad2 100644
--- a/polkadot/node/metrics/Cargo.toml
+++ b/polkadot/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/polkadot/node/network/approval-distribution/Cargo.toml b/polkadot/node/network/approval-distribution/Cargo.toml
index ab1b8717f6c..83e62866376 100644
--- a/polkadot/node/network/approval-distribution/Cargo.toml
+++ b/polkadot/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/polkadot/node/network/availability-distribution/Cargo.toml b/polkadot/node/network/availability-distribution/Cargo.toml
index 3813f33f049..41e8d4d4019 100644
--- a/polkadot/node/network/availability-distribution/Cargo.toml
+++ b/polkadot/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/polkadot/node/network/availability-recovery/Cargo.toml b/polkadot/node/network/availability-recovery/Cargo.toml
index 2df7405dc16..70756fefdab 100644
--- a/polkadot/node/network/availability-recovery/Cargo.toml
+++ b/polkadot/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/polkadot/node/network/bitfield-distribution/Cargo.toml b/polkadot/node/network/bitfield-distribution/Cargo.toml
index 5bf1eef3753..346a26353cb 100644
--- a/polkadot/node/network/bitfield-distribution/Cargo.toml
+++ b/polkadot/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/polkadot/node/network/bridge/Cargo.toml b/polkadot/node/network/bridge/Cargo.toml
index 0f51e647e68..4062d463b8a 100644
--- a/polkadot/node/network/bridge/Cargo.toml
+++ b/polkadot/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/polkadot/node/network/collator-protocol/Cargo.toml b/polkadot/node/network/collator-protocol/Cargo.toml
index cc14ecc08c0..21ec6620cbf 100644
--- a/polkadot/node/network/collator-protocol/Cargo.toml
+++ b/polkadot/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/polkadot/node/network/dispute-distribution/Cargo.toml b/polkadot/node/network/dispute-distribution/Cargo.toml
index 4f995111ab1..7c2f0436d6d 100644
--- a/polkadot/node/network/dispute-distribution/Cargo.toml
+++ b/polkadot/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/polkadot/node/network/gossip-support/Cargo.toml b/polkadot/node/network/gossip-support/Cargo.toml
index 8deeb67ecad..221f6de7bd2 100644
--- a/polkadot/node/network/gossip-support/Cargo.toml
+++ b/polkadot/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/polkadot/node/network/statement-distribution/Cargo.toml b/polkadot/node/network/statement-distribution/Cargo.toml
index 7a74c1c1e3b..4a3a06a25a9 100644
--- a/polkadot/node/network/statement-distribution/Cargo.toml
+++ b/polkadot/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/polkadot/node/overseer/Cargo.toml b/polkadot/node/overseer/Cargo.toml
index b758a53a3c6..4392b6997d6 100644
--- a/polkadot/node/overseer/Cargo.toml
+++ b/polkadot/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/polkadot/node/service/Cargo.toml b/polkadot/node/service/Cargo.toml
index 84c68136ffc..b06b59339e8 100644
--- a/polkadot/node/service/Cargo.toml
+++ b/polkadot/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/polkadot/node/subsystem-util/Cargo.toml b/polkadot/node/subsystem-util/Cargo.toml
index 5d591d2e1c8..7b2596a5ac2 100644
--- a/polkadot/node/subsystem-util/Cargo.toml
+++ b/polkadot/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/polkadot/node/test/service/Cargo.toml b/polkadot/node/test/service/Cargo.toml
index 3b262b6214b..98aaf24bf5a 100644
--- a/polkadot/node/test/service/Cargo.toml
+++ b/polkadot/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/polkadot/node/zombienet-backchannel/Cargo.toml b/polkadot/node/zombienet-backchannel/Cargo.toml
index 1e585579226..aa5313509d0 100644
--- a/polkadot/node/zombienet-backchannel/Cargo.toml
+++ b/polkadot/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"
-- 
GitLab