diff --git a/Cargo.lock b/Cargo.lock index 524da639751e..365460778c3b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -299,7 +299,7 @@ dependencies = [ "memchr", "num_cpus", "once_cell", - "pin-project-lite", + "pin-project-lite 0.1.7", "pin-utils", "slab", "wasm-bindgen-futures", @@ -1760,7 +1760,7 @@ dependencies = [ "futures-io", "memchr", "parking", - "pin-project-lite", + "pin-project-lite 0.1.7", "waker-fn", ] @@ -4661,6 +4661,12 @@ version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "282adbf10f2698a7a77f8e983a74b2d18176c19a7fd32a45446139ae7b02b715" +[[package]] +name = "pin-project-lite" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6b063f57ec186e6140e2b8b6921e5f1bd89c7356dda5b33acc5401203ca6131c" + [[package]] name = "pin-utils" version = "0.1.0" @@ -5929,7 +5935,7 @@ checksum = "77de3c815e5a160b1539c6592796801df2043ae35e123b46d73380cfa57af858" dependencies = [ "futures-core", "futures-sink", - "pin-project-lite", + "pin-project-lite 0.1.7", ] [[package]] @@ -9001,7 +9007,7 @@ dependencies = [ "mio", "mio-uds", "num_cpus", - "pin-project-lite", + "pin-project-lite 0.1.7", "signal-hook-registry", "slab", "tokio-macros", @@ -9232,7 +9238,7 @@ dependencies = [ "futures-core", "futures-sink", "log", - "pin-project-lite", + "pin-project-lite 0.1.7", "tokio 0.2.21", ] @@ -9253,12 +9259,12 @@ checksum = "e987b6bf443f4b5b3b6f38704195592cca41c5bb7aedd3c3693c7081f8289860" [[package]] name = "tracing" -version = "0.1.21" +version = "0.1.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b0987850db3733619253fe60e17cb59b82d37c7e6c0236bb81e4d6b87c879f27" +checksum = "9f47026cdc4080c07e49b37087de021820269d996f581aac150ef9e5583eefe3" dependencies = [ - "cfg-if 0.1.10", - "pin-project-lite", + "cfg-if 1.0.0", + "pin-project-lite 0.2.0", "tracing-attributes", "tracing-core", ] diff --git a/node/collation-generation/Cargo.toml b/node/collation-generation/Cargo.toml index 68a23947f540..fa19ddec4aea 100644 --- a/node/collation-generation/Cargo.toml +++ b/node/collation-generation/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" [dependencies] futures = "0.3.8" -tracing = "0.1.21" +tracing = "0.1.22" tracing-futures = "0.2.4" polkadot-erasure-coding = { path = "../../erasure-coding" } polkadot-node-primitives = { path = "../primitives" } diff --git a/node/core/av-store/Cargo.toml b/node/core/av-store/Cargo.toml index 4e20f8117103..210d3f8d88e7 100644 --- a/node/core/av-store/Cargo.toml +++ b/node/core/av-store/Cargo.toml @@ -10,7 +10,7 @@ futures-timer = "3.0.2" kvdb = "0.7.0" kvdb-rocksdb = "0.9.1" thiserror = "1.0.22" -tracing = "0.1.21" +tracing = "0.1.22" tracing-futures = "0.2.4" parity-scale-codec = { version = "1.3.5", features = ["derive"] } diff --git a/node/core/backing/Cargo.toml b/node/core/backing/Cargo.toml index 9368ee0633db..f56ef9c27450 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.17.4", default-features = false, features = ["alloc"] } -tracing = "0.1.21" +tracing = "0.1.22" tracing-futures = "0.2.4" thiserror = "1.0.22" diff --git a/node/core/bitfield-signing/Cargo.toml b/node/core/bitfield-signing/Cargo.toml index 9763bc2b88df..1d60d85eb886 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.8" -tracing = "0.1.21" +tracing = "0.1.22" tracing-futures = "0.2.4" polkadot-primitives = { path = "../../../primitives" } polkadot-node-subsystem = { path = "../../subsystem" } diff --git a/node/core/candidate-selection/Cargo.toml b/node/core/candidate-selection/Cargo.toml index 642a38d72831..3d988e21e0c3 100644 --- a/node/core/candidate-selection/Cargo.toml +++ b/node/core/candidate-selection/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" [dependencies] futures = "0.3.8" -tracing = "0.1.21" +tracing = "0.1.22" tracing-futures = "0.2.4" thiserror = "1.0.22" polkadot-primitives = { path = "../../../primitives" } diff --git a/node/core/candidate-validation/Cargo.toml b/node/core/candidate-validation/Cargo.toml index 4965e3b57337..456a8d7f9619 100644 --- a/node/core/candidate-validation/Cargo.toml +++ b/node/core/candidate-validation/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" [dependencies] futures = "0.3.8" -tracing = "0.1.21" +tracing = "0.1.22" tracing-futures = "0.2.4" sp-core = { package = "sp-core", git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/node/core/chain-api/Cargo.toml b/node/core/chain-api/Cargo.toml index fda7dd17f239..43256704c2bf 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.8" -tracing = "0.1.21" +tracing = "0.1.22" tracing-futures = "0.2.4" sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } polkadot-primitives = { path = "../../../primitives" } diff --git a/node/core/proposer/Cargo.toml b/node/core/proposer/Cargo.toml index 68b0c1ca802f..a846238c57c8 100644 --- a/node/core/proposer/Cargo.toml +++ b/node/core/proposer/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] futures = "0.3.8" futures-timer = "3.0.2" -tracing = "0.1.21" +tracing = "0.1.22" polkadot-node-subsystem = { path = "../../subsystem" } polkadot-overseer = { path = "../../overseer" } polkadot-primitives = { path = "../../../primitives" } diff --git a/node/core/provisioner/Cargo.toml b/node/core/provisioner/Cargo.toml index 6ab65ff65bbc..c5fccfd43bcc 100644 --- a/node/core/provisioner/Cargo.toml +++ b/node/core/provisioner/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] bitvec = { version = "0.17.4", default-features = false, features = ["alloc"] } futures = "0.3.8" -tracing = "0.1.21" +tracing = "0.1.22" tracing-futures = "0.2.4" thiserror = "1.0.22" polkadot-primitives = { path = "../../../primitives" } diff --git a/node/core/runtime-api/Cargo.toml b/node/core/runtime-api/Cargo.toml index 393c8aff1b8f..abf88e06347a 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.8" -tracing = "0.1.21" +tracing = "0.1.22" tracing-futures = "0.2.4" sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/node/network/availability-distribution/Cargo.toml b/node/network/availability-distribution/Cargo.toml index e43768e6378f..0a6bc265644f 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.8" -tracing = "0.1.21" +tracing = "0.1.22" tracing-futures = "0.2.4" parity-scale-codec = { version = "1.3.5", features = ["std"] } polkadot-primitives = { path = "../../../primitives" } diff --git a/node/network/bitfield-distribution/Cargo.toml b/node/network/bitfield-distribution/Cargo.toml index bfa48f6c26c3..a4bf58e38208 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.8" -tracing = "0.1.21" +tracing = "0.1.22" tracing-futures = "0.2.4" parity-scale-codec = { version = "1.3.5", default-features = false, features = ["derive"] } polkadot-primitives = { path = "../../../primitives" } diff --git a/node/network/bridge/Cargo.toml b/node/network/bridge/Cargo.toml index ab15cb9e989a..132fdc4b16ec 100644 --- a/node/network/bridge/Cargo.toml +++ b/node/network/bridge/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] async-trait = "0.1.42" futures = "0.3.8" -tracing = "0.1.21" +tracing = "0.1.22" tracing-futures = "0.2.4" polkadot-primitives = { path = "../../../primitives" } parity-scale-codec = { version = "1.3.5", default-features = false, features = ["derive"] } diff --git a/node/network/collator-protocol/Cargo.toml b/node/network/collator-protocol/Cargo.toml index 49844e9c7ea6..6d390fb1db99 100644 --- a/node/network/collator-protocol/Cargo.toml +++ b/node/network/collator-protocol/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" [dependencies] futures = "0.3.8" -tracing = "0.1.21" +tracing = "0.1.22" tracing-futures = "0.2.4" thiserror = "1.0.22" diff --git a/node/network/pov-distribution/Cargo.toml b/node/network/pov-distribution/Cargo.toml index 4d22587f68fd..6ef2d10a563f 100644 --- a/node/network/pov-distribution/Cargo.toml +++ b/node/network/pov-distribution/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" [dependencies] futures = "0.3.8" -tracing = "0.1.21" +tracing = "0.1.22" tracing-futures = "0.2.4" polkadot-primitives = { path = "../../../primitives" } polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsystem" } diff --git a/node/network/statement-distribution/Cargo.toml b/node/network/statement-distribution/Cargo.toml index 8c80d6922401..dd7a9adf8d76 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.8" -tracing = "0.1.21" +tracing = "0.1.22" tracing-futures = "0.2.4" polkadot-primitives = { path = "../../../primitives" } node-primitives = { package = "polkadot-node-primitives", path = "../../primitives" } diff --git a/node/overseer/Cargo.toml b/node/overseer/Cargo.toml index 968b8d0134a2..dd9ca81d3f88 100644 --- a/node/overseer/Cargo.toml +++ b/node/overseer/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" [dependencies] futures = "0.3.8" -tracing = "0.1.21" +tracing = "0.1.22" tracing-futures = "0.2.4" futures-timer = "3.0.2" streamunordered = "0.5.1" diff --git a/node/service/Cargo.toml b/node/service/Cargo.toml index 397449c8b19e..10f89d66ef0f 100644 --- a/node/service/Cargo.toml +++ b/node/service/Cargo.toml @@ -55,7 +55,7 @@ prometheus-endpoint = { package = "substrate-prometheus-endpoint", git = "https: futures = "0.3.8" hex-literal = "0.3.1" lazy_static = "1.4.0" -tracing = "0.1.21" +tracing = "0.1.22" tracing-futures = "0.2.4" parking_lot = "0.11.1" serde = { version = "1.0.117", features = ["derive"] } diff --git a/node/subsystem-test-helpers/Cargo.toml b/node/subsystem-test-helpers/Cargo.toml index 21cd3a4d56b9..6f3db3acd854 100644 --- a/node/subsystem-test-helpers/Cargo.toml +++ b/node/subsystem-test-helpers/Cargo.toml @@ -9,7 +9,7 @@ description = "Subsystem traits and message definitions" async-trait = "0.1.42" futures = "0.3.8" futures-timer = "3.0.2" -tracing = "0.1.21" +tracing = "0.1.22" tracing-futures = "0.2.4" parity-scale-codec = { version = "1.3.5", default-features = false, features = ["derive"] } parking_lot = "0.11.1" diff --git a/node/subsystem-util/Cargo.toml b/node/subsystem-util/Cargo.toml index 0a1dfc0df398..19a023879927 100644 --- a/node/subsystem-util/Cargo.toml +++ b/node/subsystem-util/Cargo.toml @@ -14,7 +14,7 @@ parking_lot = { version = "0.11.1", optional = true } pin-project = "1.0.2" streamunordered = "0.5.1" thiserror = "1.0.22" -tracing = "0.1.21" +tracing = "0.1.22" tracing-futures = "0.2.4" polkadot-node-primitives = { path = "../primitives" } diff --git a/node/subsystem/Cargo.toml b/node/subsystem/Cargo.toml index 07fa439c0ade..aedbe9dd71b5 100644 --- a/node/subsystem/Cargo.toml +++ b/node/subsystem/Cargo.toml @@ -10,7 +10,7 @@ async-trait = "0.1.42" derive_more = "0.99.11" futures = "0.3.8" futures-timer = "3.0.2" -tracing = "0.1.21" +tracing = "0.1.22" tracing-futures = "0.2.4" parity-scale-codec = { version = "1.3.5", default-features = false, features = ["derive"] } parking_lot = { version = "0.11.1", optional = true } diff --git a/node/test/service/Cargo.toml b/node/test/service/Cargo.toml index c8b7d6610ce7..f28f58a3265b 100644 --- a/node/test/service/Cargo.toml +++ b/node/test/service/Cargo.toml @@ -8,7 +8,7 @@ edition = "2018" futures = "0.3.8" futures01 = { package = "futures", version = "0.1.29" } hex = "0.4.2" -tracing = "0.1.21" +tracing = "0.1.22" tracing-futures = "0.2.4" rand = "0.7.3" tempfile = "3.1.0"