From 5e0f421e3fda43487b7b9442f5971e31cc86f22c Mon Sep 17 00:00:00 2001 From: Michal Kucharczyk <1728078+michalkucharczyk@users.noreply.github.com> Date: Thu, 8 Sep 2022 17:40:47 +0200 Subject: [PATCH 01/12] Remove CanAuthorWith trait CanAuthotWith trait removed. Also all dependencies, parameters, type paramers were removed. This is related to removal of native runtime. --- client/consensus/aura/src/import_queue.rs | 34 ++++++++--------------- parachain-template/node/src/service.rs | 2 -- polkadot-parachain/src/service.rs | 27 +++++++----------- 3 files changed, 22 insertions(+), 41 deletions(-) diff --git a/client/consensus/aura/src/import_queue.rs b/client/consensus/aura/src/import_queue.rs index 31ed5779850..80b35a2bab9 100644 --- a/client/consensus/aura/src/import_queue.rs +++ b/client/consensus/aura/src/import_queue.rs @@ -25,7 +25,7 @@ use sc_telemetry::TelemetryHandle; use sp_api::{ApiExt, ProvideRuntimeApi}; use sp_block_builder::BlockBuilder as BlockBuilderApi; use sp_blockchain::HeaderBackend; -use sp_consensus::{CanAuthorWith, Error as ConsensusError}; +use sp_consensus::Error as ConsensusError; use sp_consensus_aura::AuraApi; use sp_core::crypto::Pair; use sp_inherents::CreateInherentDataProviders; @@ -34,7 +34,7 @@ use std::{fmt::Debug, hash::Hash, sync::Arc}; use substrate_prometheus_endpoint::Registry; /// Parameters of [`import_queue`]. -pub struct ImportQueueParams<'a, I, C, CIDP, S, CAW> { +pub struct ImportQueueParams<'a, I, C, CIDP, S> { /// The block import to use. pub block_import: I, /// The client to interact with the chain. @@ -45,23 +45,20 @@ pub struct ImportQueueParams<'a, I, C, CIDP, S, CAW> { pub spawner: &'a S, /// The prometheus registry. pub registry: Option<&'a Registry>, - /// Can we author with the current node? - pub can_author_with: CAW, /// The telemetry handle. pub telemetry: Option, } /// Start an import queue for the Aura consensus algorithm. -pub fn import_queue<'a, P, Block, I, C, S, CAW, CIDP>( +pub fn import_queue<'a, P, Block, I, C, S, CIDP>( ImportQueueParams { block_import, client, create_inherent_data_providers, spawner, registry, - can_author_with, telemetry, - }: ImportQueueParams<'a, I, C, CIDP, S, CAW>, + }: ImportQueueParams<'a, I, C, CIDP, S>, ) -> Result, sp_consensus::Error> where Block: BlockT, @@ -82,48 +79,41 @@ where P::Public: Clone + Eq + Send + Sync + Hash + Debug + Codec, P::Signature: Codec, S: sp_core::traits::SpawnEssentialNamed, - CAW: CanAuthorWith + Send + Sync + 'static, CIDP: CreateInherentDataProviders + Sync + Send + 'static, CIDP::InherentDataProviders: InherentDataProviderExt + Send + Sync, { - sc_consensus_aura::import_queue::(sc_consensus_aura::ImportQueueParams { + sc_consensus_aura::import_queue::(sc_consensus_aura::ImportQueueParams { block_import: cumulus_client_consensus_common::ParachainBlockImport::new(block_import), justification_import: None, client, create_inherent_data_providers, spawner, registry, - can_author_with, check_for_equivocation: sc_consensus_aura::CheckForEquivocation::No, telemetry, }) } /// Parameters of [`build_verifier`]. -pub struct BuildVerifierParams { +pub struct BuildVerifierParams { /// The client to interact with the chain. pub client: Arc, /// The inherent data providers, to create the inherent data. pub create_inherent_data_providers: CIDP, - /// Can we author with the current node? - pub can_author_with: CAW, /// The telemetry handle. pub telemetry: Option, } /// Build the [`AuraVerifier`]. -pub fn build_verifier( - BuildVerifierParams { - client, - create_inherent_data_providers, - can_author_with, - telemetry, - }: BuildVerifierParams, -) -> AuraVerifier { +pub fn build_verifier( + BuildVerifierParams { client, create_inherent_data_providers, telemetry }: BuildVerifierParams< + C, + CIDP, + >, +) -> AuraVerifier { sc_consensus_aura::build_verifier(sc_consensus_aura::BuildVerifierParams { client, create_inherent_data_providers, - can_author_with, telemetry, check_for_equivocation: sc_consensus_aura::CheckForEquivocation::No, }) diff --git a/parachain-template/node/src/service.rs b/parachain-template/node/src/service.rs index 9ad3c38e1ac..a90d707354f 100644 --- a/parachain-template/node/src/service.rs +++ b/parachain-template/node/src/service.rs @@ -424,7 +424,6 @@ pub fn parachain_build_import_queue( _, _, _, - _, >(cumulus_client_consensus_aura::ImportQueueParams { block_import: client.clone(), client: client.clone(), @@ -440,7 +439,6 @@ pub fn parachain_build_import_queue( Ok((time, slot)) }, registry: config.prometheus_registry(), - can_author_with: sp_consensus::CanAuthorWithNativeVersion::new(client.executor().clone()), spawner: &task_manager.spawn_essential_handle(), telemetry, }) diff --git a/polkadot-parachain/src/service.rs b/polkadot-parachain/src/service.rs index ae03e400b09..2bdeed82b1f 100644 --- a/polkadot-parachain/src/service.rs +++ b/polkadot-parachain/src/service.rs @@ -710,7 +710,6 @@ pub fn rococo_parachain_build_import_queue( _, _, _, - _, >(cumulus_client_consensus_aura::ImportQueueParams { block_import: client.clone(), client, @@ -726,7 +725,6 @@ pub fn rococo_parachain_build_import_queue( Ok((timestamp, slot)) }, registry: config.prometheus_registry(), - can_author_with: sp_consensus::AlwaysCanAuthor, spawner: &task_manager.spawn_essential_handle(), telemetry, }) @@ -1086,26 +1084,23 @@ where let aura_verifier = move || { let slot_duration = cumulus_client_consensus_aura::slot_duration(&*client2).unwrap(); - Box::new( - cumulus_client_consensus_aura::build_verifier::<::Pair, _, _, _>( - cumulus_client_consensus_aura::BuildVerifierParams { - client: client2.clone(), - create_inherent_data_providers: move |_, _| async move { - let timestamp = sp_timestamp::InherentDataProvider::from_system_time(); + Box::new(cumulus_client_consensus_aura::build_verifier::<::Pair, _, _>( + cumulus_client_consensus_aura::BuildVerifierParams { + client: client2.clone(), + create_inherent_data_providers: move |_, _| async move { + let timestamp = sp_timestamp::InherentDataProvider::from_system_time(); - let slot = + let slot = sp_consensus_aura::inherents::InherentDataProvider::from_timestamp_and_slot_duration( *timestamp, slot_duration, ); - Ok((timestamp, slot)) - }, - can_author_with: sp_consensus::AlwaysCanAuthor, - telemetry: telemetry_handle, + Ok((timestamp, slot)) }, - ), - ) as Box<_> + telemetry: telemetry_handle, + }, + )) as Box<_> }; let relay_chain_verifier = @@ -1530,7 +1525,6 @@ pub fn contracts_rococo_build_import_queue( _, _, _, - _, >(cumulus_client_consensus_aura::ImportQueueParams { block_import: client.clone(), client, @@ -1546,7 +1540,6 @@ pub fn contracts_rococo_build_import_queue( Ok((timestamp, slot)) }, registry: config.prometheus_registry(), - can_author_with: sp_consensus::AlwaysCanAuthor, spawner: &task_manager.spawn_essential_handle(), telemetry, }) From 10197c1607bee51b3543a751494881e08810dd6a Mon Sep 17 00:00:00 2001 From: Keith Yeung Date: Fri, 9 Sep 2022 18:51:36 +0800 Subject: [PATCH 02/12] Companion for paritytech/substrate#12219 --- pallets/collator-selection/src/lib.rs | 3 +-- pallets/parachain-system/src/lib.rs | 4 ++-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/pallets/collator-selection/src/lib.rs b/pallets/collator-selection/src/lib.rs index 918ec95a3d4..6853b188bcf 100644 --- a/pallets/collator-selection/src/lib.rs +++ b/pallets/collator-selection/src/lib.rs @@ -77,7 +77,7 @@ pub mod pallet { pub use crate::weights::WeightInfo; use core::ops::Div; use frame_support::{ - dispatch::DispatchResultWithPostInfo, + dispatch::{DispatchClass, DispatchResultWithPostInfo}, inherent::Vec, pallet_prelude::*, sp_runtime::{ @@ -88,7 +88,6 @@ pub mod pallet { Currency, EnsureOrigin, ExistenceRequirement::KeepAlive, ReservableCurrency, ValidatorRegistration, }, - weights::DispatchClass, BoundedVec, PalletId, }; use frame_system::{pallet_prelude::*, Config as SystemConfig}; diff --git a/pallets/parachain-system/src/lib.rs b/pallets/parachain-system/src/lib.rs index ee2564b2fa5..1869adfb6df 100644 --- a/pallets/parachain-system/src/lib.rs +++ b/pallets/parachain-system/src/lib.rs @@ -36,12 +36,12 @@ use cumulus_primitives_core::{ }; use cumulus_primitives_parachain_inherent::{MessageQueueChain, ParachainInherentData}; use frame_support::{ - dispatch::{DispatchError, DispatchResult}, + dispatch::{DispatchError, DispatchResult, Pays, PostDispatchInfo}, ensure, inherent::{InherentData, InherentIdentifier, ProvideInherent}, storage, traits::Get, - weights::{Pays, PostDispatchInfo, Weight}, + weights::Weight, }; use frame_system::{ensure_none, ensure_root}; use polkadot_parachain::primitives::RelayChainBlockNumber; From e46fcd3ccc041460b9d37dcf4fe36616927601cd Mon Sep 17 00:00:00 2001 From: Keith Yeung Date: Fri, 9 Sep 2022 19:20:18 +0800 Subject: [PATCH 03/12] Fixes --- pallets/dmp-queue/src/lib.rs | 5 +++-- pallets/solo-to-para/src/lib.rs | 5 ++++- parachain-template/runtime/src/lib.rs | 8 +++++--- parachains/runtimes/assets/statemine/src/lib.rs | 6 ++++-- parachains/runtimes/assets/statemint/src/lib.rs | 6 ++++-- parachains/runtimes/assets/westmint/src/lib.rs | 6 ++++-- .../runtimes/collectives/collectives-polkadot/src/lib.rs | 6 ++++-- parachains/runtimes/contracts/contracts-rococo/src/lib.rs | 6 ++++-- parachains/runtimes/starters/seedling/src/lib.rs | 6 ++++-- parachains/runtimes/starters/shell/src/lib.rs | 6 ++++-- parachains/runtimes/testing/penpal/src/lib.rs | 8 +++++--- parachains/runtimes/testing/rococo-parachain/src/lib.rs | 6 ++++-- test/runtime/src/lib.rs | 6 ++++-- 13 files changed, 53 insertions(+), 27 deletions(-) diff --git a/pallets/dmp-queue/src/lib.rs b/pallets/dmp-queue/src/lib.rs index d27455079d1..ddacae66e5b 100644 --- a/pallets/dmp-queue/src/lib.rs +++ b/pallets/dmp-queue/src/lib.rs @@ -24,7 +24,8 @@ use codec::{Decode, DecodeLimit, Encode}; use cumulus_primitives_core::{relay_chain::BlockNumber as RelayBlockNumber, DmpMessageHandler}; use frame_support::{ - dispatch::Weight, traits::EnsureOrigin, weights::constants::WEIGHT_PER_MILLIS, + traits::EnsureOrigin, + weights::{constants::WEIGHT_PER_MILLIS, Weight}, }; pub use pallet::*; use scale_info::TypeInfo; @@ -758,7 +759,7 @@ mod tests { super::Call::::service_overweight { index: 0, weight_limit: Weight::zero() } .get_dispatch_info() .weight; - use frame_support::weights::GetDispatchInfo; + use frame_support::dispatch::GetDispatchInfo; let info = DmpQueue::service_overweight(Origin::root(), 0, Weight::from_ref_time(20000)) .unwrap(); diff --git a/pallets/solo-to-para/src/lib.rs b/pallets/solo-to-para/src/lib.rs index 8a0b7dd2f22..f6956246042 100644 --- a/pallets/solo-to-para/src/lib.rs +++ b/pallets/solo-to-para/src/lib.rs @@ -18,7 +18,10 @@ use codec::{Decode, Encode}; use cumulus_pallet_parachain_system as parachain_system; -use frame_support::{dispatch::DispatchResult, pallet_prelude::*, weights::DispatchInfo}; +use frame_support::{ + dispatch::{DispatchInfo, DispatchResult}, + pallet_prelude::*, +}; use frame_system::pallet_prelude::*; pub use pallet::*; use polkadot_primitives::v2::PersistedValidationData; diff --git a/parachain-template/runtime/src/lib.rs b/parachain-template/runtime/src/lib.rs index bd56bcac635..201184e283f 100644 --- a/parachain-template/runtime/src/lib.rs +++ b/parachain-template/runtime/src/lib.rs @@ -26,11 +26,13 @@ use sp_version::NativeVersion; use sp_version::RuntimeVersion; use frame_support::{ - construct_runtime, parameter_types, + construct_runtime, + dispatch::DispatchClass, + parameter_types, traits::Everything, weights::{ - constants::WEIGHT_PER_SECOND, ConstantMultiplier, DispatchClass, Weight, - WeightToFeeCoefficient, WeightToFeeCoefficients, WeightToFeePolynomial, + constants::WEIGHT_PER_SECOND, ConstantMultiplier, Weight, WeightToFeeCoefficient, + WeightToFeeCoefficients, WeightToFeePolynomial, }, PalletId, }; diff --git a/parachains/runtimes/assets/statemine/src/lib.rs b/parachains/runtimes/assets/statemine/src/lib.rs index ac03932a612..3a5a3c324fc 100644 --- a/parachains/runtimes/assets/statemine/src/lib.rs +++ b/parachains/runtimes/assets/statemine/src/lib.rs @@ -46,9 +46,11 @@ use sp_version::RuntimeVersion; use codec::{Decode, Encode, MaxEncodedLen}; use constants::{currency::*, fee::WeightToFee}; use frame_support::{ - construct_runtime, parameter_types, + construct_runtime, + dispatch::DispatchClass, + parameter_types, traits::{AsEnsureOriginWithArg, EitherOfDiverse, InstanceFilter}, - weights::{ConstantMultiplier, DispatchClass, Weight}, + weights::{ConstantMultiplier, Weight}, PalletId, RuntimeDebug, }; use frame_system::{ diff --git a/parachains/runtimes/assets/statemint/src/lib.rs b/parachains/runtimes/assets/statemint/src/lib.rs index 67cb5a98330..0a113858417 100644 --- a/parachains/runtimes/assets/statemint/src/lib.rs +++ b/parachains/runtimes/assets/statemint/src/lib.rs @@ -75,9 +75,11 @@ use sp_version::RuntimeVersion; use codec::{Decode, Encode, MaxEncodedLen}; use constants::{currency::*, fee::WeightToFee}; use frame_support::{ - construct_runtime, parameter_types, + construct_runtime, + dispatch::DispatchClass, + parameter_types, traits::{AsEnsureOriginWithArg, EitherOfDiverse, InstanceFilter}, - weights::{ConstantMultiplier, DispatchClass, Weight}, + weights::{ConstantMultiplier, Weight}, PalletId, RuntimeDebug, }; use frame_system::{ diff --git a/parachains/runtimes/assets/westmint/src/lib.rs b/parachains/runtimes/assets/westmint/src/lib.rs index 9e882809fe6..8be52985013 100644 --- a/parachains/runtimes/assets/westmint/src/lib.rs +++ b/parachains/runtimes/assets/westmint/src/lib.rs @@ -46,9 +46,11 @@ use sp_version::RuntimeVersion; use codec::{Decode, Encode, MaxEncodedLen}; use constants::{currency::*, fee::WeightToFee}; use frame_support::{ - construct_runtime, parameter_types, + construct_runtime, + dispatch::DispatchClass, + parameter_types, traits::{AsEnsureOriginWithArg, InstanceFilter}, - weights::{ConstantMultiplier, DispatchClass, Weight}, + weights::{ConstantMultiplier, Weight}, PalletId, RuntimeDebug, }; use frame_system::{ diff --git a/parachains/runtimes/collectives/collectives-polkadot/src/lib.rs b/parachains/runtimes/collectives/collectives-polkadot/src/lib.rs index 6fcf134a638..89d983a2efe 100644 --- a/parachains/runtimes/collectives/collectives-polkadot/src/lib.rs +++ b/parachains/runtimes/collectives/collectives-polkadot/src/lib.rs @@ -61,9 +61,11 @@ use sp_version::RuntimeVersion; use codec::{Decode, Encode, MaxEncodedLen}; use constants::{currency::*, fee::WeightToFee}; use frame_support::{ - construct_runtime, parameter_types, + construct_runtime, + dispatch::DispatchClass, + parameter_types, traits::{ConstU16, ConstU32, ConstU64, ConstU8, EitherOfDiverse, InstanceFilter}, - weights::{ConstantMultiplier, DispatchClass, Weight}, + weights::{ConstantMultiplier, Weight}, PalletId, RuntimeDebug, }; use frame_system::{ diff --git a/parachains/runtimes/contracts/contracts-rococo/src/lib.rs b/parachains/runtimes/contracts/contracts-rococo/src/lib.rs index 464272ef9ff..3ce28751e0b 100644 --- a/parachains/runtimes/contracts/contracts-rococo/src/lib.rs +++ b/parachains/runtimes/contracts/contracts-rococo/src/lib.rs @@ -47,9 +47,11 @@ use sp_version::RuntimeVersion; use constants::{currency::*, fee::WeightToFee}; use frame_support::{ - construct_runtime, parameter_types, + construct_runtime, + dispatch::DispatchClass, + parameter_types, traits::{ConstU128, ConstU16, ConstU32, ConstU64, ConstU8, Everything}, - weights::{ConstantMultiplier, DispatchClass, Weight}, + weights::{ConstantMultiplier, Weight}, PalletId, }; use frame_system::limits::{BlockLength, BlockWeights}; diff --git a/parachains/runtimes/starters/seedling/src/lib.rs b/parachains/runtimes/starters/seedling/src/lib.rs index c1c26a32ed6..ec6a2488c73 100644 --- a/parachains/runtimes/starters/seedling/src/lib.rs +++ b/parachains/runtimes/starters/seedling/src/lib.rs @@ -43,11 +43,13 @@ use sp_version::RuntimeVersion; // A few exports that help ease life for downstream crates. pub use frame_support::{ - construct_runtime, parameter_types, + construct_runtime, + dispatch::DispatchClass, + parameter_types, traits::{IsInVec, Randomness}, weights::{ constants::{BlockExecutionWeight, ExtrinsicBaseWeight, RocksDbWeight, WEIGHT_PER_SECOND}, - DispatchClass, IdentityFee, Weight, + IdentityFee, Weight, }, StorageValue, }; diff --git a/parachains/runtimes/starters/shell/src/lib.rs b/parachains/runtimes/starters/shell/src/lib.rs index 31a95e20d95..422b3f7aab7 100644 --- a/parachains/runtimes/starters/shell/src/lib.rs +++ b/parachains/runtimes/starters/shell/src/lib.rs @@ -50,11 +50,13 @@ use sp_version::RuntimeVersion; // A few exports that help ease life for downstream crates. pub use frame_support::{ - construct_runtime, parameter_types, + construct_runtime, + dispatch::DispatchClass, + parameter_types, traits::{Everything, IsInVec, Randomness}, weights::{ constants::{BlockExecutionWeight, ExtrinsicBaseWeight, RocksDbWeight, WEIGHT_PER_SECOND}, - DispatchClass, IdentityFee, Weight, + IdentityFee, Weight, }, StorageValue, }; diff --git a/parachains/runtimes/testing/penpal/src/lib.rs b/parachains/runtimes/testing/penpal/src/lib.rs index 9ac07369df8..07a3f0fed52 100644 --- a/parachains/runtimes/testing/penpal/src/lib.rs +++ b/parachains/runtimes/testing/penpal/src/lib.rs @@ -32,11 +32,13 @@ pub mod xcm_config; use cumulus_pallet_parachain_system::RelayNumberStrictlyIncreases; use frame_support::{ - construct_runtime, parameter_types, + construct_runtime, + dispatch::DispatchClass, + parameter_types, traits::Everything, weights::{ - constants::WEIGHT_PER_SECOND, ConstantMultiplier, DispatchClass, Weight, - WeightToFeeCoefficient, WeightToFeeCoefficients, WeightToFeePolynomial, + constants::WEIGHT_PER_SECOND, ConstantMultiplier, Weight, WeightToFeeCoefficient, + WeightToFeeCoefficients, WeightToFeePolynomial, }, PalletId, }; diff --git a/parachains/runtimes/testing/rococo-parachain/src/lib.rs b/parachains/runtimes/testing/rococo-parachain/src/lib.rs index 3515e320308..9d0e3a31aea 100644 --- a/parachains/runtimes/testing/rococo-parachain/src/lib.rs +++ b/parachains/runtimes/testing/rococo-parachain/src/lib.rs @@ -38,11 +38,13 @@ use sp_version::RuntimeVersion; // A few exports that help ease life for downstream crates. pub use frame_support::{ - construct_runtime, match_types, parameter_types, + construct_runtime, + dispatch::DispatchClass, + match_types, parameter_types, traits::{EitherOfDiverse, Everything, IsInVec, Randomness}, weights::{ constants::{BlockExecutionWeight, ExtrinsicBaseWeight, RocksDbWeight, WEIGHT_PER_SECOND}, - ConstantMultiplier, DispatchClass, IdentityFee, Weight, + ConstantMultiplier, IdentityFee, Weight, }, StorageValue, }; diff --git a/test/runtime/src/lib.rs b/test/runtime/src/lib.rs index 225b874f363..38d357077a3 100644 --- a/test/runtime/src/lib.rs +++ b/test/runtime/src/lib.rs @@ -45,11 +45,13 @@ use sp_version::RuntimeVersion; // A few exports that help ease life for downstream crates. pub use frame_support::{ - construct_runtime, parameter_types, + construct_runtime, + dispatch::DispatchClass, + parameter_types, traits::Randomness, weights::{ constants::{BlockExecutionWeight, ExtrinsicBaseWeight, RocksDbWeight, WEIGHT_PER_SECOND}, - ConstantMultiplier, DispatchClass, IdentityFee, Weight, + ConstantMultiplier, IdentityFee, Weight, }, StorageValue, }; From c40fe1cbb98baaad1dd8f1ffaa75ff01cd07a3ce Mon Sep 17 00:00:00 2001 From: Michal Kucharczyk <1728078+michalkucharczyk@users.noreply.github.com> Date: Mon, 12 Sep 2022 13:39:24 +0200 Subject: [PATCH 04/12] polkadot-runtime-common updated cargo update -p polkadot-runtime-common --- Cargo.lock | 922 ++++++++++++++++++++++++++--------------------------- 1 file changed, 457 insertions(+), 465 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 83b8e3b10a8..fb18abaf9d6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -451,7 +451,7 @@ dependencies = [ [[package]] name = "beefy-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "async-trait", "beefy-primitives", @@ -487,7 +487,7 @@ dependencies = [ [[package]] name = "beefy-gadget-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "beefy-gadget", "beefy-primitives", @@ -507,7 +507,7 @@ dependencies = [ [[package]] name = "beefy-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "beefy-primitives", "sp-api", @@ -516,7 +516,7 @@ dependencies = [ [[package]] name = "beefy-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "parity-scale-codec", "scale-info", @@ -1060,7 +1060,7 @@ dependencies = [ "parachains-common", "parity-scale-codec", "polkadot-core-primitives", - "polkadot-parachain 0.9.28", + "polkadot-parachain 0.9.29", "polkadot-runtime-common", "polkadot-runtime-constants", "scale-info", @@ -1159,7 +1159,7 @@ dependencies = [ "parachains-common", "parity-scale-codec", "polkadot-core-primitives", - "polkadot-parachain 0.9.28", + "polkadot-parachain 0.9.29", "polkadot-runtime-common", "scale-info", "serde", @@ -1233,18 +1233,18 @@ dependencies = [ [[package]] name = "cranelift-bforest" -version = "0.85.3" +version = "0.87.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "749d0d6022c9038dccf480bdde2a38d435937335bf2bb0f14e815d94517cdce8" +checksum = "9f91425bea5a5ac6d76b788477064944a7e21f0e240fd93f6f368a774a3efdd1" dependencies = [ "cranelift-entity", ] [[package]] name = "cranelift-codegen" -version = "0.85.3" +version = "0.87.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e94370cc7b37bf652ccd8bb8f09bd900997f7ccf97520edfc75554bb5c4abbea" +checksum = "8b83b4bbf7bc96db77b7b5b5e41fafc4001536e9f0cbfd702ed7d4d8f848dc06" dependencies = [ "cranelift-bforest", "cranelift-codegen-meta", @@ -1260,33 +1260,33 @@ dependencies = [ [[package]] name = "cranelift-codegen-meta" -version = "0.85.3" +version = "0.87.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e0a3cea8fdab90e44018c5b9a1dfd460d8ee265ac354337150222a354628bdb6" +checksum = "da02e8fff048c381b313a3dfef4deb2343976fb6d7acc8e7d9c86d4c93e3fa06" dependencies = [ "cranelift-codegen-shared", ] [[package]] name = "cranelift-codegen-shared" -version = "0.85.3" +version = "0.87.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5ac72f76f2698598951ab26d8c96eaa854810e693e7dd52523958b5909fde6b2" +checksum = "9abc2a06e8fc29e36660ebbc9e2503e18a051057072acbb1e75e7f7cf19cb95e" [[package]] name = "cranelift-entity" -version = "0.85.3" +version = "0.87.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "09eaeacfcd2356fe0e66b295e8f9d59fdd1ac3ace53ba50de14d628ec902f72d" +checksum = "aeced7874890fc25d85cacc5e626c4d67931c7c25aad1c2ad521684744c1ff5c" dependencies = [ "serde", ] [[package]] name = "cranelift-frontend" -version = "0.85.3" +version = "0.87.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dba69c9980d5ffd62c18a2bde927855fcd7c8dc92f29feaf8636052662cbd99c" +checksum = "fc1d301ccad6fce05d9c9793d433d225fafdd57661b98d268d8d162e9291ff2e" dependencies = [ "cranelift-codegen", "log", @@ -1296,15 +1296,15 @@ dependencies = [ [[package]] name = "cranelift-isle" -version = "0.85.3" +version = "0.87.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d2920dc1e05cac40304456ed3301fde2c09bd6a9b0210bcfa2f101398d628d5b" +checksum = "bd7b100db19320848986b4df1da19501dbddeb706a799f502222f72f889b0fab" [[package]] name = "cranelift-native" -version = "0.85.3" +version = "0.87.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f04dfa45f9b2a6f587c564d6b63388e00cd6589d2df6ea2758cf79e1a13285e6" +checksum = "7be18d8b976cddc822e52343f328b7593d26dd2f1aeadd90da071596a210d524" dependencies = [ "cranelift-codegen", "libc", @@ -1313,9 +1313,9 @@ dependencies = [ [[package]] name = "cranelift-wasm" -version = "0.85.3" +version = "0.87.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "31a46513ae6f26f3f267d8d75b5373d555fbbd1e68681f348d99df43f747ec54" +checksum = "2f9e48bb632a2e189b38a9fa89fa5a6eea687a5a4c613bbef7c2b7522c3ad0e0" dependencies = [ "cranelift-codegen", "cranelift-entity", @@ -1662,7 +1662,7 @@ dependencies = [ "parking_lot 0.12.1", "polkadot-client", "polkadot-node-primitives", - "polkadot-parachain 0.9.28", + "polkadot-parachain 0.9.29", "polkadot-primitives", "polkadot-service", "polkadot-test-client", @@ -1793,7 +1793,7 @@ dependencies = [ "log", "pallet-balances", "parity-scale-codec", - "polkadot-parachain 0.9.28", + "polkadot-parachain 0.9.29", "sc-client-api", "scale-info", "serde", @@ -1912,7 +1912,7 @@ dependencies = [ "frame-support", "parity-scale-codec", "polkadot-core-primitives", - "polkadot-parachain 0.9.28", + "polkadot-parachain 0.9.29", "polkadot-primitives", "sp-api", "sp-runtime", @@ -1968,7 +1968,7 @@ dependencies = [ "log", "parity-scale-codec", "polkadot-core-primitives", - "polkadot-parachain 0.9.28", + "polkadot-parachain 0.9.29", "polkadot-primitives", "sp-runtime", "sp-std", @@ -2071,7 +2071,7 @@ dependencies = [ "pallet-balances", "pallet-transaction-payment", "parity-scale-codec", - "polkadot-parachain 0.9.28", + "polkadot-parachain 0.9.29", "polkadot-primitives", "sc-block-builder", "sc-consensus", @@ -2786,7 +2786,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "parity-scale-codec", ] @@ -2803,7 +2803,7 @@ dependencies = [ [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "frame-support", "frame-system", @@ -2826,7 +2826,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "Inflector", "chrono", @@ -2877,7 +2877,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2888,7 +2888,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2904,7 +2904,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "frame-support", "frame-system", @@ -2933,7 +2933,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "bitflags", "frame-metadata", @@ -2964,7 +2964,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "Inflector", "cfg-expr", @@ -2978,7 +2978,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -2990,7 +2990,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "proc-macro2", "quote", @@ -3000,7 +3000,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "frame-support", "log", @@ -3017,7 +3017,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "frame-benchmarking", "frame-support", @@ -3032,7 +3032,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "parity-scale-codec", "sp-api", @@ -3041,7 +3041,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "frame-support", "parity-scale-codec", @@ -3686,12 +3686,6 @@ dependencies = [ "num-traits", ] -[[package]] -name = "io-lifetimes" -version = "0.5.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ec58677acfea8a15352d42fc87d11d63596ade9239e0a7c9352914417515dbe6" - [[package]] name = "io-lifetimes" version = "0.7.2" @@ -3925,8 +3919,8 @@ checksum = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7" [[package]] name = "kusama-runtime" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "beefy-primitives", "bitvec", @@ -4018,8 +4012,8 @@ dependencies = [ [[package]] name = "kusama-runtime-constants" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "frame-support", "polkadot-primitives", @@ -4734,12 +4728,6 @@ dependencies = [ "statrs", ] -[[package]] -name = "linux-raw-sys" -version = "0.0.42" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5284f00d480e1c39af34e72f8ad60b94f47007e3481cd3b731c1d67190ddc7b7" - [[package]] name = "linux-raw-sys" version = "0.0.46" @@ -4865,11 +4853,11 @@ checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a" [[package]] name = "memfd" -version = "0.4.1" +version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f6627dc657574b49d6ad27105ed671822be56e0d2547d413bfbf3e8d8fa92e7a" +checksum = "480b5a5de855d11ff13195950bdc8b98b5e942ef47afc447f6615cdcc4e15d80" dependencies = [ - "libc", + "rustix", ] [[package]] @@ -4921,9 +4909,9 @@ dependencies = [ [[package]] name = "memory_units" -version = "0.3.0" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "71d96e3f3c0b6325d8ccd83c33b28acb183edcb6c67938ba104ec546854b0882" +checksum = "8452105ba047068f40ff7093dd1d9da90898e63dd61736462e9cdda6a90ad3c3" [[package]] name = "merlin" @@ -4976,12 +4964,6 @@ dependencies = [ "windows-sys 0.36.1", ] -[[package]] -name = "more-asserts" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7843ec2de400bcbc6a6328c958dc38e5359da6e93e72e37bc5246bf1ae776389" - [[package]] name = "multiaddr" version = "0.14.0" @@ -5232,6 +5214,17 @@ dependencies = [ "num-traits", ] +[[package]] +name = "num-bigint" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f" +dependencies = [ + "autocfg", + "num-integer", + "num-traits", +] + [[package]] name = "num-complex" version = "0.4.0" @@ -5268,7 +5261,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5c000134b5dbf44adc5cb772486d335293351644b801551abe8f75c84cfa4aef" dependencies = [ "autocfg", - "num-bigint", + "num-bigint 0.2.6", "num-integer", "num-traits", ] @@ -5280,6 +5273,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d41702bd167c2df5520b384281bc111a4b5efcf7fbc4c9c222c815b07e0a6a6a" dependencies = [ "autocfg", + "num-bigint 0.4.3", "num-integer", "num-traits", ] @@ -5315,12 +5309,12 @@ dependencies = [ [[package]] name = "object" -version = "0.28.4" +version = "0.29.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e42c982f2d955fac81dd7e1d0e1426a7d702acd9c98d19ab01083a6a0328c424" +checksum = "21158b2c33aa6d4561f1c0a6ea283ca92bc54802a93b263e910746d679a7eb53" dependencies = [ "crc32fast", - "hashbrown 0.11.2", + "hashbrown 0.12.3", "indexmap", "memchr", ] @@ -5358,7 +5352,7 @@ checksum = "28988d872ab76095a6e6ac88d99b54fd267702734fd7ffe610ca27f533ddb95a" [[package]] name = "orchestra" version = "0.0.1" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "async-trait", "dyn-clonable", @@ -5374,7 +5368,7 @@ dependencies = [ [[package]] name = "orchestra-proc-macro" version = "0.0.1" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "expander 0.0.6", "itertools", @@ -5480,7 +5474,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "frame-support", "frame-system", @@ -5496,7 +5490,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "frame-support", "frame-system", @@ -5511,7 +5505,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "frame-benchmarking", "frame-support", @@ -5535,7 +5529,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5555,7 +5549,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "frame-benchmarking", "frame-support", @@ -5570,7 +5564,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "beefy-primitives", "frame-support", @@ -5586,7 +5580,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "beefy-merkle-tree", "beefy-primitives", @@ -5609,7 +5603,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "frame-benchmarking", "frame-support", @@ -5627,7 +5621,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "frame-benchmarking", "frame-support", @@ -5672,7 +5666,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "frame-benchmarking", "frame-support", @@ -5772,7 +5766,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "frame-benchmarking", "frame-support", @@ -5788,7 +5782,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5811,7 +5805,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5824,7 +5818,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "frame-benchmarking", "frame-support", @@ -5842,7 +5836,7 @@ dependencies = [ [[package]] name = "pallet-gilt" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "frame-benchmarking", "frame-support", @@ -5857,7 +5851,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "frame-benchmarking", "frame-support", @@ -5880,7 +5874,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5896,7 +5890,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "frame-benchmarking", "frame-support", @@ -5916,7 +5910,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "frame-benchmarking", "frame-support", @@ -5933,7 +5927,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "frame-benchmarking", "frame-support", @@ -5950,7 +5944,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -5968,7 +5962,7 @@ dependencies = [ [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -5983,7 +5977,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "frame-benchmarking", "frame-support", @@ -5998,7 +5992,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "frame-support", "frame-system", @@ -6015,7 +6009,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6034,7 +6028,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "parity-scale-codec", "sp-api", @@ -6044,7 +6038,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "frame-support", "frame-system", @@ -6061,7 +6055,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6084,7 +6078,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "frame-benchmarking", "frame-support", @@ -6100,7 +6094,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "frame-benchmarking", "frame-support", @@ -6129,7 +6123,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "frame-benchmarking", "frame-support", @@ -6144,7 +6138,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "frame-benchmarking", "frame-support", @@ -6160,7 +6154,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "frame-support", "frame-system", @@ -6181,7 +6175,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "frame-benchmarking", "frame-support", @@ -6197,7 +6191,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "frame-support", "frame-system", @@ -6211,7 +6205,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6234,7 +6228,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -6245,7 +6239,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "log", "sp-arithmetic", @@ -6254,7 +6248,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "frame-support", "frame-system", @@ -6283,7 +6277,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "frame-benchmarking", "frame-support", @@ -6301,7 +6295,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "frame-benchmarking", "frame-support", @@ -6320,7 +6314,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "frame-support", "frame-system", @@ -6336,7 +6330,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -6351,7 +6345,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -6362,7 +6356,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "frame-benchmarking", "frame-support", @@ -6394,7 +6388,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "frame-benchmarking", "frame-support", @@ -6410,7 +6404,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "frame-benchmarking", "frame-support", @@ -6424,8 +6418,8 @@ dependencies = [ [[package]] name = "pallet-xcm" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "frame-support", "frame-system", @@ -6442,8 +6436,8 @@ dependencies = [ [[package]] name = "pallet-xcm-benchmarks" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "frame-benchmarking", "frame-support", @@ -6495,7 +6489,7 @@ dependencies = [ "parachain-template-runtime", "parity-scale-codec", "polkadot-cli", - "polkadot-parachain 0.9.28", + "polkadot-parachain 0.9.29", "polkadot-primitives", "polkadot-service", "sc-basic-authorship", @@ -6571,7 +6565,7 @@ dependencies = [ "pallet-xcm", "parachain-info", "parity-scale-codec", - "polkadot-parachain 0.9.28", + "polkadot-parachain 0.9.29", "polkadot-runtime-common", "scale-info", "serde", @@ -6712,9 +6706,9 @@ dependencies = [ [[package]] name = "parity-wasm" -version = "0.42.2" +version = "0.45.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "be5e13c266502aadf83426d87d81a0f5d1ef45b8027f5a471c360abfe4bfae92" +checksum = "e1ad0aff30c1da14b1254fcb2af73e1fa9a28670e584a626f53a369d0e157304" [[package]] name = "parking" @@ -6837,7 +6831,7 @@ dependencies = [ "parachain-info", "parachains-common", "parity-scale-codec", - "polkadot-parachain 0.9.28", + "polkadot-parachain 0.9.29", "polkadot-primitives", "polkadot-runtime-common", "scale-info", @@ -7000,8 +6994,8 @@ dependencies = [ [[package]] name = "polkadot-approval-distribution" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -7015,8 +7009,8 @@ dependencies = [ [[package]] name = "polkadot-availability-bitfield-distribution" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -7029,8 +7023,8 @@ dependencies = [ [[package]] name = "polkadot-availability-distribution" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "derive_more", "fatality", @@ -7052,8 +7046,8 @@ dependencies = [ [[package]] name = "polkadot-availability-recovery" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "fatality", "futures", @@ -7073,8 +7067,8 @@ dependencies = [ [[package]] name = "polkadot-cli" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "clap 3.2.20", "frame-benchmarking-cli", @@ -7099,8 +7093,8 @@ dependencies = [ [[package]] name = "polkadot-client" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "beefy-primitives", "frame-benchmarking", @@ -7140,8 +7134,8 @@ dependencies = [ [[package]] name = "polkadot-collator-protocol" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "always-assert", "fatality", @@ -7161,8 +7155,8 @@ dependencies = [ [[package]] name = "polkadot-core-primitives" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "parity-scale-codec", "parity-util-mem", @@ -7174,8 +7168,8 @@ dependencies = [ [[package]] name = "polkadot-dispute-distribution" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "derive_more", "fatality", @@ -7197,8 +7191,8 @@ dependencies = [ [[package]] name = "polkadot-erasure-coding" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "parity-scale-codec", "polkadot-node-primitives", @@ -7211,8 +7205,8 @@ dependencies = [ [[package]] name = "polkadot-gossip-support" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "futures", "futures-timer", @@ -7231,8 +7225,8 @@ dependencies = [ [[package]] name = "polkadot-network-bridge" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "always-assert", "async-trait", @@ -7255,8 +7249,8 @@ dependencies = [ [[package]] name = "polkadot-node-collation-generation" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "futures", "parity-scale-codec", @@ -7273,8 +7267,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-approval-voting" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "bitvec", "derive_more", @@ -7302,8 +7296,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-av-store" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "bitvec", "futures", @@ -7322,8 +7316,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-backing" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "bitvec", "fatality", @@ -7341,8 +7335,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-bitfield-signing" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7356,8 +7350,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-candidate-validation" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "async-trait", "futures", @@ -7366,7 +7360,7 @@ dependencies = [ "polkadot-node-primitives", "polkadot-node-subsystem", "polkadot-node-subsystem-util", - "polkadot-parachain 0.9.28", + "polkadot-parachain 0.9.29", "polkadot-primitives", "sp-maybe-compressed-blob", "tracing-gum", @@ -7374,8 +7368,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-api" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7389,8 +7383,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-selection" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "futures", "futures-timer", @@ -7406,8 +7400,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-dispute-coordinator" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "fatality", "futures", @@ -7425,8 +7419,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-parachains-inherent" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "async-trait", "futures", @@ -7442,8 +7436,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-provisioner" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "bitvec", "fatality", @@ -7460,8 +7454,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "always-assert", "assert_matches", @@ -7473,7 +7467,7 @@ dependencies = [ "pin-project", "polkadot-core-primitives", "polkadot-node-subsystem-util", - "polkadot-parachain 0.9.28", + "polkadot-parachain 0.9.29", "rand 0.8.5", "rayon", "sc-executor", @@ -7492,8 +7486,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-checker" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "futures", "polkadot-node-primitives", @@ -7508,8 +7502,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-runtime-api" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "futures", "memory-lru", @@ -7524,8 +7518,8 @@ dependencies = [ [[package]] name = "polkadot-node-jaeger" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "async-std", "lazy_static", @@ -7542,8 +7536,8 @@ dependencies = [ [[package]] name = "polkadot-node-metrics" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "bs58", "futures", @@ -7561,8 +7555,8 @@ dependencies = [ [[package]] name = "polkadot-node-network-protocol" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "async-trait", "derive_more", @@ -7583,13 +7577,13 @@ dependencies = [ [[package]] name = "polkadot-node-primitives" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "bounded-vec", "futures", "parity-scale-codec", - "polkadot-parachain 0.9.28", + "polkadot-parachain 0.9.29", "polkadot-primitives", "schnorrkel", "serde", @@ -7605,8 +7599,8 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "polkadot-node-jaeger", "polkadot-node-subsystem-types", @@ -7615,8 +7609,8 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-test-helpers" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "async-trait", "futures", @@ -7633,8 +7627,8 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-types" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "async-trait", "derive_more", @@ -7656,8 +7650,8 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-util" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "async-trait", "derive_more", @@ -7689,8 +7683,8 @@ dependencies = [ [[package]] name = "polkadot-overseer" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "async-trait", "futures", @@ -7712,8 +7706,8 @@ dependencies = [ [[package]] name = "polkadot-parachain" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "derive_more", "frame-support", @@ -7760,7 +7754,7 @@ dependencies = [ "parity-scale-codec", "penpal-runtime", "polkadot-cli", - "polkadot-parachain 0.9.28", + "polkadot-parachain 0.9.29", "polkadot-primitives", "polkadot-service", "rococo-parachain-runtime", @@ -7812,8 +7806,8 @@ dependencies = [ [[package]] name = "polkadot-performance-test" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "env_logger 0.9.0", "kusama-runtime", @@ -7827,8 +7821,8 @@ dependencies = [ [[package]] name = "polkadot-primitives" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "bitvec", "frame-system", @@ -7836,7 +7830,7 @@ dependencies = [ "parity-scale-codec", "parity-util-mem", "polkadot-core-primitives", - "polkadot-parachain 0.9.28", + "polkadot-parachain 0.9.29", "scale-info", "serde", "sp-api", @@ -7857,8 +7851,8 @@ dependencies = [ [[package]] name = "polkadot-rpc" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "beefy-gadget", "beefy-gadget-rpc", @@ -7889,8 +7883,8 @@ dependencies = [ [[package]] name = "polkadot-runtime" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "beefy-primitives", "bitvec", @@ -7977,8 +7971,8 @@ dependencies = [ [[package]] name = "polkadot-runtime-common" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "beefy-primitives", "bitvec", @@ -8024,8 +8018,8 @@ dependencies = [ [[package]] name = "polkadot-runtime-constants" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "frame-support", "polkadot-primitives", @@ -8036,8 +8030,8 @@ dependencies = [ [[package]] name = "polkadot-runtime-metrics" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "bs58", "parity-scale-codec", @@ -8048,8 +8042,8 @@ dependencies = [ [[package]] name = "polkadot-runtime-parachains" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "bitflags", "bitvec", @@ -8091,8 +8085,8 @@ dependencies = [ [[package]] name = "polkadot-service" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "async-trait", "beefy-gadget", @@ -8138,7 +8132,7 @@ dependencies = [ "polkadot-node-subsystem-types", "polkadot-node-subsystem-util", "polkadot-overseer", - "polkadot-parachain 0.9.28", + "polkadot-parachain 0.9.29", "polkadot-primitives", "polkadot-rpc", "polkadot-runtime", @@ -8196,8 +8190,8 @@ dependencies = [ [[package]] name = "polkadot-statement-distribution" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "arrayvec 0.5.2", "fatality", @@ -8217,8 +8211,8 @@ dependencies = [ [[package]] name = "polkadot-statement-table" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "parity-scale-codec", "polkadot-primitives", @@ -8227,8 +8221,8 @@ dependencies = [ [[package]] name = "polkadot-test-client" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "parity-scale-codec", "polkadot-node-subsystem", @@ -8252,8 +8246,8 @@ dependencies = [ [[package]] name = "polkadot-test-runtime" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "beefy-primitives", "bitvec", @@ -8280,7 +8274,7 @@ dependencies = [ "pallet-vesting", "pallet-xcm", "parity-scale-codec", - "polkadot-parachain 0.9.28", + "polkadot-parachain 0.9.29", "polkadot-primitives", "polkadot-runtime-common", "polkadot-runtime-parachains", @@ -8313,8 +8307,8 @@ dependencies = [ [[package]] name = "polkadot-test-service" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "frame-benchmarking", "frame-system", @@ -8326,7 +8320,7 @@ dependencies = [ "polkadot-node-primitives", "polkadot-node-subsystem", "polkadot-overseer", - "polkadot-parachain 0.9.28", + "polkadot-parachain 0.9.29", "polkadot-primitives", "polkadot-rpc", "polkadot-runtime-common", @@ -8459,7 +8453,7 @@ dependencies = [ [[package]] name = "prioritized-metered-channel" version = "0.2.0" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "coarsetime", "crossbeam-queue", @@ -8852,9 +8846,9 @@ dependencies = [ [[package]] name = "regalloc2" -version = "0.2.3" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4a8d23b35d7177df3b9d31ed8a9ab4bf625c668be77a319d4f5efd4a5257701c" +checksum = "d43a209257d978ef079f3d446331d0f1794f5e0fc19b306a199983857833a779" dependencies = [ "fxhash", "log", @@ -8888,22 +8882,10 @@ version = "0.6.25" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" -[[package]] -name = "region" -version = "2.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "877e54ea2adcd70d80e9179344c97f93ef0dffd6b03e1f4529e6e83ab2fa9ae0" -dependencies = [ - "bitflags", - "libc", - "mach", - "winapi", -] - [[package]] name = "remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "env_logger 0.9.0", "jsonrpsee", @@ -9001,7 +8983,7 @@ dependencies = [ "parachain-info", "parachains-common", "parity-scale-codec", - "polkadot-parachain 0.9.28", + "polkadot-parachain 0.9.29", "scale-info", "serde", "sp-api", @@ -9024,8 +9006,8 @@ dependencies = [ [[package]] name = "rococo-runtime" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "beefy-merkle-tree", "beefy-primitives", @@ -9043,25 +9025,39 @@ dependencies = [ "pallet-balances", "pallet-beefy", "pallet-beefy-mmr", + "pallet-bounties", + "pallet-child-bounties", "pallet-collective", + "pallet-democracy", + "pallet-elections-phragmen", + "pallet-gilt", "pallet-grandpa", + "pallet-identity", "pallet-im-online", "pallet-indices", "pallet-membership", "pallet-mmr", "pallet-multisig", "pallet-offences", + "pallet-preimage", "pallet-proxy", + "pallet-recovery", + "pallet-scheduler", "pallet-session", + "pallet-society", "pallet-staking", "pallet-sudo", "pallet-timestamp", + "pallet-tips", "pallet-transaction-payment", "pallet-transaction-payment-rpc-runtime-api", + "pallet-treasury", "pallet-utility", + "pallet-vesting", "pallet-xcm", + "pallet-xcm-benchmarks", "parity-scale-codec", - "polkadot-parachain 0.9.28", + "polkadot-parachain 0.9.29", "polkadot-primitives", "polkadot-runtime-common", "polkadot-runtime-parachains", @@ -9085,6 +9081,7 @@ dependencies = [ "sp-std", "sp-transaction-pool", "sp-version", + "static_assertions", "substrate-wasm-builder", "xcm", "xcm-builder", @@ -9093,8 +9090,8 @@ dependencies = [ [[package]] name = "rococo-runtime-constants" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "frame-support", "polkadot-primitives", @@ -9166,29 +9163,15 @@ dependencies = [ [[package]] name = "rustix" -version = "0.33.7" +version = "0.35.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "938a344304321a9da4973b9ff4f9f8db9caf4597dfd9dda6a60b523340a0fff0" +checksum = "72c825b8aa8010eb9ee99b75f05e10180b9278d161583034d7574c9d617aeada" dependencies = [ "bitflags", "errno", - "io-lifetimes 0.5.3", + "io-lifetimes", "libc", - "linux-raw-sys 0.0.42", - "winapi", -] - -[[package]] -name = "rustix" -version = "0.35.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d51cc38aa10f6bbb377ed28197aa052aa4e2b762c22be9d3153d01822587e787" -dependencies = [ - "bitflags", - "errno", - "io-lifetimes 0.7.2", - "libc", - "linux-raw-sys 0.0.46", + "linux-raw-sys", "windows-sys 0.36.1", ] @@ -9278,7 +9261,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "log", "sp-core", @@ -9289,7 +9272,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "async-trait", "futures", @@ -9316,7 +9299,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "futures", "futures-timer", @@ -9339,7 +9322,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -9355,7 +9338,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "impl-trait-for-tuples", "memmap2 0.5.0", @@ -9372,7 +9355,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -9383,7 +9366,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "chrono", "clap 3.2.20", @@ -9422,7 +9405,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "fnv", "futures", @@ -9450,7 +9433,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "hash-db", "kvdb", @@ -9475,7 +9458,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "async-trait", "futures", @@ -9528,14 +9511,14 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "async-trait", "fork-tree", "futures", "log", "merlin", - "num-bigint", + "num-bigint 0.2.6", "num-rational 0.2.4", "num-traits", "parity-scale-codec", @@ -9570,7 +9553,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "futures", "jsonrpsee", @@ -9592,7 +9575,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "fork-tree", "parity-scale-codec", @@ -9605,7 +9588,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "async-trait", "futures", @@ -9630,7 +9613,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "lazy_static", "lru 0.7.7", @@ -9657,7 +9640,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "environmental", "parity-scale-codec", @@ -9673,7 +9656,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "log", "parity-scale-codec", @@ -9688,16 +9671,15 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "cfg-if 1.0.0", "libc", "log", "once_cell", "parity-scale-codec", - "parity-wasm 0.42.2", - "rustix 0.33.7", - "rustix 0.35.7", + "parity-wasm 0.45.0", + "rustix", "sc-allocator", "sc-executor-common", "sp-runtime-interface", @@ -9709,7 +9691,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "ahash", "async-trait", @@ -9750,7 +9732,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "finality-grandpa", "futures", @@ -9771,7 +9753,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "ansi_term", "futures", @@ -9788,7 +9770,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "async-trait", "hex", @@ -9803,7 +9785,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "async-trait", "asynchronous-codec", @@ -9852,7 +9834,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "async-trait", "bitflags", @@ -9875,7 +9857,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "ahash", "futures", @@ -9893,7 +9875,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "futures", "hex", @@ -9914,7 +9896,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "fork-tree", "futures", @@ -9942,7 +9924,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "bytes", "fnv", @@ -9972,7 +9954,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "futures", "libp2p", @@ -9985,7 +9967,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -9994,7 +9976,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "futures", "hash-db", @@ -10024,7 +10006,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "futures", "jsonrpsee", @@ -10047,7 +10029,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "futures", "jsonrpsee", @@ -10060,7 +10042,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "async-trait", "directories", @@ -10127,7 +10109,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "log", "parity-scale-codec", @@ -10141,7 +10123,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -10160,7 +10142,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "futures", "libc", @@ -10179,7 +10161,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "chrono", "futures", @@ -10197,7 +10179,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "ansi_term", "atty", @@ -10228,7 +10210,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -10239,7 +10221,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "futures", "futures-timer", @@ -10265,7 +10247,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "futures", "log", @@ -10278,7 +10260,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "futures", "futures-timer", @@ -10724,8 +10706,8 @@ checksum = "03b634d87b960ab1a38c4fe143b508576f075e7c978bfad18217645ebfdfa2ec" [[package]] name = "slot-range-helper" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "enumn", "parity-scale-codec", @@ -10801,7 +10783,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "hash-db", "log", @@ -10819,7 +10801,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "blake2", "proc-macro-crate", @@ -10831,7 +10813,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "parity-scale-codec", "scale-info", @@ -10844,7 +10826,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "integer-sqrt", "num-traits", @@ -10859,7 +10841,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "parity-scale-codec", "scale-info", @@ -10872,7 +10854,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "async-trait", "parity-scale-codec", @@ -10884,7 +10866,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "parity-scale-codec", "sp-api", @@ -10896,7 +10878,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "futures", "log", @@ -10914,7 +10896,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "async-trait", "futures", @@ -10951,7 +10933,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "async-trait", "merlin", @@ -10974,7 +10956,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "parity-scale-codec", "scale-info", @@ -10988,7 +10970,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "parity-scale-codec", "scale-info", @@ -11001,7 +10983,7 @@ dependencies = [ [[package]] name = "sp-core" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "base58", "bitflags", @@ -11047,7 +11029,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "blake2", "byteorder", @@ -11061,7 +11043,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "proc-macro2", "quote", @@ -11072,7 +11054,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -11081,7 +11063,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "proc-macro2", "quote", @@ -11091,7 +11073,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "environmental", "parity-scale-codec", @@ -11102,7 +11084,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "finality-grandpa", "log", @@ -11120,7 +11102,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -11134,7 +11116,7 @@ dependencies = [ [[package]] name = "sp-io" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "bytes", "futures", @@ -11160,7 +11142,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "lazy_static", "sp-core", @@ -11171,7 +11153,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "async-trait", "futures", @@ -11188,7 +11170,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "thiserror", "zstd", @@ -11197,7 +11179,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "log", "parity-scale-codec", @@ -11212,7 +11194,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "parity-scale-codec", "scale-info", @@ -11226,7 +11208,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "sp-api", "sp-core", @@ -11236,7 +11218,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "backtrace", "lazy_static", @@ -11246,7 +11228,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "rustc-hash", "serde", @@ -11256,7 +11238,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "either", "hash256-std-hasher", @@ -11278,7 +11260,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -11296,7 +11278,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "Inflector", "proc-macro-crate", @@ -11308,7 +11290,7 @@ dependencies = [ [[package]] name = "sp-sandbox" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "log", "parity-scale-codec", @@ -11331,7 +11313,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "parity-scale-codec", "scale-info", @@ -11345,7 +11327,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "parity-scale-codec", "scale-info", @@ -11356,7 +11338,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "hash-db", "log", @@ -11378,12 +11360,12 @@ dependencies = [ [[package]] name = "sp-std" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" [[package]] name = "sp-storage" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11396,7 +11378,7 @@ dependencies = [ [[package]] name = "sp-tasks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "log", "sp-core", @@ -11409,7 +11391,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "async-trait", "futures-timer", @@ -11425,7 +11407,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "parity-scale-codec", "sp-std", @@ -11437,7 +11419,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "sp-api", "sp-runtime", @@ -11446,7 +11428,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "async-trait", "log", @@ -11462,7 +11444,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "ahash", "hash-db", @@ -11485,11 +11467,11 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "impl-serde", "parity-scale-codec", - "parity-wasm 0.42.2", + "parity-wasm 0.45.0", "scale-info", "serde", "sp-core-hashing-proc-macro", @@ -11502,7 +11484,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -11513,7 +11495,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "impl-trait-for-tuples", "log", @@ -11531,9 +11513,9 @@ checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" [[package]] name = "ss58-registry" -version = "1.18.0" +version = "1.29.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ceb8b72a924ccfe7882d0e26144c114503760a4d1248bb5cd06c8ab2d55404cc" +checksum = "b0837b5d62f42082c9d56cd946495ae273a3c68083b637b9153341d5e465146d" dependencies = [ "Inflector", "num-format", @@ -11595,7 +11577,7 @@ dependencies = [ "parachains-common", "parity-scale-codec", "polkadot-core-primitives", - "polkadot-parachain 0.9.28", + "polkadot-parachain 0.9.29", "polkadot-runtime-common", "scale-info", "serde", @@ -11662,7 +11644,7 @@ dependencies = [ "parachains-common", "parity-scale-codec", "polkadot-core-primitives", - "polkadot-parachain 0.9.28", + "polkadot-parachain 0.9.29", "polkadot-runtime-common", "polkadot-runtime-constants", "scale-info", @@ -11774,7 +11756,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "platforms", ] @@ -11782,7 +11764,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -11803,7 +11785,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "futures-util", "hyper", @@ -11816,7 +11798,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "jsonrpsee", "log", @@ -11837,7 +11819,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "async-trait", "futures", @@ -11884,7 +11866,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "ansi_term", "build-helper", @@ -11991,8 +11973,8 @@ checksum = "13a4ec180a2de59b57434704ccfad967f789b12737738798fa08798cd5824c16" [[package]] name = "test-runtime-constants" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "frame-support", "polkadot-primitives", @@ -12281,8 +12263,8 @@ dependencies = [ [[package]] name = "tracing-gum" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "polkadot-node-jaeger", "polkadot-primitives", @@ -12292,8 +12274,8 @@ dependencies = [ [[package]] name = "tracing-gum-proc-macro" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "expander 0.0.6", "proc-macro-crate", @@ -12420,7 +12402,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#26193945883c773f2f14f976da3c3bd11dc0eb79" +source = "git+https://github.com/paritytech/substrate?branch=master#7de3d7870f63a525977fd4e91cda16039e7b1d60" dependencies = [ "clap 3.2.20", "frame-try-runtime", @@ -12733,11 +12715,11 @@ dependencies = [ [[package]] name = "wasm-instrument" -version = "0.1.1" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "962e5b0401bbb6c887f54e69b8c496ea36f704df65db73e81fd5ff8dc3e63a9f" +checksum = "8bca81f5279342b38b17d9acbf007a46ddeb73144e2bd5f0a21bfa9fc5d4ab3e" dependencies = [ - "parity-wasm 0.42.2", + "parity-wasm 0.45.0", ] [[package]] @@ -12757,58 +12739,63 @@ dependencies = [ [[package]] name = "wasmi" -version = "0.9.1" +version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ca00c5147c319a8ec91ec1a0edbec31e566ce2c9cc93b3f9bb86a9efd0eb795d" +checksum = "fc13b3c219ca9aafeec59150d80d89851df02e0061bc357b4d66fc55a8d38787" dependencies = [ - "downcast-rs", - "libc", - "libm", - "memory_units", - "num-rational 0.2.4", - "num-traits", - "parity-wasm 0.42.2", + "parity-wasm 0.45.0", "wasmi-validation", + "wasmi_core", ] [[package]] name = "wasmi-validation" -version = "0.4.1" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "165343ecd6c018fc09ebcae280752702c9a2ef3e6f8d02f1cfcbdb53ef6d7937" +checksum = "91ff416ad1ff0c42e5a926ed5d5fab74c0f098749aa0ad8b2a34b982ce0e867b" dependencies = [ - "parity-wasm 0.42.2", + "parity-wasm 0.45.0", +] + +[[package]] +name = "wasmi_core" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e0a088e8c4c59c6f2b9eae169bf86328adccc477c00b56d3661e3e9fb397b184" +dependencies = [ + "downcast-rs", + "libm", + "memory_units", + "num-rational 0.4.0", + "num-traits", ] [[package]] name = "wasmparser" -version = "0.85.0" +version = "0.88.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "570460c58b21e9150d2df0eaaedbb7816c34bcec009ae0dcc976e40ba81463e7" +checksum = "fb8cf7dd82407fe68161bedcd57fde15596f32ebf6e9b3bdbf3ae1da20e38e5e" dependencies = [ "indexmap", ] [[package]] name = "wasmtime" -version = "0.38.3" +version = "0.40.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1f50eadf868ab6a04b7b511460233377d0bfbb92e417b2f6a98b98fef2e098f5" +checksum = "a020a3f6587fa7a7d98a021156177735ebb07212a6239a85ab5f14b2f728508f" dependencies = [ "anyhow", - "backtrace", "bincode", "cfg-if 1.0.0", "indexmap", - "lazy_static", "libc", "log", - "object 0.28.4", + "object 0.29.0", "once_cell", "paste", "psm", "rayon", - "region", "serde", "target-lexicon", "wasmparser", @@ -12817,14 +12804,23 @@ dependencies = [ "wasmtime-environ", "wasmtime-jit", "wasmtime-runtime", - "winapi", + "windows-sys 0.36.1", +] + +[[package]] +name = "wasmtime-asm-macros" +version = "0.40.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fed4ada1fdd4d9a2aa37be652abcc31ae3188ad0efcefb4571ef4f785be2d777" +dependencies = [ + "cfg-if 1.0.0", ] [[package]] name = "wasmtime-cache" -version = "0.38.3" +version = "0.40.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d1df23c642e1376892f3b72f311596976979cbf8b85469680cdd3a8a063d12a2" +checksum = "d96a03a5732ef39b83943d9d72de8ac2d58623d3bfaaea4d9a92aea5fcd9acf5" dependencies = [ "anyhow", "base64", @@ -12832,19 +12828,19 @@ dependencies = [ "directories-next", "file-per-thread-logger", "log", - "rustix 0.33.7", + "rustix", "serde", "sha2 0.9.8", "toml", - "winapi", + "windows-sys 0.36.1", "zstd", ] [[package]] name = "wasmtime-cranelift" -version = "0.38.3" +version = "0.40.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f264ff6b4df247d15584f2f53d009fbc90032cfdc2605b52b961bffc71b6eccd" +checksum = "1fc59c28fe895112db09e262fb9c483f9e7b82c78a82a6ded69567ccc0e9795b" dependencies = [ "anyhow", "cranelift-codegen", @@ -12854,8 +12850,7 @@ dependencies = [ "cranelift-wasm", "gimli", "log", - "more-asserts", - "object 0.28.4", + "object 0.29.0", "target-lexicon", "thiserror", "wasmparser", @@ -12864,17 +12859,16 @@ dependencies = [ [[package]] name = "wasmtime-environ" -version = "0.38.3" +version = "0.40.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "839d2820e4b830f4b9e7aa08d4c0acabf4a5036105d639f6dfa1c6891c73bdc6" +checksum = "11086e573d2635a45ac0d44697a8e4586e058cf1b190f76bea466ca2ec36c30a" dependencies = [ "anyhow", "cranelift-entity", "gimli", "indexmap", "log", - "more-asserts", - "object 0.28.4", + "object 0.29.0", "serde", "target-lexicon", "thiserror", @@ -12884,9 +12878,9 @@ dependencies = [ [[package]] name = "wasmtime-jit" -version = "0.38.3" +version = "0.40.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ef0a0bcbfa18b946d890078ba0e1bc76bcc53eccfb40806c0020ec29dcd1bd49" +checksum = "d5444a78b74144718633f8642eccd7c4858f4c6f0c98ae6a3668998adf177ba2" dependencies = [ "addr2line", "anyhow", @@ -12895,38 +12889,36 @@ dependencies = [ "cpp_demangle", "gimli", "log", - "object 0.28.4", - "region", + "object 0.29.0", "rustc-demangle", - "rustix 0.33.7", + "rustix", "serde", "target-lexicon", "thiserror", "wasmtime-environ", "wasmtime-jit-debug", "wasmtime-runtime", - "winapi", + "windows-sys 0.36.1", ] [[package]] name = "wasmtime-jit-debug" -version = "0.38.3" +version = "0.40.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4f4779d976206c458edd643d1ac622b6c37e4a0800a8b1d25dfbf245ac2f2cac" +checksum = "c2bf6a667d2a29b2b0ed42bcf7564f00c595d92c24acb4d241c7c4d950b1910c" dependencies = [ - "lazy_static", - "object 0.28.4", - "rustix 0.33.7", + "object 0.29.0", + "once_cell", + "rustix", ] [[package]] name = "wasmtime-runtime" -version = "0.38.3" +version = "0.40.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b7eb6ffa169eb5dcd18ac9473c817358cd57bc62c244622210566d473397954a" +checksum = "ee064ce7b563cc201cdf3bb1cc4b233f386d8c57a96e55f4c4afe6103f4bd6a1" dependencies = [ "anyhow", - "backtrace", "cc", "cfg-if 1.0.0", "indexmap", @@ -12935,21 +12927,21 @@ dependencies = [ "mach", "memfd", "memoffset", - "more-asserts", + "paste", "rand 0.8.5", - "region", - "rustix 0.33.7", + "rustix", "thiserror", + "wasmtime-asm-macros", "wasmtime-environ", "wasmtime-jit-debug", - "winapi", + "windows-sys 0.36.1", ] [[package]] name = "wasmtime-types" -version = "0.38.3" +version = "0.40.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8d932b0ac5336f7308d869703dd225610a6a3aeaa8e968c52b43eed96cefb1c2" +checksum = "01e104bd9e625181d53ead85910bbc0863aa5f0c6ef96836fe9a5cc65da11b69" dependencies = [ "cranelift-entity", "serde", @@ -12997,8 +12989,8 @@ dependencies = [ [[package]] name = "westend-runtime" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "beefy-primitives", "bitvec", @@ -13052,7 +13044,7 @@ dependencies = [ "pallet-xcm", "pallet-xcm-benchmarks", "parity-scale-codec", - "polkadot-parachain 0.9.28", + "polkadot-parachain 0.9.29", "polkadot-primitives", "polkadot-runtime-common", "polkadot-runtime-parachains", @@ -13086,8 +13078,8 @@ dependencies = [ [[package]] name = "westend-runtime-constants" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "frame-support", "polkadot-primitives", @@ -13140,7 +13132,7 @@ dependencies = [ "parachains-common", "parity-scale-codec", "polkadot-core-primitives", - "polkadot-parachain 0.9.28", + "polkadot-parachain 0.9.29", "polkadot-runtime-common", "scale-info", "serde", @@ -13372,8 +13364,8 @@ dependencies = [ [[package]] name = "xcm" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "derivative", "impl-trait-for-tuples", @@ -13386,15 +13378,15 @@ dependencies = [ [[package]] name = "xcm-builder" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "frame-support", "frame-system", "log", "pallet-transaction-payment", "parity-scale-codec", - "polkadot-parachain 0.9.28", + "polkadot-parachain 0.9.29", "scale-info", "sp-arithmetic", "sp-io", @@ -13406,8 +13398,8 @@ dependencies = [ [[package]] name = "xcm-executor" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "frame-benchmarking", "frame-support", @@ -13424,8 +13416,8 @@ dependencies = [ [[package]] name = "xcm-procedural" -version = "0.9.28" -source = "git+https://github.com/paritytech/polkadot?branch=master#850d1f5a819de5a9bf52a149ffd8b7d584ba1076" +version = "0.9.29" +source = "git+https://github.com/paritytech/polkadot?branch=master#39d2e6b8e75574d6c3e88971d19f9c69aaa4aa25" dependencies = [ "Inflector", "proc-macro2", From 0db5cd4cee417467d60be56ffc5484e247bdef25 Mon Sep 17 00:00:00 2001 From: Michal Kucharczyk <1728078+michalkucharczyk@users.noreply.github.com> Date: Mon, 12 Sep 2022 17:42:55 +0200 Subject: [PATCH 05/12] warning fixed --- parachain-template/node/src/service.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/parachain-template/node/src/service.rs b/parachain-template/node/src/service.rs index a90d707354f..f57411642b7 100644 --- a/parachain-template/node/src/service.rs +++ b/parachain-template/node/src/service.rs @@ -25,7 +25,6 @@ use cumulus_relay_chain_interface::{RelayChainError, RelayChainInterface, RelayC use cumulus_relay_chain_rpc_interface::{create_client_and_start_worker, RelayChainRpcInterface}; // Substrate Imports -use sc_client_api::ExecutorProvider; use sc_executor::NativeElseWasmExecutor; use sc_network::NetworkService; use sc_network_common::service::NetworkBlock; From 6f388362621639c8034224cfd0f99ab095c9e16f Mon Sep 17 00:00:00 2001 From: Keith Yeung Date: Tue, 13 Sep 2022 19:08:07 +0800 Subject: [PATCH 06/12] Update cid --- Cargo.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7abe9f28c50..5e260b3305e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -908,9 +908,9 @@ dependencies = [ [[package]] name = "cid" -version = "0.8.4" +version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a52cffa791ce5cf490ac3b2d6df970dc04f931b04e727be3c3e220e17164dfc4" +checksum = "f6ed9c8b2d17acb8110c46f1da5bf4a696d745e1474a16db0cd2b49cd0249bf2" dependencies = [ "core2", "multibase", @@ -12437,7 +12437,7 @@ version = "1.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "97fee6b57c6a41524a810daee9286c02d7752c4253064d0b05472833a438f675" dependencies = [ - "cfg-if 1.0.0", + "cfg-if 0.1.10", "digest 0.10.3", "rand 0.8.5", "static_assertions", From 87cf61cf37da3631998e7bc42d74a51934f43637 Mon Sep 17 00:00:00 2001 From: parity-processbot <> Date: Tue, 13 Sep 2022 13:38:39 +0000 Subject: [PATCH 07/12] update lockfile for {"polkadot", "substrate"} --- Cargo.lock | 694 +++++++++++++++++++++++++++++++---------------------- 1 file changed, 407 insertions(+), 287 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7abe9f28c50..918b4905c90 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -451,7 +451,7 @@ dependencies = [ [[package]] name = "beefy-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "async-trait", "beefy-primitives", @@ -487,7 +487,7 @@ dependencies = [ [[package]] name = "beefy-gadget-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "beefy-gadget", "beefy-primitives", @@ -507,7 +507,7 @@ dependencies = [ [[package]] name = "beefy-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "beefy-primitives", "sp-api", @@ -516,7 +516,7 @@ dependencies = [ [[package]] name = "beefy-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "parity-scale-codec", "scale-info", @@ -908,9 +908,9 @@ dependencies = [ [[package]] name = "cid" -version = "0.8.4" +version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a52cffa791ce5cf490ac3b2d6df970dc04f931b04e727be3c3e220e17164dfc4" +checksum = "f6ed9c8b2d17acb8110c46f1da5bf4a696d745e1474a16db0cd2b49cd0249bf2" dependencies = [ "core2", "multibase", @@ -2786,7 +2786,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "parity-scale-codec", ] @@ -2803,7 +2803,7 @@ dependencies = [ [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-support", "frame-system", @@ -2826,7 +2826,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "Inflector", "chrono", @@ -2877,7 +2877,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2888,7 +2888,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2904,7 +2904,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-support", "frame-system", @@ -2933,7 +2933,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "bitflags", "frame-metadata", @@ -2958,13 +2958,14 @@ dependencies = [ "sp-state-machine", "sp-std", "sp-tracing", + "sp-weights", "tt-call", ] [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "Inflector", "cfg-expr", @@ -2978,7 +2979,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -2990,7 +2991,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "proc-macro2", "quote", @@ -3000,7 +3001,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-support", "log", @@ -3012,12 +3013,13 @@ dependencies = [ "sp-runtime", "sp-std", "sp-version", + "sp-weights", ] [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-support", @@ -3032,7 +3034,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "parity-scale-codec", "sp-api", @@ -3041,7 +3043,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-support", "parity-scale-codec", @@ -3920,7 +3922,7 @@ checksum = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7" [[package]] name = "kusama-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "beefy-primitives", "bitvec", @@ -4013,7 +4015,7 @@ dependencies = [ [[package]] name = "kusama-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "frame-support", "polkadot-primitives", @@ -4172,8 +4174,8 @@ dependencies = [ "libp2p-request-response", "libp2p-swarm", "log", - "prost", - "prost-build", + "prost 0.10.3", + "prost-build 0.10.4", "rand 0.8.5", ] @@ -4199,8 +4201,8 @@ dependencies = [ "multistream-select", "parking_lot 0.12.1", "pin-project", - "prost", - "prost-build", + "prost 0.10.3", + "prost-build 0.10.4", "rand 0.8.5", "ring", "rw-stream-sink", @@ -4250,8 +4252,8 @@ dependencies = [ "libp2p-core", "libp2p-swarm", "log", - "prost", - "prost-build", + "prost 0.10.3", + "prost-build 0.10.4", "rand 0.7.3", "smallvec", ] @@ -4274,8 +4276,8 @@ dependencies = [ "libp2p-swarm", "log", "prometheus-client", - "prost", - "prost-build", + "prost 0.10.3", + "prost-build 0.10.4", "rand 0.7.3", "regex", "sha2 0.10.2", @@ -4297,8 +4299,8 @@ dependencies = [ "libp2p-swarm", "log", "lru 0.7.7", - "prost", - "prost-build", + "prost 0.10.3", + "prost-build 0.10.4", "prost-codec", "smallvec", "thiserror", @@ -4322,8 +4324,8 @@ dependencies = [ "libp2p-core", "libp2p-swarm", "log", - "prost", - "prost-build", + "prost 0.10.3", + "prost-build 0.10.4", "rand 0.7.3", "sha2 0.10.2", "smallvec", @@ -4400,8 +4402,8 @@ dependencies = [ "lazy_static", "libp2p-core", "log", - "prost", - "prost-build", + "prost 0.10.3", + "prost-build 0.10.4", "rand 0.8.5", "sha2 0.10.2", "snow", @@ -4437,8 +4439,8 @@ dependencies = [ "futures", "libp2p-core", "log", - "prost", - "prost-build", + "prost 0.10.3", + "prost-build 0.10.4", "unsigned-varint", "void", ] @@ -4473,8 +4475,8 @@ dependencies = [ "libp2p-swarm", "log", "pin-project", - "prost", - "prost-build", + "prost 0.10.3", + "prost-build 0.10.4", "prost-codec", "rand 0.8.5", "smallvec", @@ -4497,8 +4499,8 @@ dependencies = [ "libp2p-core", "libp2p-swarm", "log", - "prost", - "prost-build", + "prost 0.10.3", + "prost-build 0.10.4", "rand 0.8.5", "sha2 0.10.2", "thiserror", @@ -5352,7 +5354,7 @@ checksum = "28988d872ab76095a6e6ac88d99b54fd267702734fd7ffe610ca27f533ddb95a" [[package]] name = "orchestra" version = "0.0.1" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "async-trait", "dyn-clonable", @@ -5368,7 +5370,7 @@ dependencies = [ [[package]] name = "orchestra-proc-macro" version = "0.0.1" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "expander 0.0.6", "itertools", @@ -5406,7 +5408,7 @@ dependencies = [ [[package]] name = "pallet-alliance" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5427,7 +5429,7 @@ dependencies = [ [[package]] name = "pallet-asset-tx-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-support", "frame-system", @@ -5444,7 +5446,7 @@ dependencies = [ [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5458,7 +5460,7 @@ dependencies = [ [[package]] name = "pallet-aura" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-support", "frame-system", @@ -5474,7 +5476,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-support", "frame-system", @@ -5490,7 +5492,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-support", "frame-system", @@ -5505,7 +5507,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5529,7 +5531,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5549,7 +5551,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5564,7 +5566,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "beefy-primitives", "frame-support", @@ -5580,7 +5582,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "beefy-merkle-tree", "beefy-primitives", @@ -5603,7 +5605,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5621,7 +5623,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5666,7 +5668,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5683,7 +5685,7 @@ dependencies = [ [[package]] name = "pallet-contracts" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "bitflags", "frame-benchmarking", @@ -5711,7 +5713,7 @@ dependencies = [ [[package]] name = "pallet-contracts-primitives" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "bitflags", "parity-scale-codec", @@ -5726,7 +5728,7 @@ dependencies = [ [[package]] name = "pallet-contracts-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "proc-macro2", "quote", @@ -5736,7 +5738,7 @@ dependencies = [ [[package]] name = "pallet-contracts-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "jsonrpsee", "pallet-contracts-primitives", @@ -5753,7 +5755,7 @@ dependencies = [ [[package]] name = "pallet-contracts-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "pallet-contracts-primitives", "parity-scale-codec", @@ -5766,7 +5768,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5782,7 +5784,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5805,7 +5807,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5818,7 +5820,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5836,7 +5838,7 @@ dependencies = [ [[package]] name = "pallet-gilt" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5851,7 +5853,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5874,7 +5876,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5890,7 +5892,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5910,7 +5912,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5927,7 +5929,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5944,7 +5946,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -5962,7 +5964,7 @@ dependencies = [ [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -5977,7 +5979,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5992,7 +5994,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-support", "frame-system", @@ -6009,7 +6011,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6028,7 +6030,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "parity-scale-codec", "sp-api", @@ -6038,7 +6040,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-support", "frame-system", @@ -6055,7 +6057,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6078,7 +6080,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-support", @@ -6094,7 +6096,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-support", @@ -6109,7 +6111,7 @@ dependencies = [ [[package]] name = "pallet-randomness-collective-flip" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-support", "frame-system", @@ -6123,7 +6125,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-support", @@ -6138,7 +6140,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-support", @@ -6154,7 +6156,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-support", "frame-system", @@ -6175,7 +6177,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-support", @@ -6191,7 +6193,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-support", "frame-system", @@ -6205,7 +6207,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6228,7 +6230,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -6239,7 +6241,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "log", "sp-arithmetic", @@ -6248,7 +6250,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-support", "frame-system", @@ -6277,7 +6279,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-support", @@ -6295,7 +6297,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-support", @@ -6314,7 +6316,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-support", "frame-system", @@ -6330,7 +6332,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -6345,7 +6347,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -6356,7 +6358,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-support", @@ -6373,7 +6375,7 @@ dependencies = [ [[package]] name = "pallet-uniques" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-support", @@ -6388,7 +6390,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-support", @@ -6404,7 +6406,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-support", @@ -6419,7 +6421,7 @@ dependencies = [ [[package]] name = "pallet-xcm" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "frame-support", "frame-system", @@ -6437,7 +6439,7 @@ dependencies = [ [[package]] name = "pallet-xcm-benchmarks" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "frame-benchmarking", "frame-support", @@ -6995,7 +6997,7 @@ dependencies = [ [[package]] name = "polkadot-approval-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -7010,7 +7012,7 @@ dependencies = [ [[package]] name = "polkadot-availability-bitfield-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -7024,7 +7026,7 @@ dependencies = [ [[package]] name = "polkadot-availability-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "derive_more", "fatality", @@ -7047,7 +7049,7 @@ dependencies = [ [[package]] name = "polkadot-availability-recovery" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "fatality", "futures", @@ -7068,7 +7070,7 @@ dependencies = [ [[package]] name = "polkadot-cli" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "clap 3.2.20", "frame-benchmarking-cli", @@ -7094,7 +7096,7 @@ dependencies = [ [[package]] name = "polkadot-client" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "beefy-primitives", "frame-benchmarking", @@ -7135,7 +7137,7 @@ dependencies = [ [[package]] name = "polkadot-collator-protocol" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "always-assert", "fatality", @@ -7156,7 +7158,7 @@ dependencies = [ [[package]] name = "polkadot-core-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "parity-scale-codec", "parity-util-mem", @@ -7169,7 +7171,7 @@ dependencies = [ [[package]] name = "polkadot-dispute-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "derive_more", "fatality", @@ -7192,7 +7194,7 @@ dependencies = [ [[package]] name = "polkadot-erasure-coding" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "parity-scale-codec", "polkadot-node-primitives", @@ -7206,7 +7208,7 @@ dependencies = [ [[package]] name = "polkadot-gossip-support" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "futures", "futures-timer", @@ -7226,7 +7228,7 @@ dependencies = [ [[package]] name = "polkadot-network-bridge" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "always-assert", "async-trait", @@ -7250,7 +7252,7 @@ dependencies = [ [[package]] name = "polkadot-node-collation-generation" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "futures", "parity-scale-codec", @@ -7268,7 +7270,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-approval-voting" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "bitvec", "derive_more", @@ -7297,7 +7299,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-av-store" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "bitvec", "futures", @@ -7317,7 +7319,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-backing" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "bitvec", "fatality", @@ -7336,7 +7338,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-bitfield-signing" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7351,7 +7353,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-candidate-validation" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "async-trait", "futures", @@ -7369,7 +7371,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-api" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7384,7 +7386,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-selection" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "futures", "futures-timer", @@ -7401,7 +7403,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-dispute-coordinator" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "fatality", "futures", @@ -7420,7 +7422,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-parachains-inherent" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "async-trait", "futures", @@ -7437,7 +7439,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-provisioner" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "bitvec", "fatality", @@ -7455,7 +7457,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "always-assert", "assert_matches", @@ -7487,7 +7489,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-checker" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "futures", "polkadot-node-primitives", @@ -7503,7 +7505,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-runtime-api" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "futures", "memory-lru", @@ -7519,7 +7521,7 @@ dependencies = [ [[package]] name = "polkadot-node-jaeger" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "async-std", "lazy_static", @@ -7537,7 +7539,7 @@ dependencies = [ [[package]] name = "polkadot-node-metrics" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "bs58", "futures", @@ -7556,7 +7558,7 @@ dependencies = [ [[package]] name = "polkadot-node-network-protocol" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "async-trait", "derive_more", @@ -7578,7 +7580,7 @@ dependencies = [ [[package]] name = "polkadot-node-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "bounded-vec", "futures", @@ -7600,7 +7602,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "polkadot-node-jaeger", "polkadot-node-subsystem-types", @@ -7610,7 +7612,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-test-helpers" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "async-trait", "futures", @@ -7628,7 +7630,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-types" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "async-trait", "derive_more", @@ -7651,7 +7653,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-util" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "async-trait", "derive_more", @@ -7684,7 +7686,7 @@ dependencies = [ [[package]] name = "polkadot-overseer" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "async-trait", "futures", @@ -7707,7 +7709,7 @@ dependencies = [ [[package]] name = "polkadot-parachain" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "derive_more", "frame-support", @@ -7807,7 +7809,7 @@ dependencies = [ [[package]] name = "polkadot-performance-test" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "env_logger 0.9.0", "kusama-runtime", @@ -7822,7 +7824,7 @@ dependencies = [ [[package]] name = "polkadot-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "bitvec", "frame-system", @@ -7852,7 +7854,7 @@ dependencies = [ [[package]] name = "polkadot-rpc" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "beefy-gadget", "beefy-gadget-rpc", @@ -7884,7 +7886,7 @@ dependencies = [ [[package]] name = "polkadot-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "beefy-primitives", "bitvec", @@ -7972,7 +7974,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-common" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "beefy-primitives", "bitvec", @@ -8019,7 +8021,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "frame-support", "polkadot-primitives", @@ -8031,7 +8033,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-metrics" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "bs58", "parity-scale-codec", @@ -8043,7 +8045,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-parachains" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "bitflags", "bitvec", @@ -8086,7 +8088,7 @@ dependencies = [ [[package]] name = "polkadot-service" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "async-trait", "beefy-gadget", @@ -8191,7 +8193,7 @@ dependencies = [ [[package]] name = "polkadot-statement-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "arrayvec 0.5.2", "fatality", @@ -8212,7 +8214,7 @@ dependencies = [ [[package]] name = "polkadot-statement-table" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "parity-scale-codec", "polkadot-primitives", @@ -8222,7 +8224,7 @@ dependencies = [ [[package]] name = "polkadot-test-client" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "parity-scale-codec", "polkadot-node-subsystem", @@ -8247,7 +8249,7 @@ dependencies = [ [[package]] name = "polkadot-test-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "beefy-primitives", "bitvec", @@ -8308,7 +8310,7 @@ dependencies = [ [[package]] name = "polkadot-test-service" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "frame-benchmarking", "frame-system", @@ -8453,7 +8455,7 @@ dependencies = [ [[package]] name = "prioritized-metered-channel" version = "0.2.0" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "coarsetime", "crossbeam-queue", @@ -8553,7 +8555,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bc03e116981ff7d8da8e5c220e374587b98d294af7ba7dd7fda761158f00086f" dependencies = [ "bytes", - "prost-derive", + "prost-derive 0.10.1", +] + +[[package]] +name = "prost" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "399c3c31cdec40583bb68f0b18403400d01ec4289c383aa047560439952c4dd7" +dependencies = [ + "bytes", + "prost-derive 0.11.0", ] [[package]] @@ -8571,8 +8583,28 @@ dependencies = [ "log", "multimap", "petgraph", - "prost", - "prost-types", + "prost 0.10.3", + "prost-types 0.10.1", + "regex", + "tempfile", + "which", +] + +[[package]] +name = "prost-build" +version = "0.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f835c582e6bd972ba8347313300219fed5bfa52caf175298d860b61ff6069bb" +dependencies = [ + "bytes", + "heck", + "itertools", + "lazy_static", + "log", + "multimap", + "petgraph", + "prost 0.11.0", + "prost-types 0.11.1", "regex", "tempfile", "which", @@ -8586,7 +8618,7 @@ checksum = "00af1e92c33b4813cc79fda3f2dbf56af5169709be0202df730e9ebc3e4cd007" dependencies = [ "asynchronous-codec", "bytes", - "prost", + "prost 0.10.3", "thiserror", "unsigned-varint", ] @@ -8604,6 +8636,19 @@ dependencies = [ "syn", ] +[[package]] +name = "prost-derive" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7345d5f0e08c0536d7ac7229952590239e77abf0a0100a1b1d890add6ea96364" +dependencies = [ + "anyhow", + "itertools", + "proc-macro2", + "quote", + "syn", +] + [[package]] name = "prost-types" version = "0.10.1" @@ -8611,7 +8656,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2d0a014229361011dc8e69c8a1ec6c2e8d0f2af7c91e3ea3f5b2170298461e68" dependencies = [ "bytes", - "prost", + "prost 0.10.3", +] + +[[package]] +name = "prost-types" +version = "0.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4dfaa718ad76a44b3415e6c4d53b17c8f99160dcb3a99b10470fce8ad43f6e3e" +dependencies = [ + "bytes", + "prost 0.11.0", ] [[package]] @@ -8820,7 +8875,7 @@ dependencies = [ "derive_more", "fs-err", "itertools", - "static_init", + "static_init 0.5.2", "thiserror", ] @@ -8885,7 +8940,7 @@ checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" [[package]] name = "remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "env_logger 0.9.0", "jsonrpsee", @@ -9007,7 +9062,7 @@ dependencies = [ [[package]] name = "rococo-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "beefy-merkle-tree", "beefy-primitives", @@ -9091,7 +9146,7 @@ dependencies = [ [[package]] name = "rococo-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "frame-support", "polkadot-primitives", @@ -9261,7 +9316,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "log", "sp-core", @@ -9272,7 +9327,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "async-trait", "futures", @@ -9281,8 +9336,8 @@ dependencies = [ "libp2p", "log", "parity-scale-codec", - "prost", - "prost-build", + "prost 0.10.3", + "prost-build 0.10.4", "rand 0.7.3", "sc-client-api", "sc-network-common", @@ -9299,7 +9354,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "futures", "futures-timer", @@ -9322,7 +9377,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -9338,7 +9393,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "impl-trait-for-tuples", "memmap2 0.5.0", @@ -9355,7 +9410,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -9366,7 +9421,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "chrono", "clap 3.2.20", @@ -9405,7 +9460,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "fnv", "futures", @@ -9433,7 +9488,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "hash-db", "kvdb", @@ -9458,7 +9513,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "async-trait", "futures", @@ -9482,7 +9537,7 @@ dependencies = [ [[package]] name = "sc-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "async-trait", "futures", @@ -9511,7 +9566,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "async-trait", "fork-tree", @@ -9553,7 +9608,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "futures", "jsonrpsee", @@ -9575,7 +9630,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "fork-tree", "parity-scale-codec", @@ -9588,7 +9643,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "async-trait", "futures", @@ -9613,7 +9668,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "lazy_static", "lru 0.7.7", @@ -9640,7 +9695,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "environmental", "parity-scale-codec", @@ -9656,7 +9711,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "log", "parity-scale-codec", @@ -9671,7 +9726,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "cfg-if 1.0.0", "libc", @@ -9691,7 +9746,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "ahash", "async-trait", @@ -9732,7 +9787,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "finality-grandpa", "futures", @@ -9753,7 +9808,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "ansi_term", "futures", @@ -9770,7 +9825,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "async-trait", "hex", @@ -9785,7 +9840,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "async-trait", "asynchronous-codec", @@ -9807,8 +9862,7 @@ dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", "pin-project", - "prost", - "prost-build", + "prost 0.10.3", "rand 0.7.3", "sc-block-builder", "sc-client-api", @@ -9827,14 +9881,33 @@ dependencies = [ "substrate-prometheus-endpoint", "thiserror", "unsigned-varint", - "void", "zeroize", ] +[[package]] +name = "sc-network-bitswap" +version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" +dependencies = [ + "cid", + "futures", + "libp2p", + "log", + "prost 0.11.0", + "prost-build 0.11.1", + "sc-client-api", + "sc-network-common", + "sp-blockchain", + "sp-runtime", + "thiserror", + "unsigned-varint", + "void", +] + [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "async-trait", "bitflags", @@ -9842,7 +9915,7 @@ dependencies = [ "futures", "libp2p", "parity-scale-codec", - "prost-build", + "prost-build 0.10.4", "sc-consensus", "sc-peerset", "serde", @@ -9857,7 +9930,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "ahash", "futures", @@ -9875,15 +9948,15 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "futures", "hex", "libp2p", "log", "parity-scale-codec", - "prost", - "prost-build", + "prost 0.10.3", + "prost-build 0.10.4", "sc-client-api", "sc-network-common", "sc-peerset", @@ -9896,7 +9969,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "fork-tree", "futures", @@ -9905,8 +9978,8 @@ dependencies = [ "log", "lru 0.7.7", "parity-scale-codec", - "prost", - "prost-build", + "prost 0.10.3", + "prost-build 0.10.4", "sc-client-api", "sc-consensus", "sc-network-common", @@ -9924,7 +9997,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "bytes", "fnv", @@ -9954,7 +10027,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "futures", "libp2p", @@ -9967,7 +10040,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -9976,7 +10049,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "futures", "hash-db", @@ -10006,7 +10079,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "futures", "jsonrpsee", @@ -10029,7 +10102,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "futures", "jsonrpsee", @@ -10042,7 +10115,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "async-trait", "directories", @@ -10066,6 +10139,7 @@ dependencies = [ "sc-informant", "sc-keystore", "sc-network", + "sc-network-bitswap", "sc-network-common", "sc-network-light", "sc-network-sync", @@ -10098,6 +10172,7 @@ dependencies = [ "sp-transaction-storage-proof", "sp-trie", "sp-version", + "static_init 1.0.3", "substrate-prometheus-endpoint", "tempfile", "thiserror", @@ -10109,7 +10184,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "log", "parity-scale-codec", @@ -10123,7 +10198,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -10142,7 +10217,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "futures", "libc", @@ -10161,7 +10236,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "chrono", "futures", @@ -10179,7 +10254,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "ansi_term", "atty", @@ -10210,7 +10285,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -10221,7 +10296,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "futures", "futures-timer", @@ -10247,7 +10322,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "futures", "log", @@ -10260,7 +10335,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "futures", "futures-timer", @@ -10707,7 +10782,7 @@ checksum = "03b634d87b960ab1a38c4fe143b508576f075e7c978bfad18217645ebfdfa2ec" [[package]] name = "slot-range-helper" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "enumn", "parity-scale-codec", @@ -10783,7 +10858,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "hash-db", "log", @@ -10801,7 +10876,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "blake2", "proc-macro-crate", @@ -10813,7 +10888,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "parity-scale-codec", "scale-info", @@ -10826,7 +10901,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "integer-sqrt", "num-traits", @@ -10841,7 +10916,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "parity-scale-codec", "scale-info", @@ -10854,7 +10929,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "async-trait", "parity-scale-codec", @@ -10866,7 +10941,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "parity-scale-codec", "sp-api", @@ -10878,7 +10953,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "futures", "log", @@ -10896,7 +10971,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "async-trait", "futures", @@ -10915,7 +10990,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "async-trait", "parity-scale-codec", @@ -10933,7 +11008,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "async-trait", "merlin", @@ -10956,7 +11031,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "parity-scale-codec", "scale-info", @@ -10970,7 +11045,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "parity-scale-codec", "scale-info", @@ -10983,7 +11058,7 @@ dependencies = [ [[package]] name = "sp-core" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "base58", "bitflags", @@ -11029,7 +11104,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "blake2", "byteorder", @@ -11043,7 +11118,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "proc-macro2", "quote", @@ -11054,7 +11129,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -11063,7 +11138,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "proc-macro2", "quote", @@ -11073,7 +11148,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "environmental", "parity-scale-codec", @@ -11084,7 +11159,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "finality-grandpa", "log", @@ -11102,7 +11177,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -11116,7 +11191,7 @@ dependencies = [ [[package]] name = "sp-io" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "bytes", "futures", @@ -11142,7 +11217,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "lazy_static", "sp-core", @@ -11153,7 +11228,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "async-trait", "futures", @@ -11170,7 +11245,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "thiserror", "zstd", @@ -11179,7 +11254,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "log", "parity-scale-codec", @@ -11194,7 +11269,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "parity-scale-codec", "scale-info", @@ -11208,7 +11283,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "sp-api", "sp-core", @@ -11218,7 +11293,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "backtrace", "lazy_static", @@ -11228,7 +11303,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "rustc-hash", "serde", @@ -11238,7 +11313,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "either", "hash256-std-hasher", @@ -11255,12 +11330,13 @@ dependencies = [ "sp-core", "sp-io", "sp-std", + "sp-weights", ] [[package]] name = "sp-runtime-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -11278,7 +11354,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "Inflector", "proc-macro-crate", @@ -11290,7 +11366,7 @@ dependencies = [ [[package]] name = "sp-sandbox" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "log", "parity-scale-codec", @@ -11304,7 +11380,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "serde", "serde_json", @@ -11313,7 +11389,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "parity-scale-codec", "scale-info", @@ -11327,7 +11403,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "parity-scale-codec", "scale-info", @@ -11338,7 +11414,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "hash-db", "log", @@ -11360,12 +11436,12 @@ dependencies = [ [[package]] name = "sp-std" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" [[package]] name = "sp-storage" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11378,7 +11454,7 @@ dependencies = [ [[package]] name = "sp-tasks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "log", "sp-core", @@ -11391,7 +11467,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "async-trait", "futures-timer", @@ -11407,7 +11483,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "parity-scale-codec", "sp-std", @@ -11419,7 +11495,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "sp-api", "sp-runtime", @@ -11428,7 +11504,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "async-trait", "log", @@ -11444,7 +11520,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "ahash", "hash-db", @@ -11467,7 +11543,7 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11484,7 +11560,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -11495,7 +11571,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "impl-trait-for-tuples", "log", @@ -11505,6 +11581,22 @@ dependencies = [ "wasmtime", ] +[[package]] +name = "sp-weights" +version = "4.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" +dependencies = [ + "impl-trait-for-tuples", + "parity-scale-codec", + "scale-info", + "serde", + "smallvec", + "sp-arithmetic", + "sp-core", + "sp-debug-derive", + "sp-std", +] + [[package]] name = "spin" version = "0.5.2" @@ -11683,7 +11775,22 @@ dependencies = [ "cfg_aliases", "libc", "parking_lot 0.11.2", - "static_init_macro", + "static_init_macro 0.5.0", +] + +[[package]] +name = "static_init" +version = "1.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a2a1c578e98c1c16fc3b8ec1328f7659a500737d7a0c6d625e73e830ff9c1f6" +dependencies = [ + "bitflags", + "cfg_aliases", + "libc", + "parking_lot 0.11.2", + "parking_lot_core 0.8.5", + "static_init_macro 1.0.2", + "winapi", ] [[package]] @@ -11699,6 +11806,19 @@ dependencies = [ "syn", ] +[[package]] +name = "static_init_macro" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "70a2595fc3aa78f2d0e45dd425b22282dd863273761cc77780914b2cf3003acf" +dependencies = [ + "cfg_aliases", + "memchr", + "proc-macro2", + "quote", + "syn", +] + [[package]] name = "statrs" version = "0.15.0" @@ -11756,7 +11876,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "platforms", ] @@ -11764,7 +11884,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -11785,7 +11905,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "futures-util", "hyper", @@ -11798,7 +11918,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "jsonrpsee", "log", @@ -11819,7 +11939,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "async-trait", "futures", @@ -11845,7 +11965,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "futures", "substrate-test-utils-derive", @@ -11855,7 +11975,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -11866,7 +11986,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "ansi_term", "build-helper", @@ -11974,7 +12094,7 @@ checksum = "13a4ec180a2de59b57434704ccfad967f789b12737738798fa08798cd5824c16" [[package]] name = "test-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "frame-support", "polkadot-primitives", @@ -12264,7 +12384,7 @@ dependencies = [ [[package]] name = "tracing-gum" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "polkadot-node-jaeger", "polkadot-primitives", @@ -12275,7 +12395,7 @@ dependencies = [ [[package]] name = "tracing-gum-proc-macro" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "expander 0.0.6", "proc-macro-crate", @@ -12402,7 +12522,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "clap 3.2.20", "frame-try-runtime", @@ -12990,7 +13110,7 @@ dependencies = [ [[package]] name = "westend-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "beefy-primitives", "bitvec", @@ -13079,7 +13199,7 @@ dependencies = [ [[package]] name = "westend-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "frame-support", "polkadot-primitives", @@ -13365,7 +13485,7 @@ dependencies = [ [[package]] name = "xcm" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "derivative", "impl-trait-for-tuples", @@ -13379,7 +13499,7 @@ dependencies = [ [[package]] name = "xcm-builder" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "frame-support", "frame-system", @@ -13399,7 +13519,7 @@ dependencies = [ [[package]] name = "xcm-executor" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "frame-benchmarking", "frame-support", @@ -13417,7 +13537,7 @@ dependencies = [ [[package]] name = "xcm-procedural" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2dda7bb0b806e0303d53a7884dceae5b13138d5d" dependencies = [ "Inflector", "proc-macro2", From 04e70043326d8082532827abf7e099b6763d9b55 Mon Sep 17 00:00:00 2001 From: Keith Yeung Date: Tue, 13 Sep 2022 23:20:00 +0800 Subject: [PATCH 08/12] Update substrate --- Cargo.lock | 554 ++++++++++++++++++++++++++++++++--------------------- 1 file changed, 337 insertions(+), 217 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5e260b3305e..256c299192a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -451,7 +451,7 @@ dependencies = [ [[package]] name = "beefy-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "async-trait", "beefy-primitives", @@ -487,7 +487,7 @@ dependencies = [ [[package]] name = "beefy-gadget-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "beefy-gadget", "beefy-primitives", @@ -507,7 +507,7 @@ dependencies = [ [[package]] name = "beefy-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "beefy-primitives", "sp-api", @@ -516,7 +516,7 @@ dependencies = [ [[package]] name = "beefy-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "parity-scale-codec", "scale-info", @@ -2786,7 +2786,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "parity-scale-codec", ] @@ -2803,7 +2803,7 @@ dependencies = [ [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-support", "frame-system", @@ -2826,7 +2826,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "Inflector", "chrono", @@ -2877,7 +2877,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2888,7 +2888,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2904,7 +2904,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-support", "frame-system", @@ -2933,7 +2933,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "bitflags", "frame-metadata", @@ -2958,13 +2958,14 @@ dependencies = [ "sp-state-machine", "sp-std", "sp-tracing", + "sp-weights", "tt-call", ] [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "Inflector", "cfg-expr", @@ -2978,7 +2979,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -2990,7 +2991,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "proc-macro2", "quote", @@ -3000,7 +3001,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-support", "log", @@ -3012,12 +3013,13 @@ dependencies = [ "sp-runtime", "sp-std", "sp-version", + "sp-weights", ] [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-support", @@ -3032,7 +3034,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "parity-scale-codec", "sp-api", @@ -3041,7 +3043,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-support", "parity-scale-codec", @@ -4172,8 +4174,8 @@ dependencies = [ "libp2p-request-response", "libp2p-swarm", "log", - "prost", - "prost-build", + "prost 0.10.3", + "prost-build 0.10.4", "rand 0.8.5", ] @@ -4199,8 +4201,8 @@ dependencies = [ "multistream-select", "parking_lot 0.12.1", "pin-project", - "prost", - "prost-build", + "prost 0.10.3", + "prost-build 0.10.4", "rand 0.8.5", "ring", "rw-stream-sink", @@ -4250,8 +4252,8 @@ dependencies = [ "libp2p-core", "libp2p-swarm", "log", - "prost", - "prost-build", + "prost 0.10.3", + "prost-build 0.10.4", "rand 0.7.3", "smallvec", ] @@ -4274,8 +4276,8 @@ dependencies = [ "libp2p-swarm", "log", "prometheus-client", - "prost", - "prost-build", + "prost 0.10.3", + "prost-build 0.10.4", "rand 0.7.3", "regex", "sha2 0.10.2", @@ -4297,8 +4299,8 @@ dependencies = [ "libp2p-swarm", "log", "lru 0.7.7", - "prost", - "prost-build", + "prost 0.10.3", + "prost-build 0.10.4", "prost-codec", "smallvec", "thiserror", @@ -4322,8 +4324,8 @@ dependencies = [ "libp2p-core", "libp2p-swarm", "log", - "prost", - "prost-build", + "prost 0.10.3", + "prost-build 0.10.4", "rand 0.7.3", "sha2 0.10.2", "smallvec", @@ -4400,8 +4402,8 @@ dependencies = [ "lazy_static", "libp2p-core", "log", - "prost", - "prost-build", + "prost 0.10.3", + "prost-build 0.10.4", "rand 0.8.5", "sha2 0.10.2", "snow", @@ -4437,8 +4439,8 @@ dependencies = [ "futures", "libp2p-core", "log", - "prost", - "prost-build", + "prost 0.10.3", + "prost-build 0.10.4", "unsigned-varint", "void", ] @@ -4473,8 +4475,8 @@ dependencies = [ "libp2p-swarm", "log", "pin-project", - "prost", - "prost-build", + "prost 0.10.3", + "prost-build 0.10.4", "prost-codec", "rand 0.8.5", "smallvec", @@ -4497,8 +4499,8 @@ dependencies = [ "libp2p-core", "libp2p-swarm", "log", - "prost", - "prost-build", + "prost 0.10.3", + "prost-build 0.10.4", "rand 0.8.5", "sha2 0.10.2", "thiserror", @@ -5406,7 +5408,7 @@ dependencies = [ [[package]] name = "pallet-alliance" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5427,7 +5429,7 @@ dependencies = [ [[package]] name = "pallet-asset-tx-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-support", "frame-system", @@ -5444,7 +5446,7 @@ dependencies = [ [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5458,7 +5460,7 @@ dependencies = [ [[package]] name = "pallet-aura" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-support", "frame-system", @@ -5474,7 +5476,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-support", "frame-system", @@ -5490,7 +5492,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-support", "frame-system", @@ -5505,7 +5507,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5529,7 +5531,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5549,7 +5551,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5564,7 +5566,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "beefy-primitives", "frame-support", @@ -5580,7 +5582,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "beefy-merkle-tree", "beefy-primitives", @@ -5603,7 +5605,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5621,7 +5623,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5666,7 +5668,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5683,7 +5685,7 @@ dependencies = [ [[package]] name = "pallet-contracts" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "bitflags", "frame-benchmarking", @@ -5711,7 +5713,7 @@ dependencies = [ [[package]] name = "pallet-contracts-primitives" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "bitflags", "parity-scale-codec", @@ -5726,7 +5728,7 @@ dependencies = [ [[package]] name = "pallet-contracts-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "proc-macro2", "quote", @@ -5736,7 +5738,7 @@ dependencies = [ [[package]] name = "pallet-contracts-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "jsonrpsee", "pallet-contracts-primitives", @@ -5753,7 +5755,7 @@ dependencies = [ [[package]] name = "pallet-contracts-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "pallet-contracts-primitives", "parity-scale-codec", @@ -5766,7 +5768,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5782,7 +5784,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5805,7 +5807,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5818,7 +5820,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5836,7 +5838,7 @@ dependencies = [ [[package]] name = "pallet-gilt" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5851,7 +5853,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5874,7 +5876,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5890,7 +5892,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5910,7 +5912,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5927,7 +5929,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5944,7 +5946,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -5962,7 +5964,7 @@ dependencies = [ [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -5977,7 +5979,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-support", @@ -5992,7 +5994,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-support", "frame-system", @@ -6009,7 +6011,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6028,7 +6030,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "parity-scale-codec", "sp-api", @@ -6038,7 +6040,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-support", "frame-system", @@ -6055,7 +6057,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6078,7 +6080,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-support", @@ -6094,7 +6096,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-support", @@ -6109,7 +6111,7 @@ dependencies = [ [[package]] name = "pallet-randomness-collective-flip" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-support", "frame-system", @@ -6123,7 +6125,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-support", @@ -6138,7 +6140,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-support", @@ -6154,7 +6156,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-support", "frame-system", @@ -6175,7 +6177,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-support", @@ -6191,7 +6193,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-support", "frame-system", @@ -6205,7 +6207,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6228,7 +6230,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -6239,7 +6241,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "log", "sp-arithmetic", @@ -6248,7 +6250,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-support", "frame-system", @@ -6277,7 +6279,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-support", @@ -6295,7 +6297,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-support", @@ -6314,7 +6316,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-support", "frame-system", @@ -6330,7 +6332,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -6345,7 +6347,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -6356,7 +6358,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-support", @@ -6373,7 +6375,7 @@ dependencies = [ [[package]] name = "pallet-uniques" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-support", @@ -6388,7 +6390,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-support", @@ -6404,7 +6406,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-benchmarking", "frame-support", @@ -8553,7 +8555,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bc03e116981ff7d8da8e5c220e374587b98d294af7ba7dd7fda761158f00086f" dependencies = [ "bytes", - "prost-derive", + "prost-derive 0.10.1", +] + +[[package]] +name = "prost" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "399c3c31cdec40583bb68f0b18403400d01ec4289c383aa047560439952c4dd7" +dependencies = [ + "bytes", + "prost-derive 0.11.0", ] [[package]] @@ -8571,8 +8583,28 @@ dependencies = [ "log", "multimap", "petgraph", - "prost", - "prost-types", + "prost 0.10.3", + "prost-types 0.10.1", + "regex", + "tempfile", + "which", +] + +[[package]] +name = "prost-build" +version = "0.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f835c582e6bd972ba8347313300219fed5bfa52caf175298d860b61ff6069bb" +dependencies = [ + "bytes", + "heck", + "itertools", + "lazy_static", + "log", + "multimap", + "petgraph", + "prost 0.11.0", + "prost-types 0.11.1", "regex", "tempfile", "which", @@ -8586,7 +8618,7 @@ checksum = "00af1e92c33b4813cc79fda3f2dbf56af5169709be0202df730e9ebc3e4cd007" dependencies = [ "asynchronous-codec", "bytes", - "prost", + "prost 0.10.3", "thiserror", "unsigned-varint", ] @@ -8604,6 +8636,19 @@ dependencies = [ "syn", ] +[[package]] +name = "prost-derive" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7345d5f0e08c0536d7ac7229952590239e77abf0a0100a1b1d890add6ea96364" +dependencies = [ + "anyhow", + "itertools", + "proc-macro2", + "quote", + "syn", +] + [[package]] name = "prost-types" version = "0.10.1" @@ -8611,7 +8656,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2d0a014229361011dc8e69c8a1ec6c2e8d0f2af7c91e3ea3f5b2170298461e68" dependencies = [ "bytes", - "prost", + "prost 0.10.3", +] + +[[package]] +name = "prost-types" +version = "0.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4dfaa718ad76a44b3415e6c4d53b17c8f99160dcb3a99b10470fce8ad43f6e3e" +dependencies = [ + "bytes", + "prost 0.11.0", ] [[package]] @@ -8820,7 +8875,7 @@ dependencies = [ "derive_more", "fs-err", "itertools", - "static_init", + "static_init 0.5.2", "thiserror", ] @@ -8885,7 +8940,7 @@ checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" [[package]] name = "remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "env_logger 0.9.0", "jsonrpsee", @@ -9261,7 +9316,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "log", "sp-core", @@ -9272,7 +9327,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "async-trait", "futures", @@ -9281,8 +9336,8 @@ dependencies = [ "libp2p", "log", "parity-scale-codec", - "prost", - "prost-build", + "prost 0.10.3", + "prost-build 0.10.4", "rand 0.7.3", "sc-client-api", "sc-network-common", @@ -9299,7 +9354,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "futures", "futures-timer", @@ -9322,7 +9377,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -9338,7 +9393,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "impl-trait-for-tuples", "memmap2 0.5.0", @@ -9355,7 +9410,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -9366,7 +9421,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "chrono", "clap 3.2.20", @@ -9405,7 +9460,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "fnv", "futures", @@ -9433,7 +9488,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "hash-db", "kvdb", @@ -9458,7 +9513,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "async-trait", "futures", @@ -9482,7 +9537,7 @@ dependencies = [ [[package]] name = "sc-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "async-trait", "futures", @@ -9511,7 +9566,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "async-trait", "fork-tree", @@ -9553,7 +9608,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "futures", "jsonrpsee", @@ -9575,7 +9630,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "fork-tree", "parity-scale-codec", @@ -9588,7 +9643,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "async-trait", "futures", @@ -9613,7 +9668,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "lazy_static", "lru 0.7.7", @@ -9640,7 +9695,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "environmental", "parity-scale-codec", @@ -9656,7 +9711,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "log", "parity-scale-codec", @@ -9671,7 +9726,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "cfg-if 1.0.0", "libc", @@ -9691,7 +9746,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "ahash", "async-trait", @@ -9732,7 +9787,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "finality-grandpa", "futures", @@ -9753,7 +9808,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "ansi_term", "futures", @@ -9770,7 +9825,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "async-trait", "hex", @@ -9785,7 +9840,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "async-trait", "asynchronous-codec", @@ -9807,8 +9862,7 @@ dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", "pin-project", - "prost", - "prost-build", + "prost 0.10.3", "rand 0.7.3", "sc-block-builder", "sc-client-api", @@ -9827,14 +9881,33 @@ dependencies = [ "substrate-prometheus-endpoint", "thiserror", "unsigned-varint", - "void", "zeroize", ] +[[package]] +name = "sc-network-bitswap" +version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" +dependencies = [ + "cid", + "futures", + "libp2p", + "log", + "prost 0.11.0", + "prost-build 0.11.1", + "sc-client-api", + "sc-network-common", + "sp-blockchain", + "sp-runtime", + "thiserror", + "unsigned-varint", + "void", +] + [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "async-trait", "bitflags", @@ -9842,7 +9915,7 @@ dependencies = [ "futures", "libp2p", "parity-scale-codec", - "prost-build", + "prost-build 0.10.4", "sc-consensus", "sc-peerset", "serde", @@ -9857,7 +9930,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "ahash", "futures", @@ -9875,15 +9948,15 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "futures", "hex", "libp2p", "log", "parity-scale-codec", - "prost", - "prost-build", + "prost 0.10.3", + "prost-build 0.10.4", "sc-client-api", "sc-network-common", "sc-peerset", @@ -9896,7 +9969,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "fork-tree", "futures", @@ -9905,8 +9978,8 @@ dependencies = [ "log", "lru 0.7.7", "parity-scale-codec", - "prost", - "prost-build", + "prost 0.10.3", + "prost-build 0.10.4", "sc-client-api", "sc-consensus", "sc-network-common", @@ -9924,7 +9997,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "bytes", "fnv", @@ -9954,7 +10027,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "futures", "libp2p", @@ -9967,7 +10040,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -9976,7 +10049,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "futures", "hash-db", @@ -10006,7 +10079,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "futures", "jsonrpsee", @@ -10029,7 +10102,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "futures", "jsonrpsee", @@ -10042,7 +10115,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "async-trait", "directories", @@ -10066,6 +10139,7 @@ dependencies = [ "sc-informant", "sc-keystore", "sc-network", + "sc-network-bitswap", "sc-network-common", "sc-network-light", "sc-network-sync", @@ -10098,6 +10172,7 @@ dependencies = [ "sp-transaction-storage-proof", "sp-trie", "sp-version", + "static_init 1.0.3", "substrate-prometheus-endpoint", "tempfile", "thiserror", @@ -10109,7 +10184,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "log", "parity-scale-codec", @@ -10123,7 +10198,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -10142,7 +10217,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "futures", "libc", @@ -10161,7 +10236,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "chrono", "futures", @@ -10179,7 +10254,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "ansi_term", "atty", @@ -10210,7 +10285,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -10221,7 +10296,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "futures", "futures-timer", @@ -10247,7 +10322,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "futures", "log", @@ -10260,7 +10335,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "futures", "futures-timer", @@ -10783,7 +10858,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "hash-db", "log", @@ -10801,7 +10876,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "blake2", "proc-macro-crate", @@ -10813,7 +10888,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "parity-scale-codec", "scale-info", @@ -10826,7 +10901,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "integer-sqrt", "num-traits", @@ -10841,7 +10916,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "parity-scale-codec", "scale-info", @@ -10854,7 +10929,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "async-trait", "parity-scale-codec", @@ -10866,7 +10941,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "parity-scale-codec", "sp-api", @@ -10878,7 +10953,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "futures", "log", @@ -10896,7 +10971,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "async-trait", "futures", @@ -10915,7 +10990,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "async-trait", "parity-scale-codec", @@ -10933,7 +11008,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "async-trait", "merlin", @@ -10956,7 +11031,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "parity-scale-codec", "scale-info", @@ -10970,7 +11045,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "parity-scale-codec", "scale-info", @@ -10983,7 +11058,7 @@ dependencies = [ [[package]] name = "sp-core" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "base58", "bitflags", @@ -11029,7 +11104,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "blake2", "byteorder", @@ -11043,7 +11118,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "proc-macro2", "quote", @@ -11054,7 +11129,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -11063,7 +11138,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "proc-macro2", "quote", @@ -11073,7 +11148,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "environmental", "parity-scale-codec", @@ -11084,7 +11159,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "finality-grandpa", "log", @@ -11102,7 +11177,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -11116,7 +11191,7 @@ dependencies = [ [[package]] name = "sp-io" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "bytes", "futures", @@ -11142,7 +11217,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "lazy_static", "sp-core", @@ -11153,7 +11228,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "async-trait", "futures", @@ -11170,7 +11245,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "thiserror", "zstd", @@ -11179,7 +11254,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "log", "parity-scale-codec", @@ -11194,7 +11269,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "parity-scale-codec", "scale-info", @@ -11208,7 +11283,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "sp-api", "sp-core", @@ -11218,7 +11293,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "backtrace", "lazy_static", @@ -11228,7 +11303,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "rustc-hash", "serde", @@ -11238,7 +11313,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "either", "hash256-std-hasher", @@ -11255,12 +11330,13 @@ dependencies = [ "sp-core", "sp-io", "sp-std", + "sp-weights", ] [[package]] name = "sp-runtime-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -11278,7 +11354,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "Inflector", "proc-macro-crate", @@ -11290,7 +11366,7 @@ dependencies = [ [[package]] name = "sp-sandbox" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "log", "parity-scale-codec", @@ -11304,7 +11380,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "serde", "serde_json", @@ -11313,7 +11389,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "parity-scale-codec", "scale-info", @@ -11327,7 +11403,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "parity-scale-codec", "scale-info", @@ -11338,7 +11414,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "hash-db", "log", @@ -11360,12 +11436,12 @@ dependencies = [ [[package]] name = "sp-std" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" [[package]] name = "sp-storage" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11378,7 +11454,7 @@ dependencies = [ [[package]] name = "sp-tasks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "log", "sp-core", @@ -11391,7 +11467,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "async-trait", "futures-timer", @@ -11407,7 +11483,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "parity-scale-codec", "sp-std", @@ -11419,7 +11495,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "sp-api", "sp-runtime", @@ -11428,7 +11504,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "async-trait", "log", @@ -11444,7 +11520,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "ahash", "hash-db", @@ -11467,7 +11543,7 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "impl-serde", "parity-scale-codec", @@ -11484,7 +11560,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -11495,7 +11571,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "impl-trait-for-tuples", "log", @@ -11505,6 +11581,22 @@ dependencies = [ "wasmtime", ] +[[package]] +name = "sp-weights" +version = "4.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" +dependencies = [ + "impl-trait-for-tuples", + "parity-scale-codec", + "scale-info", + "serde", + "smallvec", + "sp-arithmetic", + "sp-core", + "sp-debug-derive", + "sp-std", +] + [[package]] name = "spin" version = "0.5.2" @@ -11683,7 +11775,22 @@ dependencies = [ "cfg_aliases", "libc", "parking_lot 0.11.2", - "static_init_macro", + "static_init_macro 0.5.0", +] + +[[package]] +name = "static_init" +version = "1.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a2a1c578e98c1c16fc3b8ec1328f7659a500737d7a0c6d625e73e830ff9c1f6" +dependencies = [ + "bitflags", + "cfg_aliases", + "libc", + "parking_lot 0.11.2", + "parking_lot_core 0.8.5", + "static_init_macro 1.0.2", + "winapi", ] [[package]] @@ -11699,6 +11806,19 @@ dependencies = [ "syn", ] +[[package]] +name = "static_init_macro" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "70a2595fc3aa78f2d0e45dd425b22282dd863273761cc77780914b2cf3003acf" +dependencies = [ + "cfg_aliases", + "memchr", + "proc-macro2", + "quote", + "syn", +] + [[package]] name = "statrs" version = "0.15.0" @@ -11756,7 +11876,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "platforms", ] @@ -11764,7 +11884,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -11785,7 +11905,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "futures-util", "hyper", @@ -11798,7 +11918,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "jsonrpsee", "log", @@ -11819,7 +11939,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "async-trait", "futures", @@ -11845,7 +11965,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "futures", "substrate-test-utils-derive", @@ -11855,7 +11975,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -11866,7 +11986,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "ansi_term", "build-helper", @@ -12402,7 +12522,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#5527263978a763bafc78d60955c662c20f465d18" +source = "git+https://github.com/paritytech/substrate?branch=master#23bb5a6255bbcd7ce2999044710428bc4a7a924f" dependencies = [ "clap 3.2.20", "frame-try-runtime", @@ -12437,7 +12557,7 @@ version = "1.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "97fee6b57c6a41524a810daee9286c02d7752c4253064d0b05472833a438f675" dependencies = [ - "cfg-if 0.1.10", + "cfg-if 1.0.0", "digest 0.10.3", "rand 0.8.5", "static_assertions", From 63921a5b10b5460753e2deb2a812be8153dbf8b3 Mon Sep 17 00:00:00 2001 From: parity-processbot <> Date: Tue, 13 Sep 2022 15:48:27 +0000 Subject: [PATCH 09/12] update lockfile for {"polkadot", "substrate"} --- Cargo.lock | 138 ++++++++++++++++++++++++++--------------------------- 1 file changed, 69 insertions(+), 69 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 256c299192a..3e22fe183ba 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3922,7 +3922,7 @@ checksum = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7" [[package]] name = "kusama-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "beefy-primitives", "bitvec", @@ -4015,7 +4015,7 @@ dependencies = [ [[package]] name = "kusama-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "frame-support", "polkadot-primitives", @@ -5354,7 +5354,7 @@ checksum = "28988d872ab76095a6e6ac88d99b54fd267702734fd7ffe610ca27f533ddb95a" [[package]] name = "orchestra" version = "0.0.1" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "async-trait", "dyn-clonable", @@ -5370,7 +5370,7 @@ dependencies = [ [[package]] name = "orchestra-proc-macro" version = "0.0.1" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "expander 0.0.6", "itertools", @@ -6421,7 +6421,7 @@ dependencies = [ [[package]] name = "pallet-xcm" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "frame-support", "frame-system", @@ -6439,7 +6439,7 @@ dependencies = [ [[package]] name = "pallet-xcm-benchmarks" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "frame-benchmarking", "frame-support", @@ -6997,7 +6997,7 @@ dependencies = [ [[package]] name = "polkadot-approval-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -7012,7 +7012,7 @@ dependencies = [ [[package]] name = "polkadot-availability-bitfield-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -7026,7 +7026,7 @@ dependencies = [ [[package]] name = "polkadot-availability-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "derive_more", "fatality", @@ -7049,7 +7049,7 @@ dependencies = [ [[package]] name = "polkadot-availability-recovery" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "fatality", "futures", @@ -7070,7 +7070,7 @@ dependencies = [ [[package]] name = "polkadot-cli" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "clap 3.2.20", "frame-benchmarking-cli", @@ -7096,7 +7096,7 @@ dependencies = [ [[package]] name = "polkadot-client" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "beefy-primitives", "frame-benchmarking", @@ -7137,7 +7137,7 @@ dependencies = [ [[package]] name = "polkadot-collator-protocol" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "always-assert", "fatality", @@ -7158,7 +7158,7 @@ dependencies = [ [[package]] name = "polkadot-core-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "parity-scale-codec", "parity-util-mem", @@ -7171,7 +7171,7 @@ dependencies = [ [[package]] name = "polkadot-dispute-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "derive_more", "fatality", @@ -7194,7 +7194,7 @@ dependencies = [ [[package]] name = "polkadot-erasure-coding" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "parity-scale-codec", "polkadot-node-primitives", @@ -7208,7 +7208,7 @@ dependencies = [ [[package]] name = "polkadot-gossip-support" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "futures", "futures-timer", @@ -7228,7 +7228,7 @@ dependencies = [ [[package]] name = "polkadot-network-bridge" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "always-assert", "async-trait", @@ -7252,7 +7252,7 @@ dependencies = [ [[package]] name = "polkadot-node-collation-generation" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "futures", "parity-scale-codec", @@ -7270,7 +7270,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-approval-voting" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "bitvec", "derive_more", @@ -7299,7 +7299,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-av-store" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "bitvec", "futures", @@ -7319,7 +7319,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-backing" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "bitvec", "fatality", @@ -7338,7 +7338,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-bitfield-signing" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7353,7 +7353,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-candidate-validation" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "async-trait", "futures", @@ -7371,7 +7371,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-api" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7386,7 +7386,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-selection" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "futures", "futures-timer", @@ -7403,7 +7403,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-dispute-coordinator" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "fatality", "futures", @@ -7422,7 +7422,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-parachains-inherent" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "async-trait", "futures", @@ -7439,7 +7439,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-provisioner" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "bitvec", "fatality", @@ -7457,7 +7457,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "always-assert", "assert_matches", @@ -7489,7 +7489,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-checker" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "futures", "polkadot-node-primitives", @@ -7505,7 +7505,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-runtime-api" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "futures", "memory-lru", @@ -7521,7 +7521,7 @@ dependencies = [ [[package]] name = "polkadot-node-jaeger" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "async-std", "lazy_static", @@ -7539,7 +7539,7 @@ dependencies = [ [[package]] name = "polkadot-node-metrics" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "bs58", "futures", @@ -7558,7 +7558,7 @@ dependencies = [ [[package]] name = "polkadot-node-network-protocol" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "async-trait", "derive_more", @@ -7580,7 +7580,7 @@ dependencies = [ [[package]] name = "polkadot-node-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "bounded-vec", "futures", @@ -7602,7 +7602,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "polkadot-node-jaeger", "polkadot-node-subsystem-types", @@ -7612,7 +7612,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-test-helpers" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "async-trait", "futures", @@ -7630,7 +7630,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-types" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "async-trait", "derive_more", @@ -7653,7 +7653,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-util" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "async-trait", "derive_more", @@ -7686,7 +7686,7 @@ dependencies = [ [[package]] name = "polkadot-overseer" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "async-trait", "futures", @@ -7709,7 +7709,7 @@ dependencies = [ [[package]] name = "polkadot-parachain" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "derive_more", "frame-support", @@ -7809,7 +7809,7 @@ dependencies = [ [[package]] name = "polkadot-performance-test" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "env_logger 0.9.0", "kusama-runtime", @@ -7824,7 +7824,7 @@ dependencies = [ [[package]] name = "polkadot-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "bitvec", "frame-system", @@ -7854,7 +7854,7 @@ dependencies = [ [[package]] name = "polkadot-rpc" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "beefy-gadget", "beefy-gadget-rpc", @@ -7886,7 +7886,7 @@ dependencies = [ [[package]] name = "polkadot-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "beefy-primitives", "bitvec", @@ -7974,7 +7974,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-common" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "beefy-primitives", "bitvec", @@ -8021,7 +8021,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "frame-support", "polkadot-primitives", @@ -8033,7 +8033,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-metrics" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "bs58", "parity-scale-codec", @@ -8045,7 +8045,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-parachains" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "bitflags", "bitvec", @@ -8088,7 +8088,7 @@ dependencies = [ [[package]] name = "polkadot-service" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "async-trait", "beefy-gadget", @@ -8193,7 +8193,7 @@ dependencies = [ [[package]] name = "polkadot-statement-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "arrayvec 0.5.2", "fatality", @@ -8214,7 +8214,7 @@ dependencies = [ [[package]] name = "polkadot-statement-table" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "parity-scale-codec", "polkadot-primitives", @@ -8224,7 +8224,7 @@ dependencies = [ [[package]] name = "polkadot-test-client" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "parity-scale-codec", "polkadot-node-subsystem", @@ -8249,7 +8249,7 @@ dependencies = [ [[package]] name = "polkadot-test-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "beefy-primitives", "bitvec", @@ -8310,7 +8310,7 @@ dependencies = [ [[package]] name = "polkadot-test-service" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "frame-benchmarking", "frame-system", @@ -8455,7 +8455,7 @@ dependencies = [ [[package]] name = "prioritized-metered-channel" version = "0.2.0" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "coarsetime", "crossbeam-queue", @@ -9062,7 +9062,7 @@ dependencies = [ [[package]] name = "rococo-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "beefy-merkle-tree", "beefy-primitives", @@ -9146,7 +9146,7 @@ dependencies = [ [[package]] name = "rococo-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "frame-support", "polkadot-primitives", @@ -10782,7 +10782,7 @@ checksum = "03b634d87b960ab1a38c4fe143b508576f075e7c978bfad18217645ebfdfa2ec" [[package]] name = "slot-range-helper" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "enumn", "parity-scale-codec", @@ -12094,7 +12094,7 @@ checksum = "13a4ec180a2de59b57434704ccfad967f789b12737738798fa08798cd5824c16" [[package]] name = "test-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "frame-support", "polkadot-primitives", @@ -12384,7 +12384,7 @@ dependencies = [ [[package]] name = "tracing-gum" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "polkadot-node-jaeger", "polkadot-primitives", @@ -12395,7 +12395,7 @@ dependencies = [ [[package]] name = "tracing-gum-proc-macro" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "expander 0.0.6", "proc-macro-crate", @@ -13110,7 +13110,7 @@ dependencies = [ [[package]] name = "westend-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "beefy-primitives", "bitvec", @@ -13199,7 +13199,7 @@ dependencies = [ [[package]] name = "westend-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "frame-support", "polkadot-primitives", @@ -13485,7 +13485,7 @@ dependencies = [ [[package]] name = "xcm" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "derivative", "impl-trait-for-tuples", @@ -13499,7 +13499,7 @@ dependencies = [ [[package]] name = "xcm-builder" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "frame-support", "frame-system", @@ -13519,7 +13519,7 @@ dependencies = [ [[package]] name = "xcm-executor" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "frame-benchmarking", "frame-support", @@ -13537,7 +13537,7 @@ dependencies = [ [[package]] name = "xcm-procedural" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "Inflector", "proc-macro2", From 19320a01f40a0262b70870e1d12f6722a879414d Mon Sep 17 00:00:00 2001 From: Keith Yeung Date: Wed, 14 Sep 2022 00:18:48 +0800 Subject: [PATCH 10/12] Update polkadot --- Cargo.lock | 138 ++++++++++++++++++++++++++--------------------------- 1 file changed, 69 insertions(+), 69 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 256c299192a..3e22fe183ba 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3922,7 +3922,7 @@ checksum = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7" [[package]] name = "kusama-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "beefy-primitives", "bitvec", @@ -4015,7 +4015,7 @@ dependencies = [ [[package]] name = "kusama-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "frame-support", "polkadot-primitives", @@ -5354,7 +5354,7 @@ checksum = "28988d872ab76095a6e6ac88d99b54fd267702734fd7ffe610ca27f533ddb95a" [[package]] name = "orchestra" version = "0.0.1" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "async-trait", "dyn-clonable", @@ -5370,7 +5370,7 @@ dependencies = [ [[package]] name = "orchestra-proc-macro" version = "0.0.1" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "expander 0.0.6", "itertools", @@ -6421,7 +6421,7 @@ dependencies = [ [[package]] name = "pallet-xcm" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "frame-support", "frame-system", @@ -6439,7 +6439,7 @@ dependencies = [ [[package]] name = "pallet-xcm-benchmarks" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "frame-benchmarking", "frame-support", @@ -6997,7 +6997,7 @@ dependencies = [ [[package]] name = "polkadot-approval-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -7012,7 +7012,7 @@ dependencies = [ [[package]] name = "polkadot-availability-bitfield-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -7026,7 +7026,7 @@ dependencies = [ [[package]] name = "polkadot-availability-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "derive_more", "fatality", @@ -7049,7 +7049,7 @@ dependencies = [ [[package]] name = "polkadot-availability-recovery" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "fatality", "futures", @@ -7070,7 +7070,7 @@ dependencies = [ [[package]] name = "polkadot-cli" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "clap 3.2.20", "frame-benchmarking-cli", @@ -7096,7 +7096,7 @@ dependencies = [ [[package]] name = "polkadot-client" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "beefy-primitives", "frame-benchmarking", @@ -7137,7 +7137,7 @@ dependencies = [ [[package]] name = "polkadot-collator-protocol" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "always-assert", "fatality", @@ -7158,7 +7158,7 @@ dependencies = [ [[package]] name = "polkadot-core-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "parity-scale-codec", "parity-util-mem", @@ -7171,7 +7171,7 @@ dependencies = [ [[package]] name = "polkadot-dispute-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "derive_more", "fatality", @@ -7194,7 +7194,7 @@ dependencies = [ [[package]] name = "polkadot-erasure-coding" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "parity-scale-codec", "polkadot-node-primitives", @@ -7208,7 +7208,7 @@ dependencies = [ [[package]] name = "polkadot-gossip-support" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "futures", "futures-timer", @@ -7228,7 +7228,7 @@ dependencies = [ [[package]] name = "polkadot-network-bridge" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "always-assert", "async-trait", @@ -7252,7 +7252,7 @@ dependencies = [ [[package]] name = "polkadot-node-collation-generation" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "futures", "parity-scale-codec", @@ -7270,7 +7270,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-approval-voting" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "bitvec", "derive_more", @@ -7299,7 +7299,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-av-store" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "bitvec", "futures", @@ -7319,7 +7319,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-backing" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "bitvec", "fatality", @@ -7338,7 +7338,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-bitfield-signing" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7353,7 +7353,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-candidate-validation" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "async-trait", "futures", @@ -7371,7 +7371,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-api" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "futures", "polkadot-node-subsystem", @@ -7386,7 +7386,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-selection" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "futures", "futures-timer", @@ -7403,7 +7403,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-dispute-coordinator" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "fatality", "futures", @@ -7422,7 +7422,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-parachains-inherent" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "async-trait", "futures", @@ -7439,7 +7439,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-provisioner" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "bitvec", "fatality", @@ -7457,7 +7457,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "always-assert", "assert_matches", @@ -7489,7 +7489,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-checker" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "futures", "polkadot-node-primitives", @@ -7505,7 +7505,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-runtime-api" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "futures", "memory-lru", @@ -7521,7 +7521,7 @@ dependencies = [ [[package]] name = "polkadot-node-jaeger" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "async-std", "lazy_static", @@ -7539,7 +7539,7 @@ dependencies = [ [[package]] name = "polkadot-node-metrics" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "bs58", "futures", @@ -7558,7 +7558,7 @@ dependencies = [ [[package]] name = "polkadot-node-network-protocol" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "async-trait", "derive_more", @@ -7580,7 +7580,7 @@ dependencies = [ [[package]] name = "polkadot-node-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "bounded-vec", "futures", @@ -7602,7 +7602,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "polkadot-node-jaeger", "polkadot-node-subsystem-types", @@ -7612,7 +7612,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-test-helpers" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "async-trait", "futures", @@ -7630,7 +7630,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-types" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "async-trait", "derive_more", @@ -7653,7 +7653,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-util" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "async-trait", "derive_more", @@ -7686,7 +7686,7 @@ dependencies = [ [[package]] name = "polkadot-overseer" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "async-trait", "futures", @@ -7709,7 +7709,7 @@ dependencies = [ [[package]] name = "polkadot-parachain" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "derive_more", "frame-support", @@ -7809,7 +7809,7 @@ dependencies = [ [[package]] name = "polkadot-performance-test" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "env_logger 0.9.0", "kusama-runtime", @@ -7824,7 +7824,7 @@ dependencies = [ [[package]] name = "polkadot-primitives" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "bitvec", "frame-system", @@ -7854,7 +7854,7 @@ dependencies = [ [[package]] name = "polkadot-rpc" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "beefy-gadget", "beefy-gadget-rpc", @@ -7886,7 +7886,7 @@ dependencies = [ [[package]] name = "polkadot-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "beefy-primitives", "bitvec", @@ -7974,7 +7974,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-common" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "beefy-primitives", "bitvec", @@ -8021,7 +8021,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "frame-support", "polkadot-primitives", @@ -8033,7 +8033,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-metrics" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "bs58", "parity-scale-codec", @@ -8045,7 +8045,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-parachains" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "bitflags", "bitvec", @@ -8088,7 +8088,7 @@ dependencies = [ [[package]] name = "polkadot-service" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "async-trait", "beefy-gadget", @@ -8193,7 +8193,7 @@ dependencies = [ [[package]] name = "polkadot-statement-distribution" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "arrayvec 0.5.2", "fatality", @@ -8214,7 +8214,7 @@ dependencies = [ [[package]] name = "polkadot-statement-table" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "parity-scale-codec", "polkadot-primitives", @@ -8224,7 +8224,7 @@ dependencies = [ [[package]] name = "polkadot-test-client" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "parity-scale-codec", "polkadot-node-subsystem", @@ -8249,7 +8249,7 @@ dependencies = [ [[package]] name = "polkadot-test-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "beefy-primitives", "bitvec", @@ -8310,7 +8310,7 @@ dependencies = [ [[package]] name = "polkadot-test-service" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "frame-benchmarking", "frame-system", @@ -8455,7 +8455,7 @@ dependencies = [ [[package]] name = "prioritized-metered-channel" version = "0.2.0" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "coarsetime", "crossbeam-queue", @@ -9062,7 +9062,7 @@ dependencies = [ [[package]] name = "rococo-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "beefy-merkle-tree", "beefy-primitives", @@ -9146,7 +9146,7 @@ dependencies = [ [[package]] name = "rococo-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "frame-support", "polkadot-primitives", @@ -10782,7 +10782,7 @@ checksum = "03b634d87b960ab1a38c4fe143b508576f075e7c978bfad18217645ebfdfa2ec" [[package]] name = "slot-range-helper" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "enumn", "parity-scale-codec", @@ -12094,7 +12094,7 @@ checksum = "13a4ec180a2de59b57434704ccfad967f789b12737738798fa08798cd5824c16" [[package]] name = "test-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "frame-support", "polkadot-primitives", @@ -12384,7 +12384,7 @@ dependencies = [ [[package]] name = "tracing-gum" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "polkadot-node-jaeger", "polkadot-primitives", @@ -12395,7 +12395,7 @@ dependencies = [ [[package]] name = "tracing-gum-proc-macro" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "expander 0.0.6", "proc-macro-crate", @@ -13110,7 +13110,7 @@ dependencies = [ [[package]] name = "westend-runtime" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "beefy-primitives", "bitvec", @@ -13199,7 +13199,7 @@ dependencies = [ [[package]] name = "westend-runtime-constants" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "frame-support", "polkadot-primitives", @@ -13485,7 +13485,7 @@ dependencies = [ [[package]] name = "xcm" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "derivative", "impl-trait-for-tuples", @@ -13499,7 +13499,7 @@ dependencies = [ [[package]] name = "xcm-builder" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "frame-support", "frame-system", @@ -13519,7 +13519,7 @@ dependencies = [ [[package]] name = "xcm-executor" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "frame-benchmarking", "frame-support", @@ -13537,7 +13537,7 @@ dependencies = [ [[package]] name = "xcm-procedural" version = "0.9.29" -source = "git+https://github.com/paritytech/polkadot?branch=master#53253de77f1649ecbb650df2ec3e29d0d1110a2d" +source = "git+https://github.com/paritytech/polkadot?branch=master#2b0d83258089578b65712e143c794cf4922941de" dependencies = [ "Inflector", "proc-macro2", From b0f3634138e20531e52bc5f6cbb6eed65e6ffee7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bastian=20K=C3=B6cher?= Date: Tue, 13 Sep 2022 21:54:42 +0200 Subject: [PATCH 11/12] Fix tests --- test/service/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/service/src/lib.rs b/test/service/src/lib.rs index a45b3c8bf1d..e427258e409 100644 --- a/test/service/src/lib.rs +++ b/test/service/src/lib.rs @@ -608,7 +608,7 @@ pub fn node_config( is_collator: bool, ) -> Result { let base_path = BasePath::new_temp_dir()?; - let root = base_path.path().to_path_buf(); + let root = base_path.path().join(key.to_string()); let role = if is_collator { Role::Authority } else { Role::Full }; let key_seed = key.to_seed(); let mut spec = Box::new(chain_spec::get_chain_spec(para_id)); From d025e5d1bd9eab945f884c6a2a72e2fafe0a2b10 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bastian=20K=C3=B6cher?= Date: Wed, 14 Sep 2022 09:36:56 +0200 Subject: [PATCH 12/12] :facepalm: --- test/service/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/service/src/lib.rs b/test/service/src/lib.rs index e427258e409..53a04d47e6d 100644 --- a/test/service/src/lib.rs +++ b/test/service/src/lib.rs @@ -608,7 +608,7 @@ pub fn node_config( is_collator: bool, ) -> Result { let base_path = BasePath::new_temp_dir()?; - let root = base_path.path().join(key.to_string()); + let root = base_path.path().join(format!("cumulus_test_service_{}", key.to_string())); let role = if is_collator { Role::Authority } else { Role::Full }; let key_seed = key.to_seed(); let mut spec = Box::new(chain_spec::get_chain_spec(para_id));