From 463b053b6a37627382794a5109f7a17d9c1b191d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 19 Apr 2022 15:29:32 +0000 Subject: [PATCH] Bump async-trait from 0.1.52 to 0.1.53 Bumps [async-trait](https://github.com/dtolnay/async-trait) from 0.1.52 to 0.1.53. - [Release notes](https://github.com/dtolnay/async-trait/releases) - [Commits](https://github.com/dtolnay/async-trait/compare/0.1.52...0.1.53) --- updated-dependencies: - dependency-name: async-trait dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- node/core/candidate-validation/Cargo.toml | 2 +- node/core/parachains-inherent/Cargo.toml | 2 +- node/malus/Cargo.toml | 2 +- node/network/bridge/Cargo.toml | 2 +- node/network/dispute-distribution/Cargo.toml | 2 +- node/network/gossip-support/Cargo.toml | 2 +- node/network/protocol/Cargo.toml | 2 +- node/service/Cargo.toml | 2 +- node/subsystem-test-helpers/Cargo.toml | 2 +- node/subsystem-util/Cargo.toml | 2 +- 11 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 474ff89e186d..7f453abd8338 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -327,9 +327,9 @@ checksum = "e91831deabf0d6d7ec49552e489aed63b7456a7a3c46cff62adad428110b0af0" [[package]] name = "async-trait" -version = "0.1.52" +version = "0.1.53" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "061a7acccaa286c011ddc30970520b98fa40e00c9d644633fb26b5fc63a265e3" +checksum = "ed6aa3524a2dfcf9fe180c51eae2b58738348d819517ceadf95789c51fff7600" dependencies = [ "proc-macro2", "quote", diff --git a/node/core/candidate-validation/Cargo.toml b/node/core/candidate-validation/Cargo.toml index 4304d9e79bd0..c30645356e3f 100644 --- a/node/core/candidate-validation/Cargo.toml +++ b/node/core/candidate-validation/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Parity Technologies "] edition = "2018" [dependencies] -async-trait = "0.1.52" +async-trait = "0.1.53" futures = "0.3.19" tracing = "0.1.29" diff --git a/node/core/parachains-inherent/Cargo.toml b/node/core/parachains-inherent/Cargo.toml index 83278f9fa322..4f9c0e2fc66c 100644 --- a/node/core/parachains-inherent/Cargo.toml +++ b/node/core/parachains-inherent/Cargo.toml @@ -9,7 +9,7 @@ futures = "0.3.19" futures-timer = "3.0.2" tracing = "0.1.29" thiserror = "1.0.30" -async-trait = "0.1.52" +async-trait = "0.1.53" polkadot-node-subsystem = { path = "../../subsystem" } polkadot-primitives = { path = "../../../primitives" } sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.16" } diff --git a/node/malus/Cargo.toml b/node/malus/Cargo.toml index 59377b74b105..aca9c0521adf 100644 --- a/node/malus/Cargo.toml +++ b/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.52" +async-trait = "0.1.53" sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.16" } futures = "0.3.19" futures-timer = "3.0.2" diff --git a/node/network/bridge/Cargo.toml b/node/network/bridge/Cargo.toml index 61c6a9caf4b9..03e1da7bcf18 100644 --- a/node/network/bridge/Cargo.toml +++ b/node/network/bridge/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Parity Technologies "] edition = "2018" [dependencies] -async-trait = "0.1.52" +async-trait = "0.1.53" futures = "0.3.19" tracing = "0.1.29" polkadot-primitives = { path = "../../../primitives" } diff --git a/node/network/dispute-distribution/Cargo.toml b/node/network/dispute-distribution/Cargo.toml index d5e286eadfa2..0d9315719bd5 100644 --- a/node/network/dispute-distribution/Cargo.toml +++ b/node/network/dispute-distribution/Cargo.toml @@ -22,7 +22,7 @@ thiserror = "1.0.30" lru = "0.7.2" [dev-dependencies] -async-trait = "0.1.52" +async-trait = "0.1.53" polkadot-subsystem-testhelpers = { package = "polkadot-node-subsystem-test-helpers", path = "../../subsystem-test-helpers" } sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.16" } sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.16" } diff --git a/node/network/gossip-support/Cargo.toml b/node/network/gossip-support/Cargo.toml index 4be47c2c710a..2215ba786576 100644 --- a/node/network/gossip-support/Cargo.toml +++ b/node/network/gossip-support/Cargo.toml @@ -29,5 +29,5 @@ sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "polkad polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } assert_matches = "1.4.0" -async-trait = "0.1.52" +async-trait = "0.1.53" lazy_static = "1.4.0" diff --git a/node/network/protocol/Cargo.toml b/node/network/protocol/Cargo.toml index 45e0229b3b42..bfd29b802864 100644 --- a/node/network/protocol/Cargo.toml +++ b/node/network/protocol/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" description = "Primitives types for the Node-side" [dependencies] -async-trait = "0.1.52" +async-trait = "0.1.53" polkadot-primitives = { path = "../../../primitives" } polkadot-node-primitives = { path = "../../primitives" } polkadot-node-jaeger = { path = "../../jaeger" } diff --git a/node/service/Cargo.toml b/node/service/Cargo.toml index 4b6a81565e56..864f24975719 100644 --- a/node/service/Cargo.toml +++ b/node/service/Cargo.toml @@ -68,7 +68,7 @@ serde = { version = "1.0.132", features = ["derive"] } thiserror = "1.0.30" kvdb = "0.10.0" kvdb-rocksdb = { version = "0.14.0", optional = true } -async-trait = "0.1.52" +async-trait = "0.1.53" lru = "0.7" # Polkadot diff --git a/node/subsystem-test-helpers/Cargo.toml b/node/subsystem-test-helpers/Cargo.toml index 349b4474cfe3..f96af1d3dc8b 100644 --- a/node/subsystem-test-helpers/Cargo.toml +++ b/node/subsystem-test-helpers/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" description = "Subsystem traits and message definitions" [dependencies] -async-trait = "0.1.52" +async-trait = "0.1.53" futures = "0.3.19" parking_lot = "0.11.1" polkadot-node-subsystem = { path = "../subsystem" } diff --git a/node/subsystem-util/Cargo.toml b/node/subsystem-util/Cargo.toml index 1d311a096ae1..11dd0321379e 100644 --- a/node/subsystem-util/Cargo.toml +++ b/node/subsystem-util/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" description = "Subsystem traits and message definitions" [dependencies] -async-trait = "0.1.52" +async-trait = "0.1.53" futures = "0.3.19" itertools = "0.10" parity-scale-codec = { version = "2.3.1", default-features = false, features = ["derive"] }