diff --git a/polkadot/Cargo.lock b/polkadot/Cargo.lock
index 5ccd984107915d8db890955ebcf1ee82bc819cc9..55ed745e0ac9c882ccc64d455f98b81caab460d6 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 af66331a9bc9ed4f87c94f23debbad5e03e39c4e..a4601bef79c95e481445a1741d5bb960d307b5ce 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 54de94e5afe82c7222a5da4412047f961186ddc2..b43fc01b67758588916bcbe7aab4dde7db4b4b0f 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 b572f23af4630f24d8dcb6163fd7310aedc48fa0..7225846e317308b6bc0c79ea4aa9841fc05de25f 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 5443a8cb1055c75b717f5313b80ae6476e3cf8fc..facb1d3ef213fa525842a76d02e14881e619dec5 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 e6ac2bc8cb50bba237c03e5b16868af45b298921..5d48c6ebc150fe0c6e8ae3c4ab41cede0623403b 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 010a2f3198b24a0c1d9765ac6b732604706ea305..1124c0aa4ca429e2daab3eea1b0b3ff557b1e9c0 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 63c1185f02a9a01f33e4770906763f90b11c030b..6e0757f22c6ef0aa1b662eff2add2d95de806072 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 13e8440a0a1e92ddc90a5f36181fc69fc5f3dba0..ce571a9669754606dfa36e74610ebfa0c3a68bef 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 1c89554f319f6fd02b460dfb5d8dc0f03116d955..7a0b00a99a883d01230be63a0a148440c35b0349 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 d6977c74708050e70c78f55efaa8b0af30366258..169f25ba180052367f66503de5e9279a62a12455 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"] }