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

Commit ce654c4

Browse files
Bump async-trait from 0.1.57 to 0.1.58 (#1783)
Bumps [async-trait](https://github.com/dtolnay/async-trait) from 0.1.57 to 0.1.58. - [Release notes](https://github.com/dtolnay/async-trait/releases) - [Commits](dtolnay/async-trait@0.1.57...0.1.58) --- updated-dependencies: - dependency-name: async-trait dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: parity-processbot <>
1 parent 304ce59 commit ce654c4

File tree

12 files changed

+13
-13
lines changed

12 files changed

+13
-13
lines changed

Cargo.lock

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

client/consensus/aura/Cargo.toml

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

88
[dependencies]
9-
async-trait = "0.1.57"
9+
async-trait = "0.1.58"
1010
codec = { package = "parity-scale-codec", version = "3.0.0", features = [ "derive" ] }
1111
futures = "0.3.24"
1212
tracing = "0.1.37"

client/consensus/common/Cargo.toml

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

88
[dependencies]
9-
async-trait = "0.1.57"
9+
async-trait = "0.1.58"
1010
codec = { package = "parity-scale-codec", version = "3.0.0", features = [ "derive" ] }
1111
dyn-clone = "1.0.9"
1212
futures = "0.3.24"

client/consensus/relay-chain/Cargo.toml

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

88
[dependencies]
9-
async-trait = "0.1.57"
9+
async-trait = "0.1.58"
1010
futures = "0.3.24"
1111
parking_lot = "0.12.1"
1212
tracing = "0.1.37"

client/network/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description = "Cumulus-specific networking protocol"
66
edition = "2021"
77

88
[dependencies]
9-
async-trait = "0.1.57"
9+
async-trait = "0.1.58"
1010
codec = { package = "parity-scale-codec", version = "3.0.0", features = [ "derive" ] }
1111
futures = "0.3.24"
1212
futures-timer = "3.0.2"

client/relay-chain-inprocess-interface/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ version = "0.1.0"
55
edition = "2021"
66

77
[dependencies]
8-
async-trait = "0.1.57"
8+
async-trait = "0.1.58"
99
futures = "0.3.24"
1010
futures-timer = "3.0.2"
1111

client/relay-chain-interface/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "
1616
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
1717

1818
futures = "0.3.24"
19-
async-trait = "0.1.57"
19+
async-trait = "0.1.58"
2020
thiserror = "1.0.37"
2121
jsonrpsee-core = "0.15.1"
2222
parity-scale-codec = "3.2.1"

client/relay-chain-minimal-node/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ cumulus-primitives-core = { path = "../../primitives/core" }
4444
array-bytes = "4.1"
4545
lru = "0.8"
4646
tracing = "0.1.37"
47-
async-trait = "0.1.52"
47+
async-trait = "0.1.58"
4848
futures = "0.3.24"
4949
url = "2.2.2"
5050
tokio = { version = "1.21.2", features = ["macros"] }

client/relay-chain-rpc-interface/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@ futures-timer = "3.0.2"
2727
parity-scale-codec = "3.2.1"
2828
jsonrpsee = { version = "0.15.1", features = ["ws-client"] }
2929
tracing = "0.1.37"
30-
async-trait = "0.1.57"
30+
async-trait = "0.1.58"
3131
url = "2.3.1"
3232
backoff = { version = "0.4.0", features = ["tokio"] }

polkadot-parachain/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ edition = "2021"
77
description = "Runs a polkadot parachain node which could be a collator."
88

99
[dependencies]
10-
async-trait = "0.1.57"
10+
async-trait = "0.1.58"
1111
clap = { version = "4.0.17", features = ["derive"] }
1212
codec = { package = "parity-scale-codec", version = "3.0.0" }
1313
futures = "0.3.24"

primitives/parachain-inherent/Cargo.toml

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

77
[dependencies]
8-
async-trait = { version = "0.1.57", optional = true }
8+
async-trait = { version = "0.1.58", optional = true }
99
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = [ "derive" ] }
1010
scale-info = { version = "2.2.0", default-features = false, features = ["derive"] }
1111
tracing = { version = "0.1.37", optional = true }

test/service/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ name = "test-parachain"
99
path = "src/main.rs"
1010

1111
[dependencies]
12-
async-trait = "0.1.57"
12+
async-trait = "0.1.58"
1313
clap = { version = "4.0.17", features = ["derive"] }
1414
codec = { package = "parity-scale-codec", version = "3.0.0" }
1515
criterion = { version = "0.4.0", features = [ "async_tokio" ] }

0 commit comments

Comments
 (0)