diff --git a/cumulus/Cargo.lock b/cumulus/Cargo.lock index 480d8f4bc81110fa7c1549ecf39749a267a48f4e..fd1f28eb9e6dffabdfa1a064337d8be85572d6a7 100644 --- a/cumulus/Cargo.lock +++ b/cumulus/Cargo.lock @@ -847,9 +847,9 @@ dependencies = [ [[package]] name = "async-trait" -version = "0.1.72" +version = "0.1.73" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cc6dde6e4ed435a4c1ee4e73592f5ba9da2151af10076cc04858746af9352d09" +checksum = "bc00ceb34980c03614e35a3a4e218276a0a824e911d07651cd0d858a51e8c0f0" dependencies = [ "proc-macro2", "quote", diff --git a/cumulus/client/collator/Cargo.toml b/cumulus/client/collator/Cargo.toml index 6b04a319dcc7bd870376e0054c37c050bb6deacc..7fba22b8e8a604085dfed279cf2a25affef124d4 100644 --- a/cumulus/client/collator/Cargo.toml +++ b/cumulus/client/collator/Cargo.toml @@ -29,7 +29,7 @@ cumulus-client-network = { path = "../network" } cumulus-primitives-core = { path = "../../primitives/core" } [dev-dependencies] -async-trait = "0.1.42" +async-trait = "0.1.73" # Substrate sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/cumulus/client/consensus/aura/Cargo.toml b/cumulus/client/consensus/aura/Cargo.toml index e4f72bebd4b25ff5163833d65e370eac5ed2f642..be929ebac886b11efb3649154c73fc351a7b8b83 100644 --- a/cumulus/client/consensus/aura/Cargo.toml +++ b/cumulus/client/consensus/aura/Cargo.toml @@ -6,7 +6,7 @@ authors = ["Parity Technologies <admin@parity.io>"] edition = "2021" [dependencies] -async-trait = "0.1.72" +async-trait = "0.1.73" codec = { package = "parity-scale-codec", version = "3.0.0", features = [ "derive" ] } futures = "0.3.28" tracing = "0.1.37" diff --git a/cumulus/client/consensus/common/Cargo.toml b/cumulus/client/consensus/common/Cargo.toml index 6f42666e36aca1402d09217175c06da88abb5fda..b62c7ed20cfbe6f5916843d3aa9a2579e0aa3c5b 100644 --- a/cumulus/client/consensus/common/Cargo.toml +++ b/cumulus/client/consensus/common/Cargo.toml @@ -6,7 +6,7 @@ authors = ["Parity Technologies <admin@parity.io>"] edition = "2021" [dependencies] -async-trait = "0.1.72" +async-trait = "0.1.73" codec = { package = "parity-scale-codec", version = "3.0.0", features = [ "derive" ] } dyn-clone = "1.0.12" futures = "0.3.28" diff --git a/cumulus/client/consensus/proposer/Cargo.toml b/cumulus/client/consensus/proposer/Cargo.toml index 837a5f5c264702be86f84ebd981cea93e0c36296..6001e88b4aa88e7297bb0b1fc04e17e341a53db7 100644 --- a/cumulus/client/consensus/proposer/Cargo.toml +++ b/cumulus/client/consensus/proposer/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" [dependencies] anyhow = "1.0" -async-trait = "0.1.72" +async-trait = "0.1.73" thiserror = "1.0.44" # Substrate diff --git a/cumulus/client/consensus/relay-chain/Cargo.toml b/cumulus/client/consensus/relay-chain/Cargo.toml index 7f3439eff8a379a364915de262ccc996b293490d..31f5988fb98e19890092f286cbb627d69ab007c3 100644 --- a/cumulus/client/consensus/relay-chain/Cargo.toml +++ b/cumulus/client/consensus/relay-chain/Cargo.toml @@ -6,7 +6,7 @@ authors = ["Parity Technologies <admin@parity.io>"] edition = "2021" [dependencies] -async-trait = "0.1.72" +async-trait = "0.1.73" futures = "0.3.28" parking_lot = "0.12.1" tracing = "0.1.37" diff --git a/cumulus/client/network/Cargo.toml b/cumulus/client/network/Cargo.toml index 4bb48212a353e7022750087379049c903e11dc10..0999660dd2b99bd8aa24a512a0f243266669626b 100644 --- a/cumulus/client/network/Cargo.toml +++ b/cumulus/client/network/Cargo.toml @@ -6,7 +6,7 @@ description = "Cumulus-specific networking protocol" edition = "2021" [dependencies] -async-trait = "0.1.72" +async-trait = "0.1.73" codec = { package = "parity-scale-codec", version = "3.0.0", features = [ "derive" ] } futures = "0.3.28" futures-timer = "3.0.2" diff --git a/cumulus/client/pov-recovery/Cargo.toml b/cumulus/client/pov-recovery/Cargo.toml index 7c48b82f42e2b378f91f9263581f5fd6062b5634..9ef9e87f6bec59f08be544d9584da75d4420d049 100644 --- a/cumulus/client/pov-recovery/Cargo.toml +++ b/cumulus/client/pov-recovery/Cargo.toml @@ -28,7 +28,7 @@ polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = # Cumulus cumulus-primitives-core = { path = "../../primitives/core" } cumulus-relay-chain-interface = {path = "../relay-chain-interface"} -async-trait = "0.1.72" +async-trait = "0.1.73" [dev-dependencies] tokio = { version = "1.30.0", features = ["macros"] } diff --git a/cumulus/client/relay-chain-inprocess-interface/Cargo.toml b/cumulus/client/relay-chain-inprocess-interface/Cargo.toml index 43aaa44177b21c8a7cfc90d39953ce80b30e35fc..22cd040b6471c303b86e8d1d22b690c2664fecf0 100644 --- a/cumulus/client/relay-chain-inprocess-interface/Cargo.toml +++ b/cumulus/client/relay-chain-inprocess-interface/Cargo.toml @@ -5,7 +5,7 @@ version = "0.1.0" edition = "2021" [dependencies] -async-trait = "0.1.72" +async-trait = "0.1.73" futures = "0.3.28" futures-timer = "3.0.2" diff --git a/cumulus/client/relay-chain-interface/Cargo.toml b/cumulus/client/relay-chain-interface/Cargo.toml index c8f08d1454cda22a01650861c04d18727f2e8205..7a1ade8fdcfedad2f9f5321a636e2c71d10bc51a 100644 --- a/cumulus/client/relay-chain-interface/Cargo.toml +++ b/cumulus/client/relay-chain-interface/Cargo.toml @@ -15,7 +15,7 @@ sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = " sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } futures = "0.3.28" -async-trait = "0.1.72" +async-trait = "0.1.73" thiserror = "1.0.44" jsonrpsee-core = "0.16.2" parity-scale-codec = "3.6.4" diff --git a/cumulus/client/relay-chain-minimal-node/Cargo.toml b/cumulus/client/relay-chain-minimal-node/Cargo.toml index 46d98bde81d203ed9e9c4bee645845e700351d4e..0f90d0749dcdf101ff44a0741b8ccc408f1cd78e 100644 --- a/cumulus/client/relay-chain-minimal-node/Cargo.toml +++ b/cumulus/client/relay-chain-minimal-node/Cargo.toml @@ -40,6 +40,6 @@ cumulus-primitives-core = { path = "../../primitives/core" } array-bytes = "6.1" lru = "0.11" tracing = "0.1.37" -async-trait = "0.1.72" +async-trait = "0.1.73" futures = "0.3.28" tokio = { version = "1.30.0", features = ["macros"] } diff --git a/cumulus/client/relay-chain-rpc-interface/Cargo.toml b/cumulus/client/relay-chain-rpc-interface/Cargo.toml index 803840f5034c15aa6c18ae9eac9829928da36d72..d81f8f7df903ec358ae36a186d9b574ceef09740 100644 --- a/cumulus/client/relay-chain-rpc-interface/Cargo.toml +++ b/cumulus/client/relay-chain-rpc-interface/Cargo.toml @@ -28,7 +28,7 @@ futures-timer = "3.0.2" parity-scale-codec = "3.6.4" jsonrpsee = { version = "0.16.2", features = ["ws-client"] } tracing = "0.1.37" -async-trait = "0.1.72" +async-trait = "0.1.73" url = "2.4.0" serde_json = "1.0.104" serde = "1.0.183" diff --git a/cumulus/polkadot-parachain/Cargo.toml b/cumulus/polkadot-parachain/Cargo.toml index 66cd85d0d8c41d6d3616f57630c9ec6570e2b688..70de6d0020260104b2a286838d0020597a05248a 100644 --- a/cumulus/polkadot-parachain/Cargo.toml +++ b/cumulus/polkadot-parachain/Cargo.toml @@ -11,7 +11,7 @@ name = "polkadot-parachain" path = "src/main.rs" [dependencies] -async-trait = "0.1.72" +async-trait = "0.1.73" clap = { version = "4.3.21", features = ["derive"] } codec = { package = "parity-scale-codec", version = "3.0.0" } futures = "0.3.28" diff --git a/cumulus/primitives/parachain-inherent/Cargo.toml b/cumulus/primitives/parachain-inherent/Cargo.toml index 9c81a688d678af8a0625b2264979c1c371a0e64e..c3d7a72f99a8cab209c4745981eba6c3ab897caf 100644 --- a/cumulus/primitives/parachain-inherent/Cargo.toml +++ b/cumulus/primitives/parachain-inherent/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Parity Technologies <admin@parity.io>"] edition = "2021" [dependencies] -async-trait = { version = "0.1.72", optional = true } +async-trait = { version = "0.1.73", optional = true } codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = [ "derive" ] } scale-info = { version = "2.9.0", default-features = false, features = ["derive"] } tracing = { version = "0.1.37", optional = true } diff --git a/cumulus/test/service/Cargo.toml b/cumulus/test/service/Cargo.toml index 6fabf5342b6a86a8dfc47534c8764cd00c581c5c..dbb1a8fc60f4d02c2781c1448354a577d3b6eeb5 100644 --- a/cumulus/test/service/Cargo.toml +++ b/cumulus/test/service/Cargo.toml @@ -9,7 +9,7 @@ name = "test-parachain" path = "src/main.rs" [dependencies] -async-trait = "0.1.72" +async-trait = "0.1.73" clap = { version = "4.3.21", features = ["derive"] } codec = { package = "parity-scale-codec", version = "3.0.0" } criterion = { version = "0.5.1", features = [ "async_tokio" ] }