From 4387cf62a3009a71f38ad0b6d30172e5ca3f8255 Mon Sep 17 00:00:00 2001 From: Sebastian Kunert Date: Thu, 6 Oct 2022 14:07:39 +0200 Subject: [PATCH 1/7] Bump to clap4 --- client/cli/Cargo.toml | 2 +- parachain-template/node/Cargo.toml | 2 +- polkadot-parachain/Cargo.toml | 2 +- test/service/Cargo.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/client/cli/Cargo.toml b/client/cli/Cargo.toml index 4f20e564ddb..fe8ee5e740c 100644 --- a/client/cli/Cargo.toml +++ b/client/cli/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Parity Technologies "] edition = "2021" [dependencies] -clap = { version = "3.2.22", features = ["derive", "deprecated"] } +clap = { version = "4.0.9", features = ["derive", "deprecated"] } codec = { package = "parity-scale-codec", version = "3.0.0" } url = "2.3.1" diff --git a/parachain-template/node/Cargo.toml b/parachain-template/node/Cargo.toml index a1b1408936e..da8c916adef 100644 --- a/parachain-template/node/Cargo.toml +++ b/parachain-template/node/Cargo.toml @@ -10,7 +10,7 @@ edition = "2021" build = "build.rs" [dependencies] -clap = { version = "3.2.22", features = ["derive"] } +clap = { version = "4.0.9", features = ["derive"] } log = "0.4.17" codec = { package = "parity-scale-codec", version = "3.0.0" } serde = { version = "1.0.145", features = ["derive"] } diff --git a/polkadot-parachain/Cargo.toml b/polkadot-parachain/Cargo.toml index 68b5830bd0c..338f0e5c6bd 100644 --- a/polkadot-parachain/Cargo.toml +++ b/polkadot-parachain/Cargo.toml @@ -8,7 +8,7 @@ description = "Runs a polkadot parachain node which could be a collator." [dependencies] async-trait = "0.1.57" -clap = { version = "3.2.22", features = ["derive", "deprecated"] } +clap = { version = "4.0.9", features = ["derive", "deprecated"] } codec = { package = "parity-scale-codec", version = "3.0.0" } futures = "0.3.24" hex-literal = "0.3.4" diff --git a/test/service/Cargo.toml b/test/service/Cargo.toml index 8d9c9c04fa7..d7e64f76fca 100644 --- a/test/service/Cargo.toml +++ b/test/service/Cargo.toml @@ -10,7 +10,7 @@ path = "src/main.rs" [dependencies] async-trait = "0.1.57" -clap = { version = "3.2.22", features = ["derive", "deprecated"] } +clap = { version = "4.0.9", features = ["derive", "deprecated"] } codec = { package = "parity-scale-codec", version = "3.0.0" } criterion = { version = "0.4.0", features = [ "async_tokio" ] } jsonrpsee = { version = "0.15.1", features = ["server"] } From 1461bbb3ab91e315983b70c968f7a945d40c0abe Mon Sep 17 00:00:00 2001 From: Sebastian Kunert Date: Fri, 7 Oct 2022 12:30:37 +0200 Subject: [PATCH 2/7] Adjust to clap 4 style --- client/cli/src/lib.rs | 24 ++++++++++++------------ parachain-template/node/src/cli.rs | 12 ++++++------ polkadot-parachain/src/cli.rs | 14 +++++++------- test/service/src/cli.rs | 22 +++++++++++----------- 4 files changed, 36 insertions(+), 36 deletions(-) diff --git a/client/cli/src/lib.rs b/client/cli/src/lib.rs index 9fea382a7ee..dac4410fcdd 100644 --- a/client/cli/src/lib.rs +++ b/client/cli/src/lib.rs @@ -42,15 +42,15 @@ use url::Url; #[derive(Debug, clap::Parser)] pub struct PurgeChainCmd { /// The base struct of the purge-chain command. - #[clap(flatten)] + #[command(flatten)] pub base: sc_cli::PurgeChainCmd, /// Only delete the para chain database - #[clap(long, aliases = &["para"])] + #[arg(long, aliases = &["para"])] pub parachain: bool, /// Only delete the relay chain database - #[clap(long, aliases = &["relay"])] + #[arg(long, aliases = &["relay"])] pub relaychain: bool, } @@ -131,15 +131,15 @@ impl sc_cli::CliConfiguration for PurgeChainCmd { #[derive(Debug, clap::Parser)] pub struct ExportGenesisStateCommand { /// Output file name or stdout if unspecified. - #[clap(action)] + #[arg()] pub output: Option, /// Write output in binary. Default is to write in hex. - #[clap(short, long)] + #[arg(short, long)] pub raw: bool, #[allow(missing_docs)] - #[clap(flatten)] + #[command(flatten)] pub shared_params: sc_cli::SharedParams, } @@ -214,15 +214,15 @@ impl sc_cli::CliConfiguration for ExportGenesisStateCommand { #[derive(Debug, clap::Parser)] pub struct ExportGenesisWasmCommand { /// Output file name or stdout if unspecified. - #[clap(action)] + #[arg()] pub output: Option, /// Write output in binary. Default is to write in hex. - #[clap(short, long)] + #[arg(short, long)] pub raw: bool, #[allow(missing_docs)] - #[clap(flatten)] + #[command(flatten)] pub shared_params: sc_cli::SharedParams, } @@ -278,17 +278,17 @@ fn validate_relay_chain_url(arg: &str) -> Result { #[derive(Debug, clap::Parser)] pub struct RunCmd { /// The cumulus RunCmd inherents from sc_cli's - #[clap(flatten)] + #[command(flatten)] pub base: sc_cli::RunCmd, /// Run node as collator. /// /// Note that this is the same as running with `--validator`. - #[clap(long, conflicts_with = "validator")] + #[arg(long, conflicts_with = "validator")] pub collator: bool, /// EXPERIMENTAL: Specify an URL to a relay chain full node to communicate with. - #[clap( + #[arg( long, value_parser = validate_relay_chain_url, conflicts_with_all = &["alice", "bob", "charlie", "dave", "eve", "ferdie", "one", "two"] ) diff --git a/parachain-template/node/src/cli.rs b/parachain-template/node/src/cli.rs index 949ce489d6e..99bb0a96bc9 100644 --- a/parachain-template/node/src/cli.rs +++ b/parachain-template/node/src/cli.rs @@ -32,7 +32,7 @@ pub enum Subcommand { /// Sub-commands concerned with benchmarking. /// The pallet benchmarking moved to the `pallet` sub-command. - #[clap(subcommand)] + #[command(subcommand)] Benchmark(frame_benchmarking_cli::BenchmarkCmd), /// Try some testing command against a specified runtime state. @@ -40,16 +40,16 @@ pub enum Subcommand { } #[derive(Debug, clap::Parser)] -#[clap( +#[command( propagate_version = true, args_conflicts_with_subcommands = true, subcommand_negates_reqs = true )] pub struct Cli { - #[clap(subcommand)] + #[command(subcommand)] pub subcommand: Option, - #[clap(flatten)] + #[command(flatten)] pub run: cumulus_client_cli::RunCmd, /// Disable automatic hardware benchmarks. @@ -59,11 +59,11 @@ pub struct Cli { /// /// The results are then printed out in the logs, and also sent as part of /// telemetry, if telemetry is enabled. - #[clap(long)] + #[arg(long)] pub no_hardware_benchmarks: bool, /// Relay chain arguments - #[clap(raw = true)] + #[arg(raw = true)] pub relay_chain_args: Vec, } diff --git a/polkadot-parachain/src/cli.rs b/polkadot-parachain/src/cli.rs index c99e5459836..8c7fa81d22b 100644 --- a/polkadot-parachain/src/cli.rs +++ b/polkadot-parachain/src/cli.rs @@ -20,7 +20,7 @@ use std::path::PathBuf; #[derive(Debug, clap::Subcommand)] pub enum Subcommand { /// Key management CLI utilities - #[clap(subcommand)] + #[command(subcommand)] Key(sc_cli::KeySubcommand), /// Build a chain specification. @@ -52,7 +52,7 @@ pub enum Subcommand { /// Sub-commands concerned with benchmarking. /// The pallet benchmarking moved to the `pallet` sub-command. - #[clap(subcommand)] + #[command(subcommand)] Benchmark(frame_benchmarking_cli::BenchmarkCmd), /// Try some testing command against a specified runtime state. @@ -60,16 +60,16 @@ pub enum Subcommand { } #[derive(Debug, clap::Parser)] -#[clap( +#[command( propagate_version = true, args_conflicts_with_subcommands = true, subcommand_negates_reqs = true )] pub struct Cli { - #[clap(subcommand)] + #[command(subcommand)] pub subcommand: Option, - #[clap(flatten)] + #[command(flatten)] pub run: cumulus_client_cli::RunCmd, /// Disable automatic hardware benchmarks. @@ -79,11 +79,11 @@ pub struct Cli { /// /// The results are then printed out in the logs, and also sent as part of /// telemetry, if telemetry is enabled. - #[clap(long)] + #[arg(long)] pub no_hardware_benchmarks: bool, /// Relay chain arguments - #[clap(raw = true, conflicts_with = "relay-chain-rpc-url")] + #[arg(raw = true, conflicts_with = "relay-chain-rpc-url")] pub relaychain_args: Vec, } diff --git a/test/service/src/cli.rs b/test/service/src/cli.rs index 40b63798856..23ee9fdd42c 100644 --- a/test/service/src/cli.rs +++ b/test/service/src/cli.rs @@ -24,30 +24,30 @@ use sc_cli::{ use sc_service::BasePath; #[derive(Debug, clap::Parser)] -#[clap( +#[command( version, propagate_version = true, args_conflicts_with_subcommands = true, subcommand_negates_reqs = true )] pub struct TestCollatorCli { - #[clap(subcommand)] + #[command(subcommand)] pub subcommand: Option, - #[clap(flatten)] + #[command(flatten)] pub run: cumulus_client_cli::RunCmd, - #[clap(default_value_t = 2000u32)] + #[arg(default_value_t = 2000u32)] pub parachain_id: u32, /// Relay chain arguments - #[clap(raw = true, conflicts_with = "relay-chain-rpc-url")] + #[arg(raw = true, conflicts_with = "relay-chain-rpc-url")] pub relaychain_args: Vec, - #[clap(long)] + #[arg(long)] pub use_null_consensus: bool, - #[clap(long)] + #[arg(long)] pub disable_block_announcements: bool, } @@ -65,10 +65,10 @@ pub enum Subcommand { #[derive(Debug, clap::Parser)] pub struct ExportGenesisStateCommand { - #[clap(default_value_t = 2000u32)] + #[arg(default_value_t = 2000u32)] pub parachain_id: u32, - #[clap(flatten)] + #[command(flatten)] pub base: cumulus_client_cli::ExportGenesisStateCommand, } @@ -81,10 +81,10 @@ impl CliConfiguration for ExportGenesisStateCommand { /// Command for exporting the genesis wasm file. #[derive(Debug, clap::Parser)] pub struct ExportGenesisWasmCommand { - #[clap(default_value_t = 2000u32)] + #[arg(default_value_t = 2000u32)] pub parachain_id: u32, - #[clap(flatten)] + #[command(flatten)] pub base: cumulus_client_cli::ExportGenesisWasmCommand, } From 2b4bbbd58ecde8bcf8ae6e614c8c344f4ce65614 Mon Sep 17 00:00:00 2001 From: Sebastian Kunert Date: Mon, 17 Oct 2022 11:05:50 +0200 Subject: [PATCH 3/7] Remove two more deprecated occurences of clap macro --- polkadot-parachain/src/cli.rs | 2 +- test/service/src/cli.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/polkadot-parachain/src/cli.rs b/polkadot-parachain/src/cli.rs index 9f83ae87b92..b5df0b83643 100644 --- a/polkadot-parachain/src/cli.rs +++ b/polkadot-parachain/src/cli.rs @@ -83,7 +83,7 @@ pub struct Cli { pub no_hardware_benchmarks: bool, /// Relay chain arguments - #[clap(raw = true)] + #[arg(raw = true)] pub relaychain_args: Vec, } diff --git a/test/service/src/cli.rs b/test/service/src/cli.rs index 3c1cde852e0..27e2f5bbe72 100644 --- a/test/service/src/cli.rs +++ b/test/service/src/cli.rs @@ -41,7 +41,7 @@ pub struct TestCollatorCli { pub parachain_id: u32, /// Relay chain arguments - #[clap(raw = true)] + #[arg(raw = true)] pub relaychain_args: Vec, #[arg(long)] From 943aa7ec3551e4ff668646b105530b390df42a30 Mon Sep 17 00:00:00 2001 From: Sebastian Kunert Date: Mon, 17 Oct 2022 16:40:08 +0200 Subject: [PATCH 4/7] Remove "deprecated" feature from clap --- client/cli/Cargo.toml | 2 +- polkadot-parachain/Cargo.toml | 2 +- test/service/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/client/cli/Cargo.toml b/client/cli/Cargo.toml index fe8ee5e740c..968d19e8000 100644 --- a/client/cli/Cargo.toml +++ b/client/cli/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Parity Technologies "] edition = "2021" [dependencies] -clap = { version = "4.0.9", features = ["derive", "deprecated"] } +clap = { version = "4.0.9", features = ["derive"] } codec = { package = "parity-scale-codec", version = "3.0.0" } url = "2.3.1" diff --git a/polkadot-parachain/Cargo.toml b/polkadot-parachain/Cargo.toml index 884e0b3bd85..bb06fa08f96 100644 --- a/polkadot-parachain/Cargo.toml +++ b/polkadot-parachain/Cargo.toml @@ -8,7 +8,7 @@ description = "Runs a polkadot parachain node which could be a collator." [dependencies] async-trait = "0.1.57" -clap = { version = "4.0.9", features = ["derive", "deprecated"] } +clap = { version = "4.0.9", features = ["derive"] } codec = { package = "parity-scale-codec", version = "3.0.0" } futures = "0.3.24" hex-literal = "0.3.4" diff --git a/test/service/Cargo.toml b/test/service/Cargo.toml index 6db7bea5169..2e9c07f7718 100644 --- a/test/service/Cargo.toml +++ b/test/service/Cargo.toml @@ -10,7 +10,7 @@ path = "src/main.rs" [dependencies] async-trait = "0.1.57" -clap = { version = "4.0.9", features = ["derive", "deprecated"] } +clap = { version = "4.0.9", features = ["derive"] } codec = { package = "parity-scale-codec", version = "3.0.0" } criterion = { version = "0.4.0", features = [ "async_tokio" ] } jsonrpsee = { version = "0.15.1", features = ["server"] } From 8b9f45bc26cfa5c30083fea717eb5bf966761ba7 Mon Sep 17 00:00:00 2001 From: Sebastian Kunert Date: Tue, 18 Oct 2022 11:08:27 +0200 Subject: [PATCH 5/7] Update cargo lock --- Cargo.lock | 1093 ++++++++++++++++++---------------------------------- 1 file changed, 384 insertions(+), 709 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 948b8a51fd7..2e287f1cd0e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -332,9 +332,9 @@ dependencies = [ [[package]] name = "async-std-resolver" -version = "0.21.2" +version = "0.22.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0f2f8a4a203be3325981310ab243a28e6e4ea55b6519bffce05d41ab60e09ad8" +checksum = "6ba50e24d9ee0a8950d3d03fc6d0dd10aa14b5de3b101949b4e160f7fee7c723" dependencies = [ "async-std", "async-trait", @@ -469,7 +469,7 @@ dependencies = [ [[package]] name = "beefy-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "array-bytes", "async-trait", @@ -506,7 +506,7 @@ dependencies = [ [[package]] name = "beefy-gadget-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "beefy-gadget", "beefy-primitives", @@ -526,7 +526,7 @@ dependencies = [ [[package]] name = "beefy-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "beefy-primitives", "sp-api", @@ -536,7 +536,7 @@ dependencies = [ [[package]] name = "beefy-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "parity-scale-codec", "scale-info", @@ -549,12 +549,6 @@ dependencies = [ "sp-std", ] -[[package]] -name = "bimap" -version = "0.6.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "50ae17cabbc8a38a1e3e4c1a6a664e9a09672dc14d0896fa8d865d3a5a446b07" - [[package]] name = "bincode" version = "1.3.3" @@ -662,7 +656,7 @@ version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b" dependencies = [ - "block-padding 0.1.5", + "block-padding", "byte-tools", "byteorder", "generic-array 0.12.4", @@ -674,7 +668,6 @@ version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4" dependencies = [ - "block-padding 0.2.1", "generic-array 0.14.4", ] @@ -696,12 +689,6 @@ dependencies = [ "byte-tools", ] -[[package]] -name = "block-padding" -version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8d696c370c750c948ada61c69a0ee2cbbb9c50b1019ddb86d9317157a99c2cae" - [[package]] name = "blocking" version = "1.1.0" @@ -993,14 +980,9 @@ version = "3.2.22" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "86447ad904c7fb335a790c9d7fe3d0d971dc523b8ccd1561a520de9a85302750" dependencies = [ - "atty", "bitflags", - "clap_derive 3.2.18", "clap_lex 0.2.2", "indexmap", - "once_cell", - "strsim", - "termcolor", "textwrap", ] @@ -1012,26 +994,13 @@ checksum = "4ed45cc2c62a3eff523e718d8576ba762c83a3146151093283ac62ae11933a73" dependencies = [ "atty", "bitflags", - "clap_derive 4.0.10", + "clap_derive", "clap_lex 0.3.0", "once_cell", "strsim", "termcolor", ] -[[package]] -name = "clap_derive" -version = "3.2.18" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ea0c8bce528c4be4da13ea6fead8965e95b6073585a2f05204bd8f4119f82a65" -dependencies = [ - "heck", - "proc-macro-error", - "proc-macro2", - "quote", - "syn", -] - [[package]] name = "clap_derive" version = "4.0.10" @@ -1063,15 +1032,6 @@ dependencies = [ "os_str_bytes", ] -[[package]] -name = "cmake" -version = "0.1.48" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e8ad8cef104ac57b68b89df3208164d228503abbdce70f6880ffa3d970e7443a" -dependencies = [ - "cc", -] - [[package]] name = "coarsetime" version = "0.1.22" @@ -1556,17 +1516,6 @@ dependencies = [ "cipher", ] -[[package]] -name = "cuckoofilter" -version = "0.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b810a8449931679f64cd7eef1bbd0fa315801b6d5d9cdc1ace2804d6529eee18" -dependencies = [ - "byteorder", - "fnv", - "rand 0.7.3", -] - [[package]] name = "cumulus-client-cli" version = "0.1.0" @@ -2566,9 +2515,9 @@ dependencies = [ [[package]] name = "enum-as-inner" -version = "0.4.0" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "21cdad81446a7f7dc43f6a77409efeb9733d2fa65553efef6018ef257c959b73" +checksum = "c9720bba047d567ffc8a3cba48bf19126600e249ab7f128e9233e6376976a116" dependencies = [ "heck", "proc-macro2", @@ -2852,7 +2801,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "parity-scale-codec", ] @@ -2875,7 +2824,7 @@ checksum = "85dcb89d2b10c5f6133de2efd8c11959ce9dbb46a2f7a4cab208c4eeda6ce1ab" [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-support", "frame-system", @@ -2898,12 +2847,12 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "Inflector", "array-bytes", "chrono", - "clap 3.2.22", + "clap 4.0.11", "comfy-table", "frame-benchmarking", "frame-support", @@ -2949,7 +2898,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2960,7 +2909,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2976,7 +2925,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-support", "frame-system", @@ -3005,7 +2954,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "bitflags", "frame-metadata", @@ -3037,7 +2986,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "Inflector", "cfg-expr", @@ -3051,7 +3000,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -3063,7 +3012,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "proc-macro2", "quote", @@ -3073,7 +3022,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-support", "log", @@ -3091,7 +3040,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-support", @@ -3106,7 +3055,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "parity-scale-codec", "sp-api", @@ -3115,7 +3064,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-support", "parity-scale-codec", @@ -3499,12 +3448,6 @@ version = "0.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7ebdb29d2ea9ed0083cd8cece49bbd968021bd99b0849edb4a9a7ee0fdf6a4e0" -[[package]] -name = "hex_fmt" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b07f60793ff0a4d9cef0f18e63b5357e06209987153a64648c972c1e5aff336f" - [[package]] name = "hmac" version = "0.8.1" @@ -3668,9 +3611,9 @@ dependencies = [ [[package]] name = "if-watch" -version = "1.0.0" +version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ae8f4a3c3d4c89351ca83e120c1c00b27df945d38e05695668c9d4b4f7bc52f3" +checksum = "065c008e570a43c00de6aed9714035e5ea6a498c255323db9091722af6ee67dd" dependencies = [ "async-io", "core-foundation", @@ -3982,7 +3925,7 @@ checksum = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7" [[package]] name = "kusama-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "beefy-primitives", "bitvec", @@ -4080,7 +4023,7 @@ dependencies = [ [[package]] name = "kusama-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "frame-support", "polkadot-primitives", @@ -4171,9 +4114,9 @@ checksum = "c7d73b3f436185384286bd8098d17ec07c9a7d2388a6599f824d8502b529702a" [[package]] name = "libp2p" -version = "0.46.1" +version = "0.49.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "81327106887e42d004fbdab1fef93675be2e2e07c1b95fce45e2cc813485611d" +checksum = "ec878fda12ebec479186b3914ebc48ff180fa4c51847e11a1a68bf65249e02c1" dependencies = [ "bytes", "futures", @@ -4181,12 +4124,8 @@ dependencies = [ "getrandom 0.2.3", "instant", "lazy_static", - "libp2p-autonat", "libp2p-core", - "libp2p-deflate", "libp2p-dns", - "libp2p-floodsub", - "libp2p-gossipsub", "libp2p-identify", "libp2p-kad", "libp2p-mdns", @@ -4194,49 +4133,24 @@ dependencies = [ "libp2p-mplex", "libp2p-noise", "libp2p-ping", - "libp2p-plaintext", - "libp2p-pnet", - "libp2p-relay", - "libp2p-rendezvous", "libp2p-request-response", "libp2p-swarm", "libp2p-swarm-derive", "libp2p-tcp", - "libp2p-uds", "libp2p-wasm-ext", "libp2p-websocket", "libp2p-yamux", "multiaddr", "parking_lot 0.12.1", "pin-project", - "rand 0.7.3", "smallvec", ] -[[package]] -name = "libp2p-autonat" -version = "0.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4decc51f3573653a9f4ecacb31b1b922dd20c25a6322bb15318ec04287ec46f9" -dependencies = [ - "async-trait", - "futures", - "futures-timer", - "instant", - "libp2p-core", - "libp2p-request-response", - "libp2p-swarm", - "log", - "prost 0.10.3", - "prost-build 0.10.4", - "rand 0.8.5", -] - [[package]] name = "libp2p-core" -version = "0.34.0" +version = "0.37.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fbf9b94cefab7599b2d3dff2f93bee218c6621d68590b23ede4485813cbcece6" +checksum = "799676bb0807c788065e57551c6527d461ad572162b0519d1958946ff9e0539d" dependencies = [ "asn1_der", "bs58", @@ -4247,17 +4161,15 @@ dependencies = [ "futures-timer", "instant", "lazy_static", - "libsecp256k1", "log", "multiaddr", "multihash", "multistream-select", "parking_lot 0.12.1", "pin-project", - "prost 0.10.3", - "prost-build 0.10.4", + "prost", + "prost-build", "rand 0.8.5", - "ring", "rw-stream-sink", "sha2 0.10.2", "smallvec", @@ -4267,22 +4179,11 @@ dependencies = [ "zeroize", ] -[[package]] -name = "libp2p-deflate" -version = "0.34.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d0183dc2a3da1fbbf85e5b6cf51217f55b14f5daea0c455a9536eef646bfec71" -dependencies = [ - "flate2", - "futures", - "libp2p-core", -] - [[package]] name = "libp2p-dns" -version = "0.34.0" +version = "0.37.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6cbf54723250fa5d521383be789bf60efdabe6bacfb443f87da261019a49b4b5" +checksum = "2322c9fb40d99101def6a01612ee30500c89abbbecb6297b3cd252903a4c1720" dependencies = [ "async-std-resolver", "futures", @@ -4293,57 +4194,11 @@ dependencies = [ "trust-dns-resolver", ] -[[package]] -name = "libp2p-floodsub" -version = "0.37.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "98a4b6ffd53e355775d24b76f583fdda54b3284806f678499b57913adb94f231" -dependencies = [ - "cuckoofilter", - "fnv", - "futures", - "libp2p-core", - "libp2p-swarm", - "log", - "prost 0.10.3", - "prost-build 0.10.4", - "rand 0.7.3", - "smallvec", -] - -[[package]] -name = "libp2p-gossipsub" -version = "0.39.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "74b4b888cfbeb1f5551acd3aa1366e01bf88ede26cc3c4645d0d2d004d5ca7b0" -dependencies = [ - "asynchronous-codec", - "base64", - "byteorder", - "bytes", - "fnv", - "futures", - "hex_fmt", - "instant", - "libp2p-core", - "libp2p-swarm", - "log", - "prometheus-client", - "prost 0.10.3", - "prost-build 0.10.4", - "rand 0.7.3", - "regex", - "sha2 0.10.2", - "smallvec", - "unsigned-varint", - "wasm-timer", -] - [[package]] name = "libp2p-identify" -version = "0.37.0" +version = "0.40.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c50b585518f8efd06f93ac2f976bd672e17cdac794644b3117edd078e96bda06" +checksum = "dcf9a121f699e8719bda2e6e9e9b6ddafc6cff4602471d6481c1067930ccb29b" dependencies = [ "asynchronous-codec", "futures", @@ -4351,9 +4206,9 @@ dependencies = [ "libp2p-core", "libp2p-swarm", "log", - "lru 0.7.7", - "prost 0.10.3", - "prost-build 0.10.4", + "lru 0.8.1", + "prost", + "prost-build", "prost-codec", "smallvec", "thiserror", @@ -4362,9 +4217,9 @@ dependencies = [ [[package]] name = "libp2p-kad" -version = "0.38.0" +version = "0.41.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "740862893bb5f06ac24acc9d49bdeadc3a5e52e51818a30a25c1f3519da2c851" +checksum = "6721c200e2021f6c3fab8b6cf0272ead8912d871610ee194ebd628cecf428f22" dependencies = [ "arrayvec 0.7.2", "asynchronous-codec", @@ -4377,9 +4232,9 @@ dependencies = [ "libp2p-core", "libp2p-swarm", "log", - "prost 0.10.3", - "prost-build 0.10.4", - "rand 0.7.3", + "prost", + "prost-build", + "rand 0.8.5", "sha2 0.10.2", "smallvec", "thiserror", @@ -4390,16 +4245,15 @@ dependencies = [ [[package]] name = "libp2p-mdns" -version = "0.38.0" +version = "0.41.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "66e5e5919509603281033fd16306c61df7a4428ce274b67af5e14b07de5cdcb2" +checksum = "761704e727f7d68d58d7bc2231eafae5fc1b9814de24290f126df09d4bd37a15" dependencies = [ "async-io", "data-encoding", "dns-parser", "futures", "if-watch", - "lazy_static", "libp2p-core", "libp2p-swarm", "log", @@ -4411,25 +4265,23 @@ dependencies = [ [[package]] name = "libp2p-metrics" -version = "0.7.0" +version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ef8aff4a1abef42328fbb30b17c853fff9be986dc39af17ee39f9c5f755c5e0c" +checksum = "9ee31b08e78b7b8bfd1c4204a9dd8a87b4fcdf6dafc57eb51701c1c264a81cb9" dependencies = [ "libp2p-core", - "libp2p-gossipsub", "libp2p-identify", "libp2p-kad", "libp2p-ping", - "libp2p-relay", "libp2p-swarm", "prometheus-client", ] [[package]] name = "libp2p-mplex" -version = "0.34.0" +version = "0.37.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61fd1b20638ec209c5075dfb2e8ce6a7ea4ec3cd3ad7b77f7a477c06d53322e2" +checksum = "692664acfd98652de739a8acbb0a0d670f1d67190a49be6b4395e22c37337d89" dependencies = [ "asynchronous-codec", "bytes", @@ -4438,16 +4290,16 @@ dependencies = [ "log", "nohash-hasher", "parking_lot 0.12.1", - "rand 0.7.3", + "rand 0.8.5", "smallvec", "unsigned-varint", ] [[package]] name = "libp2p-noise" -version = "0.37.0" +version = "0.40.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "762408cb5d84b49a600422d7f9a42c18012d8da6ebcd570f9a4a4290ba41fb6f" +checksum = "048155686bd81fe6cb5efdef0c6290f25ad32a0a42e8f4f72625cf6a505a206f" dependencies = [ "bytes", "curve25519-dalek 3.2.0", @@ -4455,8 +4307,8 @@ dependencies = [ "lazy_static", "libp2p-core", "log", - "prost 0.10.3", - "prost-build 0.10.4", + "prost", + "prost-build", "rand 0.8.5", "sha2 0.10.2", "snow", @@ -4467,105 +4319,25 @@ dependencies = [ [[package]] name = "libp2p-ping" -version = "0.37.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "100a6934ae1dbf8a693a4e7dd1d730fd60b774dafc45688ed63b554497c6c925" -dependencies = [ - "futures", - "futures-timer", - "instant", - "libp2p-core", - "libp2p-swarm", - "log", - "rand 0.7.3", - "void", -] - -[[package]] -name = "libp2p-plaintext" -version = "0.34.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "be27bf0820a6238a4e06365b096d428271cce85a129cf16f2fe9eb1610c4df86" -dependencies = [ - "asynchronous-codec", - "bytes", - "futures", - "libp2p-core", - "log", - "prost 0.10.3", - "prost-build 0.10.4", - "unsigned-varint", - "void", -] - -[[package]] -name = "libp2p-pnet" -version = "0.22.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0f1a458bbda880107b5b36fcb9b5a1ef0c329685da0e203ed692a8ebe64cc92c" -dependencies = [ - "futures", - "log", - "pin-project", - "rand 0.7.3", - "salsa20", - "sha3 0.9.1", -] - -[[package]] -name = "libp2p-relay" -version = "0.10.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4931547ee0cce03971ccc1733ff05bb0c4349fd89120a39e9861e2bbe18843c3" -dependencies = [ - "asynchronous-codec", - "bytes", - "either", - "futures", - "futures-timer", - "instant", - "libp2p-core", - "libp2p-swarm", - "log", - "pin-project", - "prost 0.10.3", - "prost-build 0.10.4", - "prost-codec", - "rand 0.8.5", - "smallvec", - "static_assertions", - "thiserror", - "void", -] - -[[package]] -name = "libp2p-rendezvous" -version = "0.7.0" +version = "0.40.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9511c9672ba33284838e349623319c8cad2d18cfad243ae46c6b7e8a2982ea4e" +checksum = "7228b9318d34689521349a86eb39a3c3a802c9efc99a0568062ffb80913e3f91" dependencies = [ - "asynchronous-codec", - "bimap", "futures", "futures-timer", "instant", "libp2p-core", "libp2p-swarm", "log", - "prost 0.10.3", - "prost-build 0.10.4", "rand 0.8.5", - "sha2 0.10.2", - "thiserror", - "unsigned-varint", "void", ] [[package]] name = "libp2p-request-response" -version = "0.19.0" +version = "0.22.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "508a189e2795d892c8f5c1fa1e9e0b1845d32d7b0b249dbf7b05b18811361843" +checksum = "8827af16a017b65311a410bb626205a9ad92ec0473967618425039fa5231adc1" dependencies = [ "async-trait", "bytes", @@ -4574,16 +4346,16 @@ dependencies = [ "libp2p-core", "libp2p-swarm", "log", - "rand 0.7.3", + "rand 0.8.5", "smallvec", "unsigned-varint", ] [[package]] name = "libp2p-swarm" -version = "0.37.0" +version = "0.40.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "95ac5be6c2de2d1ff3f7693fda6faf8a827b1f3e808202277783fea9f527d114" +checksum = "46d13df7c37807965d82930c0e4b04a659efcb6cca237373b206043db5398ecf" dependencies = [ "either", "fnv", @@ -4593,7 +4365,7 @@ dependencies = [ "libp2p-core", "log", "pin-project", - "rand 0.7.3", + "rand 0.8.5", "smallvec", "thiserror", "void", @@ -4601,48 +4373,36 @@ dependencies = [ [[package]] name = "libp2p-swarm-derive" -version = "0.28.0" +version = "0.30.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9f54a64b6957249e0ce782f8abf41d97f69330d02bf229f0672d864f0650cc76" +checksum = "a0eddc4497a8b5a506013c40e8189864f9c3a00db2b25671f428ae9007f3ba32" dependencies = [ + "heck", "quote", "syn", ] [[package]] name = "libp2p-tcp" -version = "0.34.0" +version = "0.37.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8a6771dc19aa3c65d6af9a8c65222bfc8fcd446630ddca487acd161fa6096f3b" +checksum = "9839d96761491c6d3e238e70554b856956fca0ab60feb9de2cd08eed4473fa92" dependencies = [ "async-io", "futures", "futures-timer", "if-watch", - "ipnet", "libc", "libp2p-core", "log", "socket2", ] -[[package]] -name = "libp2p-uds" -version = "0.33.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d125e3e5f0d58f3c6ac21815b20cf4b6a88b8db9dc26368ea821838f4161fd4d" -dependencies = [ - "async-std", - "futures", - "libp2p-core", - "log", -] - [[package]] name = "libp2p-wasm-ext" -version = "0.34.0" +version = "0.37.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ec894790eec3c1608f8d1a8a0bdf0dbeb79ed4de2dce964222011c2896dfa05a" +checksum = "a17b5b8e7a73e379e47b1b77f8a82c4721e97eca01abcd18e9cd91a23ca6ce97" dependencies = [ "futures", "js-sys", @@ -4654,9 +4414,9 @@ dependencies = [ [[package]] name = "libp2p-websocket" -version = "0.36.0" +version = "0.39.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9808e57e81be76ff841c106b4c5974fb4d41a233a7bdd2afbf1687ac6def3818" +checksum = "3758ae6f89b2531a24b6d9f5776bda6a626b60a57600d7185d43dfa75ca5ecc4" dependencies = [ "either", "futures", @@ -4673,12 +4433,13 @@ dependencies = [ [[package]] name = "libp2p-yamux" -version = "0.38.0" +version = "0.41.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c6dea686217a06072033dc025631932810e2f6ad784e4fafa42e27d311c7a81c" +checksum = "30f079097a21ad017fc8139460630286f02488c8c13b26affb46623aa20d8845" dependencies = [ "futures", "libp2p-core", + "log", "parking_lot 0.12.1", "thiserror", "yamux", @@ -5088,7 +4849,7 @@ dependencies = [ "digest 0.10.3", "multihash-derive", "sha2 0.10.2", - "sha3 0.10.0", + "sha3", "unsigned-varint", ] @@ -5114,9 +4875,9 @@ checksum = "e5ce46fe64a9d73be07dcbe690a38ce1b293be448fd8ce1e6c1b8062c9f72c6a" [[package]] name = "multistream-select" -version = "0.11.0" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "363a84be6453a70e63513660f4894ef815daf88e3356bffcda9ca27d810ce83b" +checksum = "9bc41247ec209813e2fd414d6e16b9d94297dacf3cd613fa6ef09cd4d9755c10" dependencies = [ "bytes", "futures", @@ -5184,9 +4945,9 @@ dependencies = [ [[package]] name = "netlink-packet-route" -version = "0.11.0" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "733ea73609acfd7fa7ddadfb7bf709b0471668c456ad9513685af543a06342b2" +checksum = "d9ea4302b9759a7a88242299225ea3688e63c85ea136371bb6cf94fd674efaab" dependencies = [ "anyhow", "bitflags", @@ -5210,23 +4971,24 @@ dependencies = [ [[package]] name = "netlink-proto" -version = "0.9.2" +version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ef8785b8141e8432aa45fceb922a7e876d7da3fad37fa7e7ec702ace3aa0826b" +checksum = "65b4b14489ab424703c092062176d52ba55485a89c076b4f9db05092b7223aa6" dependencies = [ "bytes", "futures", "log", "netlink-packet-core", "netlink-sys", + "thiserror", "tokio", ] [[package]] name = "netlink-sys" -version = "0.8.2" +version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3e4c9f9547a08241bee7b6558b9b98e1f290d187de8b7cfca2bbb4937bcaa8f8" +checksum = "92b654097027250401127914afb37cb1f311df6610a9891ff07a757e94199027" dependencies = [ "async-io", "bytes", @@ -5237,15 +4999,13 @@ dependencies = [ [[package]] name = "nix" -version = "0.22.3" +version = "0.24.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e4916f159ed8e5de0082076562152a76b7a1f64a01fd9d1e0fea002c37624faf" +checksum = "195cdbc1741b8134346d515b3a56a1c94b0912758009cfd53f99ea0f57b065fc" dependencies = [ "bitflags", - "cc", "cfg-if 1.0.0", "libc", - "memoffset", ] [[package]] @@ -5484,19 +5244,10 @@ version = "6.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8e22443d1643a904602595ba1cd8f7d896afe56d26712531c5ff73a15b2fbf64" -[[package]] -name = "owning_ref" -version = "0.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6ff55baddef9e4ad00f88b6c743a2a8062d4c6ade126c2a528644b8e444d52ce" -dependencies = [ - "stable_deref_trait", -] - [[package]] name = "pallet-alliance" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "array-bytes", "frame-benchmarking", @@ -5517,7 +5268,7 @@ dependencies = [ [[package]] name = "pallet-asset-tx-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-support", "frame-system", @@ -5534,7 +5285,7 @@ dependencies = [ [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-support", @@ -5548,7 +5299,7 @@ dependencies = [ [[package]] name = "pallet-aura" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-support", "frame-system", @@ -5564,7 +5315,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-support", "frame-system", @@ -5580,7 +5331,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-support", "frame-system", @@ -5595,7 +5346,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-support", @@ -5619,7 +5370,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5639,7 +5390,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-support", @@ -5654,7 +5405,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "beefy-primitives", "frame-support", @@ -5670,7 +5421,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "array-bytes", "beefy-merkle-tree", @@ -5693,7 +5444,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-support", @@ -5711,7 +5462,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-support", @@ -5755,7 +5506,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-support", @@ -5772,7 +5523,7 @@ dependencies = [ [[package]] name = "pallet-contracts" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "bitflags", "frame-benchmarking", @@ -5801,7 +5552,7 @@ dependencies = [ [[package]] name = "pallet-contracts-primitives" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "bitflags", "parity-scale-codec", @@ -5813,7 +5564,7 @@ dependencies = [ [[package]] name = "pallet-contracts-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "proc-macro2", "quote", @@ -5823,7 +5574,7 @@ dependencies = [ [[package]] name = "pallet-conviction-voting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "assert_matches", "frame-benchmarking", @@ -5840,7 +5591,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-support", @@ -5858,7 +5609,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5882,7 +5633,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5895,7 +5646,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-support", @@ -5913,7 +5664,7 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5934,7 +5685,7 @@ dependencies = [ [[package]] name = "pallet-gilt" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-support", @@ -5949,7 +5700,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-support", @@ -5972,7 +5723,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5988,7 +5739,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-support", @@ -6008,7 +5759,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-support", @@ -6025,7 +5776,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-support", @@ -6042,7 +5793,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -6060,7 +5811,7 @@ dependencies = [ [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -6075,7 +5826,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-support", @@ -6091,7 +5842,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-support", "frame-system", @@ -6108,7 +5859,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6128,7 +5879,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "parity-scale-codec", "sp-api", @@ -6138,7 +5889,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-support", "frame-system", @@ -6155,7 +5906,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6178,7 +5929,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-support", @@ -6195,7 +5946,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-support", @@ -6210,7 +5961,7 @@ dependencies = [ [[package]] name = "pallet-randomness-collective-flip" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-support", "frame-system", @@ -6224,7 +5975,7 @@ dependencies = [ [[package]] name = "pallet-ranked-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-support", @@ -6242,7 +5993,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-support", @@ -6257,7 +6008,7 @@ dependencies = [ [[package]] name = "pallet-referenda" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "assert_matches", "frame-benchmarking", @@ -6275,7 +6026,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-support", @@ -6291,7 +6042,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-support", "frame-system", @@ -6312,7 +6063,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-support", @@ -6328,7 +6079,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-support", "frame-system", @@ -6342,7 +6093,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6365,7 +6116,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -6376,7 +6127,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "log", "sp-arithmetic", @@ -6385,7 +6136,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-support", "frame-system", @@ -6414,7 +6165,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-support", @@ -6432,7 +6183,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-support", @@ -6451,7 +6202,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-support", "frame-system", @@ -6467,7 +6218,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -6482,7 +6233,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -6493,7 +6244,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-support", @@ -6510,7 +6261,7 @@ dependencies = [ [[package]] name = "pallet-uniques" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-support", @@ -6525,7 +6276,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-support", @@ -6541,7 +6292,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-support", @@ -6556,7 +6307,7 @@ dependencies = [ [[package]] name = "pallet-whitelist" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-benchmarking", "frame-support", @@ -6571,7 +6322,7 @@ dependencies = [ [[package]] name = "pallet-xcm" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "frame-support", "frame-system", @@ -6589,7 +6340,7 @@ dependencies = [ [[package]] name = "pallet-xcm-benchmarks" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "frame-benchmarking", "frame-support", @@ -7143,7 +6894,7 @@ dependencies = [ [[package]] name = "polkadot-approval-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -7158,7 +6909,7 @@ dependencies = [ [[package]] name = "polkadot-availability-bitfield-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -7172,7 +6923,7 @@ dependencies = [ [[package]] name = "polkadot-availability-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "derive_more", "fatality", @@ -7195,7 +6946,7 @@ dependencies = [ [[package]] name = "polkadot-availability-recovery" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "fatality", "futures", @@ -7216,9 +6967,9 @@ dependencies = [ [[package]] name = "polkadot-cli" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ - "clap 3.2.22", + "clap 4.0.11", "frame-benchmarking-cli", "futures", "log", @@ -7242,7 +6993,7 @@ dependencies = [ [[package]] name = "polkadot-client" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "beefy-primitives", "frame-benchmarking", @@ -7283,7 +7034,7 @@ dependencies = [ [[package]] name = "polkadot-collator-protocol" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "always-assert", "bitvec", @@ -7305,7 +7056,7 @@ dependencies = [ [[package]] name = "polkadot-core-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "parity-scale-codec", "parity-util-mem", @@ -7318,7 +7069,7 @@ dependencies = [ [[package]] name = "polkadot-dispute-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "derive_more", "fatality", @@ -7343,7 +7094,7 @@ dependencies = [ [[package]] name = "polkadot-erasure-coding" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "parity-scale-codec", "polkadot-node-primitives", @@ -7357,7 +7108,7 @@ dependencies = [ [[package]] name = "polkadot-gossip-support" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "futures", "futures-timer", @@ -7377,7 +7128,7 @@ dependencies = [ [[package]] name = "polkadot-network-bridge" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "always-assert", "async-trait", @@ -7401,7 +7152,7 @@ dependencies = [ [[package]] name = "polkadot-node-collation-generation" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "futures", "parity-scale-codec", @@ -7419,7 +7170,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-approval-voting" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "bitvec", "derive_more", @@ -7448,7 +7199,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-av-store" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "bitvec", "futures", @@ -7468,7 +7219,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-backing" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "bitvec", "fatality", @@ -7487,7 +7238,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-bitfield-signing" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7502,7 +7253,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-candidate-validation" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "async-trait", "futures", @@ -7520,7 +7271,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-api" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7535,7 +7286,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-selection" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "futures", "futures-timer", @@ -7552,7 +7303,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-dispute-coordinator" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "fatality", "futures", @@ -7571,7 +7322,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-parachains-inherent" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "async-trait", "futures", @@ -7588,7 +7339,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-provisioner" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "bitvec", "fatality", @@ -7606,7 +7357,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "always-assert", "assert_matches", @@ -7638,7 +7389,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-checker" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "futures", "polkadot-node-primitives", @@ -7654,7 +7405,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-runtime-api" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "futures", "memory-lru", @@ -7670,7 +7421,7 @@ dependencies = [ [[package]] name = "polkadot-node-jaeger" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "async-std", "lazy_static", @@ -7688,7 +7439,7 @@ dependencies = [ [[package]] name = "polkadot-node-metrics" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "bs58", "futures", @@ -7707,7 +7458,7 @@ dependencies = [ [[package]] name = "polkadot-node-network-protocol" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "async-trait", "derive_more", @@ -7730,7 +7481,7 @@ dependencies = [ [[package]] name = "polkadot-node-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "bounded-vec", "futures", @@ -7752,7 +7503,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "polkadot-node-jaeger", "polkadot-node-subsystem-types", @@ -7762,7 +7513,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-test-helpers" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "async-trait", "futures", @@ -7780,7 +7531,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-types" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "async-trait", "derive_more", @@ -7803,7 +7554,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-util" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "async-trait", "derive_more", @@ -7836,7 +7587,7 @@ dependencies = [ [[package]] name = "polkadot-overseer" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "async-trait", "futures", @@ -7859,7 +7610,7 @@ dependencies = [ [[package]] name = "polkadot-parachain" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "derive_more", "frame-support", @@ -7957,7 +7708,7 @@ dependencies = [ [[package]] name = "polkadot-performance-test" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "env_logger 0.9.0", "kusama-runtime", @@ -7972,7 +7723,7 @@ dependencies = [ [[package]] name = "polkadot-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "bitvec", "frame-system", @@ -8002,7 +7753,7 @@ dependencies = [ [[package]] name = "polkadot-rpc" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "beefy-gadget", "beefy-gadget-rpc", @@ -8034,7 +7785,7 @@ dependencies = [ [[package]] name = "polkadot-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "beefy-primitives", "bitvec", @@ -8123,7 +7874,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-common" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "beefy-primitives", "bitvec", @@ -8170,7 +7921,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "frame-support", "polkadot-primitives", @@ -8182,7 +7933,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-metrics" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "bs58", "parity-scale-codec", @@ -8194,7 +7945,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-parachains" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "bitflags", "bitvec", @@ -8237,7 +7988,7 @@ dependencies = [ [[package]] name = "polkadot-service" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "async-trait", "beefy-gadget", @@ -8342,7 +8093,7 @@ dependencies = [ [[package]] name = "polkadot-statement-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "arrayvec 0.5.2", "fatality", @@ -8363,7 +8114,7 @@ dependencies = [ [[package]] name = "polkadot-statement-table" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "parity-scale-codec", "polkadot-primitives", @@ -8373,7 +8124,7 @@ dependencies = [ [[package]] name = "polkadot-test-client" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "parity-scale-codec", "polkadot-node-subsystem", @@ -8398,7 +8149,7 @@ dependencies = [ [[package]] name = "polkadot-test-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "beefy-primitives", "bitvec", @@ -8459,7 +8210,7 @@ dependencies = [ [[package]] name = "polkadot-test-service" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "frame-benchmarking", "frame-system", @@ -8680,37 +8431,27 @@ dependencies = [ [[package]] name = "prometheus-client" -version = "0.16.0" +version = "0.18.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ac1abe0255c04d15f571427a2d1e00099016506cf3297b53853acd2b7eb87825" +checksum = "83cd1b99916654a69008fd66b4f9397fbe08e6e51dfe23d4417acf5d3b8cb87c" dependencies = [ "dtoa", "itoa 1.0.1", - "owning_ref", + "parking_lot 0.12.1", "prometheus-client-derive-text-encode", ] [[package]] name = "prometheus-client-derive-text-encode" -version = "0.2.0" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e8e12d01b9d66ad9eb4529c57666b6263fc1993cb30261d83ead658fdd932652" +checksum = "66a455fbcb954c1a7decf3c586e860fd7889cddf4b8e164be736dbac95a953cd" dependencies = [ "proc-macro2", "quote", "syn", ] -[[package]] -name = "prost" -version = "0.10.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bc03e116981ff7d8da8e5c220e374587b98d294af7ba7dd7fda761158f00086f" -dependencies = [ - "bytes", - "prost-derive 0.10.1", -] - [[package]] name = "prost" version = "0.11.0" @@ -8718,29 +8459,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "399c3c31cdec40583bb68f0b18403400d01ec4289c383aa047560439952c4dd7" dependencies = [ "bytes", - "prost-derive 0.11.0", -] - -[[package]] -name = "prost-build" -version = "0.10.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ae5a4388762d5815a9fc0dea33c56b021cdc8dde0c55e0c9ca57197254b0cab" -dependencies = [ - "bytes", - "cfg-if 1.0.0", - "cmake", - "heck", - "itertools", - "lazy_static", - "log", - "multimap", - "petgraph", - "prost 0.10.3", - "prost-types 0.10.1", - "regex", - "tempfile", - "which", + "prost-derive", ] [[package]] @@ -8756,8 +8475,8 @@ dependencies = [ "log", "multimap", "petgraph", - "prost 0.11.0", - "prost-types 0.11.1", + "prost", + "prost-types", "regex", "tempfile", "which", @@ -8765,30 +8484,17 @@ dependencies = [ [[package]] name = "prost-codec" -version = "0.1.0" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "00af1e92c33b4813cc79fda3f2dbf56af5169709be0202df730e9ebc3e4cd007" +checksum = "011ae9ff8359df7915f97302d591cdd9e0e27fbd5a4ddc5bd13b71079bb20987" dependencies = [ "asynchronous-codec", "bytes", - "prost 0.10.3", + "prost", "thiserror", "unsigned-varint", ] -[[package]] -name = "prost-derive" -version = "0.10.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7b670f45da57fb8542ebdbb6105a925fe571b67f9e7ed9f47a06a84e72b4e7cc" -dependencies = [ - "anyhow", - "itertools", - "proc-macro2", - "quote", - "syn", -] - [[package]] name = "prost-derive" version = "0.11.0" @@ -8802,16 +8508,6 @@ dependencies = [ "syn", ] -[[package]] -name = "prost-types" -version = "0.10.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2d0a014229361011dc8e69c8a1ec6c2e8d0f2af7c91e3ea3f5b2170298461e68" -dependencies = [ - "bytes", - "prost 0.10.3", -] - [[package]] name = "prost-types" version = "0.11.1" @@ -8819,7 +8515,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4dfaa718ad76a44b3415e6c4d53b17c8f99160dcb3a99b10470fce8ad43f6e3e" dependencies = [ "bytes", - "prost 0.11.0", + "prost", ] [[package]] @@ -9093,7 +8789,7 @@ checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" [[package]] name = "remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "env_logger 0.9.0", "jsonrpsee", @@ -9212,7 +8908,7 @@ dependencies = [ [[package]] name = "rococo-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "beefy-merkle-tree", "beefy-primitives", @@ -9296,7 +8992,7 @@ dependencies = [ [[package]] name = "rococo-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "frame-support", "polkadot-primitives", @@ -9317,16 +9013,16 @@ dependencies = [ [[package]] name = "rtnetlink" -version = "0.9.1" +version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6f54290e54521dac3de4149d83ddf9f62a359b3cc93bcb494a794a41e6f4744b" +checksum = "322c53fd76a18698f1c27381d58091de3a043d356aa5bd0d510608b565f469a0" dependencies = [ "async-global-executor", "futures", "log", "netlink-packet-route", "netlink-proto", - "nix 0.22.3", + "nix 0.24.2", "thiserror", ] @@ -9445,15 +9141,6 @@ dependencies = [ "rustc_version 0.2.3", ] -[[package]] -name = "salsa20" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c0fbb5f676da676c260ba276a8f43a8dc67cf02d1438423aeb1c677a7212686" -dependencies = [ - "cipher", -] - [[package]] name = "same-file" version = "1.0.6" @@ -9466,7 +9153,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "log", "sp-core", @@ -9477,7 +9164,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "async-trait", "futures", @@ -9486,8 +9173,8 @@ dependencies = [ "libp2p", "log", "parity-scale-codec", - "prost 0.11.0", - "prost-build 0.11.1", + "prost", + "prost-build", "rand 0.7.3", "sc-client-api", "sc-network-common", @@ -9504,7 +9191,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "futures", "futures-timer", @@ -9527,7 +9214,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -9543,7 +9230,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "impl-trait-for-tuples", "memmap2 0.5.0", @@ -9560,7 +9247,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -9571,11 +9258,11 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "array-bytes", "chrono", - "clap 3.2.22", + "clap 4.0.11", "fdlimit", "futures", "libp2p", @@ -9611,7 +9298,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "fnv", "futures", @@ -9639,7 +9326,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "hash-db", "kvdb", @@ -9664,7 +9351,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "async-trait", "futures", @@ -9688,7 +9375,7 @@ dependencies = [ [[package]] name = "sc-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "async-trait", "futures", @@ -9717,7 +9404,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "async-trait", "fork-tree", @@ -9759,7 +9446,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "futures", "jsonrpsee", @@ -9781,7 +9468,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "fork-tree", "parity-scale-codec", @@ -9794,7 +9481,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "async-trait", "futures", @@ -9818,7 +9505,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "lazy_static", "lru 0.7.7", @@ -9845,7 +9532,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "environmental", "parity-scale-codec", @@ -9861,7 +9548,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "log", "parity-scale-codec", @@ -9876,7 +9563,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "cfg-if 1.0.0", "libc", @@ -9896,7 +9583,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "ahash", "array-bytes", @@ -9937,7 +9624,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "finality-grandpa", "futures", @@ -9958,7 +9645,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "ansi_term", "futures", @@ -9975,7 +9662,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "array-bytes", "async-trait", @@ -9990,7 +9677,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "array-bytes", "async-trait", @@ -10012,7 +9699,7 @@ dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", "pin-project", - "prost 0.11.0", + "prost", "rand 0.7.3", "sc-block-builder", "sc-client-api", @@ -10037,14 +9724,14 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "cid", "futures", "libp2p", "log", - "prost 0.11.0", - "prost-build 0.11.1", + "prost", + "prost-build", "sc-client-api", "sc-network-common", "sp-blockchain", @@ -10057,7 +9744,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "async-trait", "bitflags", @@ -10067,7 +9754,7 @@ dependencies = [ "libp2p", "linked_hash_set", "parity-scale-codec", - "prost-build 0.11.1", + "prost-build", "sc-consensus", "sc-peerset", "serde", @@ -10083,7 +9770,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "ahash", "futures", @@ -10101,15 +9788,15 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "array-bytes", "futures", "libp2p", "log", "parity-scale-codec", - "prost 0.11.0", - "prost-build 0.11.1", + "prost", + "prost-build", "sc-client-api", "sc-network-common", "sc-peerset", @@ -10122,7 +9809,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "array-bytes", "fork-tree", @@ -10132,8 +9819,8 @@ dependencies = [ "lru 0.7.7", "mockall", "parity-scale-codec", - "prost 0.11.0", - "prost-build 0.11.1", + "prost", + "prost-build", "sc-client-api", "sc-consensus", "sc-network-common", @@ -10152,7 +9839,7 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "array-bytes", "futures", @@ -10171,7 +9858,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "array-bytes", "bytes", @@ -10201,7 +9888,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "futures", "libp2p", @@ -10214,7 +9901,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -10223,7 +9910,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "futures", "hash-db", @@ -10253,7 +9940,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "futures", "jsonrpsee", @@ -10276,7 +9963,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "futures", "jsonrpsee", @@ -10289,7 +9976,7 @@ dependencies = [ [[package]] name = "sc-rpc-spec-v2" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "futures", "hex", @@ -10308,7 +9995,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "async-trait", "directories", @@ -10379,7 +10066,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "log", "parity-scale-codec", @@ -10393,7 +10080,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -10412,7 +10099,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "futures", "libc", @@ -10431,7 +10118,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "chrono", "futures", @@ -10449,7 +10136,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "ansi_term", "atty", @@ -10480,7 +10167,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -10491,7 +10178,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "async-trait", "futures", @@ -10518,7 +10205,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "async-trait", "futures", @@ -10532,7 +10219,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "futures", "futures-timer", @@ -10838,18 +10525,6 @@ dependencies = [ "digest 0.10.3", ] -[[package]] -name = "sha3" -version = "0.9.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f81199417d4e5de3f04b1e871023acea7389672c4135918f05aa9cbf2f2fa809" -dependencies = [ - "block-buffer 0.9.0", - "digest 0.9.0", - "keccak", - "opaque-debug 0.3.0", -] - [[package]] name = "sha3" version = "0.10.0" @@ -10962,7 +10637,7 @@ checksum = "03b634d87b960ab1a38c4fe143b508576f075e7c978bfad18217645ebfdfa2ec" [[package]] name = "slot-range-helper" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "enumn", "parity-scale-codec", @@ -11038,7 +10713,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "hash-db", "log", @@ -11056,7 +10731,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "blake2", "proc-macro-crate", @@ -11068,7 +10743,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "parity-scale-codec", "scale-info", @@ -11081,7 +10756,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "integer-sqrt", "num-traits", @@ -11096,7 +10771,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "parity-scale-codec", "scale-info", @@ -11109,7 +10784,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "async-trait", "parity-scale-codec", @@ -11121,7 +10796,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "parity-scale-codec", "sp-api", @@ -11133,7 +10808,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "futures", "log", @@ -11151,7 +10826,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "async-trait", "futures", @@ -11170,7 +10845,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "async-trait", "parity-scale-codec", @@ -11188,7 +10863,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "async-trait", "merlin", @@ -11211,7 +10886,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "parity-scale-codec", "scale-info", @@ -11225,7 +10900,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "parity-scale-codec", "scale-info", @@ -11238,7 +10913,7 @@ dependencies = [ [[package]] name = "sp-core" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "array-bytes", "base58", @@ -11284,13 +10959,13 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "blake2", "byteorder", "digest 0.10.3", "sha2 0.10.2", - "sha3 0.10.0", + "sha3", "sp-std", "twox-hash", ] @@ -11298,7 +10973,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "proc-macro2", "quote", @@ -11309,7 +10984,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -11318,7 +10993,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "proc-macro2", "quote", @@ -11328,7 +11003,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "environmental", "parity-scale-codec", @@ -11339,7 +11014,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "finality-grandpa", "log", @@ -11357,7 +11032,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -11371,7 +11046,7 @@ dependencies = [ [[package]] name = "sp-io" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "bytes", "futures", @@ -11397,7 +11072,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "lazy_static", "sp-core", @@ -11408,7 +11083,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "async-trait", "futures", @@ -11425,7 +11100,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "thiserror", "zstd", @@ -11434,7 +11109,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "log", "parity-scale-codec", @@ -11450,7 +11125,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "parity-scale-codec", "scale-info", @@ -11464,7 +11139,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "sp-api", "sp-core", @@ -11474,7 +11149,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "backtrace", "lazy_static", @@ -11484,7 +11159,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "rustc-hash", "serde", @@ -11494,7 +11169,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "either", "hash256-std-hasher", @@ -11517,7 +11192,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -11535,7 +11210,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "Inflector", "proc-macro-crate", @@ -11547,7 +11222,7 @@ dependencies = [ [[package]] name = "sp-sandbox" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "log", "parity-scale-codec", @@ -11561,7 +11236,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "serde", "serde_json", @@ -11570,7 +11245,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "parity-scale-codec", "scale-info", @@ -11584,7 +11259,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "parity-scale-codec", "scale-info", @@ -11595,7 +11270,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "hash-db", "log", @@ -11617,12 +11292,12 @@ dependencies = [ [[package]] name = "sp-std" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" [[package]] name = "sp-storage" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11635,7 +11310,7 @@ dependencies = [ [[package]] name = "sp-tasks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "log", "sp-core", @@ -11648,7 +11323,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "async-trait", "futures-timer", @@ -11664,7 +11339,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "parity-scale-codec", "sp-std", @@ -11676,7 +11351,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "sp-api", "sp-runtime", @@ -11685,7 +11360,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "async-trait", "log", @@ -11701,7 +11376,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "ahash", "hash-db", @@ -11724,7 +11399,7 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11741,7 +11416,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -11752,7 +11427,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "impl-trait-for-tuples", "log", @@ -11765,7 +11440,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -12061,7 +11736,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "platforms", ] @@ -12069,7 +11744,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -12090,7 +11765,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "futures-util", "hyper", @@ -12103,7 +11778,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "jsonrpsee", "log", @@ -12124,7 +11799,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "array-bytes", "async-trait", @@ -12150,7 +11825,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "futures", "substrate-test-utils-derive", @@ -12160,7 +11835,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -12171,7 +11846,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ "ansi_term", "build-helper", @@ -12279,7 +11954,7 @@ checksum = "13a4ec180a2de59b57434704ccfad967f789b12737738798fa08798cd5824c16" [[package]] name = "test-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "frame-support", "polkadot-primitives", @@ -12559,7 +12234,7 @@ dependencies = [ [[package]] name = "tracing-gum" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "polkadot-node-jaeger", "polkadot-primitives", @@ -12570,7 +12245,7 @@ dependencies = [ [[package]] name = "tracing-gum-proc-macro" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "expander 0.0.6", "proc-macro-crate", @@ -12647,9 +12322,9 @@ dependencies = [ [[package]] name = "trust-dns-proto" -version = "0.21.2" +version = "0.22.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c31f240f59877c3d4bb3b3ea0ec5a6a0cff07323580ff8c7a605cd7d08b255d" +checksum = "4f7f83d1e4a0e4358ac54c5c3681e5d7da5efc5a7a632c90bb6d6669ddd9bc26" dependencies = [ "async-trait", "cfg-if 1.0.0", @@ -12661,30 +12336,30 @@ dependencies = [ "idna 0.2.3", "ipnet", "lazy_static", - "log", "rand 0.8.5", "smallvec", "thiserror", "tinyvec", + "tracing", "url", ] [[package]] name = "trust-dns-resolver" -version = "0.21.2" +version = "0.22.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e4ba72c2ea84515690c9fcef4c6c660bb9df3036ed1051686de84605b74fd558" +checksum = "aff21aa4dcefb0a1afbfac26deb0adc93888c7d295fb63ab273ef276ba2b7cfe" dependencies = [ "cfg-if 1.0.0", "futures-util", "ipconfig", "lazy_static", - "log", "lru-cache", "parking_lot 0.12.1", "resolv-conf", "smallvec", "thiserror", + "tracing", "trust-dns-proto", ] @@ -12697,9 +12372,9 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#30a7a5b4b71f23971742684889f9fdec5f5854a9" +source = "git+https://github.com/paritytech/substrate?branch=master#415648d87848dfa02955e3bea73f55503b852bc1" dependencies = [ - "clap 3.2.22", + "clap 4.0.11", "frame-try-runtime", "jsonrpsee", "log", @@ -13286,7 +12961,7 @@ dependencies = [ [[package]] name = "westend-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "beefy-primitives", "bitvec", @@ -13376,7 +13051,7 @@ dependencies = [ [[package]] name = "westend-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "frame-support", "polkadot-primitives", @@ -13500,15 +13175,15 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "windows" -version = "0.29.0" +version = "0.34.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aac7fef12f4b59cd0a29339406cc9203ab44e440ddff6b3f5a41455349fa9cf3" +checksum = "45296b64204227616fdbf2614cefa4c236b98ee64dfaaaa435207ed99fe7829f" dependencies = [ - "windows_aarch64_msvc 0.29.0", - "windows_i686_gnu 0.29.0", - "windows_i686_msvc 0.29.0", - "windows_x86_64_gnu 0.29.0", - "windows_x86_64_msvc 0.29.0", + "windows_aarch64_msvc 0.34.0", + "windows_i686_gnu 0.34.0", + "windows_i686_msvc 0.34.0", + "windows_x86_64_gnu 0.34.0", + "windows_x86_64_msvc 0.34.0", ] [[package]] @@ -13539,15 +13214,15 @@ dependencies = [ [[package]] name = "windows_aarch64_msvc" -version = "0.29.0" +version = "0.32.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c3d027175d00b01e0cbeb97d6ab6ebe03b12330a35786cbaca5252b1c4bf5d9b" +checksum = "d8e92753b1c443191654ec532f14c199742964a061be25d77d7a96f09db20bf5" [[package]] name = "windows_aarch64_msvc" -version = "0.32.0" +version = "0.34.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d8e92753b1c443191654ec532f14c199742964a061be25d77d7a96f09db20bf5" +checksum = "17cffbe740121affb56fad0fc0e421804adf0ae00891205213b5cecd30db881d" [[package]] name = "windows_aarch64_msvc" @@ -13557,15 +13232,15 @@ checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47" [[package]] name = "windows_i686_gnu" -version = "0.29.0" +version = "0.32.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8793f59f7b8e8b01eda1a652b2697d87b93097198ae85f823b969ca5b89bba58" +checksum = "6a711c68811799e017b6038e0922cb27a5e2f43a2ddb609fe0b6f3eeda9de615" [[package]] name = "windows_i686_gnu" -version = "0.32.0" +version = "0.34.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6a711c68811799e017b6038e0922cb27a5e2f43a2ddb609fe0b6f3eeda9de615" +checksum = "2564fde759adb79129d9b4f54be42b32c89970c18ebf93124ca8870a498688ed" [[package]] name = "windows_i686_gnu" @@ -13575,15 +13250,15 @@ checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6" [[package]] name = "windows_i686_msvc" -version = "0.29.0" +version = "0.32.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8602f6c418b67024be2996c512f5f995de3ba417f4c75af68401ab8756796ae4" +checksum = "146c11bb1a02615db74680b32a68e2d61f553cc24c4eb5b4ca10311740e44172" [[package]] name = "windows_i686_msvc" -version = "0.32.0" +version = "0.34.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "146c11bb1a02615db74680b32a68e2d61f553cc24c4eb5b4ca10311740e44172" +checksum = "9cd9d32ba70453522332c14d38814bceeb747d80b3958676007acadd7e166956" [[package]] name = "windows_i686_msvc" @@ -13593,15 +13268,15 @@ checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024" [[package]] name = "windows_x86_64_gnu" -version = "0.29.0" +version = "0.32.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f3d615f419543e0bd7d2b3323af0d86ff19cbc4f816e6453f36a2c2ce889c354" +checksum = "c912b12f7454c6620635bbff3450962753834be2a594819bd5e945af18ec64bc" [[package]] name = "windows_x86_64_gnu" -version = "0.32.0" +version = "0.34.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c912b12f7454c6620635bbff3450962753834be2a594819bd5e945af18ec64bc" +checksum = "cfce6deae227ee8d356d19effc141a509cc503dfd1f850622ec4b0f84428e1f4" [[package]] name = "windows_x86_64_gnu" @@ -13611,15 +13286,15 @@ checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1" [[package]] name = "windows_x86_64_msvc" -version = "0.29.0" +version = "0.32.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "11d95421d9ed3672c280884da53201a5c46b7b2765ca6faf34b0d71cf34a3561" +checksum = "504a2476202769977a040c6364301a3f65d0cc9e3fb08600b2bda150a0488316" [[package]] name = "windows_x86_64_msvc" -version = "0.32.0" +version = "0.34.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "504a2476202769977a040c6364301a3f65d0cc9e3fb08600b2bda150a0488316" +checksum = "d19538ccc21819d01deaf88d6a17eae6596a12e9aafdbb97916fb49896d89de9" [[package]] name = "windows_x86_64_msvc" @@ -13659,7 +13334,7 @@ dependencies = [ [[package]] name = "xcm" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "derivative", "impl-trait-for-tuples", @@ -13673,7 +13348,7 @@ dependencies = [ [[package]] name = "xcm-builder" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "frame-support", "frame-system", @@ -13693,7 +13368,7 @@ dependencies = [ [[package]] name = "xcm-executor" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "frame-benchmarking", "frame-support", @@ -13711,7 +13386,7 @@ dependencies = [ [[package]] name = "xcm-procedural" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#828fa9ee95115989ca98463ab113f59cbb16aa9a" +source = "git+https://github.com/paritytech/polkadot?branch=master#8e57f2ce9a85951f3476069de2711a3f9a500ac6" dependencies = [ "Inflector", "proc-macro2", From 18836f7d8eccca718e320de7957b295e49f6cace Mon Sep 17 00:00:00 2001 From: Sebastian Kunert Date: Tue, 18 Oct 2022 11:49:40 +0200 Subject: [PATCH 6/7] Fix group name --- client/cli/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/client/cli/src/lib.rs b/client/cli/src/lib.rs index dc5d9a0def2..f2a1b41fbb9 100644 --- a/client/cli/src/lib.rs +++ b/client/cli/src/lib.rs @@ -277,6 +277,7 @@ fn validate_relay_chain_url(arg: &str) -> Result { /// The `run` command used to run a node. #[derive(Debug, clap::Parser)] +#[group(skip)] pub struct RunCmd { /// The cumulus RunCmd inherents from sc_cli's #[command(flatten)] From 0f600035c921fd5e11795bf29cd256273c57a70f Mon Sep 17 00:00:00 2001 From: Sebastian Kunert Date: Tue, 18 Oct 2022 12:55:29 +0200 Subject: [PATCH 7/7] More skipped group names --- client/cli/src/lib.rs | 1 + test/service/src/cli.rs | 2 ++ 2 files changed, 3 insertions(+) diff --git a/client/cli/src/lib.rs b/client/cli/src/lib.rs index f2a1b41fbb9..ae7943f99aa 100644 --- a/client/cli/src/lib.rs +++ b/client/cli/src/lib.rs @@ -40,6 +40,7 @@ use url::Url; /// The `purge-chain` command used to remove the whole chain: the parachain and the relay chain. #[derive(Debug, clap::Parser)] +#[group(skip)] pub struct PurgeChainCmd { /// The base struct of the purge-chain command. #[command(flatten)] diff --git a/test/service/src/cli.rs b/test/service/src/cli.rs index 27e2f5bbe72..31829a66d26 100644 --- a/test/service/src/cli.rs +++ b/test/service/src/cli.rs @@ -64,6 +64,7 @@ pub enum Subcommand { } #[derive(Debug, clap::Parser)] +#[group(skip)] pub struct ExportGenesisStateCommand { #[arg(default_value_t = 2000u32)] pub parachain_id: u32, @@ -80,6 +81,7 @@ impl CliConfiguration for ExportGenesisStateCommand { /// Command for exporting the genesis wasm file. #[derive(Debug, clap::Parser)] +#[group(skip)] pub struct ExportGenesisWasmCommand { #[arg(default_value_t = 2000u32)] pub parachain_id: u32,