From 7c5249c9519ff5f15fe2bb3b8e3bac505f48138c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 11 Dec 2021 08:07:45 +0100 Subject: [PATCH] Bump async-trait from 0.1.51 to 0.1.52 (#4501) Bumps [async-trait](https://github.com/dtolnay/async-trait) from 0.1.51 to 0.1.52. - [Release notes](https://github.com/dtolnay/async-trait/releases) - [Commits](https://github.com/dtolnay/async-trait/compare/0.1.51...0.1.52) --- updated-dependencies: - dependency-name: async-trait 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/core/candidate-validation/Cargo.toml | 2 +- polkadot/node/core/parachains-inherent/Cargo.toml | 2 +- polkadot/node/malus/Cargo.toml | 2 +- polkadot/node/network/bridge/Cargo.toml | 2 +- polkadot/node/network/dispute-distribution/Cargo.toml | 2 +- polkadot/node/network/gossip-support/Cargo.toml | 2 +- polkadot/node/network/protocol/Cargo.toml | 2 +- polkadot/node/service/Cargo.toml | 2 +- polkadot/node/subsystem-test-helpers/Cargo.toml | 2 +- polkadot/node/subsystem-util/Cargo.toml | 2 +- 11 files changed, 12 insertions(+), 12 deletions(-) diff --git a/polkadot/Cargo.lock b/polkadot/Cargo.lock index 5ccd9841079..55ed745e0ac 100644 --- a/polkadot/Cargo.lock +++ b/polkadot/Cargo.lock @@ -336,9 +336,9 @@ checksum = "e91831deabf0d6d7ec49552e489aed63b7456a7a3c46cff62adad428110b0af0" [[package]] name = "async-trait" -version = "0.1.51" +version = "0.1.52" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "44318e776df68115a881de9a8fd1b9e53368d7a4a5ce4cc48517da3393233a5e" +checksum = "061a7acccaa286c011ddc30970520b98fa40e00c9d644633fb26b5fc63a265e3" dependencies = [ "proc-macro2", "quote", diff --git a/polkadot/node/core/candidate-validation/Cargo.toml b/polkadot/node/core/candidate-validation/Cargo.toml index af66331a9bc..a4601bef79c 100644 --- a/polkadot/node/core/candidate-validation/Cargo.toml +++ b/polkadot/node/core/candidate-validation/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Parity Technologies <admin@parity.io>"] edition = "2018" [dependencies] -async-trait = "0.1.51" +async-trait = "0.1.52" futures = "0.3.17" tracing = "0.1.29" diff --git a/polkadot/node/core/parachains-inherent/Cargo.toml b/polkadot/node/core/parachains-inherent/Cargo.toml index 54de94e5afe..b43fc01b677 100644 --- a/polkadot/node/core/parachains-inherent/Cargo.toml +++ b/polkadot/node/core/parachains-inherent/Cargo.toml @@ -9,7 +9,7 @@ futures = "0.3.17" futures-timer = "3.0.2" tracing = "0.1.29" thiserror = "1.0.30" -async-trait = "0.1.51" +async-trait = "0.1.52" polkadot-node-subsystem = { path = "../../subsystem" } polkadot-primitives = { path = "../../../primitives" } sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/polkadot/node/malus/Cargo.toml b/polkadot/node/malus/Cargo.toml index b572f23af46..7225846e317 100644 --- a/polkadot/node/malus/Cargo.toml +++ b/polkadot/node/malus/Cargo.toml @@ -27,7 +27,7 @@ parity-util-mem = { version = "0.10.0", default-features = false, features = ["j color-eyre = { version = "0.5.11", default-features = false } assert_matches = "1.5" structopt = "0.3.25" -async-trait = "0.1.51" +async-trait = "0.1.52" sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } futures = "0.3.16" futures-timer = "3.0.2" diff --git a/polkadot/node/network/bridge/Cargo.toml b/polkadot/node/network/bridge/Cargo.toml index 5443a8cb105..facb1d3ef21 100644 --- a/polkadot/node/network/bridge/Cargo.toml +++ b/polkadot/node/network/bridge/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Parity Technologies <admin@parity.io>"] edition = "2018" [dependencies] -async-trait = "0.1.51" +async-trait = "0.1.52" futures = "0.3.17" tracing = "0.1.29" polkadot-primitives = { path = "../../../primitives" } diff --git a/polkadot/node/network/dispute-distribution/Cargo.toml b/polkadot/node/network/dispute-distribution/Cargo.toml index e6ac2bc8cb5..5d48c6ebc15 100644 --- a/polkadot/node/network/dispute-distribution/Cargo.toml +++ b/polkadot/node/network/dispute-distribution/Cargo.toml @@ -22,7 +22,7 @@ thiserror = "1.0.30" lru = "0.7.0" [dev-dependencies] -async-trait = "0.1.51" +async-trait = "0.1.52" polkadot-subsystem-testhelpers = { package = "polkadot-node-subsystem-test-helpers", path = "../../subsystem-test-helpers" } sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/polkadot/node/network/gossip-support/Cargo.toml b/polkadot/node/network/gossip-support/Cargo.toml index 010a2f3198b..1124c0aa4ca 100644 --- a/polkadot/node/network/gossip-support/Cargo.toml +++ b/polkadot/node/network/gossip-support/Cargo.toml @@ -29,5 +29,5 @@ sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } assert_matches = "1.4.0" -async-trait = "0.1.51" +async-trait = "0.1.52" lazy_static = "1.4.0" diff --git a/polkadot/node/network/protocol/Cargo.toml b/polkadot/node/network/protocol/Cargo.toml index 63c1185f02a..6e0757f22c6 100644 --- a/polkadot/node/network/protocol/Cargo.toml +++ b/polkadot/node/network/protocol/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" description = "Primitives types for the Node-side" [dependencies] -async-trait = "0.1.51" +async-trait = "0.1.52" polkadot-primitives = { path = "../../../primitives" } polkadot-node-primitives = { path = "../../primitives" } polkadot-node-jaeger = { path = "../../jaeger" } diff --git a/polkadot/node/service/Cargo.toml b/polkadot/node/service/Cargo.toml index 13e8440a0a1..ce571a96697 100644 --- a/polkadot/node/service/Cargo.toml +++ b/polkadot/node/service/Cargo.toml @@ -68,7 +68,7 @@ serde = { version = "1.0.131", features = ["derive"] } thiserror = "1.0.30" kvdb = "0.10.0" kvdb-rocksdb = { version = "0.14.0", optional = true } -async-trait = "0.1.51" +async-trait = "0.1.52" lru = "0.7" # Polkadot diff --git a/polkadot/node/subsystem-test-helpers/Cargo.toml b/polkadot/node/subsystem-test-helpers/Cargo.toml index 1c89554f319..7a0b00a99a8 100644 --- a/polkadot/node/subsystem-test-helpers/Cargo.toml +++ b/polkadot/node/subsystem-test-helpers/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" description = "Subsystem traits and message definitions" [dependencies] -async-trait = "0.1.51" +async-trait = "0.1.52" futures = "0.3.17" parking_lot = "0.11.1" polkadot-node-subsystem = { path = "../subsystem" } diff --git a/polkadot/node/subsystem-util/Cargo.toml b/polkadot/node/subsystem-util/Cargo.toml index d6977c74708..169f25ba180 100644 --- a/polkadot/node/subsystem-util/Cargo.toml +++ b/polkadot/node/subsystem-util/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" description = "Subsystem traits and message definitions" [dependencies] -async-trait = "0.1.51" +async-trait = "0.1.52" futures = "0.3.17" itertools = "0.10" parity-scale-codec = { version = "2.3.1", default-features = false, features = ["derive"] } -- GitLab