Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.

Commit 43603f6

Browse files
Bump async-trait from 0.1.50 to 0.1.51 (#3721)
Bumps [async-trait](https://github.com/dtolnay/async-trait) from 0.1.50 to 0.1.51. - [Release notes](https://github.com/dtolnay/async-trait/releases) - [Commits](dtolnay/async-trait@0.1.50...0.1.51) --- 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>
1 parent 4315bad commit 43603f6

File tree

13 files changed

+16
-16
lines changed

13 files changed

+16
-16
lines changed

Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node/core/candidate-validation/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors = ["Parity Technologies <admin@parity.io>"]
55
edition = "2018"
66

77
[dependencies]
8-
async-trait = "0.1.42"
8+
async-trait = "0.1.51"
99
futures = "0.3.15"
1010
tracing = "0.1.26"
1111

node/core/parachains-inherent/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ futures = "0.3.15"
99
futures-timer = "3.0.2"
1010
tracing = "0.1.26"
1111
thiserror = "1.0.26"
12-
async-trait = "0.1.47"
12+
async-trait = "0.1.51"
1313
polkadot-node-subsystem = { path = "../../subsystem" }
1414
polkadot-primitives = { path = "../../../primitives" }
1515
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" }

node/malus/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ parity-util-mem = { version = "0.10.0", default-features = false, features = ["j
2626
color-eyre = { version = "0.5.11", default-features = false }
2727
assert_matches = "1.5"
2828
structopt = "0.3.21"
29-
async-trait = "0.1.50"
29+
async-trait = "0.1.51"

node/metrics/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2018"
66
description = "Subsystem traits and message definitions"
77

88
[dependencies]
9-
async-trait = "0.1.42"
9+
async-trait = "0.1.51"
1010
futures = "0.3.15"
1111
futures-timer = "3.0.2"
1212

node/network/bridge/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors = ["Parity Technologies <admin@parity.io>"]
55
edition = "2018"
66

77
[dependencies]
8-
async-trait = "0.1.42"
8+
async-trait = "0.1.51"
99
futures = "0.3.15"
1010
tracing = "0.1.26"
1111
polkadot-primitives = { path = "../../../primitives" }

node/network/dispute-distribution/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ rand = "0.8.3"
2525
lru = "0.6.6"
2626

2727
[dev-dependencies]
28-
async-trait = "0.1.42"
28+
async-trait = "0.1.51"
2929
polkadot-subsystem-testhelpers = { package = "polkadot-node-subsystem-test-helpers", path = "../../subsystem-test-helpers" }
3030
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", features = ["std"] }
3131
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }

node/network/protocol/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2018"
66
description = "Primitives types for the Node-side"
77

88
[dependencies]
9-
async-trait = "0.1.42"
9+
async-trait = "0.1.51"
1010
polkadot-primitives = { path = "../../../primitives" }
1111
polkadot-node-primitives = { path = "../../primitives" }
1212
polkadot-node-jaeger = { path = "../../jaeger" }

node/overseer/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors = ["Parity Technologies <admin@parity.io>"]
55
edition = "2018"
66

77
[dependencies]
8-
async-trait = "0.1.42"
8+
async-trait = "0.1.51"
99
client = { package = "sc-client-api", git = "https://github.com/paritytech/substrate", branch = "master" }
1010
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
1111
futures = "0.3.15"

node/service/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ serde = { version = "1.0.123", features = ["derive"] }
6767
thiserror = "1.0.26"
6868
kvdb = "0.10.0"
6969
kvdb-rocksdb = { version = "0.14.0", optional = true }
70-
async-trait = "0.1.42"
70+
async-trait = "0.1.51"
7171

7272
# Polkadot
7373
polkadot-node-core-parachains-inherent = { path = "../core/parachains-inherent" }

node/subsystem-test-helpers/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2018"
66
description = "Subsystem traits and message definitions"
77

88
[dependencies]
9-
async-trait = "0.1.42"
9+
async-trait = "0.1.51"
1010
futures = "0.3.15"
1111
futures-timer = "3.0.2"
1212
tracing = "0.1.26"

node/subsystem-types/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ description = "Subsystem traits and message definitions"
77

88
[dependencies]
99
async-std = "1.8.0"
10-
async-trait = "0.1.42"
10+
async-trait = "0.1.51"
1111
derive_more = "0.99.11"
1212
futures = "0.3.12"
1313
futures-timer = "3.0.2"
@@ -32,6 +32,6 @@ log = "0.4.13"
3232

3333
[dev-dependencies]
3434
assert_matches = "1.4.0"
35-
async-trait = "0.1.42"
35+
async-trait = "0.1.51"
3636
futures = { version = "0.3.12", features = ["thread-pool"] }
3737
polkadot-node-subsystem-test-helpers = { path = "../subsystem-test-helpers" }

node/subsystem-util/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2018"
66
description = "Subsystem traits and message definitions"
77

88
[dependencies]
9-
async-trait = "0.1.42"
9+
async-trait = "0.1.51"
1010
futures = "0.3.15"
1111
futures-timer = "3.0.2"
1212
itertools = "0.10"
@@ -36,7 +36,7 @@ substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate
3636

3737
[dev-dependencies]
3838
assert_matches = "1.4.0"
39-
async-trait = "0.1.42"
39+
async-trait = "0.1.51"
4040
env_logger = "0.9.0"
4141
futures = { version = "0.3.15", features = ["thread-pool"] }
4242
log = "0.4.13"

0 commit comments

Comments
 (0)