From 73a6e0bcba9c1ea2e5bc57a507f831b4943756fe Mon Sep 17 00:00:00 2001 From: BradleyOlson64 Date: Mon, 18 Sep 2023 14:42:23 -0700 Subject: [PATCH 01/15] Updating glutton for async backing --- Cargo.lock | 1 + .../glutton/glutton-kusama/Cargo.toml | 1 + .../glutton/glutton-kusama/src/lib.rs | 51 ++++++-- cumulus/polkadot-parachain/src/command.rs | 36 +++--- cumulus/polkadot-parachain/src/service.rs | 111 +++++++++++++++++- .../xcm/xcm-builder/src/universal_exports.rs | 8 +- 6 files changed, 170 insertions(+), 38 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 670d9c9e771c8..a0fb0d83b60f8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5791,6 +5791,7 @@ dependencies = [ "cumulus-pallet-aura-ext", "cumulus-pallet-parachain-system", "cumulus-pallet-xcm", + "cumulus-primitives-aura", "cumulus-primitives-core", "cumulus-primitives-timestamp", "frame-benchmarking", diff --git a/cumulus/parachains/runtimes/glutton/glutton-kusama/Cargo.toml b/cumulus/parachains/runtimes/glutton/glutton-kusama/Cargo.toml index 0ffe59b927f9d..bbd4fd16db507 100644 --- a/cumulus/parachains/runtimes/glutton/glutton-kusama/Cargo.toml +++ b/cumulus/parachains/runtimes/glutton/glutton-kusama/Cargo.toml @@ -42,6 +42,7 @@ xcm-executor = { package = "staging-xcm-executor", path = "../../../../../polkad cumulus-pallet-aura-ext = { path = "../../../../pallets/aura-ext", default-features = false } cumulus-pallet-parachain-system = { path = "../../../../pallets/parachain-system", default-features = false, features = ["parameterized-consensus-hook",] } cumulus-pallet-xcm = { path = "../../../../pallets/xcm", default-features = false } +cumulus-primitives-aura = { path = "../../../../primitives/aura", default-features = false } cumulus-primitives-core = { path = "../../../../primitives/core", default-features = false } cumulus-primitives-timestamp = { path = "../../../../primitives/timestamp", default-features = false } parachain-info = { path = "../../../pallets/parachain-info", default-features = false } diff --git a/cumulus/parachains/runtimes/glutton/glutton-kusama/src/lib.rs b/cumulus/parachains/runtimes/glutton/glutton-kusama/src/lib.rs index 41cb0fceebb59..ffb9a07052df5 100644 --- a/cumulus/parachains/runtimes/glutton/glutton-kusama/src/lib.rs +++ b/cumulus/parachains/runtimes/glutton/glutton-kusama/src/lib.rs @@ -122,10 +122,28 @@ const AVERAGE_ON_INITIALIZE_RATIO: Perbill = Perbill::from_percent(10); const NORMAL_DISPATCH_RATIO: Perbill = Perbill::from_percent(75); /// We allow for .5 seconds of compute with a 12 second average block time. const MAXIMUM_BLOCK_WEIGHT: Weight = Weight::from_parts( - WEIGHT_REF_TIME_PER_SECOND.saturating_div(2), + WEIGHT_REF_TIME_PER_SECOND.saturating_mul(2), cumulus_primitives_core::relay_chain::MAX_POV_SIZE as u64, ); +/// Maximum number of blocks simultaneously accepted by the Runtime, not yet included +/// into the relay chain. +const UNINCLUDED_SEGMENT_CAPACITY: u32 = 3; +/// How many parachain blocks are processed by the relay chain per parent. Limits the +/// number of blocks authored per slot. +const BLOCK_PROCESSING_VELOCITY: u32 = 2; +/// Relay chain slot duration, in milliseconds. +const RELAY_CHAIN_SLOT_DURATION_MILLIS: u32 = 6000; + +/// This determines the average expected block time that we are targeting. +/// Blocks will be produced at a minimum duration defined by `SLOT_DURATION`. +/// `SLOT_DURATION` is picked up by `pallet_timestamp` which is in turn picked +/// up by `pallet_aura` to implement `fn slot_duration()`. +/// +/// Change this to adjust the block time. +pub const MILLISECS_PER_BLOCK: u64 = 6000; +pub const SLOT_DURATION: u64 = MILLISECS_PER_BLOCK; + parameter_types! { pub const BlockHashCount: BlockNumber = 4096; pub const Version: RuntimeVersion = VERSION; @@ -183,6 +201,13 @@ parameter_types! { pub const ReservedDmpWeight: Weight = MAXIMUM_BLOCK_WEIGHT.saturating_div(2); } +type ConsensusHook = cumulus_pallet_aura_ext::FixedVelocityConsensusHook< + Runtime, + RELAY_CHAIN_SLOT_DURATION_MILLIS, + BLOCK_PROCESSING_VELOCITY, + UNINCLUDED_SEGMENT_CAPACITY, +>; + impl cumulus_pallet_parachain_system::Config for Runtime { type RuntimeEvent = RuntimeEvent; type OnSystemEvent = (); @@ -193,12 +218,7 @@ impl cumulus_pallet_parachain_system::Config for Runtime { type XcmpMessageHandler = (); type ReservedXcmpWeight = (); type CheckAssociatedRelayNumber = RelayNumberMonotonicallyIncreases; - type ConsensusHook = cumulus_pallet_aura_ext::FixedVelocityConsensusHook< - Runtime, - RELAY_CHAIN_SLOT_DURATION_MILLIS, - BLOCK_PROCESSING_VELOCITY, - UNINCLUDED_SEGMENT_CAPACITY, - >; + type ConsensusHook = ConsensusHook; } impl parachain_info::Config for Runtime {} @@ -208,7 +228,7 @@ impl cumulus_pallet_aura_ext::Config for Runtime {} impl pallet_timestamp::Config for Runtime { type Moment = u64; type OnTimestampSet = Aura; - type MinimumPeriod = ConstU64<{ SLOT_DURATION / 2 }>; + type MinimumPeriod = ConstU64<0>; type WeightInfo = weights::pallet_timestamp::WeightInfo; } @@ -216,9 +236,9 @@ impl pallet_aura::Config for Runtime { type AuthorityId = AuraId; type DisabledValidators = (); type MaxAuthorities = ConstU32<100_000>; - type AllowMultipleBlocksPerSlot = ConstBool; + type AllowMultipleBlocksPerSlot = ConstBool; #[cfg(feature = "experimental")] - type SlotDuration = pallet_aura::MinimumPeriodTimesTwo; + type SlotDuration = ConstU64; } impl pallet_glutton::Config for Runtime { @@ -339,7 +359,7 @@ impl_runtime_apis! { impl sp_consensus_aura::AuraApi for Runtime { fn slot_duration() -> sp_consensus_aura::SlotDuration { - sp_consensus_aura::SlotDuration::from_millis(Aura::slot_duration()) + sp_consensus_aura::SlotDuration::from_millis(SLOT_DURATION) } fn authorities() -> Vec { @@ -347,6 +367,15 @@ impl_runtime_apis! { } } + impl cumulus_primitives_aura::AuraUnincludedSegmentApi for Runtime { + fn can_build_upon( + included_hash: ::Hash, + slot: cumulus_primitives_aura::Slot, + ) -> Bool { + ConsensusHook::can_build_upon(included_hash, slot) + } + } + impl sp_block_builder::BlockBuilder for Runtime { fn apply_extrinsic( extrinsic: ::Extrinsic, diff --git a/cumulus/polkadot-parachain/src/command.rs b/cumulus/polkadot-parachain/src/command.rs index 32e363aff74be..b6fbcdf895ae1 100644 --- a/cumulus/polkadot-parachain/src/command.rs +++ b/cumulus/polkadot-parachain/src/command.rs @@ -866,22 +866,21 @@ pub fn run() -> Result<()> { .map(|r| r.0) .map_err(Into::into), Runtime::Shell => - crate::service::start_shell_node::( - config, - polkadot_config, - collator_options, - id, - hwbench, - ) + crate::service::start_lookahead_aura_node::< + shell_runtime::RuntimeApi, + AuraId, + >(config, polkadot_config, collator_options, id, hwbench) + .await + .map(|r| r.0) + .map_err(Into::into), + Runtime::Seedling => + crate::service::start_lookahead_aura_node::< + seedling_runtime::RuntimeApi, + AuraId, + >(config, polkadot_config, collator_options, id, hwbench) .await .map(|r| r.0) .map_err(Into::into), - Runtime::Seedling => crate::service::start_shell_node::< - seedling_runtime::RuntimeApi, - >(config, polkadot_config, collator_options, id, hwbench) - .await - .map(|r| r.0) - .map_err(Into::into), Runtime::ContractsRococo => crate::service::start_contracts_rococo_node( config, polkadot_config, @@ -949,13 +948,10 @@ pub fn run() -> Result<()> { .map(|r| r.0) .map_err(Into::into), Runtime::Glutton => - crate::service::start_shell_node::( - config, - polkadot_config, - collator_options, - id, - hwbench, - ) + crate::service::start_lookahead_aura_node::< + glutton_runtime::RuntimeApi, + AuraId, + >(config, polkadot_config, collator_options, id, hwbench) .await .map(|r| r.0) .map_err(Into::into), diff --git a/cumulus/polkadot-parachain/src/service.rs b/cumulus/polkadot-parachain/src/service.rs index f7b053b4b6a9d..1ff63eb3c0c67 100644 --- a/cumulus/polkadot-parachain/src/service.rs +++ b/cumulus/polkadot-parachain/src/service.rs @@ -17,8 +17,9 @@ use codec::Codec; use cumulus_client_cli::CollatorOptions; use cumulus_client_collator::service::CollatorService; -use cumulus_client_consensus_aura::collators::basic::{ - self as basic_aura, Params as BasicAuraParams, +use cumulus_client_consensus_aura::collators::{ + basic::{self as basic_aura, Params as BasicAuraParams}, + lookahead::{self as aura, Params as AuraParams}, }; use cumulus_client_consensus_common::{ ParachainBlockImport as TParachainBlockImport, ParachainCandidate, ParachainConsensus, @@ -31,7 +32,7 @@ use cumulus_client_service::{ BuildNetworkParams, CollatorSybilResistance, DARecoveryProfile, StartRelayChainTasksParams, }; use cumulus_primitives_core::{ - relay_chain::{Hash as PHash, PersistedValidationData}, + relay_chain::{Hash as PHash, PersistedValidationData, ValidationCode}, ParaId, }; use cumulus_relay_chain_interface::{OverseerHandle, RelayChainInterface}; @@ -555,6 +556,7 @@ where CollatorPair, OverseerHandle, Arc>) + Send + Sync>, + ParachainBackend, ) -> Result<(), sc_service::Error>, { let parachain_config = prepare_node_config(parachain_config); @@ -766,7 +768,8 @@ pub async fn start_rococo_parachain_node( para_id, collator_key, overseer_handle, - announce_block| { + announce_block, + backend| { let slot_duration = cumulus_client_consensus_aura::slot_duration(&*client)?; let proposer_factory = sc_basic_authorship::ProposerFactory::with_proof_recording( @@ -1158,7 +1161,8 @@ where para_id, collator_key, overseer_handle, - announce_block| { + announce_block, + backend| { let slot_duration = cumulus_client_consensus_aura::slot_duration(&*client)?; let proposer_factory = sc_basic_authorship::ProposerFactory::with_proof_recording( @@ -1206,6 +1210,103 @@ where .await } +/// Start an aura powered parachain node. Asset Hub and Collectives use this. +pub async fn start_lookahead_aura_node( + parachain_config: Configuration, + polkadot_config: Configuration, + collator_options: CollatorOptions, + para_id: ParaId, + hwbench: Option, +) -> sc_service::error::Result<(TaskManager, Arc>)> +where + RuntimeApi: ConstructRuntimeApi> + Send + Sync + 'static, + RuntimeApi::RuntimeApi: sp_transaction_pool::runtime_api::TaggedTransactionQueue + + sp_api::Metadata + + sp_session::SessionKeys + + sp_api::ApiExt + + sp_offchain::OffchainWorkerApi + + sp_block_builder::BlockBuilder + + cumulus_primitives_core::CollectCollationInfo + + sp_consensus_aura::AuraApi::Pair as Pair>::Public> + + pallet_transaction_payment_rpc::TransactionPaymentRuntimeApi + + frame_rpc_system::AccountNonceApi + + cumulus_primitives_aura::AuraUnincludedSegmentApi, + <::Pair as Pair>::Signature: + TryFrom> + std::hash::Hash + sp_runtime::traits::Member + Codec, +{ + start_node_impl::( + parachain_config, + polkadot_config, + collator_options, + CollatorSybilResistance::Resistant, // Aura + para_id, + |_| Ok(RpcModule::new(())), + aura_build_import_queue::<_, AuraId>, + |client, + block_import, + prometheus_registry, + telemetry, + task_manager, + relay_chain_interface, + transaction_pool, + sync_oracle, + keystore, + relay_chain_slot_duration, + para_id, + collator_key, + overseer_handle, + announce_block, + backend| { + let slot_duration = cumulus_client_consensus_aura::slot_duration(&*client)?; + + let proposer_factory = sc_basic_authorship::ProposerFactory::with_proof_recording( + task_manager.spawn_handle(), + client.clone(), + transaction_pool, + prometheus_registry, + telemetry.clone(), + ); + let proposer = Proposer::new(proposer_factory); + + let collator_service = CollatorService::new( + client.clone(), + Arc::new(task_manager.spawn_handle()), + announce_block, + client.clone(), + ); + + let params = AuraParams { + create_inherent_data_providers: move |_, ()| async move { Ok(()) }, + block_import, + para_client: client.clone(), + para_backend: backend.clone(), + relay_client: relay_chain_interface, + code_hash_provider: move |block_hash| { + client.code_at(block_hash).ok().map(ValidationCode).map(|c| c.hash()) + }, + sync_oracle, + keystore, + collator_key, + para_id, + overseer_handle, + slot_duration, + relay_chain_slot_duration, + proposer, + collator_service, + authoring_duration: Duration::from_millis(1500), + }; + + let fut = + aura::run::::Pair, _, _, _, _, _, _, _, _, _>(params); + task_manager.spawn_essential_handle().spawn("aura", None, fut); + + Ok(()) + }, + hwbench, + ) + .await +} + #[sc_tracing::logging::prefix_logs_with("Parachain")] async fn start_contracts_rococo_node_impl( parachain_config: Configuration, diff --git a/polkadot/xcm/xcm-builder/src/universal_exports.rs b/polkadot/xcm/xcm-builder/src/universal_exports.rs index d1b8c8c721fec..a24631ffa9423 100644 --- a/polkadot/xcm/xcm-builder/src/universal_exports.rs +++ b/polkadot/xcm/xcm-builder/src/universal_exports.rs @@ -171,7 +171,9 @@ impl Date: Mon, 18 Sep 2023 15:02:03 -0700 Subject: [PATCH 02/15] Leaving seedling and shell as is --- cumulus/polkadot-parachain/src/command.rs | 22 ++++++++++++++-------- cumulus/polkadot-parachain/src/service.rs | 4 ++-- 2 files changed, 16 insertions(+), 10 deletions(-) diff --git a/cumulus/polkadot-parachain/src/command.rs b/cumulus/polkadot-parachain/src/command.rs index b6fbcdf895ae1..2176e6bdeffc4 100644 --- a/cumulus/polkadot-parachain/src/command.rs +++ b/cumulus/polkadot-parachain/src/command.rs @@ -866,18 +866,24 @@ pub fn run() -> Result<()> { .map(|r| r.0) .map_err(Into::into), Runtime::Shell => - crate::service::start_lookahead_aura_node::< - shell_runtime::RuntimeApi, - AuraId, - >(config, polkadot_config, collator_options, id, hwbench) + crate::service::start_shell_node::( + config, + polkadot_config, + collator_options, + id, + hwbench, + ) .await .map(|r| r.0) .map_err(Into::into), Runtime::Seedling => - crate::service::start_lookahead_aura_node::< - seedling_runtime::RuntimeApi, - AuraId, - >(config, polkadot_config, collator_options, id, hwbench) + crate::service::start_shell_node::( + config, + polkadot_config, + collator_options, + id, + hwbench + ) .await .map(|r| r.0) .map_err(Into::into), diff --git a/cumulus/polkadot-parachain/src/service.rs b/cumulus/polkadot-parachain/src/service.rs index 1ff63eb3c0c67..c99f5097838a0 100644 --- a/cumulus/polkadot-parachain/src/service.rs +++ b/cumulus/polkadot-parachain/src/service.rs @@ -17,7 +17,7 @@ use codec::Codec; use cumulus_client_cli::CollatorOptions; use cumulus_client_collator::service::CollatorService; -use cumulus_client_consensus_aura::collators::{ +use cumulus_client_consensus_aura::collators::{ basic::{self as basic_aura, Params as BasicAuraParams}, lookahead::{self as aura, Params as AuraParams}, }; @@ -1210,7 +1210,7 @@ where .await } -/// Start an aura powered parachain node. Asset Hub and Collectives use this. +/// Start an aura powered parachain node which uses the lookahead collator to support async backing. pub async fn start_lookahead_aura_node( parachain_config: Configuration, polkadot_config: Configuration, From 2a7cf34f5b60a128c5664bee88e3e9b7f8989d1d Mon Sep 17 00:00:00 2001 From: BradleyOlson64 Date: Mon, 18 Sep 2023 15:10:58 -0700 Subject: [PATCH 03/15] fmt --- .../runtimes/glutton/glutton-kusama/src/lib.rs | 7 +------ cumulus/polkadot-parachain/src/command.rs | 12 ++++++------ 2 files changed, 7 insertions(+), 12 deletions(-) diff --git a/cumulus/parachains/runtimes/glutton/glutton-kusama/src/lib.rs b/cumulus/parachains/runtimes/glutton/glutton-kusama/src/lib.rs index ffb9a07052df5..3cb3201111154 100644 --- a/cumulus/parachains/runtimes/glutton/glutton-kusama/src/lib.rs +++ b/cumulus/parachains/runtimes/glutton/glutton-kusama/src/lib.rs @@ -80,12 +80,7 @@ use frame_system::{ limits::{BlockLength, BlockWeights}, EnsureRoot, }; -use parachains_common::{ - kusama::consensus::{ - BLOCK_PROCESSING_VELOCITY, RELAY_CHAIN_SLOT_DURATION_MILLIS, UNINCLUDED_SEGMENT_CAPACITY, - }, - AccountId, Signature, SLOT_DURATION, -}; +use parachains_common::{AccountId, Signature}; #[cfg(any(feature = "std", test))] pub use sp_runtime::BuildStorage; pub use sp_runtime::{Perbill, Permill}; diff --git a/cumulus/polkadot-parachain/src/command.rs b/cumulus/polkadot-parachain/src/command.rs index 2176e6bdeffc4..19de044e2b77f 100644 --- a/cumulus/polkadot-parachain/src/command.rs +++ b/cumulus/polkadot-parachain/src/command.rs @@ -876,12 +876,12 @@ pub fn run() -> Result<()> { .await .map(|r| r.0) .map_err(Into::into), - Runtime::Seedling => - crate::service::start_shell_node::( - config, - polkadot_config, - collator_options, - id, + Runtime::Seedling => + crate::service::start_shell_node::( + config, + polkadot_config, + collator_options, + id, hwbench ) .await From 8dfff4947717aa83873e67483f3ec3520da1f3af Mon Sep 17 00:00:00 2001 From: BradleyOlson64 Date: Wed, 20 Sep 2023 11:24:36 -0700 Subject: [PATCH 04/15] Propagate feature std --- cumulus/parachains/runtimes/glutton/glutton-kusama/Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/cumulus/parachains/runtimes/glutton/glutton-kusama/Cargo.toml b/cumulus/parachains/runtimes/glutton/glutton-kusama/Cargo.toml index bbd4fd16db507..019c2f6845532 100644 --- a/cumulus/parachains/runtimes/glutton/glutton-kusama/Cargo.toml +++ b/cumulus/parachains/runtimes/glutton/glutton-kusama/Cargo.toml @@ -72,6 +72,7 @@ std = [ "cumulus-pallet-aura-ext/std", "cumulus-pallet-parachain-system/std", "cumulus-pallet-xcm/std", + "cumulus-primitives-aura/std", "cumulus-primitives-core/std", "cumulus-primitives-timestamp/std", "frame-benchmarking?/std", From 1fa81491678c55b8080e0e3cdeb1f0ca4c18d756 Mon Sep 17 00:00:00 2001 From: BradleyOlson64 Date: Wed, 20 Sep 2023 11:33:29 -0700 Subject: [PATCH 05/15] Bool to bool --- cumulus/parachains/runtimes/glutton/glutton-kusama/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cumulus/parachains/runtimes/glutton/glutton-kusama/src/lib.rs b/cumulus/parachains/runtimes/glutton/glutton-kusama/src/lib.rs index 3cb3201111154..5455075de68ee 100644 --- a/cumulus/parachains/runtimes/glutton/glutton-kusama/src/lib.rs +++ b/cumulus/parachains/runtimes/glutton/glutton-kusama/src/lib.rs @@ -366,7 +366,7 @@ impl_runtime_apis! { fn can_build_upon( included_hash: ::Hash, slot: cumulus_primitives_aura::Slot, - ) -> Bool { + ) -> bool { ConsensusHook::can_build_upon(included_hash, slot) } } From d394c76f354f261fccfe477bf7890c7f01c90f4b Mon Sep 17 00:00:00 2001 From: BradleyOlson64 Date: Wed, 20 Sep 2023 11:41:54 -0700 Subject: [PATCH 06/15] Add cumulus-primitives-aura --- Cargo.lock | 4864 ++++++++++++++----------- cumulus/polkadot-parachain/Cargo.toml | 1 + 2 files changed, 2777 insertions(+), 2088 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e21d8ea22df09..886c1254e23ad 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -698,7 +698,7 @@ version = "1.0.0" dependencies = [ "assert_matches", "asset-hub-kusama-runtime", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "integration-tests-common", "pallet-asset-conversion", @@ -707,11 +707,11 @@ dependencies = [ "pallet-xcm", "parachains-common", "parity-scale-codec", - "polkadot-core-primitives", - "polkadot-parachain-primitives", + "polkadot-core-primitives 1.0.0", + "polkadot-parachain-primitives 1.0.0", "polkadot-runtime", "polkadot-runtime-parachains", - "sp-runtime", + "sp-runtime 24.0.0", "staging-xcm", "xcm-emulator", ] @@ -732,7 +732,7 @@ dependencies = [ "cumulus-primitives-utility", "frame-benchmarking", "frame-executive", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "frame-system-benchmarking", "frame-system-rpc-runtime-api", @@ -764,25 +764,25 @@ dependencies = [ "parachain-info", "parachains-common", "parity-scale-codec", - "polkadot-core-primitives", - "polkadot-parachain-primitives", + "polkadot-core-primitives 1.0.0", + "polkadot-parachain-primitives 1.0.0", "polkadot-runtime-common", "primitive-types", "scale-info", "smallvec", - "sp-api", + "sp-api 4.0.0-dev", "sp-block-builder", - "sp-consensus-aura", - "sp-core", - "sp-inherents", + "sp-consensus-aura 0.10.0-dev", + "sp-core 21.0.0", + "sp-inherents 4.0.0-dev", "sp-offchain", - "sp-runtime", + "sp-runtime 24.0.0", "sp-session", - "sp-std", - "sp-storage", + "sp-std 8.0.0", + "sp-storage 13.0.0", "sp-transaction-pool", - "sp-version", - "sp-weights", + "sp-version 22.0.0", + "sp-weights 20.0.0", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -794,7 +794,7 @@ name = "asset-hub-polkadot-integration-tests" version = "1.0.0" dependencies = [ "asset-hub-kusama-runtime", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "integration-tests-common", "pallet-asset-conversion", @@ -803,11 +803,11 @@ dependencies = [ "pallet-xcm", "parachains-common", "parity-scale-codec", - "polkadot-core-primitives", - "polkadot-parachain-primitives", + "polkadot-core-primitives 1.0.0", + "polkadot-parachain-primitives 1.0.0", "polkadot-runtime", "polkadot-runtime-parachains", - "sp-runtime", + "sp-runtime 24.0.0", "staging-xcm", "xcm-emulator", ] @@ -828,7 +828,7 @@ dependencies = [ "cumulus-primitives-utility", "frame-benchmarking", "frame-executive", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "frame-system-benchmarking", "frame-system-rpc-runtime-api", @@ -856,25 +856,25 @@ dependencies = [ "parachain-info", "parachains-common", "parity-scale-codec", - "polkadot-core-primitives", - "polkadot-parachain-primitives", + "polkadot-core-primitives 1.0.0", + "polkadot-parachain-primitives 1.0.0", "polkadot-runtime-common", "polkadot-runtime-constants", "scale-info", "smallvec", - "sp-api", + "sp-api 4.0.0-dev", "sp-block-builder", - "sp-consensus-aura", - "sp-core", - "sp-inherents", + "sp-consensus-aura 0.10.0-dev", + "sp-core 21.0.0", + "sp-inherents 4.0.0-dev", "sp-offchain", - "sp-runtime", + "sp-runtime 24.0.0", "sp-session", - "sp-std", - "sp-storage", + "sp-std 8.0.0", + "sp-storage 13.0.0", "sp-transaction-pool", - "sp-version", - "sp-weights", + "sp-version 22.0.0", + "sp-weights 20.0.0", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -887,7 +887,7 @@ version = "1.0.0" dependencies = [ "assert_matches", "asset-hub-westend-runtime", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "integration-tests-common", "pallet-asset-conversion", @@ -896,11 +896,11 @@ dependencies = [ "pallet-xcm", "parachains-common", "parity-scale-codec", - "polkadot-core-primitives", - "polkadot-parachain-primitives", + "polkadot-core-primitives 1.0.0", + "polkadot-parachain-primitives 1.0.0", "polkadot-runtime", "polkadot-runtime-parachains", - "sp-runtime", + "sp-runtime 24.0.0", "staging-xcm", "xcm-emulator", ] @@ -921,7 +921,7 @@ dependencies = [ "cumulus-primitives-utility", "frame-benchmarking", "frame-executive", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "frame-system-benchmarking", "frame-system-rpc-runtime-api", @@ -951,25 +951,25 @@ dependencies = [ "parachain-info", "parachains-common", "parity-scale-codec", - "polkadot-core-primitives", - "polkadot-parachain-primitives", + "polkadot-core-primitives 1.0.0", + "polkadot-parachain-primitives 1.0.0", "polkadot-runtime-common", "primitive-types", "scale-info", "smallvec", - "sp-api", + "sp-api 4.0.0-dev", "sp-block-builder", - "sp-consensus-aura", - "sp-core", - "sp-inherents", - "sp-io", + "sp-consensus-aura 0.10.0-dev", + "sp-core 21.0.0", + "sp-inherents 4.0.0-dev", + "sp-io 23.0.0", "sp-offchain", - "sp-runtime", + "sp-runtime 24.0.0", "sp-session", - "sp-std", - "sp-storage", + "sp-std 8.0.0", + "sp-storage 13.0.0", "sp-transaction-pool", - "sp-version", + "sp-version 22.0.0", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -988,7 +988,7 @@ dependencies = [ "cumulus-primitives-core", "cumulus-primitives-parachain-inherent", "cumulus-test-relay-sproof-builder", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "hex-literal", "pallet-assets", @@ -1000,12 +1000,12 @@ dependencies = [ "parachains-common", "parachains-runtimes-test-utils", "parity-scale-codec", - "polkadot-parachain-primitives", - "sp-consensus-aura", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "polkadot-parachain-primitives 1.0.0", + "sp-consensus-aura 0.10.0-dev", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", "staging-xcm", "staging-xcm-executor", "substrate-wasm-builder", @@ -1016,7 +1016,7 @@ name = "assets-common" version = "0.1.0" dependencies = [ "cumulus-primitives-core", - "frame-support", + "frame-support 4.0.0-dev", "impl-trait-for-tuples", "log", "pallet-asset-conversion", @@ -1025,9 +1025,9 @@ dependencies = [ "parachains-common", "parity-scale-codec", "scale-info", - "sp-api", - "sp-runtime", - "sp-std", + "sp-api 4.0.0-dev", + "sp-runtime 24.0.0", + "sp-std 8.0.0", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -1320,8 +1320,8 @@ dependencies = [ "env_logger 0.9.3", "hash-db", "log", - "sp-core", - "sp-runtime", + "sp-core 21.0.0", + "sp-runtime 24.0.0", ] [[package]] @@ -1544,7 +1544,7 @@ name = "bp-asset-hub-kusama" version = "0.1.0" dependencies = [ "bp-xcm-bridge-hub-router", - "frame-support", + "frame-support 4.0.0-dev", "parity-scale-codec", "scale-info", ] @@ -1554,10 +1554,10 @@ name = "bp-asset-hub-polkadot" version = "0.1.0" dependencies = [ "bp-xcm-bridge-hub-router", - "frame-support", + "frame-support 4.0.0-dev", "parity-scale-codec", "scale-info", - "sp-runtime", + "sp-runtime 24.0.0", ] [[package]] @@ -1567,11 +1567,11 @@ dependencies = [ "bp-messages", "bp-polkadot-core", "bp-runtime", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", - "polkadot-primitives", - "sp-api", - "sp-std", + "polkadot-primitives 1.0.0", + "sp-api 4.0.0-dev", + "sp-std 8.0.0", ] [[package]] @@ -1581,10 +1581,10 @@ dependencies = [ "bp-bridge-hub-cumulus", "bp-messages", "bp-runtime", - "frame-support", - "sp-api", - "sp-runtime", - "sp-std", + "frame-support 4.0.0-dev", + "sp-api 4.0.0-dev", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -1594,10 +1594,10 @@ dependencies = [ "bp-bridge-hub-cumulus", "bp-messages", "bp-runtime", - "frame-support", - "sp-api", - "sp-runtime", - "sp-std", + "frame-support 4.0.0-dev", + "sp-api 4.0.0-dev", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -1607,10 +1607,10 @@ dependencies = [ "bp-bridge-hub-cumulus", "bp-messages", "bp-runtime", - "frame-support", - "sp-api", - "sp-runtime", - "sp-std", + "frame-support 4.0.0-dev", + "sp-api 4.0.0-dev", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -1620,10 +1620,10 @@ dependencies = [ "bp-bridge-hub-cumulus", "bp-messages", "bp-runtime", - "frame-support", - "sp-api", - "sp-runtime", - "sp-std", + "frame-support 4.0.0-dev", + "sp-api 4.0.0-dev", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -1633,16 +1633,16 @@ dependencies = [ "bp-runtime", "bp-test-utils", "finality-grandpa", - "frame-support", + "frame-support 4.0.0-dev", "hex", "hex-literal", "parity-scale-codec", "scale-info", "serde", "sp-consensus-grandpa", - "sp-core", - "sp-runtime", - "sp-std", + "sp-core 21.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -1652,9 +1652,9 @@ dependencies = [ "bp-header-chain", "bp-polkadot-core", "bp-runtime", - "frame-support", - "sp-api", - "sp-std", + "frame-support 4.0.0-dev", + "sp-api 4.0.0-dev", + "sp-std 8.0.0", ] [[package]] @@ -1663,14 +1663,14 @@ version = "0.1.0" dependencies = [ "bp-header-chain", "bp-runtime", - "frame-support", + "frame-support 4.0.0-dev", "hex", "hex-literal", "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-std", + "sp-core 21.0.0", + "sp-std 8.0.0", ] [[package]] @@ -1680,13 +1680,13 @@ dependencies = [ "bp-header-chain", "bp-polkadot-core", "bp-runtime", - "frame-support", + "frame-support 4.0.0-dev", "impl-trait-for-tuples", "parity-scale-codec", "scale-info", - "sp-core", - "sp-runtime", - "sp-std", + "sp-core 21.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -1696,9 +1696,9 @@ dependencies = [ "bp-header-chain", "bp-polkadot-core", "bp-runtime", - "frame-support", - "sp-api", - "sp-std", + "frame-support 4.0.0-dev", + "sp-api 4.0.0-dev", + "sp-std 8.0.0", ] [[package]] @@ -1707,16 +1707,16 @@ version = "0.1.0" dependencies = [ "bp-messages", "bp-runtime", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "hex", "parity-scale-codec", "parity-util-mem", "scale-info", "serde", - "sp-core", - "sp-runtime", - "sp-std", + "sp-core 21.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -1725,13 +1725,13 @@ version = "0.1.0" dependencies = [ "bp-messages", "bp-runtime", - "frame-support", + "frame-support 4.0.0-dev", "hex", "hex-literal", "parity-scale-codec", "scale-info", - "sp-runtime", - "sp-std", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -1741,16 +1741,16 @@ dependencies = [ "bp-header-chain", "bp-polkadot-core", "bp-runtime", - "frame-support", - "sp-api", - "sp-std", + "frame-support 4.0.0-dev", + "sp-api 4.0.0-dev", + "sp-std 8.0.0", ] [[package]] name = "bp-runtime" version = "0.1.0" dependencies = [ - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "hash-db", "hex-literal", @@ -1760,13 +1760,13 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-runtime", - "sp-state-machine", - "sp-std", - "sp-trie", - "trie-db", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-state-machine 0.28.0", + "sp-std 8.0.0", + "sp-trie 22.0.0", + "trie-db 0.28.0", ] [[package]] @@ -1780,12 +1780,12 @@ dependencies = [ "ed25519-dalek", "finality-grandpa", "parity-scale-codec", - "sp-application-crypto", + "sp-application-crypto 23.0.0", "sp-consensus-grandpa", - "sp-core", - "sp-runtime", - "sp-std", - "sp-trie", + "sp-core 21.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", + "sp-trie 22.0.0", ] [[package]] @@ -1796,9 +1796,9 @@ dependencies = [ "bp-polkadot-core", "bp-rococo", "bp-runtime", - "frame-support", - "sp-api", - "sp-std", + "frame-support 4.0.0-dev", + "sp-api 4.0.0-dev", + "sp-std 8.0.0", ] [[package]] @@ -1807,8 +1807,8 @@ version = "0.1.0" dependencies = [ "parity-scale-codec", "scale-info", - "sp-core", - "sp-runtime", + "sp-core 21.0.0", + "sp-runtime 24.0.0", ] [[package]] @@ -1826,7 +1826,7 @@ dependencies = [ "cumulus-primitives-utility", "frame-benchmarking", "frame-executive", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "frame-system-benchmarking", "frame-system-rpc-runtime-api", @@ -1849,25 +1849,25 @@ dependencies = [ "parachain-info", "parachains-common", "parity-scale-codec", - "polkadot-core-primitives", - "polkadot-parachain-primitives", + "polkadot-core-primitives 1.0.0", + "polkadot-parachain-primitives 1.0.0", "polkadot-runtime-common", "scale-info", "serde", "smallvec", - "sp-api", + "sp-api 4.0.0-dev", "sp-block-builder", - "sp-consensus-aura", - "sp-core", - "sp-inherents", - "sp-io", + "sp-consensus-aura 0.10.0-dev", + "sp-core 21.0.0", + "sp-inherents 4.0.0-dev", + "sp-io 23.0.0", "sp-offchain", - "sp-runtime", + "sp-runtime 24.0.0", "sp-session", - "sp-std", - "sp-storage", + "sp-std 8.0.0", + "sp-storage 13.0.0", "sp-transaction-pool", - "sp-version", + "sp-version 22.0.0", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -1889,7 +1889,7 @@ dependencies = [ "cumulus-primitives-utility", "frame-benchmarking", "frame-executive", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "frame-system-benchmarking", "frame-system-rpc-runtime-api", @@ -1911,26 +1911,26 @@ dependencies = [ "parachain-info", "parachains-common", "parity-scale-codec", - "polkadot-core-primitives", - "polkadot-parachain-primitives", + "polkadot-core-primitives 1.0.0", + "polkadot-parachain-primitives 1.0.0", "polkadot-runtime-common", "polkadot-runtime-constants", "scale-info", "serde", "smallvec", - "sp-api", + "sp-api 4.0.0-dev", "sp-block-builder", - "sp-consensus-aura", - "sp-core", - "sp-inherents", - "sp-io", + "sp-consensus-aura 0.10.0-dev", + "sp-core 21.0.0", + "sp-inherents 4.0.0-dev", + "sp-io 23.0.0", "sp-offchain", - "sp-runtime", + "sp-runtime 24.0.0", "sp-session", - "sp-std", - "sp-storage", + "sp-std 8.0.0", + "sp-storage 13.0.0", "sp-transaction-pool", - "sp-version", + "sp-version 22.0.0", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -1944,14 +1944,14 @@ dependencies = [ "bp-messages", "cumulus-pallet-dmp-queue", "cumulus-pallet-xcmp-queue", - "frame-support", + "frame-support 4.0.0-dev", "integration-tests-common", "pallet-bridge-messages", "pallet-xcm", "parachains-common", "parity-scale-codec", - "polkadot-core-primitives", - "polkadot-parachain-primitives", + "polkadot-core-primitives 1.0.0", + "polkadot-parachain-primitives 1.0.0", "polkadot-runtime", "polkadot-runtime-parachains", "staging-xcm", @@ -1984,7 +1984,7 @@ dependencies = [ "cumulus-primitives-utility", "frame-benchmarking", "frame-executive", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "frame-system-benchmarking", "frame-system-rpc-runtime-api", @@ -2010,27 +2010,27 @@ dependencies = [ "parachain-info", "parachains-common", "parity-scale-codec", - "polkadot-core-primitives", - "polkadot-parachain-primitives", + "polkadot-core-primitives 1.0.0", + "polkadot-parachain-primitives 1.0.0", "polkadot-runtime-common", "rococo-runtime-constants", "scale-info", "serde", "smallvec", - "sp-api", + "sp-api 4.0.0-dev", "sp-block-builder", - "sp-consensus-aura", - "sp-core", - "sp-inherents", - "sp-io", + "sp-consensus-aura 0.10.0-dev", + "sp-core 21.0.0", + "sp-inherents 4.0.0-dev", + "sp-io 23.0.0", "sp-keyring", "sp-offchain", - "sp-runtime", + "sp-runtime 24.0.0", "sp-session", - "sp-std", - "sp-storage", + "sp-std 8.0.0", + "sp-storage 13.0.0", "sp-transaction-pool", - "sp-version", + "sp-version 22.0.0", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -2059,7 +2059,7 @@ dependencies = [ "cumulus-pallet-xcmp-queue", "frame-benchmarking", "frame-executive", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "log", "pallet-balances", @@ -2076,10 +2076,10 @@ dependencies = [ "parachains-common", "parachains-runtimes-test-utils", "parity-scale-codec", - "sp-core", - "sp-io", + "sp-core 21.0.0", + "sp-io 23.0.0", "sp-keyring", - "sp-runtime", + "sp-runtime 24.0.0", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -2097,7 +2097,7 @@ dependencies = [ "bp-runtime", "bp-test-utils", "bp-xcm-bridge-hub-router", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "hash-db", "log", @@ -2110,12 +2110,12 @@ dependencies = [ "pallet-utility", "parity-scale-codec", "scale-info", - "sp-api", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", - "sp-trie", + "sp-api 4.0.0-dev", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", + "sp-trie 22.0.0", "staging-xcm", "staging-xcm-builder", "static_assertions", @@ -2338,8 +2338,8 @@ dependencies = [ "rand 0.8.5", "sc-chain-spec", "sc-keystore", - "sp-core", - "sp-keystore", + "sp-core 21.0.0", + "sp-keystore 0.27.0", ] [[package]] @@ -2561,7 +2561,7 @@ dependencies = [ "collectives-polkadot-runtime", "cumulus-pallet-parachain-system", "cumulus-pallet-xcmp-queue", - "frame-support", + "frame-support 4.0.0-dev", "integration-tests-common", "pallet-assets", "pallet-core-fellowship", @@ -2569,12 +2569,12 @@ dependencies = [ "pallet-xcm", "parachains-common", "parity-scale-codec", - "polkadot-core-primitives", - "polkadot-parachain-primitives", + "polkadot-core-primitives 1.0.0", + "polkadot-parachain-primitives 1.0.0", "polkadot-runtime", "polkadot-runtime-parachains", - "sp-core", - "sp-runtime", + "sp-core 21.0.0", + "sp-runtime 24.0.0", "staging-xcm", "xcm-emulator", ] @@ -2593,7 +2593,7 @@ dependencies = [ "cumulus-primitives-utility", "frame-benchmarking", "frame-executive", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "frame-system-benchmarking", "frame-system-rpc-runtime-api", @@ -2623,26 +2623,26 @@ dependencies = [ "parachain-info", "parachains-common", "parity-scale-codec", - "polkadot-core-primitives", - "polkadot-parachain-primitives", + "polkadot-core-primitives 1.0.0", + "polkadot-parachain-primitives 1.0.0", "polkadot-runtime-common", "polkadot-runtime-constants", "scale-info", "smallvec", - "sp-api", - "sp-arithmetic", + "sp-api 4.0.0-dev", + "sp-arithmetic 16.0.0", "sp-block-builder", - "sp-consensus-aura", - "sp-core", - "sp-inherents", - "sp-io", + "sp-consensus-aura 0.10.0-dev", + "sp-core 21.0.0", + "sp-inherents 4.0.0-dev", + "sp-io 23.0.0", "sp-offchain", - "sp-runtime", + "sp-runtime 24.0.0", "sp-session", - "sp-std", - "sp-storage", + "sp-std 8.0.0", + "sp-storage 13.0.0", "sp-transaction-pool", - "sp-version", + "sp-version 22.0.0", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -2809,7 +2809,7 @@ dependencies = [ "cumulus-primitives-utility", "frame-benchmarking", "frame-executive", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "frame-system-benchmarking", "frame-system-rpc-runtime-api", @@ -2835,23 +2835,23 @@ dependencies = [ "parachain-info", "parachains-common", "parity-scale-codec", - "polkadot-core-primitives", - "polkadot-parachain-primitives", + "polkadot-core-primitives 1.0.0", + "polkadot-parachain-primitives 1.0.0", "polkadot-runtime-common", "scale-info", "smallvec", - "sp-api", + "sp-api 4.0.0-dev", "sp-block-builder", - "sp-consensus-aura", - "sp-core", - "sp-inherents", + "sp-consensus-aura 0.10.0-dev", + "sp-core 21.0.0", + "sp-inherents 4.0.0-dev", "sp-offchain", - "sp-runtime", + "sp-runtime 24.0.0", "sp-session", - "sp-std", - "sp-storage", + "sp-std 8.0.0", + "sp-storage 13.0.0", "sp-transaction-pool", - "sp-version", + "sp-version 22.0.0", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -3256,8 +3256,8 @@ dependencies = [ "sc-cli", "sc-client-api", "sc-service", - "sp-core", - "sp-runtime", + "sp-core 21.0.0", + "sp-runtime 24.0.0", "url", ] @@ -3279,15 +3279,15 @@ dependencies = [ "polkadot-node-subsystem", "polkadot-node-subsystem-test-helpers", "polkadot-overseer", - "polkadot-primitives", + "polkadot-primitives 1.0.0", "sc-client-api", - "sp-api", + "sp-api 4.0.0-dev", "sp-consensus", - "sp-core", + "sp-core 21.0.0", "sp-maybe-compressed-blob", - "sp-runtime", - "sp-state-machine", - "sp-tracing", + "sp-runtime 24.0.0", + "sp-state-machine 0.28.0", + "sp-tracing 10.0.0", "tracing", ] @@ -3299,7 +3299,7 @@ dependencies = [ "cumulus-client-collator", "cumulus-client-consensus-common", "cumulus-client-consensus-proposer", - "cumulus-primitives-aura", + "cumulus-primitives-aura 0.1.0", "cumulus-primitives-core", "cumulus-primitives-parachain-inherent", "cumulus-relay-chain-interface", @@ -3308,7 +3308,7 @@ dependencies = [ "polkadot-node-primitives", "polkadot-node-subsystem", "polkadot-overseer", - "polkadot-primitives", + "polkadot-primitives 1.0.0", "sc-client-api", "sc-consensus", "sc-consensus-aura", @@ -3316,18 +3316,18 @@ dependencies = [ "sc-consensus-slots", "sc-telemetry", "schnellru", - "sp-api", - "sp-application-crypto", + "sp-api 4.0.0-dev", + "sp-application-crypto 23.0.0", "sp-block-builder", "sp-blockchain", "sp-consensus", - "sp-consensus-aura", - "sp-core", - "sp-inherents", - "sp-keystore", - "sp-runtime", - "sp-state-machine", - "sp-timestamp", + "sp-consensus-aura 0.10.0-dev", + "sp-core 21.0.0", + "sp-inherents 4.0.0-dev", + "sp-keystore 0.27.0", + "sp-runtime 24.0.0", + "sp-state-machine 0.28.0", + "sp-timestamp 4.0.0-dev", "substrate-prometheus-endpoint", "tracing", ] @@ -3347,19 +3347,19 @@ dependencies = [ "futures-timer", "log", "parity-scale-codec", - "polkadot-primitives", + "polkadot-primitives 1.0.0", "sc-client-api", "sc-consensus", "sc-consensus-babe", "schnellru", "sp-blockchain", "sp-consensus", - "sp-consensus-slots", - "sp-core", - "sp-runtime", - "sp-timestamp", - "sp-tracing", - "sp-trie", + "sp-consensus-slots 0.10.0-dev", + "sp-core 21.0.0", + "sp-runtime 24.0.0", + "sp-timestamp 4.0.0-dev", + "sp-tracing 10.0.0", + "sp-trie 22.0.0", "substrate-prometheus-endpoint", "tracing", ] @@ -3372,9 +3372,9 @@ dependencies = [ "async-trait", "cumulus-primitives-parachain-inherent", "sp-consensus", - "sp-inherents", - "sp-runtime", - "sp-state-machine", + "sp-inherents 4.0.0-dev", + "sp-runtime 24.0.0", + "sp-state-machine 0.28.0", "thiserror", ] @@ -3389,13 +3389,13 @@ dependencies = [ "futures", "parking_lot 0.12.1", "sc-consensus", - "sp-api", + "sp-api 4.0.0-dev", "sp-block-builder", "sp-blockchain", "sp-consensus", - "sp-core", - "sp-inherents", - "sp-runtime", + "sp-core 21.0.0", + "sp-inherents 4.0.0-dev", + "sp-runtime 24.0.0", "substrate-prometheus-endpoint", "tracing", ] @@ -3414,19 +3414,19 @@ dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", "polkadot-node-primitives", - "polkadot-parachain-primitives", - "polkadot-primitives", + "polkadot-parachain-primitives 1.0.0", + "polkadot-primitives 1.0.0", "polkadot-test-client", "portpicker", "sc-cli", "sc-client-api", "sp-blockchain", "sp-consensus", - "sp-core", + "sp-core 21.0.0", "sp-keyring", - "sp-keystore", - "sp-runtime", - "sp-state-machine", + "sp-keystore 0.27.0", + "sp-runtime 24.0.0", + "sp-state-machine 0.28.0", "substrate-test-utils", "tokio", "tracing", @@ -3447,7 +3447,7 @@ dependencies = [ "polkadot-node-primitives", "polkadot-node-subsystem", "polkadot-overseer", - "polkadot-primitives", + "polkadot-primitives 1.0.0", "portpicker", "rand 0.8.5", "sc-cli", @@ -3455,7 +3455,7 @@ dependencies = [ "sc-consensus", "sp-consensus", "sp-maybe-compressed-blob", - "sp-runtime", + "sp-runtime 24.0.0", "substrate-test-utils", "tokio", "tracing", @@ -3475,7 +3475,7 @@ dependencies = [ "cumulus-relay-chain-interface", "cumulus-relay-chain-minimal-node", "futures", - "polkadot-primitives", + "polkadot-primitives 1.0.0", "sc-client-api", "sc-consensus", "sc-network", @@ -3487,11 +3487,11 @@ dependencies = [ "sc-telemetry", "sc-transaction-pool", "sc-utils", - "sp-api", + "sp-api 4.0.0-dev", "sp-blockchain", "sp-consensus", - "sp-core", - "sp-runtime", + "sp-core 21.0.0", + "sp-runtime 24.0.0", "sp-transaction-pool", ] @@ -3500,16 +3500,16 @@ name = "cumulus-pallet-aura-ext" version = "0.1.0" dependencies = [ "cumulus-pallet-parachain-system", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "pallet-aura", "pallet-timestamp", "parity-scale-codec", "scale-info", - "sp-application-crypto", - "sp-consensus-aura", - "sp-runtime", - "sp-std", + "sp-application-crypto 23.0.0", + "sp-consensus-aura 0.10.0-dev", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -3517,16 +3517,16 @@ name = "cumulus-pallet-dmp-queue" version = "0.1.0" dependencies = [ "cumulus-primitives-core", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "log", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", - "sp-version", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", + "sp-version 22.0.0", "staging-xcm", ] @@ -3542,29 +3542,29 @@ dependencies = [ "cumulus-test-client", "cumulus-test-relay-sproof-builder", "environmental", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "hex-literal", "impl-trait-for-tuples", "lazy_static", "log", "parity-scale-codec", - "polkadot-parachain-primitives", + "polkadot-parachain-primitives 1.0.0", "sc-client-api", "scale-info", - "sp-core", - "sp-externalities", - "sp-inherents", - "sp-io", + "sp-core 21.0.0", + "sp-externalities 0.19.0", + "sp-inherents 4.0.0-dev", + "sp-io 23.0.0", "sp-keyring", - "sp-runtime", - "sp-state-machine", - "sp-std", - "sp-tracing", - "sp-trie", - "sp-version", + "sp-runtime 24.0.0", + "sp-state-machine 0.28.0", + "sp-std 8.0.0", + "sp-tracing 10.0.0", + "sp-trie 22.0.0", + "sp-version 22.0.0", "staging-xcm", - "trie-db", + "trie-db 0.28.0", ] [[package]] @@ -3582,12 +3582,12 @@ name = "cumulus-pallet-session-benchmarking" version = "3.0.0" dependencies = [ "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "pallet-session", "parity-scale-codec", - "sp-runtime", - "sp-std", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -3595,14 +3595,14 @@ name = "cumulus-pallet-solo-to-para" version = "0.1.0" dependencies = [ "cumulus-pallet-parachain-system", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "pallet-sudo", "parity-scale-codec", - "polkadot-primitives", + "polkadot-primitives 1.0.0", "scale-info", - "sp-runtime", - "sp-std", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -3610,13 +3610,13 @@ name = "cumulus-pallet-xcm" version = "0.1.0" dependencies = [ "cumulus-primitives-core", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "parity-scale-codec", "scale-info", - "sp-io", - "sp-runtime", - "sp-std", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", "staging-xcm", ] @@ -3627,7 +3627,7 @@ dependencies = [ "cumulus-pallet-parachain-system", "cumulus-primitives-core", "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "log", "pallet-balances", @@ -3635,10 +3635,10 @@ dependencies = [ "polkadot-runtime-common", "rand_chacha 0.3.1", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -3650,12 +3650,12 @@ version = "0.1.0" dependencies = [ "cumulus-pallet-xcm", "cumulus-primitives-core", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "parity-scale-codec", "scale-info", - "sp-runtime", - "sp-std", + "sp-runtime 24.0.0", + "sp-std 8.0.0", "staging-xcm", ] @@ -3664,12 +3664,27 @@ name = "cumulus-primitives-aura" version = "0.1.0" dependencies = [ "parity-scale-codec", - "polkadot-core-primitives", - "polkadot-primitives", - "sp-api", - "sp-consensus-aura", - "sp-runtime", - "sp-std", + "polkadot-core-primitives 1.0.0", + "polkadot-primitives 1.0.0", + "sp-api 4.0.0-dev", + "sp-consensus-aura 0.10.0-dev", + "sp-runtime 24.0.0", + "sp-std 8.0.0", +] + +[[package]] +name = "cumulus-primitives-aura" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7ce9b0f7246391f088268b68fad56567e04e17ecc29b22657034fbb3f9d3eb9c" +dependencies = [ + "parity-scale-codec", + "polkadot-core-primitives 2.0.0", + "polkadot-primitives 2.0.0", + "sp-api 21.0.0", + "sp-consensus-aura 0.27.0", + "sp-runtime 26.0.0", + "sp-std 10.0.0", ] [[package]] @@ -3677,14 +3692,14 @@ name = "cumulus-primitives-core" version = "0.1.0" dependencies = [ "parity-scale-codec", - "polkadot-core-primitives", - "polkadot-parachain-primitives", - "polkadot-primitives", + "polkadot-core-primitives 1.0.0", + "polkadot-parachain-primitives 1.0.0", + "polkadot-primitives 1.0.0", "scale-info", - "sp-api", - "sp-runtime", - "sp-std", - "sp-trie", + "sp-api 4.0.0-dev", + "sp-runtime 24.0.0", + "sp-std 8.0.0", + "sp-trie 22.0.0", "staging-xcm", ] @@ -3699,14 +3714,14 @@ dependencies = [ "parity-scale-codec", "sc-client-api", "scale-info", - "sp-api", - "sp-core", - "sp-inherents", - "sp-runtime", - "sp-state-machine", - "sp-std", - "sp-storage", - "sp-trie", + "sp-api 4.0.0-dev", + "sp-core 21.0.0", + "sp-inherents 4.0.0-dev", + "sp-runtime 24.0.0", + "sp-state-machine 0.28.0", + "sp-std 8.0.0", + "sp-storage 13.0.0", + "sp-trie 22.0.0", "tracing", ] @@ -3717,9 +3732,9 @@ dependencies = [ "cumulus-primitives-core", "futures", "parity-scale-codec", - "sp-inherents", - "sp-std", - "sp-timestamp", + "sp-inherents 4.0.0-dev", + "sp-std 8.0.0", + "sp-timestamp 4.0.0-dev", ] [[package]] @@ -3727,13 +3742,13 @@ name = "cumulus-primitives-utility" version = "0.1.0" dependencies = [ "cumulus-primitives-core", - "frame-support", + "frame-support 4.0.0-dev", "log", "parity-scale-codec", "polkadot-runtime-common", - "sp-io", - "sp-runtime", - "sp-std", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -3750,7 +3765,7 @@ dependencies = [ "futures", "futures-timer", "polkadot-cli", - "polkadot-primitives", + "polkadot-primitives 1.0.0", "polkadot-service", "polkadot-test-client", "prioritized-metered-channel", @@ -3759,12 +3774,12 @@ dependencies = [ "sc-sysinfo", "sc-telemetry", "sc-tracing", - "sp-api", + "sp-api 4.0.0-dev", "sp-consensus", - "sp-core", + "sp-core 21.0.0", "sp-keyring", - "sp-runtime", - "sp-state-machine", + "sp-runtime 24.0.0", + "sp-state-machine 0.28.0", ] [[package]] @@ -3778,9 +3793,9 @@ dependencies = [ "parity-scale-codec", "polkadot-overseer", "sc-client-api", - "sp-api", + "sp-api 4.0.0-dev", "sp-blockchain", - "sp-state-machine", + "sp-state-machine 0.28.0", "thiserror", ] @@ -3796,14 +3811,14 @@ dependencies = [ "futures", "polkadot-availability-recovery", "polkadot-collator-protocol", - "polkadot-core-primitives", + "polkadot-core-primitives 1.0.0", "polkadot-network-bridge", "polkadot-node-collation-generation", "polkadot-node-core-runtime-api", "polkadot-node-network-protocol", "polkadot-node-subsystem-util", "polkadot-overseer", - "polkadot-primitives", + "polkadot-primitives 1.0.0", "sc-authority-discovery", "sc-network", "sc-network-common", @@ -3811,10 +3826,10 @@ dependencies = [ "sc-tracing", "sc-utils", "schnellru", - "sp-api", + "sp-api 4.0.0-dev", "sp-consensus", "sp-consensus-babe", - "sp-runtime", + "sp-runtime 24.0.0", "tracing", ] @@ -3841,13 +3856,13 @@ dependencies = [ "serde_json", "smoldot", "smoldot-light", - "sp-api", - "sp-authority-discovery", + "sp-api 4.0.0-dev", + "sp-authority-discovery 4.0.0-dev", "sp-consensus-babe", - "sp-core", - "sp-runtime", - "sp-state-machine", - "sp-storage", + "sp-core 21.0.0", + "sp-runtime 24.0.0", + "sp-state-machine 0.28.0", + "sp-storage 13.0.0", "thiserror", "tokio", "tokio-util", @@ -3868,21 +3883,21 @@ dependencies = [ "pallet-balances", "pallet-transaction-payment", "parity-scale-codec", - "polkadot-parachain-primitives", - "polkadot-primitives", + "polkadot-parachain-primitives 1.0.0", + "polkadot-primitives 1.0.0", "sc-block-builder", "sc-consensus", "sc-executor", "sc-executor-common", "sc-service", - "sp-api", + "sp-api 4.0.0-dev", "sp-blockchain", - "sp-core", - "sp-inherents", - "sp-io", + "sp-core 21.0.0", + "sp-inherents 4.0.0-dev", + "sp-io 23.0.0", "sp-keyring", - "sp-runtime", - "sp-timestamp", + "sp-runtime 24.0.0", + "sp-timestamp 4.0.0-dev", "substrate-test-client", ] @@ -3892,11 +3907,11 @@ version = "0.1.0" dependencies = [ "cumulus-primitives-core", "parity-scale-codec", - "polkadot-primitives", - "sp-runtime", - "sp-state-machine", - "sp-std", - "sp-trie", + "polkadot-primitives 1.0.0", + "sp-runtime 24.0.0", + "sp-state-machine 0.28.0", + "sp-std 8.0.0", + "sp-trie 22.0.0", ] [[package]] @@ -3906,7 +3921,7 @@ dependencies = [ "cumulus-pallet-parachain-system", "cumulus-primitives-core", "frame-executive", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "frame-system-rpc-runtime-api", "pallet-balances", @@ -3916,17 +3931,17 @@ dependencies = [ "pallet-transaction-payment", "parity-scale-codec", "scale-info", - "sp-api", + "sp-api 4.0.0-dev", "sp-block-builder", - "sp-core", - "sp-inherents", - "sp-io", + "sp-core 21.0.0", + "sp-inherents 4.0.0-dev", + "sp-io 23.0.0", "sp-offchain", - "sp-runtime", + "sp-runtime 24.0.0", "sp-session", - "sp-std", + "sp-std 8.0.0", "sp-transaction-pool", - "sp-version", + "sp-version 22.0.0", "substrate-wasm-builder", ] @@ -3963,7 +3978,7 @@ dependencies = [ "polkadot-cli", "polkadot-node-subsystem", "polkadot-overseer", - "polkadot-primitives", + "polkadot-primitives 1.0.0", "polkadot-service", "polkadot-test-service", "portpicker", @@ -3985,19 +4000,19 @@ dependencies = [ "sc-transaction-pool", "sc-transaction-pool-api", "serde", - "sp-api", - "sp-arithmetic", - "sp-authority-discovery", + "sp-api 4.0.0-dev", + "sp-arithmetic 16.0.0", + "sp-authority-discovery 4.0.0-dev", "sp-blockchain", "sp-consensus", "sp-consensus-grandpa", - "sp-core", - "sp-io", + "sp-core 21.0.0", + "sp-io 23.0.0", "sp-keyring", - "sp-runtime", - "sp-state-machine", - "sp-timestamp", - "sp-tracing", + "sp-runtime 24.0.0", + "sp-state-machine 0.28.0", + "sp-timestamp 4.0.0-dev", + "sp-tracing 10.0.0", "substrate-test-client", "substrate-test-utils", "tempfile", @@ -4763,7 +4778,7 @@ dependencies = [ "honggfuzz", "polkadot-erasure-coding", "polkadot-node-primitives", - "polkadot-primitives", + "polkadot-primitives 1.0.0", ] [[package]] @@ -5112,8 +5127,8 @@ name = "frame-benchmarking" version = "4.0.0-dev" dependencies = [ "array-bytes", - "frame-support", - "frame-support-procedural", + "frame-support 4.0.0-dev", + "frame-support-procedural 4.0.0-dev", "frame-system", "linregress", "log", @@ -5122,15 +5137,15 @@ dependencies = [ "rusty-fork", "scale-info", "serde", - "sp-api", - "sp-application-crypto", - "sp-core", - "sp-io", - "sp-keystore", - "sp-runtime", - "sp-runtime-interface", - "sp-std", - "sp-storage", + "sp-api 4.0.0-dev", + "sp-application-crypto 23.0.0", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-keystore 0.27.0", + "sp-runtime 24.0.0", + "sp-runtime-interface 17.0.0", + "sp-std 8.0.0", + "sp-storage 13.0.0", "static_assertions", ] @@ -5144,7 +5159,7 @@ dependencies = [ "clap 4.4.4", "comfy-table", "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "gethostname", "handlebars", @@ -5164,19 +5179,19 @@ dependencies = [ "sc-sysinfo", "serde", "serde_json", - "sp-api", + "sp-api 4.0.0-dev", "sp-blockchain", - "sp-core", + "sp-core 21.0.0", "sp-database", - "sp-externalities", - "sp-inherents", - "sp-io", - "sp-keystore", - "sp-runtime", - "sp-state-machine", - "sp-storage", - "sp-trie", - "sp-wasm-interface", + "sp-externalities 0.19.0", + "sp-inherents 4.0.0-dev", + "sp-io 23.0.0", + "sp-keystore 0.27.0", + "sp-runtime 24.0.0", + "sp-state-machine 0.28.0", + "sp-storage 13.0.0", + "sp-trie 22.0.0", + "sp-wasm-interface 14.0.0", "thiserror", "thousands", ] @@ -5186,13 +5201,13 @@ name = "frame-benchmarking-pallet-pov" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "parity-scale-codec", "scale-info", - "sp-io", - "sp-runtime", - "sp-std", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -5200,13 +5215,13 @@ name = "frame-election-provider-solution-type" version = "4.0.0-dev" dependencies = [ "frame-election-provider-support", - "frame-support", + "frame-support 4.0.0-dev", "parity-scale-codec", "proc-macro-crate", "proc-macro2", "quote", "scale-info", - "sp-arithmetic", + "sp-arithmetic 16.0.0", "syn 2.0.37", "trybuild", ] @@ -5216,17 +5231,17 @@ name = "frame-election-provider-support" version = "4.0.0-dev" dependencies = [ "frame-election-provider-solution-type", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "parity-scale-codec", "rand 0.8.5", "scale-info", - "sp-arithmetic", - "sp-core", - "sp-io", + "sp-arithmetic 16.0.0", + "sp-core 21.0.0", + "sp-io 23.0.0", "sp-npos-elections", - "sp-runtime", - "sp-std", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -5236,14 +5251,14 @@ dependencies = [ "clap 4.4.4", "frame-election-provider-solution-type", "frame-election-provider-support", - "frame-support", + "frame-support 4.0.0-dev", "honggfuzz", "parity-scale-codec", "rand 0.8.5", "scale-info", - "sp-arithmetic", + "sp-arithmetic 16.0.0", "sp-npos-elections", - "sp-runtime", + "sp-runtime 24.0.0", ] [[package]] @@ -5251,7 +5266,7 @@ name = "frame-executive" version = "4.0.0-dev" dependencies = [ "array-bytes", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "frame-try-runtime", "log", @@ -5259,13 +5274,13 @@ dependencies = [ "pallet-transaction-payment", "parity-scale-codec", "scale-info", - "sp-core", - "sp-inherents", - "sp-io", - "sp-runtime", - "sp-std", - "sp-tracing", - "sp-version", + "sp-core 21.0.0", + "sp-inherents 4.0.0-dev", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", + "sp-tracing 10.0.0", + "sp-version 22.0.0", ] [[package]] @@ -5291,11 +5306,11 @@ dependencies = [ "log", "parity-scale-codec", "serde", - "sp-core", - "sp-io", - "sp-runtime", - "sp-state-machine", - "sp-tracing", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-state-machine 0.28.0", + "sp-tracing 10.0.0", "spinners", "substrate-rpc-client", "tokio", @@ -5313,7 +5328,7 @@ dependencies = [ "docify", "environmental", "frame-metadata", - "frame-support-procedural", + "frame-support-procedural 4.0.0-dev", "frame-system", "impl-trait-for-tuples", "k256", @@ -5326,21 +5341,62 @@ dependencies = [ "serde", "serde_json", "smallvec", - "sp-api", - "sp-arithmetic", - "sp-core", - "sp-core-hashing-proc-macro", - "sp-debug-derive", - "sp-genesis-builder", - "sp-inherents", - "sp-io", - "sp-metadata-ir", - "sp-runtime", - "sp-staking", - "sp-state-machine", - "sp-std", - "sp-tracing", - "sp-weights", + "sp-api 4.0.0-dev", + "sp-arithmetic 16.0.0", + "sp-core 21.0.0", + "sp-core-hashing-proc-macro 9.0.0", + "sp-debug-derive 8.0.0", + "sp-genesis-builder 0.1.0", + "sp-inherents 4.0.0-dev", + "sp-io 23.0.0", + "sp-metadata-ir 0.1.0", + "sp-runtime 24.0.0", + "sp-staking 4.0.0-dev", + "sp-state-machine 0.28.0", + "sp-std 8.0.0", + "sp-tracing 10.0.0", + "sp-weights 20.0.0", + "static_assertions", + "tt-call", +] + +[[package]] +name = "frame-support" +version = "23.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "609125451f5ffb1675998e07e64e05e4b3dad330b1537952ace5897d6ed24f0a" +dependencies = [ + "aquamarine", + "bitflags 1.3.2", + "docify", + "environmental", + "frame-metadata", + "frame-support-procedural 18.0.0", + "impl-trait-for-tuples", + "k256", + "log", + "macro_magic", + "parity-scale-codec", + "paste", + "scale-info", + "serde", + "serde_json", + "smallvec", + "sp-api 21.0.0", + "sp-arithmetic 18.0.0", + "sp-core 23.0.0", + "sp-core-hashing-proc-macro 11.0.0", + "sp-debug-derive 10.0.0", + "sp-genesis-builder 0.2.0", + "sp-inherents 21.0.0", + "sp-io 25.0.0", + "sp-metadata-ir 0.2.0", + "sp-runtime 26.0.0", + "sp-staking 21.0.0", + "sp-state-machine 0.30.0", + "sp-std 10.0.0", + "sp-tracing 12.0.0", + "sp-weights 22.0.0", "static_assertions", "tt-call", ] @@ -5353,7 +5409,26 @@ dependencies = [ "cfg-expr", "derive-syn-parse", "expander 2.0.0", - "frame-support-procedural-tools", + "frame-support-procedural-tools 4.0.0-dev", + "itertools 0.10.5", + "macro_magic", + "proc-macro-warning", + "proc-macro2", + "quote", + "syn 2.0.37", +] + +[[package]] +name = "frame-support-procedural" +version = "18.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cd22a1ed96e765ec763bbaef2089ed8bb5f8539df40181ddac57be7be74685c7" +dependencies = [ + "Inflector", + "cfg-expr", + "derive-syn-parse", + "expander 2.0.0", + "frame-support-procedural-tools 7.0.0", "itertools 0.10.5", "macro_magic", "proc-macro-warning", @@ -5366,7 +5441,20 @@ dependencies = [ name = "frame-support-procedural-tools" version = "4.0.0-dev" dependencies = [ - "frame-support-procedural-tools-derive", + "frame-support-procedural-tools-derive 3.0.0", + "proc-macro-crate", + "proc-macro2", + "quote", + "syn 2.0.37", +] + +[[package]] +name = "frame-support-procedural-tools" +version = "7.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "82858452d9332de312f5ff411fd8aecee2323a344b241078f565b8c3c2e47d38" +dependencies = [ + "frame-support-procedural-tools-derive 8.0.0", "proc-macro-crate", "proc-macro2", "quote", @@ -5382,6 +5470,17 @@ dependencies = [ "syn 2.0.37", ] +[[package]] +name = "frame-support-procedural-tools-derive" +version = "8.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a4c7a09be6bd676fc01c5dd5ba057ba1f7e492e071d4a5fd7c579d99a96093d6" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.37", +] + [[package]] name = "frame-support-test" version = "3.0.0" @@ -5389,7 +5488,7 @@ dependencies = [ "frame-benchmarking", "frame-executive", "frame-metadata", - "frame-support", + "frame-support 4.0.0-dev", "frame-support-test-pallet", "frame-system", "parity-scale-codec", @@ -5397,15 +5496,15 @@ dependencies = [ "rustversion", "scale-info", "serde", - "sp-api", - "sp-arithmetic", - "sp-core", - "sp-io", - "sp-metadata-ir", - "sp-runtime", - "sp-state-machine", - "sp-std", - "sp-version", + "sp-api 4.0.0-dev", + "sp-arithmetic 16.0.0", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-metadata-ir 0.1.0", + "sp-runtime 24.0.0", + "sp-state-machine 0.28.0", + "sp-std 8.0.0", + "sp-version 22.0.0", "static_assertions", "trybuild", ] @@ -5414,25 +5513,25 @@ dependencies = [ name = "frame-support-test-compile-pass" version = "4.0.0-dev" dependencies = [ - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "parity-scale-codec", "scale-info", - "sp-core", - "sp-runtime", - "sp-version", + "sp-core 21.0.0", + "sp-runtime 24.0.0", + "sp-version 22.0.0", ] [[package]] name = "frame-support-test-pallet" version = "4.0.0-dev" dependencies = [ - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "parity-scale-codec", "scale-info", "serde", - "sp-runtime", + "sp-runtime 24.0.0", ] [[package]] @@ -5441,18 +5540,18 @@ version = "4.0.0-dev" dependencies = [ "cfg-if", "criterion 0.4.0", - "frame-support", + "frame-support 4.0.0-dev", "log", "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-externalities", - "sp-io", - "sp-runtime", - "sp-std", - "sp-version", - "sp-weights", + "sp-core 21.0.0", + "sp-externalities 0.19.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", + "sp-version 22.0.0", + "sp-weights 20.0.0", "substrate-test-runtime-client", ] @@ -5461,16 +5560,16 @@ name = "frame-system-benchmarking" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "parity-scale-codec", "scale-info", - "sp-core", - "sp-externalities", - "sp-io", - "sp-runtime", - "sp-std", - "sp-version", + "sp-core 21.0.0", + "sp-externalities 0.19.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", + "sp-version 22.0.0", ] [[package]] @@ -5478,18 +5577,18 @@ name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" dependencies = [ "parity-scale-codec", - "sp-api", + "sp-api 4.0.0-dev", ] [[package]] name = "frame-try-runtime" version = "0.10.0-dev" dependencies = [ - "frame-support", + "frame-support 4.0.0-dev", "parity-scale-codec", - "sp-api", - "sp-runtime", - "sp-std", + "sp-api 4.0.0-dev", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -5667,11 +5766,11 @@ version = "4.0.0-dev" dependencies = [ "chrono", "frame-election-provider-support", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "num-format", "pallet-staking", - "sp-staking", + "sp-staking 4.0.0-dev", ] [[package]] @@ -5791,12 +5890,12 @@ dependencies = [ "cumulus-pallet-aura-ext", "cumulus-pallet-parachain-system", "cumulus-pallet-xcm", - "cumulus-primitives-aura", + "cumulus-primitives-aura 0.1.0", "cumulus-primitives-core", "cumulus-primitives-timestamp", "frame-benchmarking", "frame-executive", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "frame-system-benchmarking", "frame-system-rpc-runtime-api", @@ -5809,18 +5908,18 @@ dependencies = [ "parachains-common", "parity-scale-codec", "scale-info", - "sp-api", + "sp-api 4.0.0-dev", "sp-block-builder", - "sp-consensus-aura", - "sp-core", - "sp-inherents", + "sp-consensus-aura 0.10.0-dev", + "sp-core 21.0.0", + "sp-inherents 4.0.0-dev", "sp-offchain", - "sp-runtime", + "sp-runtime 24.0.0", "sp-session", - "sp-std", - "sp-storage", + "sp-std 8.0.0", + "sp-storage 13.0.0", "sp-transaction-pool", - "sp-version", + "sp-version 22.0.0", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -6367,7 +6466,7 @@ dependencies = [ "cumulus-pallet-parachain-system", "cumulus-pallet-xcmp-queue", "cumulus-primitives-core", - "frame-support", + "frame-support 4.0.0-dev", "kusama-runtime-constants", "pallet-assets", "pallet-bridge-messages", @@ -6379,9 +6478,9 @@ dependencies = [ "parity-scale-codec", "paste", "penpal-runtime", - "polkadot-core-primitives", - "polkadot-parachain-primitives", - "polkadot-primitives", + "polkadot-core-primitives 1.0.0", + "polkadot-parachain-primitives 1.0.0", + "polkadot-primitives 1.0.0", "polkadot-runtime", "polkadot-runtime-constants", "polkadot-runtime-parachains", @@ -6389,11 +6488,11 @@ dependencies = [ "rococo-runtime", "rococo-runtime-constants", "sc-consensus-grandpa", - "sp-authority-discovery", + "sp-authority-discovery 4.0.0-dev", "sp-consensus-babe", "sp-consensus-beefy", - "sp-core", - "sp-runtime", + "sp-core 21.0.0", + "sp-runtime 24.0.0", "staging-kusama-runtime", "staging-xcm", "westend-runtime", @@ -6719,7 +6818,7 @@ dependencies = [ "frame-benchmarking-pallet-pov", "frame-election-provider-support", "frame-executive", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "frame-system-benchmarking", "frame-system-rpc-runtime-api", @@ -6803,23 +6902,23 @@ dependencies = [ "parity-scale-codec", "primitive-types", "scale-info", - "sp-api", - "sp-authority-discovery", + "sp-api 4.0.0-dev", + "sp-authority-discovery 4.0.0-dev", "sp-block-builder", "sp-consensus-babe", "sp-consensus-grandpa", - "sp-core", - "sp-inherents", - "sp-io", + "sp-core 21.0.0", + "sp-inherents 4.0.0-dev", + "sp-io 23.0.0", "sp-offchain", - "sp-runtime", + "sp-runtime 24.0.0", "sp-session", - "sp-staking", + "sp-staking 4.0.0-dev", "sp-statement-store", - "sp-std", - "sp-storage", + "sp-std 8.0.0", + "sp-storage 13.0.0", "sp-transaction-pool", - "sp-version", + "sp-version 22.0.0", "static_assertions", "substrate-wasm-builder", ] @@ -6828,13 +6927,13 @@ dependencies = [ name = "kusama-runtime-constants" version = "1.0.0" dependencies = [ - "frame-support", - "polkadot-primitives", + "frame-support 4.0.0-dev", + "polkadot-primitives 1.0.0", "polkadot-runtime-common", "smallvec", - "sp-core", - "sp-runtime", - "sp-weights", + "sp-core 21.0.0", + "sp-runtime 24.0.0", + "sp-weights 20.0.0", ] [[package]] @@ -7850,14 +7949,14 @@ dependencies = [ "sc-block-builder", "sc-client-api", "sc-offchain", - "sp-api", + "sp-api 4.0.0-dev", "sp-blockchain", "sp-consensus", "sp-consensus-beefy", - "sp-core", + "sp-core 21.0.0", "sp-mmr-primitives", - "sp-runtime", - "sp-tracing", + "sp-runtime 24.0.0", + "sp-tracing 10.0.0", "substrate-test-runtime-client", "tokio", ] @@ -7871,11 +7970,11 @@ dependencies = [ "parity-scale-codec", "serde", "serde_json", - "sp-api", + "sp-api 4.0.0-dev", "sp-blockchain", - "sp-core", + "sp-core 21.0.0", "sp-mmr-primitives", - "sp-runtime", + "sp-runtime 24.0.0", ] [[package]] @@ -8162,13 +8261,13 @@ dependencies = [ "serde", "serde_json", "sp-consensus", - "sp-core", - "sp-inherents", - "sp-runtime", - "sp-state-machine", - "sp-timestamp", - "sp-tracing", - "sp-trie", + "sp-core 21.0.0", + "sp-inherents 4.0.0-dev", + "sp-runtime 24.0.0", + "sp-state-machine 0.28.0", + "sp-timestamp 4.0.0-dev", + "sp-tracing 10.0.0", + "sp-trie 22.0.0", "tempfile", ] @@ -8235,21 +8334,21 @@ dependencies = [ "serde", "serde_json", "soketto", - "sp-api", - "sp-authority-discovery", + "sp-api 4.0.0-dev", + "sp-authority-discovery 4.0.0-dev", "sp-blockchain", "sp-consensus", "sp-consensus-babe", "sp-consensus-grandpa", - "sp-core", - "sp-inherents", - "sp-io", + "sp-core 21.0.0", + "sp-inherents 4.0.0-dev", + "sp-io 23.0.0", "sp-keyring", - "sp-keystore", - "sp-runtime", + "sp-keystore 0.27.0", + "sp-runtime 24.0.0", "sp-statement-store", - "sp-timestamp", - "sp-tracing", + "sp-timestamp 4.0.0-dev", + "sp-tracing 10.0.0", "sp-transaction-storage-proof", "substrate-build-script-utils", "substrate-cli-test-utils", @@ -8268,7 +8367,7 @@ version = "3.0.0-dev" dependencies = [ "criterion 0.4.0", "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "futures", "kitchensink-runtime", @@ -8286,17 +8385,17 @@ dependencies = [ "parity-scale-codec", "sc-executor", "scale-info", - "sp-application-crypto", + "sp-application-crypto 23.0.0", "sp-consensus-babe", - "sp-core", - "sp-externalities", + "sp-core 21.0.0", + "sp-externalities 0.19.0", "sp-keyring", - "sp-keystore", - "sp-runtime", - "sp-state-machine", + "sp-keystore 0.27.0", + "sp-runtime 24.0.0", + "sp-state-machine 0.28.0", "sp-statement-store", - "sp-tracing", - "sp-trie", + "sp-tracing 10.0.0", + "sp-trie 22.0.0", "wat", ] @@ -8310,8 +8409,8 @@ dependencies = [ "sc-client-api", "sc-service", "sp-blockchain", - "sp-core", - "sp-runtime", + "sp-core 21.0.0", + "sp-runtime 24.0.0", "thiserror", ] @@ -8319,8 +8418,8 @@ dependencies = [ name = "node-primitives" version = "2.0.0" dependencies = [ - "sp-core", - "sp-runtime", + "sp-core 21.0.0", + "sp-runtime 24.0.0", ] [[package]] @@ -8342,13 +8441,13 @@ dependencies = [ "sc-rpc-spec-v2", "sc-sync-state-rpc", "sc-transaction-pool-api", - "sp-api", + "sp-api 4.0.0-dev", "sp-block-builder", "sp-blockchain", "sp-consensus", "sp-consensus-babe", - "sp-keystore", - "sp-runtime", + "sp-keystore 0.27.0", + "sp-runtime 24.0.0", "sp-statement-store", "substrate-frame-rpc-system", "substrate-state-trie-migration-rpc", @@ -8390,17 +8489,17 @@ dependencies = [ "sc-telemetry", "sc-transaction-pool", "sc-transaction-pool-api", - "sp-api", + "sp-api 4.0.0-dev", "sp-block-builder", "sp-blockchain", - "sp-consensus-aura", + "sp-consensus-aura 0.10.0-dev", "sp-consensus-grandpa", - "sp-core", - "sp-inherents", - "sp-io", + "sp-core 21.0.0", + "sp-inherents 4.0.0-dev", + "sp-io 23.0.0", "sp-keyring", - "sp-runtime", - "sp-timestamp", + "sp-runtime 24.0.0", + "sp-timestamp 4.0.0-dev", "substrate-build-script-utils", "substrate-frame-rpc-system", "try-runtime-cli", @@ -8426,7 +8525,7 @@ version = "4.0.0-dev" dependencies = [ "frame-benchmarking", "frame-executive", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "frame-system-benchmarking", "frame-system-rpc-runtime-api", @@ -8441,19 +8540,19 @@ dependencies = [ "pallet-transaction-payment-rpc-runtime-api", "parity-scale-codec", "scale-info", - "sp-api", + "sp-api 4.0.0-dev", "sp-block-builder", - "sp-consensus-aura", + "sp-consensus-aura 0.10.0-dev", "sp-consensus-grandpa", - "sp-core", - "sp-inherents", + "sp-core 21.0.0", + "sp-inherents 4.0.0-dev", "sp-offchain", - "sp-runtime", + "sp-runtime 24.0.0", "sp-session", - "sp-std", - "sp-storage", + "sp-std 8.0.0", + "sp-storage 13.0.0", "sp-transaction-pool", - "sp-version", + "sp-version 22.0.0", "substrate-wasm-builder", ] @@ -8479,16 +8578,16 @@ dependencies = [ "sc-consensus", "sc-executor", "sc-service", - "sp-api", + "sp-api 4.0.0-dev", "sp-block-builder", "sp-blockchain", "sp-consensus", - "sp-core", - "sp-inherents", - "sp-io", + "sp-core 21.0.0", + "sp-inherents 4.0.0-dev", + "sp-io 23.0.0", "sp-keyring", - "sp-runtime", - "sp-timestamp", + "sp-runtime 24.0.0", + "sp-timestamp 4.0.0-dev", "substrate-test-client", "tempfile", ] @@ -8778,7 +8877,7 @@ version = "4.0.0-dev" dependencies = [ "array-bytes", "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "log", "pallet-balances", @@ -8786,11 +8885,11 @@ dependencies = [ "pallet-identity", "parity-scale-codec", "scale-info", - "sp-core", - "sp-core-hashing", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 21.0.0", + "sp-core-hashing 9.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -8798,26 +8897,26 @@ name = "pallet-asset-conversion" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "pallet-assets", "pallet-balances", "parity-scale-codec", "primitive-types", "scale-info", - "sp-api", - "sp-arithmetic", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-api 4.0.0-dev", + "sp-arithmetic 16.0.0", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] name = "pallet-asset-conversion-tx-payment" version = "4.0.0-dev" dependencies = [ - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "pallet-asset-conversion", "pallet-assets", @@ -8825,11 +8924,11 @@ dependencies = [ "pallet-transaction-payment", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", - "sp-storage", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", + "sp-storage 13.0.0", ] [[package]] @@ -8837,15 +8936,15 @@ name = "pallet-asset-rate" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "pallet-balances", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -8853,7 +8952,7 @@ name = "pallet-asset-tx-payment" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "pallet-assets", "pallet-authorship", @@ -8863,11 +8962,11 @@ dependencies = [ "scale-info", "serde", "serde_json", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", - "sp-storage", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", + "sp-storage 13.0.0", ] [[package]] @@ -8875,81 +8974,81 @@ name = "pallet-assets" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "log", "pallet-balances", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] name = "pallet-atomic-swap" version = "4.0.0-dev" dependencies = [ - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "pallet-balances", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] name = "pallet-aura" version = "4.0.0-dev" dependencies = [ - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "log", "pallet-timestamp", "parity-scale-codec", "scale-info", - "sp-application-crypto", - "sp-consensus-aura", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-application-crypto 23.0.0", + "sp-consensus-aura 0.10.0-dev", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" dependencies = [ - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "pallet-session", "parity-scale-codec", "scale-info", - "sp-application-crypto", - "sp-authority-discovery", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-application-crypto 23.0.0", + "sp-authority-discovery 4.0.0-dev", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] name = "pallet-authorship" version = "4.0.0-dev" dependencies = [ - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "impl-trait-for-tuples", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -8958,7 +9057,7 @@ version = "4.0.0-dev" dependencies = [ "frame-benchmarking", "frame-election-provider-support", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "log", "pallet-authorship", @@ -8970,14 +9069,14 @@ dependencies = [ "pallet-timestamp", "parity-scale-codec", "scale-info", - "sp-application-crypto", + "sp-application-crypto 23.0.0", "sp-consensus-babe", - "sp-core", - "sp-io", - "sp-runtime", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", "sp-session", - "sp-staking", - "sp-std", + "sp-staking 4.0.0-dev", + "sp-std 8.0.0", ] [[package]] @@ -8988,17 +9087,17 @@ dependencies = [ "docify", "frame-benchmarking", "frame-election-provider-support", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "log", "pallet-balances", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", - "sp-tracing", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", + "sp-tracing 10.0.0", ] [[package]] @@ -9017,16 +9116,16 @@ version = "4.0.0-dev" dependencies = [ "frame-election-provider-support", "frame-remote-externalities", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "log", "pallet-bags-list", "pallet-staking", - "sp-core", - "sp-runtime", - "sp-std", - "sp-storage", - "sp-tracing", + "sp-core 21.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", + "sp-storage 13.0.0", + "sp-tracing 10.0.0", ] [[package]] @@ -9034,17 +9133,17 @@ name = "pallet-balances" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "log", "pallet-transaction-payment", "parity-scale-codec", "paste", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -9052,7 +9151,7 @@ name = "pallet-beefy" version = "4.0.0-dev" dependencies = [ "frame-election-provider-support", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "log", "pallet-authorship", @@ -9066,13 +9165,13 @@ dependencies = [ "scale-info", "serde", "sp-consensus-beefy", - "sp-core", - "sp-io", - "sp-runtime", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", "sp-session", - "sp-staking", - "sp-state-machine", - "sp-std", + "sp-staking 4.0.0-dev", + "sp-state-machine 0.28.0", + "sp-std 8.0.0", ] [[package]] @@ -9081,7 +9180,7 @@ version = "4.0.0-dev" dependencies = [ "array-bytes", "binary-merkle-tree", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "log", "pallet-beefy", @@ -9090,14 +9189,14 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-api", + "sp-api 4.0.0-dev", "sp-consensus-beefy", - "sp-core", - "sp-io", - "sp-runtime", - "sp-staking", - "sp-state-machine", - "sp-std", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-staking 4.0.0-dev", + "sp-state-machine 0.28.0", + "sp-std 8.0.0", ] [[package]] @@ -9105,17 +9204,17 @@ name = "pallet-bounties" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "log", "pallet-balances", "pallet-treasury", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -9127,17 +9226,17 @@ dependencies = [ "bp-test-utils", "finality-grandpa", "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "log", "parity-scale-codec", "scale-info", "sp-consensus-grandpa", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", - "sp-trie", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", + "sp-trie 22.0.0", ] [[package]] @@ -9148,17 +9247,17 @@ dependencies = [ "bp-runtime", "bp-test-utils", "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "log", "num-traits", "pallet-balances", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -9171,17 +9270,17 @@ dependencies = [ "bp-runtime", "bp-test-utils", "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "log", "pallet-bridge-grandpa", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", - "sp-trie", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", + "sp-trie 22.0.0", ] [[package]] @@ -9192,18 +9291,18 @@ dependencies = [ "bp-relayers", "bp-runtime", "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "log", "pallet-balances", "pallet-bridge-messages", "parity-scale-codec", "scale-info", - "sp-arithmetic", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-arithmetic 16.0.0", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -9212,15 +9311,15 @@ version = "0.1.0" dependencies = [ "bitvec", "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "parity-scale-codec", "scale-info", - "sp-arithmetic", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-arithmetic 16.0.0", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -9228,7 +9327,7 @@ name = "pallet-child-bounties" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "log", "pallet-balances", @@ -9236,10 +9335,10 @@ dependencies = [ "pallet-treasury", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -9247,7 +9346,7 @@ name = "pallet-collator-selection" version = "3.0.0" dependencies = [ "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "log", "pallet-aura", @@ -9258,13 +9357,13 @@ dependencies = [ "parity-scale-codec", "rand 0.8.5", "scale-info", - "sp-consensus-aura", - "sp-core", - "sp-io", - "sp-runtime", - "sp-staking", - "sp-std", - "sp-tracing", + "sp-consensus-aura 0.10.0-dev", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-staking 4.0.0-dev", + "sp-std 8.0.0", + "sp-tracing 10.0.0", ] [[package]] @@ -9272,15 +9371,15 @@ name = "pallet-collective" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "log", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -9293,7 +9392,7 @@ dependencies = [ "env_logger 0.9.3", "environmental", "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "impl-trait-for-tuples", "log", @@ -9311,12 +9410,12 @@ dependencies = [ "scale-info", "serde", "smallvec", - "sp-api", - "sp-core", - "sp-io", - "sp-keystore", - "sp-runtime", - "sp-std", + "sp-api 4.0.0-dev", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-keystore 0.27.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", "wasm-instrument 0.4.0", "wasmi", "wat", @@ -9329,9 +9428,9 @@ dependencies = [ "bitflags 1.3.2", "parity-scale-codec", "scale-info", - "sp-runtime", - "sp-std", - "sp-weights", + "sp-runtime 24.0.0", + "sp-std 8.0.0", + "sp-weights 20.0.0", ] [[package]] @@ -9349,17 +9448,17 @@ version = "4.0.0-dev" dependencies = [ "assert_matches", "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "pallet-balances", "pallet-scheduler", "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -9367,30 +9466,30 @@ name = "pallet-core-fellowship" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "log", "parity-scale-codec", "scale-info", - "sp-arithmetic", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-arithmetic 16.0.0", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] name = "pallet-default-config-example" version = "4.0.0-dev" dependencies = [ - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "log", "parity-scale-codec", "scale-info", - "sp-io", - "sp-runtime", - "sp-std", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -9398,7 +9497,7 @@ name = "pallet-democracy" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "log", "pallet-balances", @@ -9407,26 +9506,26 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] name = "pallet-dev-mode" version = "4.0.0-dev" dependencies = [ - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "log", "pallet-balances", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -9434,7 +9533,7 @@ name = "pallet-election-provider-e2e-test" version = "1.0.0" dependencies = [ "frame-election-provider-support", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "log", "pallet-bags-list", @@ -9446,13 +9545,13 @@ dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", "scale-info", - "sp-core", - "sp-io", + "sp-core 21.0.0", + "sp-io 23.0.0", "sp-npos-elections", - "sp-runtime", - "sp-staking", - "sp-std", - "sp-tracing", + "sp-runtime 24.0.0", + "sp-staking 4.0.0-dev", + "sp-std 8.0.0", + "sp-tracing 10.0.0", ] [[package]] @@ -9461,7 +9560,7 @@ version = "4.0.0-dev" dependencies = [ "frame-benchmarking", "frame-election-provider-support", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "log", "pallet-balances", @@ -9470,13 +9569,13 @@ dependencies = [ "parking_lot 0.12.1", "rand 0.8.5", "scale-info", - "sp-arithmetic", - "sp-core", - "sp-io", + "sp-arithmetic 16.0.0", + "sp-core 21.0.0", + "sp-io 23.0.0", "sp-npos-elections", - "sp-runtime", - "sp-std", - "sp-tracing", + "sp-runtime 24.0.0", + "sp-std 8.0.0", + "sp-tracing 10.0.0", "strum", ] @@ -9489,8 +9588,8 @@ dependencies = [ "frame-system", "parity-scale-codec", "sp-npos-elections", - "sp-runtime", - "sp-std", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -9498,19 +9597,19 @@ name = "pallet-elections-phragmen" version = "5.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "log", "pallet-balances", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", + "sp-core 21.0.0", + "sp-io 23.0.0", "sp-npos-elections", - "sp-runtime", - "sp-staking", - "sp-std", - "sp-tracing", + "sp-runtime 24.0.0", + "sp-staking 4.0.0-dev", + "sp-std 8.0.0", + "sp-tracing 10.0.0", "substrate-test-utils", ] @@ -9519,16 +9618,16 @@ name = "pallet-example-basic" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "log", "pallet-balances", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -9536,33 +9635,33 @@ name = "pallet-example-kitchensink" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "log", "pallet-balances", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] name = "pallet-example-offchain-worker" version = "4.0.0-dev" dependencies = [ - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "lite-json", "log", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-keystore", - "sp-runtime", - "sp-std", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-keystore 0.27.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -9570,14 +9669,14 @@ name = "pallet-example-split" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "log", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-std", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-std 8.0.0", ] [[package]] @@ -9599,7 +9698,7 @@ dependencies = [ "docify", "frame-benchmarking", "frame-election-provider-support", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "log", "pallet-balances", @@ -9608,12 +9707,12 @@ dependencies = [ "pallet-timestamp", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-staking", - "sp-std", - "sp-tracing", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-staking 4.0.0-dev", + "sp-std 8.0.0", + "sp-tracing 10.0.0", "substrate-test-utils", ] @@ -9623,16 +9722,16 @@ version = "4.0.0-dev" dependencies = [ "blake2", "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "log", "pallet-balances", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -9642,7 +9741,7 @@ dependencies = [ "finality-grandpa", "frame-benchmarking", "frame-election-provider-support", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "log", "pallet-authorship", @@ -9654,15 +9753,15 @@ dependencies = [ "pallet-timestamp", "parity-scale-codec", "scale-info", - "sp-application-crypto", + "sp-application-crypto 23.0.0", "sp-consensus-grandpa", - "sp-core", - "sp-io", + "sp-core 21.0.0", + "sp-io 23.0.0", "sp-keyring", - "sp-runtime", + "sp-runtime 24.0.0", "sp-session", - "sp-staking", - "sp-std", + "sp-staking 4.0.0-dev", + "sp-std 8.0.0", ] [[package]] @@ -9671,15 +9770,15 @@ version = "4.0.0-dev" dependencies = [ "enumflags2", "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "pallet-balances", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -9687,19 +9786,19 @@ name = "pallet-im-online" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "log", "pallet-authorship", "pallet-session", "parity-scale-codec", "scale-info", - "sp-application-crypto", - "sp-core", - "sp-io", - "sp-runtime", - "sp-staking", - "sp-std", + "sp-application-crypto 23.0.0", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-staking 4.0.0-dev", + "sp-std 8.0.0", ] [[package]] @@ -9707,31 +9806,31 @@ name = "pallet-indices" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "pallet-balances", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", + "sp-core 21.0.0", + "sp-io 23.0.0", "sp-keyring", - "sp-runtime", - "sp-std", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] name = "pallet-insecure-randomness-collective-flip" version = "4.0.0-dev" dependencies = [ - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "parity-scale-codec", "safe-mix", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -9739,16 +9838,16 @@ name = "pallet-lottery" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-support-test", "frame-system", "pallet-balances", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -9756,15 +9855,15 @@ name = "pallet-membership" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "log", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -9772,7 +9871,7 @@ name = "pallet-message-queue" version = "7.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "log", "parity-scale-codec", @@ -9780,13 +9879,13 @@ dependencies = [ "rand_distr", "scale-info", "serde", - "sp-arithmetic", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", - "sp-tracing", - "sp-weights", + "sp-arithmetic 16.0.0", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", + "sp-tracing 10.0.0", + "sp-weights 20.0.0", ] [[package]] @@ -9796,17 +9895,17 @@ dependencies = [ "array-bytes", "env_logger 0.9.3", "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "itertools 0.10.5", "log", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", + "sp-core 21.0.0", + "sp-io 23.0.0", "sp-mmr-primitives", - "sp-runtime", - "sp-std", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -9814,15 +9913,15 @@ name = "pallet-multisig" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "log", "pallet-balances", "parity-scale-codec", "scale-info", - "sp-io", - "sp-runtime", - "sp-std", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -9830,7 +9929,7 @@ name = "pallet-nft-fractionalization" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "log", "pallet-assets", @@ -9838,10 +9937,10 @@ dependencies = [ "pallet-nfts", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -9850,17 +9949,17 @@ version = "4.0.0-dev" dependencies = [ "enumflags2", "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "log", "pallet-balances", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-keystore", - "sp-runtime", - "sp-std", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-keystore 0.27.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -9869,22 +9968,22 @@ version = "4.0.0-dev" dependencies = [ "pallet-nfts", "parity-scale-codec", - "sp-api", + "sp-api 4.0.0-dev", ] [[package]] name = "pallet-nicks" version = "4.0.0-dev" dependencies = [ - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "pallet-balances", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -9892,49 +9991,49 @@ name = "pallet-nis" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "pallet-balances", "parity-scale-codec", "scale-info", - "sp-arithmetic", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-arithmetic 16.0.0", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] name = "pallet-node-authorization" version = "4.0.0-dev" dependencies = [ - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "log", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] name = "pallet-nomination-pools" version = "1.0.0" dependencies = [ - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "log", "pallet-balances", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-staking", - "sp-std", - "sp-tracing", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-staking 4.0.0-dev", + "sp-std 8.0.0", + "sp-tracing 10.0.0", ] [[package]] @@ -9943,7 +10042,7 @@ version = "1.0.0" dependencies = [ "frame-benchmarking", "frame-election-provider-support", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "pallet-bags-list", "pallet-balances", @@ -9953,27 +10052,27 @@ dependencies = [ "pallet-timestamp", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-runtime-interface", - "sp-staking", - "sp-std", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-runtime-interface 17.0.0", + "sp-staking 4.0.0-dev", + "sp-std 8.0.0", ] [[package]] name = "pallet-nomination-pools-fuzzer" version = "2.0.0" dependencies = [ - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "honggfuzz", "log", "pallet-nomination-pools", "rand 0.8.5", - "sp-io", - "sp-runtime", - "sp-tracing", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-tracing 10.0.0", ] [[package]] @@ -9982,8 +10081,8 @@ version = "1.0.0-dev" dependencies = [ "pallet-nomination-pools", "parity-scale-codec", - "sp-api", - "sp-std", + "sp-api 4.0.0-dev", + "sp-std 8.0.0", ] [[package]] @@ -9991,7 +10090,7 @@ name = "pallet-nomination-pools-test-staking" version = "1.0.0" dependencies = [ "frame-election-provider-support", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "log", "pallet-bags-list", @@ -10002,30 +10101,30 @@ dependencies = [ "pallet-timestamp", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-staking", - "sp-std", - "sp-tracing", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-staking 4.0.0-dev", + "sp-std 8.0.0", + "sp-tracing 10.0.0", ] [[package]] name = "pallet-offences" version = "4.0.0-dev" dependencies = [ - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "log", "pallet-balances", "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-runtime", - "sp-staking", - "sp-std", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-staking 4.0.0-dev", + "sp-std 8.0.0", ] [[package]] @@ -10034,7 +10133,7 @@ version = "4.0.0-dev" dependencies = [ "frame-benchmarking", "frame-election-provider-support", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "log", "pallet-babe", @@ -10048,11 +10147,11 @@ dependencies = [ "pallet-timestamp", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-staking", - "sp-std", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-staking 4.0.0-dev", + "sp-std 8.0.0", ] [[package]] @@ -10061,15 +10160,15 @@ version = "0.1.0" dependencies = [ "docify", "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-metadata-ir", - "sp-runtime", - "sp-std", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-metadata-ir 0.1.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -10077,10 +10176,10 @@ name = "pallet-paged-list-fuzzer" version = "0.1.0" dependencies = [ "arbitrary", - "frame-support", + "frame-support 4.0.0-dev", "honggfuzz", "pallet-paged-list", - "sp-io", + "sp-io 23.0.0", ] [[package]] @@ -10088,14 +10187,14 @@ name = "pallet-parachain-template" version = "0.1.0" dependencies = [ "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-runtime", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", ] [[package]] @@ -10103,16 +10202,16 @@ name = "pallet-preimage" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "log", "pallet-balances", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -10120,16 +10219,16 @@ name = "pallet-proxy" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "pallet-balances", "pallet-utility", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -10137,16 +10236,16 @@ name = "pallet-ranked-collective" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "log", "parity-scale-codec", "scale-info", - "sp-arithmetic", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-arithmetic 16.0.0", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -10154,15 +10253,15 @@ name = "pallet-recovery" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "pallet-balances", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -10171,7 +10270,7 @@ version = "4.0.0-dev" dependencies = [ "assert_matches", "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "log", "pallet-balances", @@ -10180,11 +10279,11 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-arithmetic", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-arithmetic 16.0.0", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -10192,15 +10291,15 @@ name = "pallet-remark" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -10208,7 +10307,7 @@ name = "pallet-root-offences" version = "1.0.0-dev" dependencies = [ "frame-election-provider-support", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "pallet-balances", "pallet-session", @@ -10217,25 +10316,25 @@ dependencies = [ "pallet-timestamp", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-staking", - "sp-std", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-staking 4.0.0-dev", + "sp-std 8.0.0", ] [[package]] name = "pallet-root-testing" version = "1.0.0-dev" dependencies = [ - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -10243,18 +10342,18 @@ name = "pallet-safe-mode" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "pallet-balances", "pallet-proxy", "pallet-utility", "parity-scale-codec", "scale-info", - "sp-arithmetic", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-arithmetic 16.0.0", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -10262,16 +10361,16 @@ name = "pallet-salary" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "log", "parity-scale-codec", "scale-info", - "sp-arithmetic", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-arithmetic 16.0.0", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -10280,17 +10379,17 @@ version = "4.0.0-dev" dependencies = [ "docify", "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "log", "pallet-preimage", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", - "sp-weights", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", + "sp-weights 20.0.0", "substrate-test-utils", ] @@ -10298,36 +10397,36 @@ dependencies = [ name = "pallet-scored-pool" version = "4.0.0-dev" dependencies = [ - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "pallet-balances", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] name = "pallet-session" version = "4.0.0-dev" dependencies = [ - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "impl-trait-for-tuples", "log", "pallet-timestamp", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", "sp-session", - "sp-staking", - "sp-state-machine", - "sp-std", - "sp-trie", + "sp-staking 4.0.0-dev", + "sp-state-machine 0.28.0", + "sp-std 8.0.0", + "sp-trie 22.0.0", ] [[package]] @@ -10336,7 +10435,7 @@ version = "4.0.0-dev" dependencies = [ "frame-benchmarking", "frame-election-provider-support", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "pallet-balances", "pallet-session", @@ -10346,11 +10445,11 @@ dependencies = [ "parity-scale-codec", "rand 0.8.5", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", "sp-session", - "sp-std", + "sp-std 8.0.0", ] [[package]] @@ -10358,7 +10457,7 @@ name = "pallet-society" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-support-test", "frame-system", "log", @@ -10366,11 +10465,11 @@ dependencies = [ "parity-scale-codec", "rand_chacha 0.2.2", "scale-info", - "sp-arithmetic", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-arithmetic 16.0.0", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -10379,7 +10478,7 @@ version = "4.0.0-dev" dependencies = [ "frame-benchmarking", "frame-election-provider-support", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "log", "pallet-authorship", @@ -10392,14 +10491,14 @@ dependencies = [ "rand_chacha 0.2.2", "scale-info", "serde", - "sp-application-crypto", - "sp-core", - "sp-io", + "sp-application-crypto 23.0.0", + "sp-core 21.0.0", + "sp-io 23.0.0", "sp-npos-elections", - "sp-runtime", - "sp-staking", - "sp-std", - "sp-tracing", + "sp-runtime 24.0.0", + "sp-staking 4.0.0-dev", + "sp-std 8.0.0", + "sp-tracing 10.0.0", "substrate-test-utils", ] @@ -10410,7 +10509,7 @@ dependencies = [ "proc-macro-crate", "proc-macro2", "quote", - "sp-runtime", + "sp-runtime 24.0.0", "syn 2.0.37", ] @@ -10419,7 +10518,7 @@ name = "pallet-staking-reward-fn" version = "4.0.0-dev" dependencies = [ "log", - "sp-arithmetic", + "sp-arithmetic 16.0.0", ] [[package]] @@ -10427,7 +10526,7 @@ name = "pallet-staking-runtime-api" version = "4.0.0-dev" dependencies = [ "parity-scale-codec", - "sp-api", + "sp-api 4.0.0-dev", ] [[package]] @@ -10436,7 +10535,7 @@ version = "4.0.0-dev" dependencies = [ "frame-benchmarking", "frame-remote-externalities", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "log", "pallet-balances", @@ -10444,11 +10543,11 @@ dependencies = [ "parking_lot 0.12.1", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", - "sp-tracing", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", + "sp-tracing 10.0.0", "substrate-state-trie-migration-rpc", "thousands", "tokio", @@ -10459,18 +10558,18 @@ dependencies = [ name = "pallet-statement" version = "4.0.0-dev" dependencies = [ - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "log", "pallet-balances", "parity-scale-codec", "scale-info", - "sp-api", - "sp-core", - "sp-io", - "sp-runtime", + "sp-api 4.0.0-dev", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", "sp-statement-store", - "sp-std", + "sp-std 8.0.0", ] [[package]] @@ -10479,14 +10578,14 @@ version = "4.0.0-dev" dependencies = [ "docify", "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -10494,14 +10593,14 @@ name = "pallet-template" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -10510,18 +10609,18 @@ version = "4.0.0-dev" dependencies = [ "docify", "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "log", "parity-scale-codec", "scale-info", - "sp-core", - "sp-inherents", - "sp-io", - "sp-runtime", - "sp-std", - "sp-storage", - "sp-timestamp", + "sp-core 21.0.0", + "sp-inherents 4.0.0-dev", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", + "sp-storage 13.0.0", + "sp-timestamp 4.0.0-dev", ] [[package]] @@ -10529,7 +10628,7 @@ name = "pallet-tips" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "log", "pallet-balances", @@ -10537,28 +10636,28 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", - "sp-storage", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", + "sp-storage 13.0.0", ] [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" dependencies = [ - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "pallet-balances", "parity-scale-codec", "scale-info", "serde", "serde_json", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -10568,12 +10667,12 @@ dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", "parity-scale-codec", - "sp-api", + "sp-api 4.0.0-dev", "sp-blockchain", - "sp-core", + "sp-core 21.0.0", "sp-rpc", - "sp-runtime", - "sp-weights", + "sp-runtime 24.0.0", + "sp-weights 20.0.0", ] [[package]] @@ -10582,9 +10681,9 @@ version = "4.0.0-dev" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", - "sp-api", - "sp-runtime", - "sp-weights", + "sp-api 4.0.0-dev", + "sp-runtime 24.0.0", + "sp-weights 20.0.0", ] [[package]] @@ -10593,18 +10692,18 @@ version = "4.0.0-dev" dependencies = [ "array-bytes", "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "log", "pallet-balances", "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-inherents", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 21.0.0", + "sp-inherents 4.0.0-dev", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", "sp-transaction-storage-proof", ] @@ -10613,7 +10712,7 @@ name = "pallet-treasury" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "impl-trait-for-tuples", "pallet-balances", @@ -10621,10 +10720,10 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -10632,17 +10731,17 @@ name = "pallet-tx-pause" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "pallet-balances", "pallet-proxy", "pallet-utility", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -10650,16 +10749,16 @@ name = "pallet-uniques" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "log", "pallet-balances", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -10667,7 +10766,7 @@ name = "pallet-utility" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "pallet-balances", "pallet-collective", @@ -10675,10 +10774,10 @@ dependencies = [ "pallet-timestamp", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -10686,16 +10785,16 @@ name = "pallet-vesting" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "log", "pallet-balances", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -10703,17 +10802,17 @@ name = "pallet-whitelist" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "pallet-balances", "pallet-preimage", "parity-scale-codec", "scale-info", - "sp-api", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-api 4.0.0-dev", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -10722,19 +10821,19 @@ version = "1.0.0" dependencies = [ "bounded-collections", "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "log", "pallet-balances", "parity-scale-codec", - "polkadot-parachain-primitives", + "polkadot-parachain-primitives 1.0.0", "polkadot-runtime-parachains", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -10745,21 +10844,21 @@ name = "pallet-xcm-benchmarks" version = "1.0.0" dependencies = [ "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "log", "pallet-assets", "pallet-balances", "pallet-xcm", "parity-scale-codec", - "polkadot-primitives", + "polkadot-primitives 1.0.0", "polkadot-runtime-common", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", - "sp-tracing", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", + "sp-tracing 10.0.0", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -10771,15 +10870,15 @@ version = "0.1.0" dependencies = [ "bp-xcm-bridge-hub-router", "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "log", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", "staging-xcm", "staging-xcm-builder", ] @@ -10789,12 +10888,12 @@ name = "parachain-info" version = "0.1.0" dependencies = [ "cumulus-primitives-core", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "parity-scale-codec", "scale-info", - "sp-runtime", - "sp-std", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -10821,7 +10920,7 @@ dependencies = [ "parachain-template-runtime", "parity-scale-codec", "polkadot-cli", - "polkadot-primitives", + "polkadot-primitives 1.0.0", "sc-basic-authorship", "sc-chain-spec", "sc-cli", @@ -10839,15 +10938,15 @@ dependencies = [ "sc-transaction-pool", "sc-transaction-pool-api", "serde", - "sp-api", + "sp-api 4.0.0-dev", "sp-block-builder", "sp-blockchain", - "sp-consensus-aura", - "sp-core", - "sp-io", - "sp-keystore", - "sp-runtime", - "sp-timestamp", + "sp-consensus-aura 0.10.0-dev", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-keystore 0.27.0", + "sp-runtime 24.0.0", + "sp-timestamp 4.0.0-dev", "staging-xcm", "substrate-build-script-utils", "substrate-frame-rpc-system", @@ -10868,7 +10967,7 @@ dependencies = [ "cumulus-primitives-utility", "frame-benchmarking", "frame-executive", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "frame-system-benchmarking", "frame-system-rpc-runtime-api", @@ -10888,21 +10987,21 @@ dependencies = [ "pallet-xcm", "parachain-info", "parity-scale-codec", - "polkadot-parachain-primitives", + "polkadot-parachain-primitives 1.0.0", "polkadot-runtime-common", "scale-info", "smallvec", - "sp-api", + "sp-api 4.0.0-dev", "sp-block-builder", - "sp-consensus-aura", - "sp-core", - "sp-inherents", + "sp-consensus-aura 0.10.0-dev", + "sp-core 21.0.0", + "sp-inherents 4.0.0-dev", "sp-offchain", - "sp-runtime", + "sp-runtime 24.0.0", "sp-session", - "sp-std", + "sp-std 8.0.0", "sp-transaction-pool", - "sp-version", + "sp-version 22.0.0", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -10915,7 +11014,7 @@ version = "1.0.0" dependencies = [ "cumulus-primitives-core", "cumulus-primitives-utility", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "kusama-runtime-constants", "log", @@ -10926,17 +11025,17 @@ dependencies = [ "pallet-balances", "pallet-collator-selection", "parity-scale-codec", - "polkadot-core-primitives", - "polkadot-primitives", + "polkadot-core-primitives 1.0.0", + "polkadot-primitives 1.0.0", "polkadot-runtime-constants", "rococo-runtime-constants", "scale-info", "smallvec", - "sp-consensus-aura", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-consensus-aura 0.10.0-dev", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -10955,7 +11054,7 @@ dependencies = [ "cumulus-primitives-core", "cumulus-primitives-parachain-inherent", "cumulus-test-relay-sproof-builder", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "hex-literal", "pallet-assets", @@ -10966,13 +11065,13 @@ dependencies = [ "parachain-info", "parachains-common", "parity-scale-codec", - "polkadot-parachain-primitives", - "sp-consensus-aura", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", - "sp-tracing", + "polkadot-parachain-primitives 1.0.0", + "sp-consensus-aura 0.10.0-dev", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", + "sp-tracing 10.0.0", "staging-xcm", "staging-xcm-executor", "substrate-wasm-builder", @@ -11197,7 +11296,7 @@ dependencies = [ "cumulus-primitives-utility", "frame-benchmarking", "frame-executive", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "frame-system-benchmarking", "frame-system-rpc-runtime-api", @@ -11219,23 +11318,23 @@ dependencies = [ "parachain-info", "parachains-common", "parity-scale-codec", - "polkadot-parachain-primitives", - "polkadot-primitives", + "polkadot-parachain-primitives 1.0.0", + "polkadot-primitives 1.0.0", "polkadot-runtime-common", "scale-info", "smallvec", - "sp-api", + "sp-api 4.0.0-dev", "sp-block-builder", - "sp-consensus-aura", - "sp-core", - "sp-inherents", + "sp-consensus-aura 0.10.0-dev", + "sp-core 21.0.0", + "sp-inherents 4.0.0-dev", "sp-offchain", - "sp-runtime", + "sp-runtime 24.0.0", "sp-session", - "sp-std", - "sp-storage", + "sp-std 8.0.0", + "sp-storage 13.0.0", "sp-transaction-pool", - "sp-version", + "sp-version 22.0.0", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -11408,7 +11507,7 @@ dependencies = [ "color-eyre", "nix 0.26.2", "polkadot-cli", - "polkadot-core-primitives", + "polkadot-core-primitives 1.0.0", "polkadot-node-core-pvf", "polkadot-node-core-pvf-common", "polkadot-node-core-pvf-execute-worker", @@ -11437,14 +11536,14 @@ dependencies = [ "polkadot-node-subsystem", "polkadot-node-subsystem-test-helpers", "polkadot-node-subsystem-util", - "polkadot-primitives", + "polkadot-primitives 1.0.0", "polkadot-primitives-test-helpers", "rand 0.8.5", "rand_chacha 0.3.1", "rand_core 0.5.1", "schnorrkel 0.9.1", - "sp-authority-discovery", - "sp-core", + "sp-authority-discovery 4.0.0-dev", + "sp-core 21.0.0", "tracing-gum", ] @@ -11464,14 +11563,14 @@ dependencies = [ "polkadot-node-subsystem", "polkadot-node-subsystem-test-helpers", "polkadot-node-subsystem-util", - "polkadot-primitives", + "polkadot-primitives 1.0.0", "rand 0.8.5", "rand_chacha 0.3.1", - "sp-application-crypto", - "sp-authority-discovery", - "sp-core", + "sp-application-crypto 23.0.0", + "sp-authority-discovery 4.0.0-dev", + "sp-core 21.0.0", "sp-keyring", - "sp-keystore", + "sp-keystore 0.27.0", "tracing-gum", ] @@ -11491,15 +11590,15 @@ dependencies = [ "polkadot-node-subsystem", "polkadot-node-subsystem-test-helpers", "polkadot-node-subsystem-util", - "polkadot-primitives", + "polkadot-primitives 1.0.0", "polkadot-primitives-test-helpers", "rand 0.8.5", "sc-network", "schnellru", - "sp-core", + "sp-core 21.0.0", "sp-keyring", - "sp-keystore", - "sp-tracing", + "sp-keystore 0.27.0", + "sp-tracing 10.0.0", "thiserror", "tracing-gum", ] @@ -11522,13 +11621,13 @@ dependencies = [ "polkadot-node-subsystem", "polkadot-node-subsystem-test-helpers", "polkadot-node-subsystem-util", - "polkadot-primitives", + "polkadot-primitives 1.0.0", "polkadot-primitives-test-helpers", "rand 0.8.5", "sc-network", "schnellru", - "sp-application-crypto", - "sp-core", + "sp-application-crypto 23.0.0", + "sp-core 21.0.0", "sp-keyring", "thiserror", "tracing-gum", @@ -11553,8 +11652,8 @@ dependencies = [ "sc-storage-monitor", "sc-sysinfo", "sc-tracing", - "sp-core", - "sp-io", + "sp-core 21.0.0", + "sp-io 23.0.0", "sp-keyring", "sp-maybe-compressed-blob", "substrate-build-script-utils", @@ -11579,14 +11678,14 @@ dependencies = [ "polkadot-node-subsystem", "polkadot-node-subsystem-test-helpers", "polkadot-node-subsystem-util", - "polkadot-primitives", + "polkadot-primitives 1.0.0", "polkadot-primitives-test-helpers", "sc-keystore", "sc-network", - "sp-core", + "sp-core 21.0.0", "sp-keyring", - "sp-keystore", - "sp-runtime", + "sp-keystore 0.27.0", + "sp-runtime 24.0.0", "thiserror", "tokio-util", "tracing-gum", @@ -11598,9 +11697,22 @@ version = "1.0.0" dependencies = [ "parity-scale-codec", "scale-info", - "sp-core", - "sp-runtime", - "sp-std", + "sp-core 21.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", +] + +[[package]] +name = "polkadot-core-primitives" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "960aeac8618063cd9eca2a3551a92234a4c9007a970df7bf61d6fc2f9b4b85ff" +dependencies = [ + "parity-scale-codec", + "scale-info", + "sp-core 23.0.0", + "sp-runtime 26.0.0", + "sp-std 10.0.0", ] [[package]] @@ -11623,15 +11735,15 @@ dependencies = [ "polkadot-node-subsystem", "polkadot-node-subsystem-test-helpers", "polkadot-node-subsystem-util", - "polkadot-primitives", + "polkadot-primitives 1.0.0", "polkadot-primitives-test-helpers", "sc-keystore", "sc-network", "schnellru", - "sp-application-crypto", + "sp-application-crypto 23.0.0", "sp-keyring", - "sp-keystore", - "sp-tracing", + "sp-keystore 0.27.0", + "sp-tracing 10.0.0", "thiserror", "tracing-gum", ] @@ -11643,10 +11755,10 @@ dependencies = [ "criterion 0.4.0", "parity-scale-codec", "polkadot-node-primitives", - "polkadot-primitives", + "polkadot-primitives 1.0.0", "reed-solomon-novelpoly", - "sp-core", - "sp-trie", + "sp-core 21.0.0", + "sp-trie 22.0.0", "thiserror", ] @@ -11663,18 +11775,18 @@ dependencies = [ "polkadot-node-subsystem", "polkadot-node-subsystem-test-helpers", "polkadot-node-subsystem-util", - "polkadot-primitives", + "polkadot-primitives 1.0.0", "rand 0.8.5", "rand_chacha 0.3.1", "sc-network", "sc-network-common", - "sp-application-crypto", - "sp-authority-discovery", + "sp-application-crypto 23.0.0", + "sp-authority-discovery 4.0.0-dev", "sp-consensus-babe", - "sp-core", + "sp-core 21.0.0", "sp-keyring", - "sp-keystore", - "sp-tracing", + "sp-keystore 0.27.0", + "sp-tracing 10.0.0", "tracing-gum", ] @@ -11697,11 +11809,11 @@ dependencies = [ "polkadot-node-subsystem-test-helpers", "polkadot-node-subsystem-util", "polkadot-overseer", - "polkadot-primitives", + "polkadot-primitives 1.0.0", "polkadot-primitives-test-helpers", "sc-network", "sp-consensus", - "sp-core", + "sp-core 21.0.0", "sp-keyring", "thiserror", "tracing-gum", @@ -11719,9 +11831,9 @@ dependencies = [ "polkadot-node-subsystem", "polkadot-node-subsystem-test-helpers", "polkadot-node-subsystem-util", - "polkadot-primitives", + "polkadot-primitives 1.0.0", "polkadot-primitives-test-helpers", - "sp-core", + "sp-core 21.0.0", "sp-keyring", "sp-maybe-compressed-blob", "thiserror", @@ -11749,20 +11861,20 @@ dependencies = [ "polkadot-node-subsystem-test-helpers", "polkadot-node-subsystem-util", "polkadot-overseer", - "polkadot-primitives", + "polkadot-primitives 1.0.0", "polkadot-primitives-test-helpers", "rand_core 0.5.1", "sc-keystore", "schnellru", "schnorrkel 0.9.1", - "sp-application-crypto", + "sp-application-crypto 23.0.0", "sp-consensus", "sp-consensus-babe", - "sp-consensus-slots", - "sp-core", + "sp-consensus-slots 0.10.0-dev", + "sp-core 21.0.0", "sp-keyring", - "sp-keystore", - "sp-runtime", + "sp-keystore 0.27.0", + "sp-runtime 24.0.0", "thiserror", "tracing-gum", ] @@ -11788,10 +11900,10 @@ dependencies = [ "polkadot-node-subsystem-test-helpers", "polkadot-node-subsystem-util", "polkadot-overseer", - "polkadot-primitives", + "polkadot-primitives 1.0.0", "polkadot-primitives-test-helpers", "sp-consensus", - "sp-core", + "sp-core 21.0.0", "sp-keyring", "thiserror", "tracing-gum", @@ -11810,15 +11922,15 @@ dependencies = [ "polkadot-node-subsystem", "polkadot-node-subsystem-test-helpers", "polkadot-node-subsystem-util", - "polkadot-primitives", + "polkadot-primitives 1.0.0", "polkadot-primitives-test-helpers", "polkadot-statement-table", "sc-keystore", - "sp-application-crypto", - "sp-core", + "sp-application-crypto 23.0.0", + "sp-core 21.0.0", "sp-keyring", - "sp-keystore", - "sp-tracing", + "sp-keystore 0.27.0", + "sp-tracing 10.0.0", "thiserror", "tracing-gum", ] @@ -11831,9 +11943,9 @@ dependencies = [ "polkadot-node-subsystem", "polkadot-node-subsystem-test-helpers", "polkadot-node-subsystem-util", - "polkadot-primitives", + "polkadot-primitives 1.0.0", "polkadot-primitives-test-helpers", - "sp-keystore", + "sp-keystore 0.27.0", "thiserror", "tracing-gum", "wasm-timer", @@ -11855,10 +11967,10 @@ dependencies = [ "polkadot-node-subsystem-test-helpers", "polkadot-node-subsystem-util", "polkadot-overseer", - "polkadot-parachain-primitives", - "polkadot-primitives", + "polkadot-parachain-primitives 1.0.0", + "polkadot-primitives 1.0.0", "polkadot-primitives-test-helpers", - "sp-core", + "sp-core 21.0.0", "sp-keyring", "sp-maybe-compressed-blob", "tracing-gum", @@ -11875,11 +11987,11 @@ dependencies = [ "polkadot-node-primitives", "polkadot-node-subsystem", "polkadot-node-subsystem-test-helpers", - "polkadot-primitives", + "polkadot-primitives 1.0.0", "sc-client-api", "sc-consensus-babe", "sp-blockchain", - "sp-core", + "sp-core 21.0.0", "tracing-gum", ] @@ -11898,8 +12010,8 @@ dependencies = [ "polkadot-node-subsystem", "polkadot-node-subsystem-test-helpers", "polkadot-node-subsystem-util", - "polkadot-primitives", - "sp-core", + "polkadot-primitives 1.0.0", + "sp-core 21.0.0", "thiserror", "tracing-gum", ] @@ -11919,15 +12031,15 @@ dependencies = [ "polkadot-node-subsystem", "polkadot-node-subsystem-test-helpers", "polkadot-node-subsystem-util", - "polkadot-primitives", + "polkadot-primitives 1.0.0", "polkadot-primitives-test-helpers", "sc-keystore", "schnellru", - "sp-application-crypto", - "sp-core", + "sp-application-crypto 23.0.0", + "sp-core 21.0.0", "sp-keyring", - "sp-keystore", - "sp-tracing", + "sp-keystore 0.27.0", + "sp-tracing 10.0.0", "thiserror", "tracing-gum", ] @@ -11941,9 +12053,9 @@ dependencies = [ "futures-timer", "polkadot-node-subsystem", "polkadot-overseer", - "polkadot-primitives", + "polkadot-primitives 1.0.0", "sp-blockchain", - "sp-inherents", + "sp-inherents 4.0.0-dev", "thiserror", "tracing-gum", ] @@ -11962,13 +12074,13 @@ dependencies = [ "polkadot-node-subsystem-test-helpers", "polkadot-node-subsystem-types", "polkadot-node-subsystem-util", - "polkadot-primitives", + "polkadot-primitives 1.0.0", "polkadot-primitives-test-helpers", "sc-keystore", - "sp-application-crypto", - "sp-core", + "sp-application-crypto 23.0.0", + "sp-core 21.0.0", "sp-keyring", - "sp-keystore", + "sp-keystore 0.27.0", "thiserror", "tracing-gum", ] @@ -11985,10 +12097,10 @@ dependencies = [ "polkadot-node-subsystem", "polkadot-node-subsystem-test-helpers", "polkadot-node-subsystem-util", - "polkadot-primitives", + "polkadot-primitives 1.0.0", "polkadot-primitives-test-helpers", - "sp-application-crypto", - "sp-keystore", + "sp-application-crypto 23.0.0", + "sp-keystore 0.27.0", "thiserror", "tracing-gum", ] @@ -12005,20 +12117,20 @@ dependencies = [ "libc", "parity-scale-codec", "pin-project", - "polkadot-core-primitives", + "polkadot-core-primitives 1.0.0", "polkadot-node-core-pvf", "polkadot-node-core-pvf-common", "polkadot-node-core-pvf-execute-worker", "polkadot-node-core-pvf-prepare-worker", "polkadot-node-metrics", "polkadot-node-primitives", - "polkadot-parachain-primitives", - "polkadot-primitives", + "polkadot-parachain-primitives 1.0.0", + "polkadot-primitives 1.0.0", "rand 0.8.5", "slotmap", - "sp-core", + "sp-core 21.0.0", "sp-maybe-compressed-blob", - "sp-wasm-interface", + "sp-wasm-interface 14.0.0", "substrate-build-script-utils", "tempfile", "test-parachain-adder", @@ -12038,14 +12150,14 @@ dependencies = [ "polkadot-node-subsystem-test-helpers", "polkadot-node-subsystem-util", "polkadot-overseer", - "polkadot-primitives", + "polkadot-primitives 1.0.0", "polkadot-primitives-test-helpers", "sc-keystore", - "sp-application-crypto", - "sp-core", + "sp-application-crypto 23.0.0", + "sp-core 21.0.0", "sp-keyring", - "sp-keystore", - "sp-runtime", + "sp-keystore 0.27.0", + "sp-runtime 24.0.0", "thiserror", "tracing-gum", ] @@ -12060,15 +12172,15 @@ dependencies = [ "landlock", "libc", "parity-scale-codec", - "polkadot-parachain-primitives", - "polkadot-primitives", + "polkadot-parachain-primitives 1.0.0", + "polkadot-primitives 1.0.0", "sc-executor", "sc-executor-common", "sc-executor-wasmtime", - "sp-core", - "sp-externalities", - "sp-io", - "sp-tracing", + "sp-core 21.0.0", + "sp-externalities 0.19.0", + "sp-io 23.0.0", + "sp-tracing 10.0.0", "tempfile", "tokio", "tracing-gum", @@ -12082,12 +12194,12 @@ dependencies = [ "futures", "parity-scale-codec", "polkadot-node-core-pvf-common", - "polkadot-parachain-primitives", - "polkadot-primitives", + "polkadot-parachain-primitives 1.0.0", + "polkadot-primitives 1.0.0", "rayon", - "sp-core", + "sp-core 21.0.0", "sp-maybe-compressed-blob", - "sp-tracing", + "sp-tracing 10.0.0", "tokio", "tracing-gum", ] @@ -12100,15 +12212,15 @@ dependencies = [ "libc", "parity-scale-codec", "polkadot-node-core-pvf-common", - "polkadot-parachain-primitives", - "polkadot-primitives", + "polkadot-parachain-primitives 1.0.0", + "polkadot-primitives 1.0.0", "rayon", "sc-executor", "sc-executor-common", "sc-executor-wasmtime", - "sp-io", + "sp-io 23.0.0", "sp-maybe-compressed-blob", - "sp-tracing", + "sp-tracing 10.0.0", "tikv-jemalloc-ctl", "tokio", "tracing-gum", @@ -12125,12 +12237,12 @@ dependencies = [ "polkadot-node-subsystem", "polkadot-node-subsystem-test-helpers", "polkadot-node-subsystem-types", - "polkadot-primitives", + "polkadot-primitives 1.0.0", "polkadot-primitives-test-helpers", "schnellru", - "sp-api", + "sp-api 4.0.0-dev", "sp-consensus-babe", - "sp-core", + "sp-core 21.0.0", "sp-keyring", "tracing-gum", ] @@ -12145,9 +12257,9 @@ dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", "polkadot-node-primitives", - "polkadot-primitives", + "polkadot-primitives 1.0.0", "sc-network", - "sp-core", + "sp-core 21.0.0", "thiserror", "tokio", ] @@ -12163,7 +12275,7 @@ dependencies = [ "hyper", "log", "parity-scale-codec", - "polkadot-primitives", + "polkadot-primitives 1.0.0", "polkadot-test-service", "prioritized-metered-channel", "prometheus-parse", @@ -12192,7 +12304,7 @@ dependencies = [ "parity-scale-codec", "polkadot-node-jaeger", "polkadot-node-primitives", - "polkadot-primitives", + "polkadot-primitives 1.0.0", "rand 0.8.5", "rand_chacha 0.3.1", "sc-authority-discovery", @@ -12210,16 +12322,16 @@ dependencies = [ "futures", "parity-scale-codec", "polkadot-erasure-coding", - "polkadot-parachain-primitives", - "polkadot-primitives", + "polkadot-parachain-primitives 1.0.0", + "polkadot-primitives 1.0.0", "schnorrkel 0.9.1", "serde", - "sp-application-crypto", + "sp-application-crypto 23.0.0", "sp-consensus-babe", - "sp-core", - "sp-keystore", + "sp-core 21.0.0", + "sp-keystore 0.27.0", "sp-maybe-compressed-blob", - "sp-runtime", + "sp-runtime 24.0.0", "thiserror", "zstd 0.12.4", ] @@ -12242,14 +12354,14 @@ dependencies = [ "parking_lot 0.12.1", "polkadot-node-subsystem", "polkadot-node-subsystem-util", - "polkadot-primitives", + "polkadot-primitives 1.0.0", "sc-client-api", "sc-keystore", "sc-utils", - "sp-application-crypto", - "sp-core", + "sp-application-crypto 23.0.0", + "sp-core 21.0.0", "sp-keyring", - "sp-keystore", + "sp-keystore 0.27.0", ] [[package]] @@ -12263,14 +12375,14 @@ dependencies = [ "polkadot-node-jaeger", "polkadot-node-network-protocol", "polkadot-node-primitives", - "polkadot-primitives", + "polkadot-primitives 1.0.0", "polkadot-statement-table", "sc-client-api", "sc-network", "sc-transaction-pool-api", "smallvec", - "sp-api", - "sp-authority-discovery", + "sp-api 4.0.0-dev", + "sp-authority-discovery 4.0.0-dev", "sp-consensus-babe", "substrate-prometheus-endpoint", "thiserror", @@ -12305,15 +12417,15 @@ dependencies = [ "polkadot-node-subsystem-test-helpers", "polkadot-node-subsystem-types", "polkadot-overseer", - "polkadot-primitives", + "polkadot-primitives 1.0.0", "polkadot-primitives-test-helpers", "prioritized-metered-channel", "rand 0.8.5", "sc-client-api", "schnellru", - "sp-application-crypto", - "sp-core", - "sp-keystore", + "sp-application-crypto 23.0.0", + "sp-core 21.0.0", + "sp-keystore 0.27.0", "tempfile", "thiserror", "tracing-gum", @@ -12335,13 +12447,13 @@ dependencies = [ "polkadot-node-primitives", "polkadot-node-subsystem-test-helpers", "polkadot-node-subsystem-types", - "polkadot-primitives", + "polkadot-primitives 1.0.0", "polkadot-primitives-test-helpers", "prioritized-metered-channel", "sc-client-api", "schnellru", - "sp-api", - "sp-core", + "sp-api 4.0.0-dev", + "sp-core 21.0.0", "tikv-jemalloc-ctl", "tracing-gum", ] @@ -12369,6 +12481,7 @@ dependencies = [ "cumulus-client-consensus-proposer", "cumulus-client-consensus-relay-chain", "cumulus-client-service", + "cumulus-primitives-aura 0.2.0", "cumulus-primitives-core", "cumulus-primitives-parachain-inherent", "cumulus-relay-chain-interface", @@ -12385,7 +12498,7 @@ dependencies = [ "parity-scale-codec", "penpal-runtime", "polkadot-cli", - "polkadot-primitives", + "polkadot-primitives 1.0.0", "polkadot-service", "rococo-parachain-runtime", "sc-basic-authorship", @@ -12407,17 +12520,17 @@ dependencies = [ "serde", "serde_json", "shell-runtime", - "sp-api", + "sp-api 4.0.0-dev", "sp-block-builder", "sp-blockchain", - "sp-consensus-aura", - "sp-core", - "sp-io", - "sp-keystore", + "sp-consensus-aura 0.10.0-dev", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-keystore 0.27.0", "sp-offchain", - "sp-runtime", + "sp-runtime 24.0.0", "sp-session", - "sp-timestamp", + "sp-timestamp 4.0.0-dev", "sp-transaction-pool", "staging-xcm", "substrate-build-script-utils", @@ -12435,14 +12548,32 @@ version = "1.0.0" dependencies = [ "bounded-collections", "derive_more", - "frame-support", + "frame-support 4.0.0-dev", "parity-scale-codec", - "polkadot-core-primitives", + "polkadot-core-primitives 1.0.0", "scale-info", "serde", - "sp-core", - "sp-runtime", - "sp-std", + "sp-core 21.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", +] + +[[package]] +name = "polkadot-parachain-primitives" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8be23c13fd44bab7ed83eea35e1b68bcd21d61cbc6bb15451a8b0a00e627f0ab" +dependencies = [ + "bounded-collections", + "derive_more", + "frame-support 23.0.0", + "parity-scale-codec", + "polkadot-core-primitives 2.0.0", + "scale-info", + "serde", + "sp-core 23.0.0", + "sp-runtime 26.0.0", + "sp-std 10.0.0", ] [[package]] @@ -12454,7 +12585,7 @@ dependencies = [ "polkadot-erasure-coding", "polkadot-node-core-pvf-prepare-worker", "polkadot-node-primitives", - "polkadot-primitives", + "polkadot-primitives 1.0.0", "quote", "sc-executor-common", "sp-maybe-compressed-blob", @@ -12469,34 +12600,61 @@ dependencies = [ "bitvec", "hex-literal", "parity-scale-codec", - "polkadot-core-primitives", - "polkadot-parachain-primitives", + "polkadot-core-primitives 1.0.0", + "polkadot-parachain-primitives 1.0.0", + "scale-info", + "serde", + "sp-api 4.0.0-dev", + "sp-application-crypto 23.0.0", + "sp-arithmetic 16.0.0", + "sp-authority-discovery 4.0.0-dev", + "sp-consensus-slots 0.10.0-dev", + "sp-core 21.0.0", + "sp-inherents 4.0.0-dev", + "sp-io 23.0.0", + "sp-keystore 0.27.0", + "sp-runtime 24.0.0", + "sp-staking 4.0.0-dev", + "sp-std 8.0.0", +] + +[[package]] +name = "polkadot-primitives" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ce2c1568c0e0e40b24e8aa149c9194f692c9f9d1f999ab2024974bf47b9323bb" +dependencies = [ + "bitvec", + "hex-literal", + "parity-scale-codec", + "polkadot-core-primitives 2.0.0", + "polkadot-parachain-primitives 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "scale-info", "serde", - "sp-api", - "sp-application-crypto", - "sp-arithmetic", - "sp-authority-discovery", - "sp-consensus-slots", - "sp-core", - "sp-inherents", - "sp-io", - "sp-keystore", - "sp-runtime", - "sp-staking", - "sp-std", + "sp-api 21.0.0", + "sp-application-crypto 25.0.0", + "sp-arithmetic 18.0.0", + "sp-authority-discovery 21.0.0", + "sp-consensus-slots 0.27.0", + "sp-core 23.0.0", + "sp-inherents 21.0.0", + "sp-io 25.0.0", + "sp-keystore 0.29.0", + "sp-runtime 26.0.0", + "sp-staking 21.0.0", + "sp-std 10.0.0", ] [[package]] name = "polkadot-primitives-test-helpers" version = "1.0.0" dependencies = [ - "polkadot-primitives", + "polkadot-primitives 1.0.0", "rand 0.8.5", - "sp-application-crypto", - "sp-core", + "sp-application-crypto 23.0.0", + "sp-core 21.0.0", "sp-keyring", - "sp-runtime", + "sp-runtime 24.0.0", ] [[package]] @@ -12506,7 +12664,7 @@ dependencies = [ "jsonrpsee", "mmr-rpc", "pallet-transaction-payment-rpc", - "polkadot-primitives", + "polkadot-primitives 1.0.0", "sc-chain-spec", "sc-client-api", "sc-consensus-babe", @@ -12519,13 +12677,13 @@ dependencies = [ "sc-rpc", "sc-sync-state-rpc", "sc-transaction-pool-api", - "sp-api", + "sp-api 4.0.0-dev", "sp-block-builder", "sp-blockchain", "sp-consensus", "sp-consensus-babe", - "sp-keystore", - "sp-runtime", + "sp-keystore 0.27.0", + "sp-runtime 24.0.0", "substrate-frame-rpc-system", "substrate-state-trie-migration-rpc", ] @@ -12539,7 +12697,7 @@ dependencies = [ "frame-election-provider-support", "frame-executive", "frame-remote-externalities", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "frame-system-benchmarking", "frame-system-rpc-runtime-api", @@ -12592,7 +12750,7 @@ dependencies = [ "pallet-xcm", "pallet-xcm-benchmarks", "parity-scale-codec", - "polkadot-primitives", + "polkadot-primitives 1.0.0", "polkadot-runtime-common", "polkadot-runtime-constants", "polkadot-runtime-parachains", @@ -12603,28 +12761,28 @@ dependencies = [ "serde_derive", "serde_json", "smallvec", - "sp-api", - "sp-arithmetic", - "sp-authority-discovery", + "sp-api 4.0.0-dev", + "sp-arithmetic 16.0.0", + "sp-authority-discovery 4.0.0-dev", "sp-block-builder", "sp-consensus-babe", "sp-consensus-beefy", - "sp-core", - "sp-inherents", - "sp-io", + "sp-core 21.0.0", + "sp-inherents 4.0.0-dev", + "sp-io 23.0.0", "sp-keyring", "sp-mmr-primitives", "sp-npos-elections", "sp-offchain", - "sp-runtime", + "sp-runtime 24.0.0", "sp-session", - "sp-staking", - "sp-std", - "sp-storage", - "sp-tracing", + "sp-staking 4.0.0-dev", + "sp-std 8.0.0", + "sp-storage 13.0.0", + "sp-tracing 10.0.0", "sp-transaction-pool", - "sp-trie", - "sp-version", + "sp-trie 22.0.0", + "sp-version 22.0.0", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -12641,7 +12799,7 @@ dependencies = [ "bitvec", "frame-benchmarking", "frame-election-provider-support", - "frame-support", + "frame-support 4.0.0-dev", "frame-support-test", "frame-system", "hex-literal", @@ -12661,7 +12819,7 @@ dependencies = [ "pallet-treasury", "pallet-vesting", "parity-scale-codec", - "polkadot-primitives", + "polkadot-primitives 1.0.0", "polkadot-primitives-test-helpers", "polkadot-runtime-parachains", "rustc-hex", @@ -12670,17 +12828,17 @@ dependencies = [ "serde_derive", "serde_json", "slot-range-helper", - "sp-api", - "sp-core", - "sp-inherents", - "sp-io", + "sp-api 4.0.0-dev", + "sp-core 21.0.0", + "sp-inherents 4.0.0-dev", + "sp-io 23.0.0", "sp-keyring", - "sp-keystore", + "sp-keystore 0.27.0", "sp-npos-elections", - "sp-runtime", + "sp-runtime 24.0.0", "sp-session", - "sp-staking", - "sp-std", + "sp-staking 4.0.0-dev", + "sp-std 8.0.0", "staging-xcm", "static_assertions", ] @@ -12689,13 +12847,13 @@ dependencies = [ name = "polkadot-runtime-constants" version = "1.0.0" dependencies = [ - "frame-support", - "polkadot-primitives", + "frame-support 4.0.0-dev", + "polkadot-primitives 1.0.0", "polkadot-runtime-common", "smallvec", - "sp-core", - "sp-runtime", - "sp-weights", + "sp-core 21.0.0", + "sp-runtime 24.0.0", + "sp-weights 20.0.0", ] [[package]] @@ -12705,9 +12863,9 @@ dependencies = [ "bs58 0.5.0", "frame-benchmarking", "parity-scale-codec", - "polkadot-primitives", - "sp-std", - "sp-tracing", + "polkadot-primitives 1.0.0", + "sp-std 8.0.0", + "sp-tracing 10.0.0", ] [[package]] @@ -12719,7 +12877,7 @@ dependencies = [ "bitvec", "derive_more", "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "frame-support-test", "frame-system", "futures", @@ -12736,9 +12894,9 @@ dependencies = [ "pallet-timestamp", "pallet-vesting", "parity-scale-codec", - "polkadot-core-primitives", - "polkadot-parachain-primitives", - "polkadot-primitives", + "polkadot-core-primitives 1.0.0", + "polkadot-parachain-primitives 1.0.0", + "polkadot-primitives 1.0.0", "polkadot-primitives-test-helpers", "polkadot-runtime-metrics", "rand 0.8.5", @@ -12748,18 +12906,18 @@ dependencies = [ "scale-info", "serde", "serde_json", - "sp-api", - "sp-application-crypto", - "sp-core", - "sp-inherents", - "sp-io", + "sp-api 4.0.0-dev", + "sp-application-crypto 23.0.0", + "sp-core 21.0.0", + "sp-inherents 4.0.0-dev", + "sp-io 23.0.0", "sp-keyring", - "sp-keystore", - "sp-runtime", + "sp-keystore 0.27.0", + "sp-runtime 24.0.0", "sp-session", - "sp-staking", - "sp-std", - "sp-tracing", + "sp-staking 4.0.0-dev", + "sp-std 8.0.0", + "sp-tracing 10.0.0", "staging-xcm", "staging-xcm-executor", "static_assertions", @@ -12775,7 +12933,7 @@ dependencies = [ "env_logger 0.9.3", "frame-benchmarking", "frame-benchmarking-cli", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "frame-system-rpc-runtime-api", "futures", @@ -12797,7 +12955,7 @@ dependencies = [ "polkadot-availability-distribution", "polkadot-availability-recovery", "polkadot-collator-protocol", - "polkadot-core-primitives", + "polkadot-core-primitives 1.0.0", "polkadot-dispute-distribution", "polkadot-gossip-support", "polkadot-network-bridge", @@ -12823,8 +12981,8 @@ dependencies = [ "polkadot-node-subsystem-types", "polkadot-node-subsystem-util", "polkadot-overseer", - "polkadot-parachain-primitives", - "polkadot-primitives", + "polkadot-parachain-primitives 1.0.0", + "polkadot-primitives 1.0.0", "polkadot-rpc", "polkadot-runtime-parachains", "polkadot-statement-distribution", @@ -12858,29 +13016,29 @@ dependencies = [ "serde", "serde_json", "serial_test", - "sp-api", - "sp-authority-discovery", + "sp-api 4.0.0-dev", + "sp-authority-discovery 4.0.0-dev", "sp-block-builder", "sp-blockchain", "sp-consensus", "sp-consensus-babe", "sp-consensus-beefy", "sp-consensus-grandpa", - "sp-core", - "sp-inherents", - "sp-io", + "sp-core 21.0.0", + "sp-inherents 4.0.0-dev", + "sp-io 23.0.0", "sp-keyring", - "sp-keystore", + "sp-keystore 0.27.0", "sp-mmr-primitives", "sp-offchain", - "sp-runtime", + "sp-runtime 24.0.0", "sp-session", - "sp-state-machine", - "sp-storage", - "sp-timestamp", + "sp-state-machine 0.28.0", + "sp-storage 13.0.0", + "sp-timestamp 4.0.0-dev", "sp-transaction-pool", - "sp-version", - "sp-weights", + "sp-version 22.0.0", + "sp-weights 20.0.0", "substrate-prometheus-endpoint", "tempfile", "thiserror", @@ -12908,18 +13066,18 @@ dependencies = [ "polkadot-node-subsystem-test-helpers", "polkadot-node-subsystem-types", "polkadot-node-subsystem-util", - "polkadot-primitives", + "polkadot-primitives 1.0.0", "polkadot-primitives-test-helpers", "rand_chacha 0.3.1", "sc-keystore", "sc-network", - "sp-application-crypto", - "sp-authority-discovery", - "sp-core", + "sp-application-crypto 23.0.0", + "sp-authority-discovery 4.0.0-dev", + "sp-core 21.0.0", "sp-keyring", - "sp-keystore", - "sp-staking", - "sp-tracing", + "sp-keystore 0.27.0", + "sp-staking 4.0.0-dev", + "sp-tracing 10.0.0", "thiserror", "tracing-gum", ] @@ -12929,8 +13087,8 @@ name = "polkadot-statement-table" version = "1.0.0" dependencies = [ "parity-scale-codec", - "polkadot-primitives", - "sp-core", + "polkadot-primitives 1.0.0", + "sp-core 21.0.0", ] [[package]] @@ -12941,24 +13099,24 @@ dependencies = [ "futures", "parity-scale-codec", "polkadot-node-subsystem", - "polkadot-primitives", + "polkadot-primitives 1.0.0", "polkadot-test-runtime", "polkadot-test-service", "sc-block-builder", "sc-consensus", "sc-offchain", "sc-service", - "sp-api", + "sp-api 4.0.0-dev", "sp-blockchain", "sp-consensus", "sp-consensus-babe", - "sp-core", - "sp-inherents", - "sp-io", + "sp-core 21.0.0", + "sp-inherents 4.0.0-dev", + "sp-io 23.0.0", "sp-keyring", - "sp-runtime", - "sp-state-machine", - "sp-timestamp", + "sp-runtime 24.0.0", + "sp-state-machine 0.28.0", + "sp-timestamp 4.0.0-dev", "substrate-test-client", ] @@ -12985,10 +13143,10 @@ dependencies = [ "polkadot-node-subsystem-test-helpers", "polkadot-node-subsystem-types", "polkadot-node-subsystem-util", - "polkadot-primitives", + "polkadot-primitives 1.0.0", "rand 0.8.5", - "sp-core", - "sp-keystore", + "sp-core 21.0.0", + "sp-keystore 0.27.0", "substrate-build-script-utils", "tracing-gum", ] @@ -13000,7 +13158,7 @@ dependencies = [ "bitvec", "frame-election-provider-support", "frame-executive", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "frame-system-rpc-runtime-api", "hex-literal", @@ -13022,8 +13180,8 @@ dependencies = [ "pallet-vesting", "pallet-xcm", "parity-scale-codec", - "polkadot-parachain-primitives", - "polkadot-primitives", + "polkadot-parachain-primitives 1.0.0", + "polkadot-primitives 1.0.0", "polkadot-runtime-common", "polkadot-runtime-parachains", "rustc-hex", @@ -13032,24 +13190,24 @@ dependencies = [ "serde_derive", "serde_json", "smallvec", - "sp-api", - "sp-authority-discovery", + "sp-api 4.0.0-dev", + "sp-authority-discovery 4.0.0-dev", "sp-block-builder", "sp-consensus-babe", "sp-consensus-beefy", - "sp-core", - "sp-inherents", - "sp-io", + "sp-core 21.0.0", + "sp-inherents 4.0.0-dev", + "sp-io 23.0.0", "sp-keyring", "sp-mmr-primitives", "sp-offchain", - "sp-runtime", + "sp-runtime 24.0.0", "sp-session", - "sp-staking", - "sp-std", + "sp-staking 4.0.0-dev", + "sp-std 8.0.0", "sp-transaction-pool", - "sp-trie", - "sp-version", + "sp-trie 22.0.0", + "sp-version 22.0.0", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -13071,8 +13229,8 @@ dependencies = [ "polkadot-node-primitives", "polkadot-node-subsystem", "polkadot-overseer", - "polkadot-parachain-primitives", - "polkadot-primitives", + "polkadot-parachain-primitives 1.0.0", + "polkadot-primitives 1.0.0", "polkadot-rpc", "polkadot-runtime-common", "polkadot-runtime-parachains", @@ -13091,17 +13249,17 @@ dependencies = [ "sc-tracing", "sc-transaction-pool", "serde_json", - "sp-arithmetic", - "sp-authority-discovery", + "sp-arithmetic 16.0.0", + "sp-authority-discovery 4.0.0-dev", "sp-blockchain", "sp-consensus", "sp-consensus-babe", "sp-consensus-grandpa", - "sp-core", - "sp-inherents", + "sp-core 21.0.0", + "sp-inherents 4.0.0-dev", "sp-keyring", - "sp-runtime", - "sp-state-machine", + "sp-runtime 24.0.0", + "sp-state-machine 0.28.0", "substrate-test-client", "substrate-test-utils", "tempfile", @@ -13117,7 +13275,7 @@ dependencies = [ "clap 4.4.4", "generate-bags", "polkadot-runtime", - "sp-io", + "sp-io 23.0.0", "staging-kusama-runtime", "westend-runtime", ] @@ -13883,8 +14041,8 @@ dependencies = [ "pallet-bags-list-remote-tests", "polkadot-runtime", "polkadot-runtime-constants", - "sp-core", - "sp-tracing", + "sp-core 21.0.0", + "sp-tracing 10.0.0", "staging-kusama-runtime", "tokio", "westend-runtime", @@ -14032,7 +14190,7 @@ dependencies = [ "cumulus-primitives-utility", "frame-benchmarking", "frame-executive", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "frame-system-rpc-runtime-api", "pallet-assets", @@ -14046,19 +14204,19 @@ dependencies = [ "parachain-info", "parachains-common", "parity-scale-codec", - "polkadot-parachain-primitives", + "polkadot-parachain-primitives 1.0.0", "scale-info", - "sp-api", + "sp-api 4.0.0-dev", "sp-block-builder", - "sp-consensus-aura", - "sp-core", - "sp-inherents", + "sp-consensus-aura 0.10.0-dev", + "sp-core 21.0.0", + "sp-inherents 4.0.0-dev", "sp-offchain", - "sp-runtime", + "sp-runtime 24.0.0", "sp-session", - "sp-std", + "sp-std 8.0.0", "sp-transaction-pool", - "sp-version", + "sp-version 22.0.0", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -14073,7 +14231,7 @@ dependencies = [ "frame-benchmarking", "frame-executive", "frame-remote-externalities", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "frame-system-benchmarking", "frame-system-rpc-runtime-api", @@ -14120,8 +14278,8 @@ dependencies = [ "pallet-xcm", "pallet-xcm-benchmarks", "parity-scale-codec", - "polkadot-parachain-primitives", - "polkadot-primitives", + "polkadot-parachain-primitives 1.0.0", + "polkadot-primitives 1.0.0", "polkadot-runtime-common", "polkadot-runtime-parachains", "rococo-runtime-constants", @@ -14131,26 +14289,26 @@ dependencies = [ "serde_derive", "serde_json", "smallvec", - "sp-api", - "sp-authority-discovery", + "sp-api 4.0.0-dev", + "sp-authority-discovery 4.0.0-dev", "sp-block-builder", "sp-consensus-babe", "sp-consensus-beefy", - "sp-core", - "sp-inherents", - "sp-io", + "sp-core 21.0.0", + "sp-inherents 4.0.0-dev", + "sp-io 23.0.0", "sp-keyring", "sp-mmr-primitives", "sp-offchain", - "sp-runtime", + "sp-runtime 24.0.0", "sp-session", - "sp-staking", - "sp-std", - "sp-storage", - "sp-tracing", + "sp-staking 4.0.0-dev", + "sp-std 8.0.0", + "sp-storage 13.0.0", + "sp-tracing 10.0.0", "sp-transaction-pool", - "sp-trie", - "sp-version", + "sp-trie 22.0.0", + "sp-version 22.0.0", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -14164,13 +14322,13 @@ dependencies = [ name = "rococo-runtime-constants" version = "1.0.0" dependencies = [ - "frame-support", - "polkadot-primitives", + "frame-support 4.0.0-dev", + "polkadot-primitives 1.0.0", "polkadot-runtime-common", "smallvec", - "sp-core", - "sp-runtime", - "sp-weights", + "sp-core 21.0.0", + "sp-runtime 24.0.0", + "sp-weights 20.0.0", ] [[package]] @@ -14475,8 +14633,8 @@ name = "sc-allocator" version = "4.1.0-dev" dependencies = [ "log", - "sp-core", - "sp-wasm-interface", + "sp-core 21.0.0", + "sp-wasm-interface 14.0.0", "thiserror", ] @@ -14498,13 +14656,13 @@ dependencies = [ "rand 0.8.5", "sc-client-api", "sc-network", - "sp-api", - "sp-authority-discovery", + "sp-api 4.0.0-dev", + "sp-authority-discovery 4.0.0-dev", "sp-blockchain", - "sp-core", - "sp-keystore", - "sp-runtime", - "sp-tracing", + "sp-core 21.0.0", + "sp-keystore 0.27.0", + "sp-runtime 24.0.0", + "sp-tracing 10.0.0", "substrate-prometheus-endpoint", "substrate-test-runtime-client", "thiserror", @@ -14525,12 +14683,12 @@ dependencies = [ "sc-telemetry", "sc-transaction-pool", "sc-transaction-pool-api", - "sp-api", + "sp-api 4.0.0-dev", "sp-blockchain", "sp-consensus", - "sp-core", - "sp-inherents", - "sp-runtime", + "sp-core 21.0.0", + "sp-inherents 4.0.0-dev", + "sp-runtime 24.0.0", "substrate-prometheus-endpoint", "substrate-test-runtime-client", ] @@ -14541,13 +14699,13 @@ version = "0.10.0-dev" dependencies = [ "parity-scale-codec", "sc-client-api", - "sp-api", + "sp-api 4.0.0-dev", "sp-block-builder", "sp-blockchain", - "sp-core", - "sp-inherents", - "sp-runtime", - "sp-state-machine", + "sp-core 21.0.0", + "sp-inherents 4.0.0-dev", + "sp-runtime 24.0.0", + "sp-state-machine 0.28.0", "substrate-test-runtime-client", ] @@ -14564,9 +14722,9 @@ dependencies = [ "serde", "serde_json", "sp-blockchain", - "sp-core", - "sp-runtime", - "sp-state-machine", + "sp-core 21.0.0", + "sp-runtime 24.0.0", + "sp-state-machine 0.28.0", ] [[package]] @@ -14607,13 +14765,13 @@ dependencies = [ "serde", "serde_json", "sp-blockchain", - "sp-core", + "sp-core 21.0.0", "sp-keyring", - "sp-keystore", - "sp-panic-handler", - "sp-runtime", - "sp-tracing", - "sp-version", + "sp-keystore 0.27.0", + "sp-panic-handler 8.0.0", + "sp-runtime 24.0.0", + "sp-tracing 10.0.0", + "sp-version 22.0.0", "tempfile", "thiserror", "tiny-bip39", @@ -14632,18 +14790,18 @@ dependencies = [ "sc-executor", "sc-transaction-pool-api", "sc-utils", - "sp-api", + "sp-api 4.0.0-dev", "sp-blockchain", "sp-consensus", - "sp-core", + "sp-core 21.0.0", "sp-database", - "sp-externalities", - "sp-runtime", - "sp-state-machine", + "sp-externalities 0.19.0", + "sp-runtime 24.0.0", + "sp-state-machine 0.28.0", "sp-statement-store", - "sp-storage", + "sp-storage 13.0.0", "sp-test-primitives", - "sp-trie", + "sp-trie 22.0.0", "substrate-prometheus-endpoint", "substrate-test-runtime", "thiserror", @@ -14670,14 +14828,14 @@ dependencies = [ "sc-client-api", "sc-state-db", "schnellru", - "sp-arithmetic", + "sp-arithmetic 16.0.0", "sp-blockchain", - "sp-core", + "sp-core 21.0.0", "sp-database", - "sp-runtime", - "sp-state-machine", - "sp-tracing", - "sp-trie", + "sp-runtime 24.0.0", + "sp-state-machine 0.28.0", + "sp-tracing 10.0.0", + "sp-trie 22.0.0", "substrate-test-runtime-client", "tempfile", ] @@ -14696,12 +14854,12 @@ dependencies = [ "sc-client-api", "sc-utils", "serde", - "sp-api", + "sp-api 4.0.0-dev", "sp-blockchain", "sp-consensus", - "sp-core", - "sp-runtime", - "sp-state-machine", + "sp-core 21.0.0", + "sp-runtime 24.0.0", + "sp-state-machine 0.28.0", "sp-test-primitives", "substrate-prometheus-endpoint", "thiserror", @@ -14724,20 +14882,20 @@ dependencies = [ "sc-network", "sc-network-test", "sc-telemetry", - "sp-api", - "sp-application-crypto", + "sp-api 4.0.0-dev", + "sp-application-crypto 23.0.0", "sp-block-builder", "sp-blockchain", "sp-consensus", - "sp-consensus-aura", - "sp-consensus-slots", - "sp-core", - "sp-inherents", + "sp-consensus-aura 0.10.0-dev", + "sp-consensus-slots 0.10.0-dev", + "sp-core 21.0.0", + "sp-inherents 4.0.0-dev", "sp-keyring", - "sp-keystore", - "sp-runtime", - "sp-timestamp", - "sp-tracing", + "sp-keystore 0.27.0", + "sp-runtime 24.0.0", + "sp-timestamp 4.0.0-dev", + "sp-tracing 10.0.0", "substrate-prometheus-endpoint", "substrate-test-runtime-client", "tempfile", @@ -14766,20 +14924,20 @@ dependencies = [ "sc-network-test", "sc-telemetry", "sc-transaction-pool-api", - "sp-api", - "sp-application-crypto", + "sp-api 4.0.0-dev", + "sp-application-crypto 23.0.0", "sp-block-builder", "sp-blockchain", "sp-consensus", "sp-consensus-babe", - "sp-consensus-slots", - "sp-core", - "sp-inherents", + "sp-consensus-slots 0.10.0-dev", + "sp-core 21.0.0", + "sp-inherents 4.0.0-dev", "sp-keyring", - "sp-keystore", - "sp-runtime", - "sp-timestamp", - "sp-tracing", + "sp-keystore 0.27.0", + "sp-runtime 24.0.0", + "sp-timestamp 4.0.0-dev", + "sp-tracing 10.0.0", "substrate-prometheus-endpoint", "substrate-test-runtime-client", "thiserror", @@ -14800,15 +14958,15 @@ dependencies = [ "sc-transaction-pool-api", "serde", "serde_json", - "sp-api", - "sp-application-crypto", + "sp-api 4.0.0-dev", + "sp-application-crypto 23.0.0", "sp-blockchain", "sp-consensus", "sp-consensus-babe", - "sp-core", + "sp-core 21.0.0", "sp-keyring", - "sp-keystore", - "sp-runtime", + "sp-keystore 0.27.0", + "sp-runtime 24.0.0", "substrate-test-runtime-client", "thiserror", "tokio", @@ -14835,19 +14993,19 @@ dependencies = [ "sc-network-test", "sc-utils", "serde", - "sp-api", - "sp-application-crypto", - "sp-arithmetic", + "sp-api 4.0.0-dev", + "sp-application-crypto 23.0.0", + "sp-arithmetic 16.0.0", "sp-blockchain", "sp-consensus", "sp-consensus-beefy", "sp-consensus-grandpa", - "sp-core", + "sp-core 21.0.0", "sp-keyring", - "sp-keystore", + "sp-keystore 0.27.0", "sp-mmr-primitives", - "sp-runtime", - "sp-tracing", + "sp-runtime 24.0.0", + "sp-tracing 10.0.0", "substrate-prometheus-endpoint", "substrate-test-runtime-client", "tempfile", @@ -14870,8 +15028,8 @@ dependencies = [ "serde", "serde_json", "sp-consensus-beefy", - "sp-core", - "sp-runtime", + "sp-core 21.0.0", + "sp-runtime 24.0.0", "substrate-test-runtime-client", "thiserror", "tokio", @@ -14886,7 +15044,7 @@ dependencies = [ "sc-client-api", "sc-consensus", "sp-blockchain", - "sp-runtime", + "sp-runtime 24.0.0", ] [[package]] @@ -14919,17 +15077,17 @@ dependencies = [ "sc-utils", "serde", "serde_json", - "sp-api", - "sp-application-crypto", - "sp-arithmetic", + "sp-api 4.0.0-dev", + "sp-application-crypto 23.0.0", + "sp-arithmetic 16.0.0", "sp-blockchain", "sp-consensus", "sp-consensus-grandpa", - "sp-core", + "sp-core 21.0.0", "sp-keyring", - "sp-keystore", - "sp-runtime", - "sp-tracing", + "sp-keystore 0.27.0", + "sp-runtime 24.0.0", + "sp-tracing 10.0.0", "substrate-prometheus-endpoint", "substrate-test-runtime-client", "thiserror", @@ -14952,9 +15110,9 @@ dependencies = [ "serde", "sp-blockchain", "sp-consensus-grandpa", - "sp-core", + "sp-core 21.0.0", "sp-keyring", - "sp-runtime", + "sp-runtime 24.0.0", "substrate-test-runtime-client", "thiserror", "tokio", @@ -14980,17 +15138,17 @@ dependencies = [ "sc-transaction-pool", "sc-transaction-pool-api", "serde", - "sp-api", + "sp-api 4.0.0-dev", "sp-blockchain", "sp-consensus", - "sp-consensus-aura", + "sp-consensus-aura 0.10.0-dev", "sp-consensus-babe", - "sp-consensus-slots", - "sp-core", - "sp-inherents", - "sp-keystore", - "sp-runtime", - "sp-timestamp", + "sp-consensus-slots 0.10.0-dev", + "sp-core 21.0.0", + "sp-inherents 4.0.0-dev", + "sp-keystore 0.27.0", + "sp-runtime 24.0.0", + "sp-timestamp 4.0.0-dev", "substrate-prometheus-endpoint", "substrate-test-runtime-client", "substrate-test-runtime-transaction-pool", @@ -15010,14 +15168,14 @@ dependencies = [ "parking_lot 0.12.1", "sc-client-api", "sc-consensus", - "sp-api", + "sp-api 4.0.0-dev", "sp-block-builder", "sp-blockchain", "sp-consensus", "sp-consensus-pow", - "sp-core", - "sp-inherents", - "sp-runtime", + "sp-core 21.0.0", + "sp-inherents 4.0.0-dev", + "sp-runtime 24.0.0", "substrate-prometheus-endpoint", "thiserror", ] @@ -15034,14 +15192,14 @@ dependencies = [ "sc-client-api", "sc-consensus", "sc-telemetry", - "sp-arithmetic", + "sp-arithmetic 16.0.0", "sp-blockchain", "sp-consensus", - "sp-consensus-slots", - "sp-core", - "sp-inherents", - "sp-runtime", - "sp-state-machine", + "sp-consensus-slots 0.10.0-dev", + "sp-core 21.0.0", + "sp-inherents 4.0.0-dev", + "sp-runtime 24.0.0", + "sp-state-machine 0.28.0", "substrate-test-runtime-client", ] @@ -15063,19 +15221,19 @@ dependencies = [ "sc-runtime-test", "sc-tracing", "schnellru", - "sp-api", - "sp-core", - "sp-externalities", - "sp-io", + "sp-api 4.0.0-dev", + "sp-core 21.0.0", + "sp-externalities 0.19.0", + "sp-io 23.0.0", "sp-maybe-compressed-blob", - "sp-panic-handler", - "sp-runtime", - "sp-runtime-interface", - "sp-state-machine", - "sp-tracing", - "sp-trie", - "sp-version", - "sp-wasm-interface", + "sp-panic-handler 8.0.0", + "sp-runtime 24.0.0", + "sp-runtime-interface 17.0.0", + "sp-state-machine 0.28.0", + "sp-tracing 10.0.0", + "sp-trie 22.0.0", + "sp-version 22.0.0", + "sp-wasm-interface 14.0.0", "substrate-test-runtime", "tempfile", "tracing", @@ -15089,7 +15247,7 @@ version = "0.10.0-dev" dependencies = [ "sc-allocator", "sp-maybe-compressed-blob", - "sp-wasm-interface", + "sp-wasm-interface 14.0.0", "thiserror", "wasm-instrument 0.3.0", ] @@ -15109,9 +15267,9 @@ dependencies = [ "sc-allocator", "sc-executor-common", "sc-runtime-test", - "sp-io", - "sp-runtime-interface", - "sp-wasm-interface", + "sp-io 23.0.0", + "sp-runtime-interface 17.0.0", + "sp-wasm-interface 14.0.0", "tempfile", "wasmtime", "wat", @@ -15129,7 +15287,7 @@ dependencies = [ "sc-network", "sc-network-common", "sp-blockchain", - "sp-runtime", + "sp-runtime 24.0.0", ] [[package]] @@ -15139,9 +15297,9 @@ dependencies = [ "array-bytes", "parking_lot 0.12.1", "serde_json", - "sp-application-crypto", - "sp-core", - "sp-keystore", + "sp-application-crypto 23.0.0", + "sp-core 21.0.0", + "sp-keystore 0.27.0", "tempfile", "thiserror", ] @@ -15179,12 +15337,12 @@ dependencies = [ "serde", "serde_json", "smallvec", - "sp-arithmetic", + "sp-arithmetic 16.0.0", "sp-blockchain", - "sp-core", - "sp-runtime", + "sp-core 21.0.0", + "sp-runtime 24.0.0", "sp-test-primitives", - "sp-tracing", + "sp-tracing 10.0.0", "substrate-prometheus-endpoint", "substrate-test-runtime", "substrate-test-runtime-client", @@ -15215,8 +15373,8 @@ dependencies = [ "sc-network", "sp-blockchain", "sp-consensus", - "sp-core", - "sp-runtime", + "sp-core 21.0.0", + "sp-runtime 24.0.0", "substrate-test-runtime", "substrate-test-runtime-client", "thiserror", @@ -15237,7 +15395,7 @@ dependencies = [ "sc-consensus", "sp-consensus", "sp-consensus-grandpa", - "sp-runtime", + "sp-runtime 24.0.0", "tempfile", ] @@ -15254,7 +15412,7 @@ dependencies = [ "sc-network", "sc-network-common", "schnellru", - "sp-runtime", + "sp-runtime 24.0.0", "substrate-prometheus-endpoint", "substrate-test-runtime-client", "tokio", @@ -15276,8 +15434,8 @@ dependencies = [ "sc-client-api", "sc-network", "sp-blockchain", - "sp-core", - "sp-runtime", + "sp-core 21.0.0", + "sp-runtime 24.0.0", "thiserror", ] @@ -15323,14 +15481,14 @@ dependencies = [ "sc-utils", "schnellru", "smallvec", - "sp-arithmetic", + "sp-arithmetic 16.0.0", "sp-blockchain", "sp-consensus", "sp-consensus-grandpa", - "sp-core", - "sp-runtime", + "sp-core 21.0.0", + "sp-runtime 24.0.0", "sp-test-primitives", - "sp-tracing", + "sp-tracing 10.0.0", "substrate-prometheus-endpoint", "substrate-test-runtime-client", "thiserror", @@ -15359,9 +15517,9 @@ dependencies = [ "sc-utils", "sp-blockchain", "sp-consensus", - "sp-core", - "sp-runtime", - "sp-tracing", + "sp-core 21.0.0", + "sp-runtime 24.0.0", + "sp-tracing 10.0.0", "substrate-test-runtime", "substrate-test-runtime-client", "tokio", @@ -15380,7 +15538,7 @@ dependencies = [ "sc-network-common", "sc-utils", "sp-consensus", - "sp-runtime", + "sp-runtime 24.0.0", "substrate-prometheus-endpoint", ] @@ -15411,14 +15569,14 @@ dependencies = [ "sc-transaction-pool", "sc-transaction-pool-api", "sc-utils", - "sp-api", + "sp-api 4.0.0-dev", "sp-consensus", - "sp-core", - "sp-externalities", - "sp-keystore", + "sp-core 21.0.0", + "sp-externalities 0.19.0", + "sp-keystore 0.27.0", "sp-offchain", - "sp-runtime", - "sp-tracing", + "sp-runtime 24.0.0", + "sp-tracing 10.0.0", "substrate-test-runtime-client", "threadpool", "tokio", @@ -15456,18 +15614,18 @@ dependencies = [ "sc-transaction-pool-api", "sc-utils", "serde_json", - "sp-api", + "sp-api 4.0.0-dev", "sp-blockchain", "sp-consensus", - "sp-core", - "sp-io", - "sp-keystore", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-keystore 0.27.0", "sp-offchain", "sp-rpc", - "sp-runtime", + "sp-runtime 24.0.0", "sp-session", "sp-statement-store", - "sp-version", + "sp-version 22.0.0", "substrate-test-runtime-client", "tokio", ] @@ -15483,10 +15641,10 @@ dependencies = [ "scale-info", "serde", "serde_json", - "sp-core", + "sp-core 21.0.0", "sp-rpc", - "sp-runtime", - "sp-version", + "sp-runtime 24.0.0", + "sp-version 22.0.0", "thiserror", ] @@ -15526,13 +15684,13 @@ dependencies = [ "sc-utils", "serde", "serde_json", - "sp-api", + "sp-api 4.0.0-dev", "sp-blockchain", "sp-consensus", - "sp-core", + "sp-core 21.0.0", "sp-maybe-compressed-blob", - "sp-runtime", - "sp-version", + "sp-runtime 24.0.0", + "sp-version 22.0.0", "substrate-test-runtime", "substrate-test-runtime-client", "thiserror", @@ -15544,11 +15702,11 @@ dependencies = [ name = "sc-runtime-test" version = "2.0.0" dependencies = [ - "sp-core", - "sp-io", - "sp-runtime", - "sp-runtime-interface", - "sp-std", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-runtime-interface 17.0.0", + "sp-std 8.0.0", "substrate-wasm-builder", ] @@ -15592,20 +15750,20 @@ dependencies = [ "sc-utils", "serde", "serde_json", - "sp-api", + "sp-api 4.0.0-dev", "sp-blockchain", "sp-consensus", - "sp-core", - "sp-externalities", - "sp-keystore", - "sp-runtime", + "sp-core 21.0.0", + "sp-externalities 0.19.0", + "sp-keystore 0.27.0", + "sp-runtime 24.0.0", "sp-session", - "sp-state-machine", - "sp-storage", + "sp-state-machine 0.28.0", + "sp-storage 13.0.0", "sp-transaction-pool", "sp-transaction-storage-proof", - "sp-trie", - "sp-version", + "sp-trie 22.0.0", + "sp-version 22.0.0", "static_init 1.0.3", "substrate-prometheus-endpoint", "substrate-test-runtime", @@ -15637,16 +15795,16 @@ dependencies = [ "sc-network-sync", "sc-service", "sc-transaction-pool-api", - "sp-api", + "sp-api 4.0.0-dev", "sp-blockchain", "sp-consensus", - "sp-core", - "sp-io", - "sp-runtime", - "sp-state-machine", - "sp-storage", - "sp-tracing", - "sp-trie", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-state-machine 0.28.0", + "sp-storage 13.0.0", + "sp-tracing 10.0.0", + "sp-trie 22.0.0", "substrate-test-runtime", "substrate-test-runtime-client", "tempfile", @@ -15660,7 +15818,7 @@ dependencies = [ "log", "parity-scale-codec", "parking_lot 0.12.1", - "sp-core", + "sp-core 21.0.0", ] [[package]] @@ -15673,10 +15831,10 @@ dependencies = [ "parking_lot 0.12.1", "sc-client-api", "sc-keystore", - "sp-api", + "sp-api 4.0.0-dev", "sp-blockchain", - "sp-core", - "sp-runtime", + "sp-core 21.0.0", + "sp-runtime 24.0.0", "sp-statement-store", "substrate-prometheus-endpoint", "tempfile", @@ -15691,7 +15849,7 @@ dependencies = [ "fs4", "log", "sc-client-db", - "sp-core", + "sp-core 21.0.0", "thiserror", "tokio", ] @@ -15710,7 +15868,7 @@ dependencies = [ "serde", "serde_json", "sp-blockchain", - "sp-runtime", + "sp-runtime 24.0.0", "thiserror", ] @@ -15727,10 +15885,10 @@ dependencies = [ "sc-telemetry", "serde", "serde_json", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -15768,12 +15926,12 @@ dependencies = [ "sc-client-api", "sc-tracing-proc-macro", "serde", - "sp-api", + "sp-api 4.0.0-dev", "sp-blockchain", - "sp-core", + "sp-core 21.0.0", "sp-rpc", - "sp-runtime", - "sp-tracing", + "sp-runtime 24.0.0", + "sp-tracing 10.0.0", "thiserror", "tracing", "tracing-log", @@ -15809,12 +15967,12 @@ dependencies = [ "sc-transaction-pool-api", "sc-utils", "serde", - "sp-api", + "sp-api 4.0.0-dev", "sp-blockchain", "sp-consensus", - "sp-core", - "sp-runtime", - "sp-tracing", + "sp-core 21.0.0", + "sp-runtime 24.0.0", + "sp-tracing 10.0.0", "sp-transaction-pool", "substrate-prometheus-endpoint", "substrate-test-runtime", @@ -15834,8 +15992,8 @@ dependencies = [ "serde", "serde_json", "sp-blockchain", - "sp-core", - "sp-runtime", + "sp-core 21.0.0", + "sp-runtime 24.0.0", "thiserror", ] @@ -15850,7 +16008,7 @@ dependencies = [ "log", "parking_lot 0.12.1", "prometheus", - "sp-arithmetic", + "sp-arithmetic 16.0.0", "tokio-test", ] @@ -16066,7 +16224,7 @@ dependencies = [ "cumulus-primitives-core", "cumulus-primitives-timestamp", "frame-executive", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "pallet-aura", "pallet-balances", @@ -16076,17 +16234,17 @@ dependencies = [ "parachains-common", "parity-scale-codec", "scale-info", - "sp-api", + "sp-api 4.0.0-dev", "sp-block-builder", - "sp-consensus-aura", - "sp-core", - "sp-inherents", + "sp-consensus-aura 0.10.0-dev", + "sp-core 21.0.0", + "sp-inherents 4.0.0-dev", "sp-offchain", - "sp-runtime", + "sp-runtime 24.0.0", "sp-session", - "sp-std", + "sp-std 8.0.0", "sp-transaction-pool", - "sp-version", + "sp-version 22.0.0", "substrate-wasm-builder", ] @@ -16314,7 +16472,7 @@ dependencies = [ "cumulus-pallet-xcm", "cumulus-primitives-core", "frame-executive", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "frame-try-runtime", "pallet-aura", @@ -16323,17 +16481,17 @@ dependencies = [ "parachains-common", "parity-scale-codec", "scale-info", - "sp-api", + "sp-api 4.0.0-dev", "sp-block-builder", - "sp-consensus-aura", - "sp-core", - "sp-inherents", + "sp-consensus-aura 0.10.0-dev", + "sp-core 21.0.0", + "sp-inherents 4.0.0-dev", "sp-offchain", - "sp-runtime", + "sp-runtime 24.0.0", "sp-session", - "sp-std", + "sp-std 8.0.0", "sp-transaction-pool", - "sp-version", + "sp-version 22.0.0", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -16426,8 +16584,8 @@ dependencies = [ "enumn", "parity-scale-codec", "paste", - "sp-runtime", - "sp-std", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -16620,16 +16778,38 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-api-proc-macro", - "sp-core", - "sp-externalities", - "sp-metadata-ir", - "sp-runtime", - "sp-state-machine", - "sp-std", + "sp-api-proc-macro 4.0.0-dev", + "sp-core 21.0.0", + "sp-externalities 0.19.0", + "sp-metadata-ir 0.1.0", + "sp-runtime 24.0.0", + "sp-state-machine 0.28.0", + "sp-std 8.0.0", "sp-test-primitives", - "sp-trie", - "sp-version", + "sp-trie 22.0.0", + "sp-version 22.0.0", + "thiserror", +] + +[[package]] +name = "sp-api" +version = "21.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "86901915aaf9c73f9a8588fae10072c6082e7bf169edae175950410b77ad8103" +dependencies = [ + "hash-db", + "log", + "parity-scale-codec", + "scale-info", + "sp-api-proc-macro 10.0.0", + "sp-core 23.0.0", + "sp-externalities 0.21.0", + "sp-metadata-ir 0.2.0", + "sp-runtime 26.0.0", + "sp-state-machine 0.30.0", + "sp-std 10.0.0", + "sp-trie 24.0.0", + "sp-version 24.0.0", "thiserror", ] @@ -16647,6 +16827,21 @@ dependencies = [ "syn 2.0.37", ] +[[package]] +name = "sp-api-proc-macro" +version = "10.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "972809a3e3a583423bca2ee6d08eb5397814ef6b265abf43e888c4ed9916ff83" +dependencies = [ + "Inflector", + "blake2", + "expander 2.0.0", + "proc-macro-crate", + "proc-macro2", + "quote", + "syn 2.0.37", +] + [[package]] name = "sp-api-test" version = "2.0.1" @@ -16658,13 +16853,13 @@ dependencies = [ "rustversion", "sc-block-builder", "scale-info", - "sp-api", + "sp-api 4.0.0-dev", "sp-consensus", - "sp-core", - "sp-runtime", - "sp-state-machine", - "sp-tracing", - "sp-version", + "sp-core 21.0.0", + "sp-runtime 24.0.0", + "sp-state-machine 0.28.0", + "sp-tracing 10.0.0", + "sp-version 22.0.0", "static_assertions", "substrate-test-runtime-client", "trybuild", @@ -16677,19 +16872,33 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-std", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-std 8.0.0", +] + +[[package]] +name = "sp-application-crypto" +version = "25.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7fa730e4f3a2aec3f4ee777410599a86eb17067ee5410c58ab496e88d7bb840c" +dependencies = [ + "parity-scale-codec", + "scale-info", + "serde", + "sp-core 23.0.0", + "sp-io 25.0.0", + "sp-std 10.0.0", ] [[package]] name = "sp-application-crypto-test" version = "2.0.0" dependencies = [ - "sp-api", - "sp-application-crypto", - "sp-core", - "sp-keystore", + "sp-api 4.0.0-dev", + "sp-application-crypto 23.0.0", + "sp-core 21.0.0", + "sp-keystore 0.27.0", "substrate-test-runtime-client", ] @@ -16705,8 +16914,23 @@ dependencies = [ "rand 0.8.5", "scale-info", "serde", - "sp-core", - "sp-std", + "sp-core 21.0.0", + "sp-std 8.0.0", + "static_assertions", +] + +[[package]] +name = "sp-arithmetic" +version = "18.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2d3d3ff6d6d717d7563659e9e47e958d33ebd2d0b3d8b1a9961cf9832944375e" +dependencies = [ + "integer-sqrt", + "num-traits", + "parity-scale-codec", + "scale-info", + "serde", + "sp-std 10.0.0", "static_assertions", ] @@ -16718,7 +16942,7 @@ dependencies = [ "fraction", "honggfuzz", "num-bigint", - "sp-arithmetic", + "sp-arithmetic 16.0.0", ] [[package]] @@ -16821,20 +17045,34 @@ version = "4.0.0-dev" dependencies = [ "parity-scale-codec", "scale-info", - "sp-api", - "sp-application-crypto", - "sp-runtime", - "sp-std", + "sp-api 4.0.0-dev", + "sp-application-crypto 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", +] + +[[package]] +name = "sp-authority-discovery" +version = "21.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "06a92d2af502f53c11c4656f58a1f49856b633f455433c6e0c94e59039f560f0" +dependencies = [ + "parity-scale-codec", + "scale-info", + "sp-api 21.0.0", + "sp-application-crypto 25.0.0", + "sp-runtime 26.0.0", + "sp-std 10.0.0", ] [[package]] name = "sp-block-builder" version = "4.0.0-dev" dependencies = [ - "sp-api", - "sp-inherents", - "sp-runtime", - "sp-std", + "sp-api 4.0.0-dev", + "sp-inherents 4.0.0-dev", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -16846,11 +17084,11 @@ dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", "schnellru", - "sp-api", + "sp-api 4.0.0-dev", "sp-consensus", "sp-database", - "sp-runtime", - "sp-state-machine", + "sp-runtime 24.0.0", + "sp-state-machine 0.28.0", "thiserror", ] @@ -16861,10 +17099,10 @@ dependencies = [ "async-trait", "futures", "log", - "sp-core", - "sp-inherents", - "sp-runtime", - "sp-state-machine", + "sp-core 21.0.0", + "sp-inherents 4.0.0-dev", + "sp-runtime 24.0.0", + "sp-state-machine 0.28.0", "sp-test-primitives", "thiserror", ] @@ -16876,13 +17114,31 @@ dependencies = [ "async-trait", "parity-scale-codec", "scale-info", - "sp-api", - "sp-application-crypto", - "sp-consensus-slots", - "sp-inherents", - "sp-runtime", - "sp-std", - "sp-timestamp", + "sp-api 4.0.0-dev", + "sp-application-crypto 23.0.0", + "sp-consensus-slots 0.10.0-dev", + "sp-inherents 4.0.0-dev", + "sp-runtime 24.0.0", + "sp-std 8.0.0", + "sp-timestamp 4.0.0-dev", +] + +[[package]] +name = "sp-consensus-aura" +version = "0.27.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9564b98aa33315f542ba0ace2bb5f94a1a0503608b125edbd6537420fcf03a47" +dependencies = [ + "async-trait", + "parity-scale-codec", + "scale-info", + "sp-api 21.0.0", + "sp-application-crypto 25.0.0", + "sp-consensus-slots 0.27.0", + "sp-inherents 21.0.0", + "sp-runtime 26.0.0", + "sp-std 10.0.0", + "sp-timestamp 21.0.0", ] [[package]] @@ -16893,14 +17149,14 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-api", - "sp-application-crypto", - "sp-consensus-slots", - "sp-core", - "sp-inherents", - "sp-runtime", - "sp-std", - "sp-timestamp", + "sp-api 4.0.0-dev", + "sp-application-crypto 23.0.0", + "sp-consensus-slots 0.10.0-dev", + "sp-core 21.0.0", + "sp-inherents 4.0.0-dev", + "sp-runtime 24.0.0", + "sp-std 8.0.0", + "sp-timestamp 4.0.0-dev", ] [[package]] @@ -16912,13 +17168,13 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-api", - "sp-application-crypto", - "sp-core", - "sp-io", + "sp-api 4.0.0-dev", + "sp-application-crypto 23.0.0", + "sp-core 21.0.0", + "sp-io 23.0.0", "sp-mmr-primitives", - "sp-runtime", - "sp-std", + "sp-runtime 24.0.0", + "sp-std 8.0.0", "strum", "w3f-bls", ] @@ -16932,12 +17188,12 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-api", - "sp-application-crypto", - "sp-core", - "sp-keystore", - "sp-runtime", - "sp-std", + "sp-api 4.0.0-dev", + "sp-application-crypto 23.0.0", + "sp-core 21.0.0", + "sp-keystore 0.27.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -16945,10 +17201,10 @@ name = "sp-consensus-pow" version = "0.10.0-dev" dependencies = [ "parity-scale-codec", - "sp-api", - "sp-core", - "sp-runtime", - "sp-std", + "sp-api 4.0.0-dev", + "sp-core 21.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -16958,12 +17214,12 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-api", - "sp-application-crypto", - "sp-consensus-slots", - "sp-core", - "sp-runtime", - "sp-std", + "sp-api 4.0.0-dev", + "sp-application-crypto 23.0.0", + "sp-consensus-slots 0.10.0-dev", + "sp-core 21.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -16973,8 +17229,21 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-std", - "sp-timestamp", + "sp-std 8.0.0", + "sp-timestamp 4.0.0-dev", +] + +[[package]] +name = "sp-consensus-slots" +version = "0.27.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c9edd2b6ac697a55075e3a4c5697f1142cd59de015f93aaf0aa843d1194ae268" +dependencies = [ + "parity-scale-codec", + "scale-info", + "serde", + "sp-std 10.0.0", + "sp-timestamp 21.0.0", ] [[package]] @@ -17010,13 +17279,13 @@ dependencies = [ "secrecy", "serde", "serde_json", - "sp-core-hashing", - "sp-core-hashing-proc-macro", - "sp-debug-derive", - "sp-externalities", - "sp-runtime-interface", - "sp-std", - "sp-storage", + "sp-core-hashing 9.0.0", + "sp-core-hashing-proc-macro 9.0.0", + "sp-debug-derive 8.0.0", + "sp-externalities 0.19.0", + "sp-runtime-interface 17.0.0", + "sp-std 8.0.0", + "sp-storage 13.0.0", "ss58-registry", "substrate-bip39", "thiserror", @@ -17026,6 +17295,53 @@ dependencies = [ "zeroize", ] +[[package]] +name = "sp-core" +version = "23.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "412e2ec53b1bc63778e2d70c347224e6cd2e25c4bacb509585db85f0788747b7" +dependencies = [ + "array-bytes", + "arrayvec 0.7.4", + "bitflags 1.3.2", + "blake2", + "bounded-collections", + "bs58 0.5.0", + "dyn-clonable", + "ed25519-zebra 3.1.0", + "futures", + "hash-db", + "hash256-std-hasher", + "impl-serde", + "lazy_static", + "libsecp256k1", + "log", + "merlin 2.0.1", + "parity-scale-codec", + "parking_lot 0.12.1", + "paste", + "primitive-types", + "rand 0.8.5", + "regex", + "scale-info", + "schnorrkel 0.9.1", + "secp256k1", + "secrecy", + "serde", + "sp-core-hashing 11.0.0", + "sp-debug-derive 10.0.0", + "sp-externalities 0.21.0", + "sp-runtime-interface 19.0.0", + "sp-std 10.0.0", + "sp-storage 15.0.0", + "ss58-registry", + "substrate-bip39", + "thiserror", + "tiny-bip39", + "tracing", + "zeroize", +] + [[package]] name = "sp-core-hashing" version = "9.0.0" @@ -17038,12 +17354,37 @@ dependencies = [ "twox-hash", ] +[[package]] +name = "sp-core-hashing" +version = "11.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "558116d02341b6f28b033c19a2a5fa555afa3c52628639170087e7685d51e743" +dependencies = [ + "blake2b_simd", + "byteorder", + "digest 0.10.7", + "sha2 0.10.7", + "sha3", + "twox-hash", +] + [[package]] name = "sp-core-hashing-proc-macro" version = "9.0.0" dependencies = [ "quote", - "sp-core-hashing", + "sp-core-hashing 9.0.0", + "syn 2.0.37", +] + +[[package]] +name = "sp-core-hashing-proc-macro" +version = "11.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5d8681fa136cf504ba2b722fcb10d78df147c15d201b997e06c4c8c72258001a" +dependencies = [ + "quote", + "sp-core-hashing 11.0.0", "syn 2.0.37", ] @@ -17069,9 +17410,9 @@ dependencies = [ "sp-ark-ed-on-bls12-377", "sp-ark-ed-on-bls12-381-bandersnatch", "sp-ark-models", - "sp-io", - "sp-runtime-interface", - "sp-std", + "sp-io 23.0.0", + "sp-runtime-interface 17.0.0", + "sp-std 8.0.0", ] [[package]] @@ -17091,14 +17432,37 @@ dependencies = [ "syn 2.0.37", ] +[[package]] +name = "sp-debug-derive" +version = "10.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b4b235a0ad7124d58e6f0a728c8354da5b185b77bcf18b131b3a480cdaa23d95" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.37", +] + [[package]] name = "sp-externalities" version = "0.19.0" dependencies = [ "environmental", "parity-scale-codec", - "sp-std", - "sp-storage", + "sp-std 8.0.0", + "sp-storage 13.0.0", +] + +[[package]] +name = "sp-externalities" +version = "0.21.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "588cf40c36de918f545d712ad1a70631ae71653e4a321506dfcd8fa6fd26453c" +dependencies = [ + "environmental", + "parity-scale-codec", + "sp-std 10.0.0", + "sp-storage 15.0.0", ] [[package]] @@ -17106,9 +17470,21 @@ name = "sp-genesis-builder" version = "0.1.0" dependencies = [ "serde_json", - "sp-api", - "sp-runtime", - "sp-std", + "sp-api 4.0.0-dev", + "sp-runtime 24.0.0", + "sp-std 8.0.0", +] + +[[package]] +name = "sp-genesis-builder" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ae51f8a24e1be6593be94581f3465a10d7c86ce403cbf9dcf703d14f35309d1" +dependencies = [ + "serde_json", + "sp-api 21.0.0", + "sp-runtime 26.0.0", + "sp-std 10.0.0", ] [[package]] @@ -17120,8 +17496,23 @@ dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", "scale-info", - "sp-runtime", - "sp-std", + "sp-runtime 24.0.0", + "sp-std 8.0.0", + "thiserror", +] + +[[package]] +name = "sp-inherents" +version = "21.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4355b6a68001ff5308a09fe069c778c184030ee3b95271dd44841d056ecadf13" +dependencies = [ + "async-trait", + "impl-trait-for-tuples", + "parity-scale-codec", + "scale-info", + "sp-runtime 26.0.0", + "sp-std 10.0.0", "thiserror", ] @@ -17136,14 +17527,39 @@ dependencies = [ "parity-scale-codec", "rustversion", "secp256k1", - "sp-core", - "sp-externalities", - "sp-keystore", - "sp-runtime-interface", - "sp-state-machine", - "sp-std", - "sp-tracing", - "sp-trie", + "sp-core 21.0.0", + "sp-externalities 0.19.0", + "sp-keystore 0.27.0", + "sp-runtime-interface 17.0.0", + "sp-state-machine 0.28.0", + "sp-std 8.0.0", + "sp-tracing 10.0.0", + "sp-trie 22.0.0", + "tracing", + "tracing-core", +] + +[[package]] +name = "sp-io" +version = "25.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e9926dba7d67d87e40f49e18ff6cfc01373d5be13e3d373f02182bb5ec8ab37b" +dependencies = [ + "bytes", + "ed25519-dalek", + "libsecp256k1", + "log", + "parity-scale-codec", + "rustversion", + "secp256k1", + "sp-core 23.0.0", + "sp-externalities 0.21.0", + "sp-keystore 0.29.0", + "sp-runtime-interface 19.0.0", + "sp-state-machine 0.30.0", + "sp-std 10.0.0", + "sp-tracing 12.0.0", + "sp-trie 24.0.0", "tracing", "tracing-core", ] @@ -17153,8 +17569,8 @@ name = "sp-keyring" version = "24.0.0" dependencies = [ "lazy_static", - "sp-core", - "sp-runtime", + "sp-core 21.0.0", + "sp-runtime 24.0.0", "strum", ] @@ -17166,8 +17582,21 @@ dependencies = [ "parking_lot 0.12.1", "rand 0.7.3", "rand_chacha 0.2.2", - "sp-core", - "sp-externalities", + "sp-core 21.0.0", + "sp-externalities 0.19.0", + "thiserror", +] + +[[package]] +name = "sp-keystore" +version = "0.29.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "44f0f9546dd151881c60e75355806f1cbbc893f64aa465fc5bf87a47de59467b" +dependencies = [ + "parity-scale-codec", + "parking_lot 0.12.1", + "sp-core 23.0.0", + "sp-externalities 0.21.0", "thiserror", ] @@ -17186,7 +17615,19 @@ dependencies = [ "frame-metadata", "parity-scale-codec", "scale-info", - "sp-std", + "sp-std 8.0.0", +] + +[[package]] +name = "sp-metadata-ir" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9d493f8324241f20d80cbc920fa0ab7a173907d0bf1a10812098a924cdff48d7" +dependencies = [ + "frame-metadata", + "parity-scale-codec", + "scale-info", + "sp-std 10.0.0", ] [[package]] @@ -17199,11 +17640,11 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-api", - "sp-core", - "sp-debug-derive", - "sp-runtime", - "sp-std", + "sp-api 4.0.0-dev", + "sp-core 21.0.0", + "sp-debug-derive 8.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", "thiserror", ] @@ -17215,10 +17656,10 @@ dependencies = [ "rand 0.8.5", "scale-info", "serde", - "sp-arithmetic", - "sp-core", - "sp-runtime", - "sp-std", + "sp-arithmetic 16.0.0", + "sp-core 21.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", "substrate-test-utils", ] @@ -17230,16 +17671,16 @@ dependencies = [ "honggfuzz", "rand 0.8.5", "sp-npos-elections", - "sp-runtime", + "sp-runtime 24.0.0", ] [[package]] name = "sp-offchain" version = "4.0.0-dev" dependencies = [ - "sp-api", - "sp-core", - "sp-runtime", + "sp-api 4.0.0-dev", + "sp-core 21.0.0", + "sp-runtime 24.0.0", ] [[package]] @@ -17251,6 +17692,17 @@ dependencies = [ "regex", ] +[[package]] +name = "sp-panic-handler" +version = "10.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "261572cc0db4b41cf7587b4f7bdc15b8f83f748f17ae1c3c2f56a3e8e62ee913" +dependencies = [ + "backtrace", + "lazy_static", + "regex", +] + [[package]] name = "sp-rpc" version = "6.0.0" @@ -17258,7 +17710,7 @@ dependencies = [ "rustc-hash", "serde", "serde_json", - "sp-core", + "sp-core 21.0.0", ] [[package]] @@ -17275,19 +17727,42 @@ dependencies = [ "scale-info", "serde", "serde_json", - "sp-api", - "sp-application-crypto", - "sp-arithmetic", - "sp-core", - "sp-io", - "sp-state-machine", - "sp-std", - "sp-tracing", - "sp-weights", + "sp-api 4.0.0-dev", + "sp-application-crypto 23.0.0", + "sp-arithmetic 16.0.0", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-state-machine 0.28.0", + "sp-std 8.0.0", + "sp-tracing 10.0.0", + "sp-weights 20.0.0", "substrate-test-runtime-client", "zstd 0.12.4", ] +[[package]] +name = "sp-runtime" +version = "26.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f645e9e2c82d052ea48ed987a8789daca1c03f9b5ed1aa49cd080092eda85330" +dependencies = [ + "either", + "hash256-std-hasher", + "impl-trait-for-tuples", + "log", + "parity-scale-codec", + "paste", + "rand 0.8.5", + "scale-info", + "serde", + "sp-application-crypto 25.0.0", + "sp-arithmetic 18.0.0", + "sp-core 23.0.0", + "sp-io 25.0.0", + "sp-std 10.0.0", + "sp-weights 22.0.0", +] + [[package]] name = "sp-runtime-interface" version = "17.0.0" @@ -17297,20 +17772,39 @@ dependencies = [ "parity-scale-codec", "primitive-types", "rustversion", - "sp-core", - "sp-externalities", - "sp-io", - "sp-runtime-interface-proc-macro", + "sp-core 21.0.0", + "sp-externalities 0.19.0", + "sp-io 23.0.0", + "sp-runtime-interface-proc-macro 11.0.0", "sp-runtime-interface-test-wasm", - "sp-state-machine", - "sp-std", - "sp-storage", - "sp-tracing", - "sp-wasm-interface", + "sp-state-machine 0.28.0", + "sp-std 8.0.0", + "sp-storage 13.0.0", + "sp-tracing 10.0.0", + "sp-wasm-interface 14.0.0", "static_assertions", "trybuild", ] +[[package]] +name = "sp-runtime-interface" +version = "19.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6ef767d6e400ee54a420bcbc570030741420c2d938a6e379d21cab9875a339c5" +dependencies = [ + "bytes", + "impl-trait-for-tuples", + "parity-scale-codec", + "primitive-types", + "sp-externalities 0.21.0", + "sp-runtime-interface-proc-macro 13.0.0", + "sp-std 10.0.0", + "sp-storage 15.0.0", + "sp-tracing 12.0.0", + "sp-wasm-interface 16.0.0", + "static_assertions", +] + [[package]] name = "sp-runtime-interface-proc-macro" version = "11.0.0" @@ -17322,18 +17816,31 @@ dependencies = [ "syn 2.0.37", ] +[[package]] +name = "sp-runtime-interface-proc-macro" +version = "13.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fdd795a4a2205b64d95da897f85b7c83a0044f30df22b0ea282f8387dc6ca428" +dependencies = [ + "Inflector", + "proc-macro-crate", + "proc-macro2", + "quote", + "syn 2.0.37", +] + [[package]] name = "sp-runtime-interface-test" version = "2.0.0" dependencies = [ "sc-executor", "sc-executor-common", - "sp-io", - "sp-runtime", - "sp-runtime-interface", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-runtime-interface 17.0.0", "sp-runtime-interface-test-wasm", "sp-runtime-interface-test-wasm-deprecated", - "sp-state-machine", + "sp-state-machine 0.28.0", "tracing", "tracing-core", ] @@ -17343,10 +17850,10 @@ name = "sp-runtime-interface-test-wasm" version = "2.0.0" dependencies = [ "bytes", - "sp-core", - "sp-io", - "sp-runtime-interface", - "sp-std", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime-interface 17.0.0", + "sp-std 8.0.0", "substrate-wasm-builder", ] @@ -17354,9 +17861,9 @@ dependencies = [ name = "sp-runtime-interface-test-wasm-deprecated" version = "2.0.0" dependencies = [ - "sp-core", - "sp-io", - "sp-runtime-interface", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime-interface 17.0.0", "substrate-wasm-builder", ] @@ -17366,12 +17873,12 @@ version = "4.0.0-dev" dependencies = [ "parity-scale-codec", "scale-info", - "sp-api", - "sp-core", - "sp-keystore", - "sp-runtime", - "sp-staking", - "sp-std", + "sp-api 4.0.0-dev", + "sp-core 21.0.0", + "sp-keystore 0.27.0", + "sp-runtime 24.0.0", + "sp-staking 4.0.0-dev", + "sp-std 8.0.0", ] [[package]] @@ -17382,9 +17889,24 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-runtime", - "sp-std", + "sp-core 21.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", +] + +[[package]] +name = "sp-staking" +version = "21.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8acb11c6a7765d2df277110fe25bba075f697aba999b29a6c9b55eb2b95401b0" +dependencies = [ + "impl-trait-for-tuples", + "parity-scale-codec", + "scale-info", + "serde", + "sp-core 23.0.0", + "sp-runtime 26.0.0", + "sp-std 10.0.0", ] [[package]] @@ -17400,15 +17922,37 @@ dependencies = [ "pretty_assertions", "rand 0.8.5", "smallvec", - "sp-core", - "sp-externalities", - "sp-panic-handler", - "sp-runtime", - "sp-std", - "sp-trie", + "sp-core 21.0.0", + "sp-externalities 0.19.0", + "sp-panic-handler 8.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", + "sp-trie 22.0.0", "thiserror", "tracing", - "trie-db", + "trie-db 0.28.0", +] + +[[package]] +name = "sp-state-machine" +version = "0.30.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "771dce7d78335718ab8475984b6dbc1f374777049ed1c308186679e611333be2" +dependencies = [ + "hash-db", + "log", + "parity-scale-codec", + "parking_lot 0.12.1", + "rand 0.8.5", + "smallvec", + "sp-core 23.0.0", + "sp-externalities 0.21.0", + "sp-panic-handler 10.0.0", + "sp-std 10.0.0", + "sp-trie 24.0.0", + "thiserror", + "tracing", + "trie-db 0.27.1", ] [[package]] @@ -17423,13 +17967,13 @@ dependencies = [ "rand 0.8.5", "scale-info", "sha2 0.10.7", - "sp-api", - "sp-application-crypto", - "sp-core", - "sp-externalities", - "sp-runtime", - "sp-runtime-interface", - "sp-std", + "sp-api 4.0.0-dev", + "sp-application-crypto 23.0.0", + "sp-core 21.0.0", + "sp-externalities 0.19.0", + "sp-runtime 24.0.0", + "sp-runtime-interface 17.0.0", + "sp-std 8.0.0", "thiserror", "x25519-dalek 2.0.0", ] @@ -17438,6 +17982,12 @@ dependencies = [ name = "sp-std" version = "8.0.0" +[[package]] +name = "sp-std" +version = "10.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3ed09ef1760e8be9b64b7f739f1cf9a94528130be475d8e4f2d1be1e690c9f9c" + [[package]] name = "sp-storage" version = "13.0.0" @@ -17446,8 +17996,22 @@ dependencies = [ "parity-scale-codec", "ref-cast", "serde", - "sp-debug-derive", - "sp-std", + "sp-debug-derive 8.0.0", + "sp-std 8.0.0", +] + +[[package]] +name = "sp-storage" +version = "15.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c20f503280c004d94033a32cb84274ede30ef0b4b634770b1e7d595f8245bda4" +dependencies = [ + "impl-serde", + "parity-scale-codec", + "ref-cast", + "serde", + "sp-debug-derive 10.0.0", + "sp-std 10.0.0", ] [[package]] @@ -17457,10 +18021,10 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-application-crypto", - "sp-core", - "sp-runtime", - "sp-std", + "sp-application-crypto 23.0.0", + "sp-core 21.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", ] [[package]] @@ -17469,9 +18033,23 @@ version = "4.0.0-dev" dependencies = [ "async-trait", "parity-scale-codec", - "sp-inherents", - "sp-runtime", - "sp-std", + "sp-inherents 4.0.0-dev", + "sp-runtime 24.0.0", + "sp-std 8.0.0", + "thiserror", +] + +[[package]] +name = "sp-timestamp" +version = "21.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "00d60953f7fc9b4f51bbcbac8f0cd8d6e6266a7cc18f661330308bbcec1eb053" +dependencies = [ + "async-trait", + "parity-scale-codec", + "sp-inherents 21.0.0", + "sp-runtime 26.0.0", + "sp-std 10.0.0", "thiserror", ] @@ -17480,7 +18058,20 @@ name = "sp-tracing" version = "10.0.0" dependencies = [ "parity-scale-codec", - "sp-std", + "sp-std 8.0.0", + "tracing", + "tracing-core", + "tracing-subscriber", +] + +[[package]] +name = "sp-tracing" +version = "12.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ebabec43485ebdb2fdb5c6f9b388590d4797a3888024d74724ada2f16b2113b8" +dependencies = [ + "parity-scale-codec", + "sp-std 10.0.0", "tracing", "tracing-core", "tracing-subscriber", @@ -17490,8 +18081,8 @@ dependencies = [ name = "sp-transaction-pool" version = "4.0.0-dev" dependencies = [ - "sp-api", - "sp-runtime", + "sp-api 4.0.0-dev", + "sp-runtime 24.0.0", ] [[package]] @@ -17501,11 +18092,11 @@ dependencies = [ "async-trait", "parity-scale-codec", "scale-info", - "sp-core", - "sp-inherents", - "sp-runtime", - "sp-std", - "sp-trie", + "sp-core 21.0.0", + "sp-inherents 4.0.0-dev", + "sp-runtime 24.0.0", + "sp-std 8.0.0", + "sp-trie 22.0.0", ] [[package]] @@ -17524,17 +18115,41 @@ dependencies = [ "parking_lot 0.12.1", "scale-info", "schnellru", - "sp-core", - "sp-runtime", - "sp-std", + "sp-core 21.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", "thiserror", "tracing", "trie-bench", - "trie-db", + "trie-db 0.28.0", "trie-root", "trie-standardmap", ] +[[package]] +name = "sp-trie" +version = "24.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e78585a84d02d1c71e8eb8c00ed586c22a46ad4e773d9ff65c8ed3b8e98b9f51" +dependencies = [ + "ahash 0.8.3", + "hash-db", + "hashbrown 0.13.2", + "lazy_static", + "memory-db", + "nohash-hasher", + "parity-scale-codec", + "parking_lot 0.12.1", + "scale-info", + "schnellru", + "sp-core 23.0.0", + "sp-std 10.0.0", + "thiserror", + "tracing", + "trie-db 0.27.1", + "trie-root", +] + [[package]] name = "sp-version" version = "22.0.0" @@ -17544,10 +18159,28 @@ dependencies = [ "parity-wasm", "scale-info", "serde", - "sp-core-hashing-proc-macro", - "sp-runtime", - "sp-std", - "sp-version-proc-macro", + "sp-core-hashing-proc-macro 9.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", + "sp-version-proc-macro 8.0.0", + "thiserror", +] + +[[package]] +name = "sp-version" +version = "24.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "68a8d11b816cd2c68467c697aecca868ab5828af02ef093681a88554d045b878" +dependencies = [ + "impl-serde", + "parity-scale-codec", + "parity-wasm", + "scale-info", + "serde", + "sp-core-hashing-proc-macro 11.0.0", + "sp-runtime 26.0.0", + "sp-std 10.0.0", + "sp-version-proc-macro 10.0.0", "thiserror", ] @@ -17558,7 +18191,19 @@ dependencies = [ "parity-scale-codec", "proc-macro2", "quote", - "sp-version", + "sp-version 22.0.0", + "syn 2.0.37", +] + +[[package]] +name = "sp-version-proc-macro" +version = "10.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6de7bbf860de93bb9b0ccd8e4a74e0dc40089e7192c397bac2b357d4da74e20c" +dependencies = [ + "parity-scale-codec", + "proc-macro2", + "quote", "syn 2.0.37", ] @@ -17570,7 +18215,21 @@ dependencies = [ "impl-trait-for-tuples", "log", "parity-scale-codec", - "sp-std", + "sp-std 8.0.0", + "wasmtime", +] + +[[package]] +name = "sp-wasm-interface" +version = "16.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ee009ac79098027f5990984e0c5ee2fd4883b16bbd6ab97931f28c2148aaa3ea" +dependencies = [ + "anyhow", + "impl-trait-for-tuples", + "log", + "parity-scale-codec", + "sp-std 10.0.0", "wasmtime", ] @@ -17582,10 +18241,26 @@ dependencies = [ "scale-info", "serde", "smallvec", - "sp-arithmetic", - "sp-core", - "sp-debug-derive", - "sp-std", + "sp-arithmetic 16.0.0", + "sp-core 21.0.0", + "sp-debug-derive 8.0.0", + "sp-std 8.0.0", +] + +[[package]] +name = "sp-weights" +version = "22.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "86566cae93412e40bea0db9e6b110a7379105412a9aed1af73b5d2fb69cb7000" +dependencies = [ + "parity-scale-codec", + "scale-info", + "serde", + "smallvec", + "sp-arithmetic 18.0.0", + "sp-core 23.0.0", + "sp-debug-derive 10.0.0", + "sp-std 10.0.0", ] [[package]] @@ -17662,7 +18337,7 @@ dependencies = [ "frame-election-provider-support", "frame-executive", "frame-remote-externalities", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "frame-system-benchmarking", "frame-system-rpc-runtime-api", @@ -17723,7 +18398,7 @@ dependencies = [ "pallet-xcm", "pallet-xcm-benchmarks", "parity-scale-codec", - "polkadot-primitives", + "polkadot-primitives 1.0.0", "polkadot-runtime-common", "polkadot-runtime-parachains", "rustc-hex", @@ -17733,29 +18408,29 @@ dependencies = [ "serde_derive", "serde_json", "smallvec", - "sp-api", - "sp-application-crypto", - "sp-arithmetic", - "sp-authority-discovery", + "sp-api 4.0.0-dev", + "sp-application-crypto 23.0.0", + "sp-arithmetic 16.0.0", + "sp-authority-discovery 4.0.0-dev", "sp-block-builder", "sp-consensus-babe", "sp-consensus-beefy", - "sp-core", - "sp-inherents", - "sp-io", + "sp-core 21.0.0", + "sp-inherents 4.0.0-dev", + "sp-io 23.0.0", "sp-keyring", "sp-mmr-primitives", "sp-npos-elections", "sp-offchain", - "sp-runtime", + "sp-runtime 24.0.0", "sp-session", - "sp-staking", - "sp-std", - "sp-storage", - "sp-tracing", + "sp-staking 4.0.0-dev", + "sp-std 8.0.0", + "sp-storage 13.0.0", + "sp-tracing 10.0.0", "sp-transaction-pool", - "sp-trie", - "sp-version", + "sp-trie 22.0.0", + "sp-version 22.0.0", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -17779,8 +18454,8 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-io", - "sp-weights", + "sp-io 23.0.0", + "sp-weights 20.0.0", "xcm-procedural", ] @@ -17789,7 +18464,7 @@ name = "staging-xcm-builder" version = "1.0.0" dependencies = [ "assert_matches", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "impl-trait-for-tuples", "log", @@ -17799,17 +18474,17 @@ dependencies = [ "pallet-transaction-payment", "pallet-xcm", "parity-scale-codec", - "polkadot-parachain-primitives", - "polkadot-primitives", + "polkadot-parachain-primitives 1.0.0", + "polkadot-primitives 1.0.0", "polkadot-runtime-parachains", "polkadot-test-runtime", "primitive-types", "scale-info", - "sp-arithmetic", - "sp-io", - "sp-runtime", - "sp-std", - "sp-weights", + "sp-arithmetic 16.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", + "sp-weights 20.0.0", "staging-xcm", "staging-xcm-executor", ] @@ -17820,16 +18495,16 @@ version = "1.0.0" dependencies = [ "environmental", "frame-benchmarking", - "frame-support", + "frame-support 4.0.0-dev", "impl-trait-for-tuples", "log", "parity-scale-codec", - "sp-arithmetic", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", - "sp-weights", + "sp-arithmetic 16.0.0", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", + "sp-weights 20.0.0", "staging-xcm", ] @@ -17986,27 +18661,27 @@ name = "substrate-frame-cli" version = "4.0.0-dev" dependencies = [ "clap 4.4.4", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "sc-cli", - "sp-core", - "sp-runtime", + "sp-core 21.0.0", + "sp-runtime 24.0.0", ] [[package]] name = "substrate-frame-rpc-support" version = "3.0.0" dependencies = [ - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "jsonrpsee", "parity-scale-codec", "sc-rpc-api", "scale-info", "serde", - "sp-core", - "sp-runtime", - "sp-storage", + "sp-core 21.0.0", + "sp-runtime 24.0.0", + "sp-storage 13.0.0", "tokio", ] @@ -18023,12 +18698,12 @@ dependencies = [ "sc-rpc-api", "sc-transaction-pool", "sc-transaction-pool-api", - "sp-api", + "sp-api 4.0.0-dev", "sp-block-builder", "sp-blockchain", - "sp-core", - "sp-runtime", - "sp-tracing", + "sp-core 21.0.0", + "sp-runtime 24.0.0", + "sp-tracing 10.0.0", "substrate-test-runtime-client", "tokio", ] @@ -18053,8 +18728,8 @@ dependencies = [ "log", "sc-rpc-api", "serde", - "sp-core", - "sp-runtime", + "sp-core 21.0.0", + "sp-runtime 24.0.0", "tokio", ] @@ -18068,11 +18743,11 @@ dependencies = [ "sc-rpc-api", "serde", "serde_json", - "sp-core", - "sp-runtime", - "sp-state-machine", - "sp-trie", - "trie-db", + "sp-core 21.0.0", + "sp-runtime 24.0.0", + "sp-state-machine 0.28.0", + "sp-trie 22.0.0", + "trie-db 0.28.0", ] [[package]] @@ -18093,11 +18768,11 @@ dependencies = [ "serde_json", "sp-blockchain", "sp-consensus", - "sp-core", + "sp-core 21.0.0", "sp-keyring", - "sp-keystore", - "sp-runtime", - "sp-state-machine", + "sp-keystore 0.27.0", + "sp-runtime 24.0.0", + "sp-state-machine 0.28.0", ] [[package]] @@ -18106,7 +18781,7 @@ version = "2.0.0" dependencies = [ "array-bytes", "frame-executive", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "frame-system-rpc-runtime-api", "futures", @@ -18123,31 +18798,31 @@ dependencies = [ "scale-info", "serde", "serde_json", - "sp-api", - "sp-application-crypto", + "sp-api 4.0.0-dev", + "sp-application-crypto 23.0.0", "sp-block-builder", "sp-consensus", - "sp-consensus-aura", + "sp-consensus-aura 0.10.0-dev", "sp-consensus-babe", "sp-consensus-grandpa", - "sp-core", - "sp-externalities", - "sp-genesis-builder", - "sp-inherents", - "sp-io", + "sp-core 21.0.0", + "sp-externalities 0.19.0", + "sp-genesis-builder 0.1.0", + "sp-inherents 4.0.0-dev", + "sp-io 23.0.0", "sp-keyring", "sp-offchain", - "sp-runtime", + "sp-runtime 24.0.0", "sp-session", - "sp-state-machine", - "sp-std", - "sp-tracing", + "sp-state-machine 0.28.0", + "sp-std 8.0.0", + "sp-tracing 10.0.0", "sp-transaction-pool", - "sp-trie", - "sp-version", + "sp-trie 22.0.0", + "sp-version 22.0.0", "substrate-test-runtime-client", "substrate-wasm-builder", - "trie-db", + "trie-db 0.28.0", ] [[package]] @@ -18158,11 +18833,11 @@ dependencies = [ "sc-block-builder", "sc-client-api", "sc-consensus", - "sp-api", + "sp-api 4.0.0-dev", "sp-blockchain", "sp-consensus", - "sp-core", - "sp-runtime", + "sp-core 21.0.0", + "sp-runtime 24.0.0", "substrate-test-client", "substrate-test-runtime", ] @@ -18177,7 +18852,7 @@ dependencies = [ "sc-transaction-pool", "sc-transaction-pool-api", "sp-blockchain", - "sp-runtime", + "sp-runtime 24.0.0", "substrate-test-runtime-client", "thiserror", ] @@ -18433,9 +19108,9 @@ version = "1.0.0" dependencies = [ "dlmalloc", "parity-scale-codec", - "polkadot-parachain-primitives", - "sp-io", - "sp-std", + "polkadot-parachain-primitives 1.0.0", + "sp-io 23.0.0", + "sp-std 8.0.0", "substrate-wasm-builder", "tiny-keccak", ] @@ -18453,13 +19128,13 @@ dependencies = [ "polkadot-node-core-pvf", "polkadot-node-primitives", "polkadot-node-subsystem", - "polkadot-parachain-primitives", - "polkadot-primitives", + "polkadot-parachain-primitives 1.0.0", + "polkadot-primitives 1.0.0", "polkadot-service", "polkadot-test-service", "sc-cli", "sc-service", - "sp-core", + "sp-core 21.0.0", "sp-keyring", "substrate-test-utils", "test-parachain-adder", @@ -18481,9 +19156,9 @@ dependencies = [ "dlmalloc", "log", "parity-scale-codec", - "polkadot-parachain-primitives", - "sp-io", - "sp-std", + "polkadot-parachain-primitives 1.0.0", + "sp-io 23.0.0", + "sp-std 8.0.0", "substrate-wasm-builder", "tiny-keccak", ] @@ -18501,13 +19176,13 @@ dependencies = [ "polkadot-node-core-pvf", "polkadot-node-primitives", "polkadot-node-subsystem", - "polkadot-parachain-primitives", - "polkadot-primitives", + "polkadot-parachain-primitives 1.0.0", + "polkadot-primitives 1.0.0", "polkadot-service", "polkadot-test-service", "sc-cli", "sc-service", - "sp-core", + "sp-core 21.0.0", "sp-keyring", "substrate-test-utils", "test-parachain-undying", @@ -18519,7 +19194,7 @@ name = "test-parachains" version = "1.0.0" dependencies = [ "parity-scale-codec", - "sp-core", + "sp-core 21.0.0", "test-parachain-adder", "test-parachain-halt", "tiny-keccak", @@ -18529,13 +19204,13 @@ dependencies = [ name = "test-runtime-constants" version = "1.0.0" dependencies = [ - "frame-support", - "polkadot-primitives", + "frame-support 4.0.0-dev", + "polkadot-primitives 1.0.0", "polkadot-runtime-common", "smallvec", - "sp-core", - "sp-runtime", - "sp-weights", + "sp-core 21.0.0", + "sp-runtime 24.0.0", + "sp-weights 20.0.0", ] [[package]] @@ -18971,7 +19646,7 @@ version = "1.0.0" dependencies = [ "coarsetime", "polkadot-node-jaeger", - "polkadot-primitives", + "polkadot-primitives 1.0.0", "tracing", "tracing-gum-proc-macro", ] @@ -19043,11 +19718,24 @@ dependencies = [ "keccak-hasher", "memory-db", "parity-scale-codec", - "trie-db", + "trie-db 0.28.0", "trie-root", "trie-standardmap", ] +[[package]] +name = "trie-db" +version = "0.27.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "767abe6ffed88a1889671a102c2861ae742726f52e0a5a425b92c9fbfa7e9c85" +dependencies = [ + "hash-db", + "hashbrown 0.13.2", + "log", + "rustc-hex", + "smallvec", +] + [[package]] name = "trie-db" version = "0.28.0" @@ -19150,22 +19838,22 @@ dependencies = [ "sc-executor", "serde", "serde_json", - "sp-api", - "sp-consensus-aura", + "sp-api 4.0.0-dev", + "sp-consensus-aura 0.10.0-dev", "sp-consensus-babe", - "sp-core", - "sp-debug-derive", - "sp-externalities", - "sp-inherents", - "sp-io", - "sp-keystore", + "sp-core 21.0.0", + "sp-debug-derive 8.0.0", + "sp-externalities 0.19.0", + "sp-inherents 4.0.0-dev", + "sp-io 23.0.0", + "sp-keystore 0.27.0", "sp-rpc", - "sp-runtime", - "sp-state-machine", - "sp-timestamp", + "sp-runtime 24.0.0", + "sp-state-machine 0.28.0", + "sp-timestamp 4.0.0-dev", "sp-transaction-storage-proof", - "sp-version", - "sp-weights", + "sp-version 22.0.0", + "sp-weights 20.0.0", "substrate-cli-test-utils", "substrate-rpc-client", "tempfile", @@ -20199,7 +20887,7 @@ dependencies = [ "frame-election-provider-support", "frame-executive", "frame-remote-externalities", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "frame-system-benchmarking", "frame-system-rpc-runtime-api", @@ -20253,8 +20941,8 @@ dependencies = [ "pallet-xcm", "pallet-xcm-benchmarks", "parity-scale-codec", - "polkadot-parachain-primitives", - "polkadot-primitives", + "polkadot-parachain-primitives 1.0.0", + "polkadot-primitives 1.0.0", "polkadot-runtime-common", "polkadot-runtime-parachains", "rustc-hex", @@ -20263,27 +20951,27 @@ dependencies = [ "serde_derive", "serde_json", "smallvec", - "sp-api", - "sp-application-crypto", - "sp-authority-discovery", + "sp-api 4.0.0-dev", + "sp-application-crypto 23.0.0", + "sp-authority-discovery 4.0.0-dev", "sp-block-builder", "sp-consensus-babe", "sp-consensus-beefy", - "sp-core", - "sp-inherents", - "sp-io", + "sp-core 21.0.0", + "sp-inherents 4.0.0-dev", + "sp-io 23.0.0", "sp-keyring", "sp-mmr-primitives", "sp-npos-elections", "sp-offchain", - "sp-runtime", + "sp-runtime 24.0.0", "sp-session", - "sp-staking", - "sp-std", - "sp-storage", - "sp-tracing", + "sp-staking 4.0.0-dev", + "sp-std 8.0.0", + "sp-storage 13.0.0", + "sp-tracing 10.0.0", "sp-transaction-pool", - "sp-version", + "sp-version 22.0.0", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -20297,13 +20985,13 @@ dependencies = [ name = "westend-runtime-constants" version = "1.0.0" dependencies = [ - "frame-support", - "polkadot-primitives", + "frame-support 4.0.0-dev", + "polkadot-primitives 1.0.0", "polkadot-runtime-common", "smallvec", - "sp-core", - "sp-runtime", - "sp-weights", + "sp-core 21.0.0", + "sp-runtime 24.0.0", + "sp-weights 20.0.0", ] [[package]] @@ -20653,7 +21341,7 @@ dependencies = [ "cumulus-primitives-core", "cumulus-primitives-parachain-inherent", "cumulus-test-relay-sproof-builder", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "impl-trait-for-tuples", "lazy_static", @@ -20663,15 +21351,15 @@ dependencies = [ "parachains-common", "parity-scale-codec", "paste", - "polkadot-parachain-primitives", - "polkadot-primitives", + "polkadot-parachain-primitives 1.0.0", + "polkadot-primitives 1.0.0", "polkadot-runtime-parachains", - "sp-arithmetic", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", - "sp-tracing", + "sp-arithmetic 16.0.0", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", + "sp-tracing 10.0.0", "staging-xcm", "staging-xcm-executor", ] @@ -20680,7 +21368,7 @@ dependencies = [ name = "xcm-executor-integration-tests" version = "1.0.0" dependencies = [ - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "futures", "pallet-xcm", @@ -20690,9 +21378,9 @@ dependencies = [ "polkadot-test-service", "sp-consensus", "sp-keyring", - "sp-runtime", - "sp-state-machine", - "sp-tracing", + "sp-runtime 24.0.0", + "sp-state-machine 0.28.0", + "sp-tracing 10.0.0", "staging-xcm", "staging-xcm-executor", ] @@ -20711,14 +21399,14 @@ dependencies = [ name = "xcm-simulator" version = "1.0.0" dependencies = [ - "frame-support", + "frame-support 4.0.0-dev", "parity-scale-codec", "paste", - "polkadot-core-primitives", - "polkadot-parachain-primitives", + "polkadot-core-primitives 1.0.0", + "polkadot-parachain-primitives 1.0.0", "polkadot-runtime-parachains", - "sp-io", - "sp-std", + "sp-io 23.0.0", + "sp-std 8.0.0", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -20728,7 +21416,7 @@ dependencies = [ name = "xcm-simulator-example" version = "1.0.0" dependencies = [ - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "log", "pallet-balances", @@ -20736,15 +21424,15 @@ dependencies = [ "pallet-uniques", "pallet-xcm", "parity-scale-codec", - "polkadot-core-primitives", - "polkadot-parachain-primitives", + "polkadot-core-primitives 1.0.0", + "polkadot-parachain-primitives 1.0.0", "polkadot-runtime-parachains", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", - "sp-tracing", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", + "sp-tracing 10.0.0", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -20756,21 +21444,21 @@ name = "xcm-simulator-fuzzer" version = "1.0.0" dependencies = [ "arbitrary", - "frame-support", + "frame-support 4.0.0-dev", "frame-system", "honggfuzz", "pallet-balances", "pallet-message-queue", "pallet-xcm", "parity-scale-codec", - "polkadot-core-primitives", - "polkadot-parachain-primitives", + "polkadot-core-primitives 1.0.0", + "polkadot-parachain-primitives 1.0.0", "polkadot-runtime-parachains", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 21.0.0", + "sp-io 23.0.0", + "sp-runtime 24.0.0", + "sp-std 8.0.0", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", diff --git a/cumulus/polkadot-parachain/Cargo.toml b/cumulus/polkadot-parachain/Cargo.toml index ac8ad53b52431..26aeb2436f6d5 100644 --- a/cumulus/polkadot-parachain/Cargo.toml +++ b/cumulus/polkadot-parachain/Cargo.toml @@ -87,6 +87,7 @@ cumulus-client-consensus-relay-chain = { path = "../client/consensus/relay-chain cumulus-client-consensus-common = { path = "../client/consensus/common" } cumulus-client-consensus-proposer = { path = "../client/consensus/proposer" } cumulus-client-service = { path = "../client/service" } +cumulus-primitives-aura = { path = "../../../../primitives/aura" } cumulus-primitives-core = { path = "../primitives/core" } cumulus-primitives-parachain-inherent = { path = "../primitives/parachain-inherent" } cumulus-relay-chain-interface = { path = "../client/relay-chain-interface" } From 55055d6f0f73db0c0328d2efa6942a95de842cbd Mon Sep 17 00:00:00 2001 From: BradleyOlson64 Date: Wed, 20 Sep 2023 11:43:11 -0700 Subject: [PATCH 07/15] Fixed file path --- Cargo.lock | 4865 +++++++++++-------------- cumulus/polkadot-parachain/Cargo.toml | 2 +- 2 files changed, 2090 insertions(+), 2777 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 886c1254e23ad..71cae36956363 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -698,7 +698,7 @@ version = "1.0.0" dependencies = [ "assert_matches", "asset-hub-kusama-runtime", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "integration-tests-common", "pallet-asset-conversion", @@ -707,11 +707,11 @@ dependencies = [ "pallet-xcm", "parachains-common", "parity-scale-codec", - "polkadot-core-primitives 1.0.0", - "polkadot-parachain-primitives 1.0.0", + "polkadot-core-primitives", + "polkadot-parachain-primitives", "polkadot-runtime", "polkadot-runtime-parachains", - "sp-runtime 24.0.0", + "sp-runtime", "staging-xcm", "xcm-emulator", ] @@ -732,7 +732,7 @@ dependencies = [ "cumulus-primitives-utility", "frame-benchmarking", "frame-executive", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "frame-system-benchmarking", "frame-system-rpc-runtime-api", @@ -764,25 +764,25 @@ dependencies = [ "parachain-info", "parachains-common", "parity-scale-codec", - "polkadot-core-primitives 1.0.0", - "polkadot-parachain-primitives 1.0.0", + "polkadot-core-primitives", + "polkadot-parachain-primitives", "polkadot-runtime-common", "primitive-types", "scale-info", "smallvec", - "sp-api 4.0.0-dev", + "sp-api", "sp-block-builder", - "sp-consensus-aura 0.10.0-dev", - "sp-core 21.0.0", - "sp-inherents 4.0.0-dev", + "sp-consensus-aura", + "sp-core", + "sp-inherents", "sp-offchain", - "sp-runtime 24.0.0", + "sp-runtime", "sp-session", - "sp-std 8.0.0", - "sp-storage 13.0.0", + "sp-std", + "sp-storage", "sp-transaction-pool", - "sp-version 22.0.0", - "sp-weights 20.0.0", + "sp-version", + "sp-weights", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -794,7 +794,7 @@ name = "asset-hub-polkadot-integration-tests" version = "1.0.0" dependencies = [ "asset-hub-kusama-runtime", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "integration-tests-common", "pallet-asset-conversion", @@ -803,11 +803,11 @@ dependencies = [ "pallet-xcm", "parachains-common", "parity-scale-codec", - "polkadot-core-primitives 1.0.0", - "polkadot-parachain-primitives 1.0.0", + "polkadot-core-primitives", + "polkadot-parachain-primitives", "polkadot-runtime", "polkadot-runtime-parachains", - "sp-runtime 24.0.0", + "sp-runtime", "staging-xcm", "xcm-emulator", ] @@ -828,7 +828,7 @@ dependencies = [ "cumulus-primitives-utility", "frame-benchmarking", "frame-executive", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "frame-system-benchmarking", "frame-system-rpc-runtime-api", @@ -856,25 +856,25 @@ dependencies = [ "parachain-info", "parachains-common", "parity-scale-codec", - "polkadot-core-primitives 1.0.0", - "polkadot-parachain-primitives 1.0.0", + "polkadot-core-primitives", + "polkadot-parachain-primitives", "polkadot-runtime-common", "polkadot-runtime-constants", "scale-info", "smallvec", - "sp-api 4.0.0-dev", + "sp-api", "sp-block-builder", - "sp-consensus-aura 0.10.0-dev", - "sp-core 21.0.0", - "sp-inherents 4.0.0-dev", + "sp-consensus-aura", + "sp-core", + "sp-inherents", "sp-offchain", - "sp-runtime 24.0.0", + "sp-runtime", "sp-session", - "sp-std 8.0.0", - "sp-storage 13.0.0", + "sp-std", + "sp-storage", "sp-transaction-pool", - "sp-version 22.0.0", - "sp-weights 20.0.0", + "sp-version", + "sp-weights", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -887,7 +887,7 @@ version = "1.0.0" dependencies = [ "assert_matches", "asset-hub-westend-runtime", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "integration-tests-common", "pallet-asset-conversion", @@ -896,11 +896,11 @@ dependencies = [ "pallet-xcm", "parachains-common", "parity-scale-codec", - "polkadot-core-primitives 1.0.0", - "polkadot-parachain-primitives 1.0.0", + "polkadot-core-primitives", + "polkadot-parachain-primitives", "polkadot-runtime", "polkadot-runtime-parachains", - "sp-runtime 24.0.0", + "sp-runtime", "staging-xcm", "xcm-emulator", ] @@ -921,7 +921,7 @@ dependencies = [ "cumulus-primitives-utility", "frame-benchmarking", "frame-executive", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "frame-system-benchmarking", "frame-system-rpc-runtime-api", @@ -951,25 +951,25 @@ dependencies = [ "parachain-info", "parachains-common", "parity-scale-codec", - "polkadot-core-primitives 1.0.0", - "polkadot-parachain-primitives 1.0.0", + "polkadot-core-primitives", + "polkadot-parachain-primitives", "polkadot-runtime-common", "primitive-types", "scale-info", "smallvec", - "sp-api 4.0.0-dev", + "sp-api", "sp-block-builder", - "sp-consensus-aura 0.10.0-dev", - "sp-core 21.0.0", - "sp-inherents 4.0.0-dev", - "sp-io 23.0.0", + "sp-consensus-aura", + "sp-core", + "sp-inherents", + "sp-io", "sp-offchain", - "sp-runtime 24.0.0", + "sp-runtime", "sp-session", - "sp-std 8.0.0", - "sp-storage 13.0.0", + "sp-std", + "sp-storage", "sp-transaction-pool", - "sp-version 22.0.0", + "sp-version", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -988,7 +988,7 @@ dependencies = [ "cumulus-primitives-core", "cumulus-primitives-parachain-inherent", "cumulus-test-relay-sproof-builder", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "hex-literal", "pallet-assets", @@ -1000,12 +1000,12 @@ dependencies = [ "parachains-common", "parachains-runtimes-test-utils", "parity-scale-codec", - "polkadot-parachain-primitives 1.0.0", - "sp-consensus-aura 0.10.0-dev", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "polkadot-parachain-primitives", + "sp-consensus-aura", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", "staging-xcm", "staging-xcm-executor", "substrate-wasm-builder", @@ -1016,7 +1016,7 @@ name = "assets-common" version = "0.1.0" dependencies = [ "cumulus-primitives-core", - "frame-support 4.0.0-dev", + "frame-support", "impl-trait-for-tuples", "log", "pallet-asset-conversion", @@ -1025,9 +1025,9 @@ dependencies = [ "parachains-common", "parity-scale-codec", "scale-info", - "sp-api 4.0.0-dev", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-api", + "sp-runtime", + "sp-std", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -1320,8 +1320,8 @@ dependencies = [ "env_logger 0.9.3", "hash-db", "log", - "sp-core 21.0.0", - "sp-runtime 24.0.0", + "sp-core", + "sp-runtime", ] [[package]] @@ -1544,7 +1544,7 @@ name = "bp-asset-hub-kusama" version = "0.1.0" dependencies = [ "bp-xcm-bridge-hub-router", - "frame-support 4.0.0-dev", + "frame-support", "parity-scale-codec", "scale-info", ] @@ -1554,10 +1554,10 @@ name = "bp-asset-hub-polkadot" version = "0.1.0" dependencies = [ "bp-xcm-bridge-hub-router", - "frame-support 4.0.0-dev", + "frame-support", "parity-scale-codec", "scale-info", - "sp-runtime 24.0.0", + "sp-runtime", ] [[package]] @@ -1567,11 +1567,11 @@ dependencies = [ "bp-messages", "bp-polkadot-core", "bp-runtime", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", - "polkadot-primitives 1.0.0", - "sp-api 4.0.0-dev", - "sp-std 8.0.0", + "polkadot-primitives", + "sp-api", + "sp-std", ] [[package]] @@ -1581,10 +1581,10 @@ dependencies = [ "bp-bridge-hub-cumulus", "bp-messages", "bp-runtime", - "frame-support 4.0.0-dev", - "sp-api 4.0.0-dev", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "frame-support", + "sp-api", + "sp-runtime", + "sp-std", ] [[package]] @@ -1594,10 +1594,10 @@ dependencies = [ "bp-bridge-hub-cumulus", "bp-messages", "bp-runtime", - "frame-support 4.0.0-dev", - "sp-api 4.0.0-dev", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "frame-support", + "sp-api", + "sp-runtime", + "sp-std", ] [[package]] @@ -1607,10 +1607,10 @@ dependencies = [ "bp-bridge-hub-cumulus", "bp-messages", "bp-runtime", - "frame-support 4.0.0-dev", - "sp-api 4.0.0-dev", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "frame-support", + "sp-api", + "sp-runtime", + "sp-std", ] [[package]] @@ -1620,10 +1620,10 @@ dependencies = [ "bp-bridge-hub-cumulus", "bp-messages", "bp-runtime", - "frame-support 4.0.0-dev", - "sp-api 4.0.0-dev", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "frame-support", + "sp-api", + "sp-runtime", + "sp-std", ] [[package]] @@ -1633,16 +1633,16 @@ dependencies = [ "bp-runtime", "bp-test-utils", "finality-grandpa", - "frame-support 4.0.0-dev", + "frame-support", "hex", "hex-literal", "parity-scale-codec", "scale-info", "serde", "sp-consensus-grandpa", - "sp-core 21.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-core", + "sp-runtime", + "sp-std", ] [[package]] @@ -1652,9 +1652,9 @@ dependencies = [ "bp-header-chain", "bp-polkadot-core", "bp-runtime", - "frame-support 4.0.0-dev", - "sp-api 4.0.0-dev", - "sp-std 8.0.0", + "frame-support", + "sp-api", + "sp-std", ] [[package]] @@ -1663,14 +1663,14 @@ version = "0.1.0" dependencies = [ "bp-header-chain", "bp-runtime", - "frame-support 4.0.0-dev", + "frame-support", "hex", "hex-literal", "parity-scale-codec", "scale-info", "serde", - "sp-core 21.0.0", - "sp-std 8.0.0", + "sp-core", + "sp-std", ] [[package]] @@ -1680,13 +1680,13 @@ dependencies = [ "bp-header-chain", "bp-polkadot-core", "bp-runtime", - "frame-support 4.0.0-dev", + "frame-support", "impl-trait-for-tuples", "parity-scale-codec", "scale-info", - "sp-core 21.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-core", + "sp-runtime", + "sp-std", ] [[package]] @@ -1696,9 +1696,9 @@ dependencies = [ "bp-header-chain", "bp-polkadot-core", "bp-runtime", - "frame-support 4.0.0-dev", - "sp-api 4.0.0-dev", - "sp-std 8.0.0", + "frame-support", + "sp-api", + "sp-std", ] [[package]] @@ -1707,16 +1707,16 @@ version = "0.1.0" dependencies = [ "bp-messages", "bp-runtime", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "hex", "parity-scale-codec", "parity-util-mem", "scale-info", "serde", - "sp-core 21.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-core", + "sp-runtime", + "sp-std", ] [[package]] @@ -1725,13 +1725,13 @@ version = "0.1.0" dependencies = [ "bp-messages", "bp-runtime", - "frame-support 4.0.0-dev", + "frame-support", "hex", "hex-literal", "parity-scale-codec", "scale-info", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-runtime", + "sp-std", ] [[package]] @@ -1741,16 +1741,16 @@ dependencies = [ "bp-header-chain", "bp-polkadot-core", "bp-runtime", - "frame-support 4.0.0-dev", - "sp-api 4.0.0-dev", - "sp-std 8.0.0", + "frame-support", + "sp-api", + "sp-std", ] [[package]] name = "bp-runtime" version = "0.1.0" dependencies = [ - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "hash-db", "hex-literal", @@ -1760,13 +1760,13 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-state-machine 0.28.0", - "sp-std 8.0.0", - "sp-trie 22.0.0", - "trie-db 0.28.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-state-machine", + "sp-std", + "sp-trie", + "trie-db", ] [[package]] @@ -1780,12 +1780,12 @@ dependencies = [ "ed25519-dalek", "finality-grandpa", "parity-scale-codec", - "sp-application-crypto 23.0.0", + "sp-application-crypto", "sp-consensus-grandpa", - "sp-core 21.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", - "sp-trie 22.0.0", + "sp-core", + "sp-runtime", + "sp-std", + "sp-trie", ] [[package]] @@ -1796,9 +1796,9 @@ dependencies = [ "bp-polkadot-core", "bp-rococo", "bp-runtime", - "frame-support 4.0.0-dev", - "sp-api 4.0.0-dev", - "sp-std 8.0.0", + "frame-support", + "sp-api", + "sp-std", ] [[package]] @@ -1807,8 +1807,8 @@ version = "0.1.0" dependencies = [ "parity-scale-codec", "scale-info", - "sp-core 21.0.0", - "sp-runtime 24.0.0", + "sp-core", + "sp-runtime", ] [[package]] @@ -1826,7 +1826,7 @@ dependencies = [ "cumulus-primitives-utility", "frame-benchmarking", "frame-executive", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "frame-system-benchmarking", "frame-system-rpc-runtime-api", @@ -1849,25 +1849,25 @@ dependencies = [ "parachain-info", "parachains-common", "parity-scale-codec", - "polkadot-core-primitives 1.0.0", - "polkadot-parachain-primitives 1.0.0", + "polkadot-core-primitives", + "polkadot-parachain-primitives", "polkadot-runtime-common", "scale-info", "serde", "smallvec", - "sp-api 4.0.0-dev", + "sp-api", "sp-block-builder", - "sp-consensus-aura 0.10.0-dev", - "sp-core 21.0.0", - "sp-inherents 4.0.0-dev", - "sp-io 23.0.0", + "sp-consensus-aura", + "sp-core", + "sp-inherents", + "sp-io", "sp-offchain", - "sp-runtime 24.0.0", + "sp-runtime", "sp-session", - "sp-std 8.0.0", - "sp-storage 13.0.0", + "sp-std", + "sp-storage", "sp-transaction-pool", - "sp-version 22.0.0", + "sp-version", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -1889,7 +1889,7 @@ dependencies = [ "cumulus-primitives-utility", "frame-benchmarking", "frame-executive", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "frame-system-benchmarking", "frame-system-rpc-runtime-api", @@ -1911,26 +1911,26 @@ dependencies = [ "parachain-info", "parachains-common", "parity-scale-codec", - "polkadot-core-primitives 1.0.0", - "polkadot-parachain-primitives 1.0.0", + "polkadot-core-primitives", + "polkadot-parachain-primitives", "polkadot-runtime-common", "polkadot-runtime-constants", "scale-info", "serde", "smallvec", - "sp-api 4.0.0-dev", + "sp-api", "sp-block-builder", - "sp-consensus-aura 0.10.0-dev", - "sp-core 21.0.0", - "sp-inherents 4.0.0-dev", - "sp-io 23.0.0", + "sp-consensus-aura", + "sp-core", + "sp-inherents", + "sp-io", "sp-offchain", - "sp-runtime 24.0.0", + "sp-runtime", "sp-session", - "sp-std 8.0.0", - "sp-storage 13.0.0", + "sp-std", + "sp-storage", "sp-transaction-pool", - "sp-version 22.0.0", + "sp-version", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -1944,14 +1944,14 @@ dependencies = [ "bp-messages", "cumulus-pallet-dmp-queue", "cumulus-pallet-xcmp-queue", - "frame-support 4.0.0-dev", + "frame-support", "integration-tests-common", "pallet-bridge-messages", "pallet-xcm", "parachains-common", "parity-scale-codec", - "polkadot-core-primitives 1.0.0", - "polkadot-parachain-primitives 1.0.0", + "polkadot-core-primitives", + "polkadot-parachain-primitives", "polkadot-runtime", "polkadot-runtime-parachains", "staging-xcm", @@ -1984,7 +1984,7 @@ dependencies = [ "cumulus-primitives-utility", "frame-benchmarking", "frame-executive", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "frame-system-benchmarking", "frame-system-rpc-runtime-api", @@ -2010,27 +2010,27 @@ dependencies = [ "parachain-info", "parachains-common", "parity-scale-codec", - "polkadot-core-primitives 1.0.0", - "polkadot-parachain-primitives 1.0.0", + "polkadot-core-primitives", + "polkadot-parachain-primitives", "polkadot-runtime-common", "rococo-runtime-constants", "scale-info", "serde", "smallvec", - "sp-api 4.0.0-dev", + "sp-api", "sp-block-builder", - "sp-consensus-aura 0.10.0-dev", - "sp-core 21.0.0", - "sp-inherents 4.0.0-dev", - "sp-io 23.0.0", + "sp-consensus-aura", + "sp-core", + "sp-inherents", + "sp-io", "sp-keyring", "sp-offchain", - "sp-runtime 24.0.0", + "sp-runtime", "sp-session", - "sp-std 8.0.0", - "sp-storage 13.0.0", + "sp-std", + "sp-storage", "sp-transaction-pool", - "sp-version 22.0.0", + "sp-version", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -2059,7 +2059,7 @@ dependencies = [ "cumulus-pallet-xcmp-queue", "frame-benchmarking", "frame-executive", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "log", "pallet-balances", @@ -2076,10 +2076,10 @@ dependencies = [ "parachains-common", "parachains-runtimes-test-utils", "parity-scale-codec", - "sp-core 21.0.0", - "sp-io 23.0.0", + "sp-core", + "sp-io", "sp-keyring", - "sp-runtime 24.0.0", + "sp-runtime", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -2097,7 +2097,7 @@ dependencies = [ "bp-runtime", "bp-test-utils", "bp-xcm-bridge-hub-router", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "hash-db", "log", @@ -2110,12 +2110,12 @@ dependencies = [ "pallet-utility", "parity-scale-codec", "scale-info", - "sp-api 4.0.0-dev", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", - "sp-trie 22.0.0", + "sp-api", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", + "sp-trie", "staging-xcm", "staging-xcm-builder", "static_assertions", @@ -2338,8 +2338,8 @@ dependencies = [ "rand 0.8.5", "sc-chain-spec", "sc-keystore", - "sp-core 21.0.0", - "sp-keystore 0.27.0", + "sp-core", + "sp-keystore", ] [[package]] @@ -2561,7 +2561,7 @@ dependencies = [ "collectives-polkadot-runtime", "cumulus-pallet-parachain-system", "cumulus-pallet-xcmp-queue", - "frame-support 4.0.0-dev", + "frame-support", "integration-tests-common", "pallet-assets", "pallet-core-fellowship", @@ -2569,12 +2569,12 @@ dependencies = [ "pallet-xcm", "parachains-common", "parity-scale-codec", - "polkadot-core-primitives 1.0.0", - "polkadot-parachain-primitives 1.0.0", + "polkadot-core-primitives", + "polkadot-parachain-primitives", "polkadot-runtime", "polkadot-runtime-parachains", - "sp-core 21.0.0", - "sp-runtime 24.0.0", + "sp-core", + "sp-runtime", "staging-xcm", "xcm-emulator", ] @@ -2593,7 +2593,7 @@ dependencies = [ "cumulus-primitives-utility", "frame-benchmarking", "frame-executive", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "frame-system-benchmarking", "frame-system-rpc-runtime-api", @@ -2623,26 +2623,26 @@ dependencies = [ "parachain-info", "parachains-common", "parity-scale-codec", - "polkadot-core-primitives 1.0.0", - "polkadot-parachain-primitives 1.0.0", + "polkadot-core-primitives", + "polkadot-parachain-primitives", "polkadot-runtime-common", "polkadot-runtime-constants", "scale-info", "smallvec", - "sp-api 4.0.0-dev", - "sp-arithmetic 16.0.0", + "sp-api", + "sp-arithmetic", "sp-block-builder", - "sp-consensus-aura 0.10.0-dev", - "sp-core 21.0.0", - "sp-inherents 4.0.0-dev", - "sp-io 23.0.0", + "sp-consensus-aura", + "sp-core", + "sp-inherents", + "sp-io", "sp-offchain", - "sp-runtime 24.0.0", + "sp-runtime", "sp-session", - "sp-std 8.0.0", - "sp-storage 13.0.0", + "sp-std", + "sp-storage", "sp-transaction-pool", - "sp-version 22.0.0", + "sp-version", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -2809,7 +2809,7 @@ dependencies = [ "cumulus-primitives-utility", "frame-benchmarking", "frame-executive", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "frame-system-benchmarking", "frame-system-rpc-runtime-api", @@ -2835,23 +2835,23 @@ dependencies = [ "parachain-info", "parachains-common", "parity-scale-codec", - "polkadot-core-primitives 1.0.0", - "polkadot-parachain-primitives 1.0.0", + "polkadot-core-primitives", + "polkadot-parachain-primitives", "polkadot-runtime-common", "scale-info", "smallvec", - "sp-api 4.0.0-dev", + "sp-api", "sp-block-builder", - "sp-consensus-aura 0.10.0-dev", - "sp-core 21.0.0", - "sp-inherents 4.0.0-dev", + "sp-consensus-aura", + "sp-core", + "sp-inherents", "sp-offchain", - "sp-runtime 24.0.0", + "sp-runtime", "sp-session", - "sp-std 8.0.0", - "sp-storage 13.0.0", + "sp-std", + "sp-storage", "sp-transaction-pool", - "sp-version 22.0.0", + "sp-version", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -3256,8 +3256,8 @@ dependencies = [ "sc-cli", "sc-client-api", "sc-service", - "sp-core 21.0.0", - "sp-runtime 24.0.0", + "sp-core", + "sp-runtime", "url", ] @@ -3279,15 +3279,15 @@ dependencies = [ "polkadot-node-subsystem", "polkadot-node-subsystem-test-helpers", "polkadot-overseer", - "polkadot-primitives 1.0.0", + "polkadot-primitives", "sc-client-api", - "sp-api 4.0.0-dev", + "sp-api", "sp-consensus", - "sp-core 21.0.0", + "sp-core", "sp-maybe-compressed-blob", - "sp-runtime 24.0.0", - "sp-state-machine 0.28.0", - "sp-tracing 10.0.0", + "sp-runtime", + "sp-state-machine", + "sp-tracing", "tracing", ] @@ -3299,7 +3299,7 @@ dependencies = [ "cumulus-client-collator", "cumulus-client-consensus-common", "cumulus-client-consensus-proposer", - "cumulus-primitives-aura 0.1.0", + "cumulus-primitives-aura", "cumulus-primitives-core", "cumulus-primitives-parachain-inherent", "cumulus-relay-chain-interface", @@ -3308,7 +3308,7 @@ dependencies = [ "polkadot-node-primitives", "polkadot-node-subsystem", "polkadot-overseer", - "polkadot-primitives 1.0.0", + "polkadot-primitives", "sc-client-api", "sc-consensus", "sc-consensus-aura", @@ -3316,18 +3316,18 @@ dependencies = [ "sc-consensus-slots", "sc-telemetry", "schnellru", - "sp-api 4.0.0-dev", - "sp-application-crypto 23.0.0", + "sp-api", + "sp-application-crypto", "sp-block-builder", "sp-blockchain", "sp-consensus", - "sp-consensus-aura 0.10.0-dev", - "sp-core 21.0.0", - "sp-inherents 4.0.0-dev", - "sp-keystore 0.27.0", - "sp-runtime 24.0.0", - "sp-state-machine 0.28.0", - "sp-timestamp 4.0.0-dev", + "sp-consensus-aura", + "sp-core", + "sp-inherents", + "sp-keystore", + "sp-runtime", + "sp-state-machine", + "sp-timestamp", "substrate-prometheus-endpoint", "tracing", ] @@ -3347,19 +3347,19 @@ dependencies = [ "futures-timer", "log", "parity-scale-codec", - "polkadot-primitives 1.0.0", + "polkadot-primitives", "sc-client-api", "sc-consensus", "sc-consensus-babe", "schnellru", "sp-blockchain", "sp-consensus", - "sp-consensus-slots 0.10.0-dev", - "sp-core 21.0.0", - "sp-runtime 24.0.0", - "sp-timestamp 4.0.0-dev", - "sp-tracing 10.0.0", - "sp-trie 22.0.0", + "sp-consensus-slots", + "sp-core", + "sp-runtime", + "sp-timestamp", + "sp-tracing", + "sp-trie", "substrate-prometheus-endpoint", "tracing", ] @@ -3372,9 +3372,9 @@ dependencies = [ "async-trait", "cumulus-primitives-parachain-inherent", "sp-consensus", - "sp-inherents 4.0.0-dev", - "sp-runtime 24.0.0", - "sp-state-machine 0.28.0", + "sp-inherents", + "sp-runtime", + "sp-state-machine", "thiserror", ] @@ -3389,13 +3389,13 @@ dependencies = [ "futures", "parking_lot 0.12.1", "sc-consensus", - "sp-api 4.0.0-dev", + "sp-api", "sp-block-builder", "sp-blockchain", "sp-consensus", - "sp-core 21.0.0", - "sp-inherents 4.0.0-dev", - "sp-runtime 24.0.0", + "sp-core", + "sp-inherents", + "sp-runtime", "substrate-prometheus-endpoint", "tracing", ] @@ -3414,19 +3414,19 @@ dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", "polkadot-node-primitives", - "polkadot-parachain-primitives 1.0.0", - "polkadot-primitives 1.0.0", + "polkadot-parachain-primitives", + "polkadot-primitives", "polkadot-test-client", "portpicker", "sc-cli", "sc-client-api", "sp-blockchain", "sp-consensus", - "sp-core 21.0.0", + "sp-core", "sp-keyring", - "sp-keystore 0.27.0", - "sp-runtime 24.0.0", - "sp-state-machine 0.28.0", + "sp-keystore", + "sp-runtime", + "sp-state-machine", "substrate-test-utils", "tokio", "tracing", @@ -3447,7 +3447,7 @@ dependencies = [ "polkadot-node-primitives", "polkadot-node-subsystem", "polkadot-overseer", - "polkadot-primitives 1.0.0", + "polkadot-primitives", "portpicker", "rand 0.8.5", "sc-cli", @@ -3455,7 +3455,7 @@ dependencies = [ "sc-consensus", "sp-consensus", "sp-maybe-compressed-blob", - "sp-runtime 24.0.0", + "sp-runtime", "substrate-test-utils", "tokio", "tracing", @@ -3475,7 +3475,7 @@ dependencies = [ "cumulus-relay-chain-interface", "cumulus-relay-chain-minimal-node", "futures", - "polkadot-primitives 1.0.0", + "polkadot-primitives", "sc-client-api", "sc-consensus", "sc-network", @@ -3487,11 +3487,11 @@ dependencies = [ "sc-telemetry", "sc-transaction-pool", "sc-utils", - "sp-api 4.0.0-dev", + "sp-api", "sp-blockchain", "sp-consensus", - "sp-core 21.0.0", - "sp-runtime 24.0.0", + "sp-core", + "sp-runtime", "sp-transaction-pool", ] @@ -3500,16 +3500,16 @@ name = "cumulus-pallet-aura-ext" version = "0.1.0" dependencies = [ "cumulus-pallet-parachain-system", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "pallet-aura", "pallet-timestamp", "parity-scale-codec", "scale-info", - "sp-application-crypto 23.0.0", - "sp-consensus-aura 0.10.0-dev", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-application-crypto", + "sp-consensus-aura", + "sp-runtime", + "sp-std", ] [[package]] @@ -3517,16 +3517,16 @@ name = "cumulus-pallet-dmp-queue" version = "0.1.0" dependencies = [ "cumulus-primitives-core", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "log", "parity-scale-codec", "scale-info", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", - "sp-version 22.0.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", + "sp-version", "staging-xcm", ] @@ -3542,29 +3542,29 @@ dependencies = [ "cumulus-test-client", "cumulus-test-relay-sproof-builder", "environmental", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "hex-literal", "impl-trait-for-tuples", "lazy_static", "log", "parity-scale-codec", - "polkadot-parachain-primitives 1.0.0", + "polkadot-parachain-primitives", "sc-client-api", "scale-info", - "sp-core 21.0.0", - "sp-externalities 0.19.0", - "sp-inherents 4.0.0-dev", - "sp-io 23.0.0", + "sp-core", + "sp-externalities", + "sp-inherents", + "sp-io", "sp-keyring", - "sp-runtime 24.0.0", - "sp-state-machine 0.28.0", - "sp-std 8.0.0", - "sp-tracing 10.0.0", - "sp-trie 22.0.0", - "sp-version 22.0.0", + "sp-runtime", + "sp-state-machine", + "sp-std", + "sp-tracing", + "sp-trie", + "sp-version", "staging-xcm", - "trie-db 0.28.0", + "trie-db", ] [[package]] @@ -3582,12 +3582,12 @@ name = "cumulus-pallet-session-benchmarking" version = "3.0.0" dependencies = [ "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "pallet-session", "parity-scale-codec", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-runtime", + "sp-std", ] [[package]] @@ -3595,14 +3595,14 @@ name = "cumulus-pallet-solo-to-para" version = "0.1.0" dependencies = [ "cumulus-pallet-parachain-system", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "pallet-sudo", "parity-scale-codec", - "polkadot-primitives 1.0.0", + "polkadot-primitives", "scale-info", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-runtime", + "sp-std", ] [[package]] @@ -3610,13 +3610,13 @@ name = "cumulus-pallet-xcm" version = "0.1.0" dependencies = [ "cumulus-primitives-core", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "parity-scale-codec", "scale-info", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-io", + "sp-runtime", + "sp-std", "staging-xcm", ] @@ -3627,7 +3627,7 @@ dependencies = [ "cumulus-pallet-parachain-system", "cumulus-primitives-core", "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "log", "pallet-balances", @@ -3635,10 +3635,10 @@ dependencies = [ "polkadot-runtime-common", "rand_chacha 0.3.1", "scale-info", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -3650,12 +3650,12 @@ version = "0.1.0" dependencies = [ "cumulus-pallet-xcm", "cumulus-primitives-core", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "parity-scale-codec", "scale-info", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-runtime", + "sp-std", "staging-xcm", ] @@ -3664,27 +3664,12 @@ name = "cumulus-primitives-aura" version = "0.1.0" dependencies = [ "parity-scale-codec", - "polkadot-core-primitives 1.0.0", - "polkadot-primitives 1.0.0", - "sp-api 4.0.0-dev", - "sp-consensus-aura 0.10.0-dev", - "sp-runtime 24.0.0", - "sp-std 8.0.0", -] - -[[package]] -name = "cumulus-primitives-aura" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7ce9b0f7246391f088268b68fad56567e04e17ecc29b22657034fbb3f9d3eb9c" -dependencies = [ - "parity-scale-codec", - "polkadot-core-primitives 2.0.0", - "polkadot-primitives 2.0.0", - "sp-api 21.0.0", - "sp-consensus-aura 0.27.0", - "sp-runtime 26.0.0", - "sp-std 10.0.0", + "polkadot-core-primitives", + "polkadot-primitives", + "sp-api", + "sp-consensus-aura", + "sp-runtime", + "sp-std", ] [[package]] @@ -3692,14 +3677,14 @@ name = "cumulus-primitives-core" version = "0.1.0" dependencies = [ "parity-scale-codec", - "polkadot-core-primitives 1.0.0", - "polkadot-parachain-primitives 1.0.0", - "polkadot-primitives 1.0.0", + "polkadot-core-primitives", + "polkadot-parachain-primitives", + "polkadot-primitives", "scale-info", - "sp-api 4.0.0-dev", - "sp-runtime 24.0.0", - "sp-std 8.0.0", - "sp-trie 22.0.0", + "sp-api", + "sp-runtime", + "sp-std", + "sp-trie", "staging-xcm", ] @@ -3714,14 +3699,14 @@ dependencies = [ "parity-scale-codec", "sc-client-api", "scale-info", - "sp-api 4.0.0-dev", - "sp-core 21.0.0", - "sp-inherents 4.0.0-dev", - "sp-runtime 24.0.0", - "sp-state-machine 0.28.0", - "sp-std 8.0.0", - "sp-storage 13.0.0", - "sp-trie 22.0.0", + "sp-api", + "sp-core", + "sp-inherents", + "sp-runtime", + "sp-state-machine", + "sp-std", + "sp-storage", + "sp-trie", "tracing", ] @@ -3732,9 +3717,9 @@ dependencies = [ "cumulus-primitives-core", "futures", "parity-scale-codec", - "sp-inherents 4.0.0-dev", - "sp-std 8.0.0", - "sp-timestamp 4.0.0-dev", + "sp-inherents", + "sp-std", + "sp-timestamp", ] [[package]] @@ -3742,13 +3727,13 @@ name = "cumulus-primitives-utility" version = "0.1.0" dependencies = [ "cumulus-primitives-core", - "frame-support 4.0.0-dev", + "frame-support", "log", "parity-scale-codec", "polkadot-runtime-common", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-io", + "sp-runtime", + "sp-std", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -3765,7 +3750,7 @@ dependencies = [ "futures", "futures-timer", "polkadot-cli", - "polkadot-primitives 1.0.0", + "polkadot-primitives", "polkadot-service", "polkadot-test-client", "prioritized-metered-channel", @@ -3774,12 +3759,12 @@ dependencies = [ "sc-sysinfo", "sc-telemetry", "sc-tracing", - "sp-api 4.0.0-dev", + "sp-api", "sp-consensus", - "sp-core 21.0.0", + "sp-core", "sp-keyring", - "sp-runtime 24.0.0", - "sp-state-machine 0.28.0", + "sp-runtime", + "sp-state-machine", ] [[package]] @@ -3793,9 +3778,9 @@ dependencies = [ "parity-scale-codec", "polkadot-overseer", "sc-client-api", - "sp-api 4.0.0-dev", + "sp-api", "sp-blockchain", - "sp-state-machine 0.28.0", + "sp-state-machine", "thiserror", ] @@ -3811,14 +3796,14 @@ dependencies = [ "futures", "polkadot-availability-recovery", "polkadot-collator-protocol", - "polkadot-core-primitives 1.0.0", + "polkadot-core-primitives", "polkadot-network-bridge", "polkadot-node-collation-generation", "polkadot-node-core-runtime-api", "polkadot-node-network-protocol", "polkadot-node-subsystem-util", "polkadot-overseer", - "polkadot-primitives 1.0.0", + "polkadot-primitives", "sc-authority-discovery", "sc-network", "sc-network-common", @@ -3826,10 +3811,10 @@ dependencies = [ "sc-tracing", "sc-utils", "schnellru", - "sp-api 4.0.0-dev", + "sp-api", "sp-consensus", "sp-consensus-babe", - "sp-runtime 24.0.0", + "sp-runtime", "tracing", ] @@ -3856,13 +3841,13 @@ dependencies = [ "serde_json", "smoldot", "smoldot-light", - "sp-api 4.0.0-dev", - "sp-authority-discovery 4.0.0-dev", + "sp-api", + "sp-authority-discovery", "sp-consensus-babe", - "sp-core 21.0.0", - "sp-runtime 24.0.0", - "sp-state-machine 0.28.0", - "sp-storage 13.0.0", + "sp-core", + "sp-runtime", + "sp-state-machine", + "sp-storage", "thiserror", "tokio", "tokio-util", @@ -3883,21 +3868,21 @@ dependencies = [ "pallet-balances", "pallet-transaction-payment", "parity-scale-codec", - "polkadot-parachain-primitives 1.0.0", - "polkadot-primitives 1.0.0", + "polkadot-parachain-primitives", + "polkadot-primitives", "sc-block-builder", "sc-consensus", "sc-executor", "sc-executor-common", "sc-service", - "sp-api 4.0.0-dev", + "sp-api", "sp-blockchain", - "sp-core 21.0.0", - "sp-inherents 4.0.0-dev", - "sp-io 23.0.0", + "sp-core", + "sp-inherents", + "sp-io", "sp-keyring", - "sp-runtime 24.0.0", - "sp-timestamp 4.0.0-dev", + "sp-runtime", + "sp-timestamp", "substrate-test-client", ] @@ -3907,11 +3892,11 @@ version = "0.1.0" dependencies = [ "cumulus-primitives-core", "parity-scale-codec", - "polkadot-primitives 1.0.0", - "sp-runtime 24.0.0", - "sp-state-machine 0.28.0", - "sp-std 8.0.0", - "sp-trie 22.0.0", + "polkadot-primitives", + "sp-runtime", + "sp-state-machine", + "sp-std", + "sp-trie", ] [[package]] @@ -3921,7 +3906,7 @@ dependencies = [ "cumulus-pallet-parachain-system", "cumulus-primitives-core", "frame-executive", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "frame-system-rpc-runtime-api", "pallet-balances", @@ -3931,17 +3916,17 @@ dependencies = [ "pallet-transaction-payment", "parity-scale-codec", "scale-info", - "sp-api 4.0.0-dev", + "sp-api", "sp-block-builder", - "sp-core 21.0.0", - "sp-inherents 4.0.0-dev", - "sp-io 23.0.0", + "sp-core", + "sp-inherents", + "sp-io", "sp-offchain", - "sp-runtime 24.0.0", + "sp-runtime", "sp-session", - "sp-std 8.0.0", + "sp-std", "sp-transaction-pool", - "sp-version 22.0.0", + "sp-version", "substrate-wasm-builder", ] @@ -3978,7 +3963,7 @@ dependencies = [ "polkadot-cli", "polkadot-node-subsystem", "polkadot-overseer", - "polkadot-primitives 1.0.0", + "polkadot-primitives", "polkadot-service", "polkadot-test-service", "portpicker", @@ -4000,19 +3985,19 @@ dependencies = [ "sc-transaction-pool", "sc-transaction-pool-api", "serde", - "sp-api 4.0.0-dev", - "sp-arithmetic 16.0.0", - "sp-authority-discovery 4.0.0-dev", + "sp-api", + "sp-arithmetic", + "sp-authority-discovery", "sp-blockchain", "sp-consensus", "sp-consensus-grandpa", - "sp-core 21.0.0", - "sp-io 23.0.0", + "sp-core", + "sp-io", "sp-keyring", - "sp-runtime 24.0.0", - "sp-state-machine 0.28.0", - "sp-timestamp 4.0.0-dev", - "sp-tracing 10.0.0", + "sp-runtime", + "sp-state-machine", + "sp-timestamp", + "sp-tracing", "substrate-test-client", "substrate-test-utils", "tempfile", @@ -4778,7 +4763,7 @@ dependencies = [ "honggfuzz", "polkadot-erasure-coding", "polkadot-node-primitives", - "polkadot-primitives 1.0.0", + "polkadot-primitives", ] [[package]] @@ -5127,8 +5112,8 @@ name = "frame-benchmarking" version = "4.0.0-dev" dependencies = [ "array-bytes", - "frame-support 4.0.0-dev", - "frame-support-procedural 4.0.0-dev", + "frame-support", + "frame-support-procedural", "frame-system", "linregress", "log", @@ -5137,15 +5122,15 @@ dependencies = [ "rusty-fork", "scale-info", "serde", - "sp-api 4.0.0-dev", - "sp-application-crypto 23.0.0", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-keystore 0.27.0", - "sp-runtime 24.0.0", - "sp-runtime-interface 17.0.0", - "sp-std 8.0.0", - "sp-storage 13.0.0", + "sp-api", + "sp-application-crypto", + "sp-core", + "sp-io", + "sp-keystore", + "sp-runtime", + "sp-runtime-interface", + "sp-std", + "sp-storage", "static_assertions", ] @@ -5159,7 +5144,7 @@ dependencies = [ "clap 4.4.4", "comfy-table", "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "gethostname", "handlebars", @@ -5179,19 +5164,19 @@ dependencies = [ "sc-sysinfo", "serde", "serde_json", - "sp-api 4.0.0-dev", + "sp-api", "sp-blockchain", - "sp-core 21.0.0", + "sp-core", "sp-database", - "sp-externalities 0.19.0", - "sp-inherents 4.0.0-dev", - "sp-io 23.0.0", - "sp-keystore 0.27.0", - "sp-runtime 24.0.0", - "sp-state-machine 0.28.0", - "sp-storage 13.0.0", - "sp-trie 22.0.0", - "sp-wasm-interface 14.0.0", + "sp-externalities", + "sp-inherents", + "sp-io", + "sp-keystore", + "sp-runtime", + "sp-state-machine", + "sp-storage", + "sp-trie", + "sp-wasm-interface", "thiserror", "thousands", ] @@ -5201,13 +5186,13 @@ name = "frame-benchmarking-pallet-pov" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "parity-scale-codec", "scale-info", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] @@ -5215,13 +5200,13 @@ name = "frame-election-provider-solution-type" version = "4.0.0-dev" dependencies = [ "frame-election-provider-support", - "frame-support 4.0.0-dev", + "frame-support", "parity-scale-codec", "proc-macro-crate", "proc-macro2", "quote", "scale-info", - "sp-arithmetic 16.0.0", + "sp-arithmetic", "syn 2.0.37", "trybuild", ] @@ -5231,17 +5216,17 @@ name = "frame-election-provider-support" version = "4.0.0-dev" dependencies = [ "frame-election-provider-solution-type", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "parity-scale-codec", "rand 0.8.5", "scale-info", - "sp-arithmetic 16.0.0", - "sp-core 21.0.0", - "sp-io 23.0.0", + "sp-arithmetic", + "sp-core", + "sp-io", "sp-npos-elections", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-runtime", + "sp-std", ] [[package]] @@ -5251,14 +5236,14 @@ dependencies = [ "clap 4.4.4", "frame-election-provider-solution-type", "frame-election-provider-support", - "frame-support 4.0.0-dev", + "frame-support", "honggfuzz", "parity-scale-codec", "rand 0.8.5", "scale-info", - "sp-arithmetic 16.0.0", + "sp-arithmetic", "sp-npos-elections", - "sp-runtime 24.0.0", + "sp-runtime", ] [[package]] @@ -5266,7 +5251,7 @@ name = "frame-executive" version = "4.0.0-dev" dependencies = [ "array-bytes", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "frame-try-runtime", "log", @@ -5274,13 +5259,13 @@ dependencies = [ "pallet-transaction-payment", "parity-scale-codec", "scale-info", - "sp-core 21.0.0", - "sp-inherents 4.0.0-dev", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", - "sp-tracing 10.0.0", - "sp-version 22.0.0", + "sp-core", + "sp-inherents", + "sp-io", + "sp-runtime", + "sp-std", + "sp-tracing", + "sp-version", ] [[package]] @@ -5306,11 +5291,11 @@ dependencies = [ "log", "parity-scale-codec", "serde", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-state-machine 0.28.0", - "sp-tracing 10.0.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-state-machine", + "sp-tracing", "spinners", "substrate-rpc-client", "tokio", @@ -5328,7 +5313,7 @@ dependencies = [ "docify", "environmental", "frame-metadata", - "frame-support-procedural 4.0.0-dev", + "frame-support-procedural", "frame-system", "impl-trait-for-tuples", "k256", @@ -5341,62 +5326,21 @@ dependencies = [ "serde", "serde_json", "smallvec", - "sp-api 4.0.0-dev", - "sp-arithmetic 16.0.0", - "sp-core 21.0.0", - "sp-core-hashing-proc-macro 9.0.0", - "sp-debug-derive 8.0.0", - "sp-genesis-builder 0.1.0", - "sp-inherents 4.0.0-dev", - "sp-io 23.0.0", - "sp-metadata-ir 0.1.0", - "sp-runtime 24.0.0", - "sp-staking 4.0.0-dev", - "sp-state-machine 0.28.0", - "sp-std 8.0.0", - "sp-tracing 10.0.0", - "sp-weights 20.0.0", - "static_assertions", - "tt-call", -] - -[[package]] -name = "frame-support" -version = "23.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "609125451f5ffb1675998e07e64e05e4b3dad330b1537952ace5897d6ed24f0a" -dependencies = [ - "aquamarine", - "bitflags 1.3.2", - "docify", - "environmental", - "frame-metadata", - "frame-support-procedural 18.0.0", - "impl-trait-for-tuples", - "k256", - "log", - "macro_magic", - "parity-scale-codec", - "paste", - "scale-info", - "serde", - "serde_json", - "smallvec", - "sp-api 21.0.0", - "sp-arithmetic 18.0.0", - "sp-core 23.0.0", - "sp-core-hashing-proc-macro 11.0.0", - "sp-debug-derive 10.0.0", - "sp-genesis-builder 0.2.0", - "sp-inherents 21.0.0", - "sp-io 25.0.0", - "sp-metadata-ir 0.2.0", - "sp-runtime 26.0.0", - "sp-staking 21.0.0", - "sp-state-machine 0.30.0", - "sp-std 10.0.0", - "sp-tracing 12.0.0", - "sp-weights 22.0.0", + "sp-api", + "sp-arithmetic", + "sp-core", + "sp-core-hashing-proc-macro", + "sp-debug-derive", + "sp-genesis-builder", + "sp-inherents", + "sp-io", + "sp-metadata-ir", + "sp-runtime", + "sp-staking", + "sp-state-machine", + "sp-std", + "sp-tracing", + "sp-weights", "static_assertions", "tt-call", ] @@ -5409,26 +5353,7 @@ dependencies = [ "cfg-expr", "derive-syn-parse", "expander 2.0.0", - "frame-support-procedural-tools 4.0.0-dev", - "itertools 0.10.5", - "macro_magic", - "proc-macro-warning", - "proc-macro2", - "quote", - "syn 2.0.37", -] - -[[package]] -name = "frame-support-procedural" -version = "18.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd22a1ed96e765ec763bbaef2089ed8bb5f8539df40181ddac57be7be74685c7" -dependencies = [ - "Inflector", - "cfg-expr", - "derive-syn-parse", - "expander 2.0.0", - "frame-support-procedural-tools 7.0.0", + "frame-support-procedural-tools", "itertools 0.10.5", "macro_magic", "proc-macro-warning", @@ -5441,20 +5366,7 @@ dependencies = [ name = "frame-support-procedural-tools" version = "4.0.0-dev" dependencies = [ - "frame-support-procedural-tools-derive 3.0.0", - "proc-macro-crate", - "proc-macro2", - "quote", - "syn 2.0.37", -] - -[[package]] -name = "frame-support-procedural-tools" -version = "7.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "82858452d9332de312f5ff411fd8aecee2323a344b241078f565b8c3c2e47d38" -dependencies = [ - "frame-support-procedural-tools-derive 8.0.0", + "frame-support-procedural-tools-derive", "proc-macro-crate", "proc-macro2", "quote", @@ -5470,17 +5382,6 @@ dependencies = [ "syn 2.0.37", ] -[[package]] -name = "frame-support-procedural-tools-derive" -version = "8.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4c7a09be6bd676fc01c5dd5ba057ba1f7e492e071d4a5fd7c579d99a96093d6" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.37", -] - [[package]] name = "frame-support-test" version = "3.0.0" @@ -5488,7 +5389,7 @@ dependencies = [ "frame-benchmarking", "frame-executive", "frame-metadata", - "frame-support 4.0.0-dev", + "frame-support", "frame-support-test-pallet", "frame-system", "parity-scale-codec", @@ -5496,15 +5397,15 @@ dependencies = [ "rustversion", "scale-info", "serde", - "sp-api 4.0.0-dev", - "sp-arithmetic 16.0.0", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-metadata-ir 0.1.0", - "sp-runtime 24.0.0", - "sp-state-machine 0.28.0", - "sp-std 8.0.0", - "sp-version 22.0.0", + "sp-api", + "sp-arithmetic", + "sp-core", + "sp-io", + "sp-metadata-ir", + "sp-runtime", + "sp-state-machine", + "sp-std", + "sp-version", "static_assertions", "trybuild", ] @@ -5513,25 +5414,25 @@ dependencies = [ name = "frame-support-test-compile-pass" version = "4.0.0-dev" dependencies = [ - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "parity-scale-codec", "scale-info", - "sp-core 21.0.0", - "sp-runtime 24.0.0", - "sp-version 22.0.0", + "sp-core", + "sp-runtime", + "sp-version", ] [[package]] name = "frame-support-test-pallet" version = "4.0.0-dev" dependencies = [ - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "parity-scale-codec", "scale-info", "serde", - "sp-runtime 24.0.0", + "sp-runtime", ] [[package]] @@ -5540,18 +5441,18 @@ version = "4.0.0-dev" dependencies = [ "cfg-if", "criterion 0.4.0", - "frame-support 4.0.0-dev", + "frame-support", "log", "parity-scale-codec", "scale-info", "serde", - "sp-core 21.0.0", - "sp-externalities 0.19.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", - "sp-version 22.0.0", - "sp-weights 20.0.0", + "sp-core", + "sp-externalities", + "sp-io", + "sp-runtime", + "sp-std", + "sp-version", + "sp-weights", "substrate-test-runtime-client", ] @@ -5560,16 +5461,16 @@ name = "frame-system-benchmarking" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "parity-scale-codec", "scale-info", - "sp-core 21.0.0", - "sp-externalities 0.19.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", - "sp-version 22.0.0", + "sp-core", + "sp-externalities", + "sp-io", + "sp-runtime", + "sp-std", + "sp-version", ] [[package]] @@ -5577,18 +5478,18 @@ name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" dependencies = [ "parity-scale-codec", - "sp-api 4.0.0-dev", + "sp-api", ] [[package]] name = "frame-try-runtime" version = "0.10.0-dev" dependencies = [ - "frame-support 4.0.0-dev", + "frame-support", "parity-scale-codec", - "sp-api 4.0.0-dev", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-api", + "sp-runtime", + "sp-std", ] [[package]] @@ -5766,11 +5667,11 @@ version = "4.0.0-dev" dependencies = [ "chrono", "frame-election-provider-support", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "num-format", "pallet-staking", - "sp-staking 4.0.0-dev", + "sp-staking", ] [[package]] @@ -5890,12 +5791,12 @@ dependencies = [ "cumulus-pallet-aura-ext", "cumulus-pallet-parachain-system", "cumulus-pallet-xcm", - "cumulus-primitives-aura 0.1.0", + "cumulus-primitives-aura", "cumulus-primitives-core", "cumulus-primitives-timestamp", "frame-benchmarking", "frame-executive", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "frame-system-benchmarking", "frame-system-rpc-runtime-api", @@ -5908,18 +5809,18 @@ dependencies = [ "parachains-common", "parity-scale-codec", "scale-info", - "sp-api 4.0.0-dev", + "sp-api", "sp-block-builder", - "sp-consensus-aura 0.10.0-dev", - "sp-core 21.0.0", - "sp-inherents 4.0.0-dev", + "sp-consensus-aura", + "sp-core", + "sp-inherents", "sp-offchain", - "sp-runtime 24.0.0", + "sp-runtime", "sp-session", - "sp-std 8.0.0", - "sp-storage 13.0.0", + "sp-std", + "sp-storage", "sp-transaction-pool", - "sp-version 22.0.0", + "sp-version", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -6466,7 +6367,7 @@ dependencies = [ "cumulus-pallet-parachain-system", "cumulus-pallet-xcmp-queue", "cumulus-primitives-core", - "frame-support 4.0.0-dev", + "frame-support", "kusama-runtime-constants", "pallet-assets", "pallet-bridge-messages", @@ -6478,9 +6379,9 @@ dependencies = [ "parity-scale-codec", "paste", "penpal-runtime", - "polkadot-core-primitives 1.0.0", - "polkadot-parachain-primitives 1.0.0", - "polkadot-primitives 1.0.0", + "polkadot-core-primitives", + "polkadot-parachain-primitives", + "polkadot-primitives", "polkadot-runtime", "polkadot-runtime-constants", "polkadot-runtime-parachains", @@ -6488,11 +6389,11 @@ dependencies = [ "rococo-runtime", "rococo-runtime-constants", "sc-consensus-grandpa", - "sp-authority-discovery 4.0.0-dev", + "sp-authority-discovery", "sp-consensus-babe", "sp-consensus-beefy", - "sp-core 21.0.0", - "sp-runtime 24.0.0", + "sp-core", + "sp-runtime", "staging-kusama-runtime", "staging-xcm", "westend-runtime", @@ -6818,7 +6719,7 @@ dependencies = [ "frame-benchmarking-pallet-pov", "frame-election-provider-support", "frame-executive", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "frame-system-benchmarking", "frame-system-rpc-runtime-api", @@ -6902,23 +6803,23 @@ dependencies = [ "parity-scale-codec", "primitive-types", "scale-info", - "sp-api 4.0.0-dev", - "sp-authority-discovery 4.0.0-dev", + "sp-api", + "sp-authority-discovery", "sp-block-builder", "sp-consensus-babe", "sp-consensus-grandpa", - "sp-core 21.0.0", - "sp-inherents 4.0.0-dev", - "sp-io 23.0.0", + "sp-core", + "sp-inherents", + "sp-io", "sp-offchain", - "sp-runtime 24.0.0", + "sp-runtime", "sp-session", - "sp-staking 4.0.0-dev", + "sp-staking", "sp-statement-store", - "sp-std 8.0.0", - "sp-storage 13.0.0", + "sp-std", + "sp-storage", "sp-transaction-pool", - "sp-version 22.0.0", + "sp-version", "static_assertions", "substrate-wasm-builder", ] @@ -6927,13 +6828,13 @@ dependencies = [ name = "kusama-runtime-constants" version = "1.0.0" dependencies = [ - "frame-support 4.0.0-dev", - "polkadot-primitives 1.0.0", + "frame-support", + "polkadot-primitives", "polkadot-runtime-common", "smallvec", - "sp-core 21.0.0", - "sp-runtime 24.0.0", - "sp-weights 20.0.0", + "sp-core", + "sp-runtime", + "sp-weights", ] [[package]] @@ -7949,14 +7850,14 @@ dependencies = [ "sc-block-builder", "sc-client-api", "sc-offchain", - "sp-api 4.0.0-dev", + "sp-api", "sp-blockchain", "sp-consensus", "sp-consensus-beefy", - "sp-core 21.0.0", + "sp-core", "sp-mmr-primitives", - "sp-runtime 24.0.0", - "sp-tracing 10.0.0", + "sp-runtime", + "sp-tracing", "substrate-test-runtime-client", "tokio", ] @@ -7970,11 +7871,11 @@ dependencies = [ "parity-scale-codec", "serde", "serde_json", - "sp-api 4.0.0-dev", + "sp-api", "sp-blockchain", - "sp-core 21.0.0", + "sp-core", "sp-mmr-primitives", - "sp-runtime 24.0.0", + "sp-runtime", ] [[package]] @@ -8261,13 +8162,13 @@ dependencies = [ "serde", "serde_json", "sp-consensus", - "sp-core 21.0.0", - "sp-inherents 4.0.0-dev", - "sp-runtime 24.0.0", - "sp-state-machine 0.28.0", - "sp-timestamp 4.0.0-dev", - "sp-tracing 10.0.0", - "sp-trie 22.0.0", + "sp-core", + "sp-inherents", + "sp-runtime", + "sp-state-machine", + "sp-timestamp", + "sp-tracing", + "sp-trie", "tempfile", ] @@ -8334,21 +8235,21 @@ dependencies = [ "serde", "serde_json", "soketto", - "sp-api 4.0.0-dev", - "sp-authority-discovery 4.0.0-dev", + "sp-api", + "sp-authority-discovery", "sp-blockchain", "sp-consensus", "sp-consensus-babe", "sp-consensus-grandpa", - "sp-core 21.0.0", - "sp-inherents 4.0.0-dev", - "sp-io 23.0.0", + "sp-core", + "sp-inherents", + "sp-io", "sp-keyring", - "sp-keystore 0.27.0", - "sp-runtime 24.0.0", + "sp-keystore", + "sp-runtime", "sp-statement-store", - "sp-timestamp 4.0.0-dev", - "sp-tracing 10.0.0", + "sp-timestamp", + "sp-tracing", "sp-transaction-storage-proof", "substrate-build-script-utils", "substrate-cli-test-utils", @@ -8367,7 +8268,7 @@ version = "3.0.0-dev" dependencies = [ "criterion 0.4.0", "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "futures", "kitchensink-runtime", @@ -8385,17 +8286,17 @@ dependencies = [ "parity-scale-codec", "sc-executor", "scale-info", - "sp-application-crypto 23.0.0", + "sp-application-crypto", "sp-consensus-babe", - "sp-core 21.0.0", - "sp-externalities 0.19.0", + "sp-core", + "sp-externalities", "sp-keyring", - "sp-keystore 0.27.0", - "sp-runtime 24.0.0", - "sp-state-machine 0.28.0", + "sp-keystore", + "sp-runtime", + "sp-state-machine", "sp-statement-store", - "sp-tracing 10.0.0", - "sp-trie 22.0.0", + "sp-tracing", + "sp-trie", "wat", ] @@ -8409,8 +8310,8 @@ dependencies = [ "sc-client-api", "sc-service", "sp-blockchain", - "sp-core 21.0.0", - "sp-runtime 24.0.0", + "sp-core", + "sp-runtime", "thiserror", ] @@ -8418,8 +8319,8 @@ dependencies = [ name = "node-primitives" version = "2.0.0" dependencies = [ - "sp-core 21.0.0", - "sp-runtime 24.0.0", + "sp-core", + "sp-runtime", ] [[package]] @@ -8441,13 +8342,13 @@ dependencies = [ "sc-rpc-spec-v2", "sc-sync-state-rpc", "sc-transaction-pool-api", - "sp-api 4.0.0-dev", + "sp-api", "sp-block-builder", "sp-blockchain", "sp-consensus", "sp-consensus-babe", - "sp-keystore 0.27.0", - "sp-runtime 24.0.0", + "sp-keystore", + "sp-runtime", "sp-statement-store", "substrate-frame-rpc-system", "substrate-state-trie-migration-rpc", @@ -8489,17 +8390,17 @@ dependencies = [ "sc-telemetry", "sc-transaction-pool", "sc-transaction-pool-api", - "sp-api 4.0.0-dev", + "sp-api", "sp-block-builder", "sp-blockchain", - "sp-consensus-aura 0.10.0-dev", + "sp-consensus-aura", "sp-consensus-grandpa", - "sp-core 21.0.0", - "sp-inherents 4.0.0-dev", - "sp-io 23.0.0", + "sp-core", + "sp-inherents", + "sp-io", "sp-keyring", - "sp-runtime 24.0.0", - "sp-timestamp 4.0.0-dev", + "sp-runtime", + "sp-timestamp", "substrate-build-script-utils", "substrate-frame-rpc-system", "try-runtime-cli", @@ -8525,7 +8426,7 @@ version = "4.0.0-dev" dependencies = [ "frame-benchmarking", "frame-executive", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "frame-system-benchmarking", "frame-system-rpc-runtime-api", @@ -8540,19 +8441,19 @@ dependencies = [ "pallet-transaction-payment-rpc-runtime-api", "parity-scale-codec", "scale-info", - "sp-api 4.0.0-dev", + "sp-api", "sp-block-builder", - "sp-consensus-aura 0.10.0-dev", + "sp-consensus-aura", "sp-consensus-grandpa", - "sp-core 21.0.0", - "sp-inherents 4.0.0-dev", + "sp-core", + "sp-inherents", "sp-offchain", - "sp-runtime 24.0.0", + "sp-runtime", "sp-session", - "sp-std 8.0.0", - "sp-storage 13.0.0", + "sp-std", + "sp-storage", "sp-transaction-pool", - "sp-version 22.0.0", + "sp-version", "substrate-wasm-builder", ] @@ -8578,16 +8479,16 @@ dependencies = [ "sc-consensus", "sc-executor", "sc-service", - "sp-api 4.0.0-dev", + "sp-api", "sp-block-builder", "sp-blockchain", "sp-consensus", - "sp-core 21.0.0", - "sp-inherents 4.0.0-dev", - "sp-io 23.0.0", + "sp-core", + "sp-inherents", + "sp-io", "sp-keyring", - "sp-runtime 24.0.0", - "sp-timestamp 4.0.0-dev", + "sp-runtime", + "sp-timestamp", "substrate-test-client", "tempfile", ] @@ -8877,7 +8778,7 @@ version = "4.0.0-dev" dependencies = [ "array-bytes", "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "log", "pallet-balances", @@ -8885,11 +8786,11 @@ dependencies = [ "pallet-identity", "parity-scale-codec", "scale-info", - "sp-core 21.0.0", - "sp-core-hashing 9.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-core", + "sp-core-hashing", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] @@ -8897,26 +8798,26 @@ name = "pallet-asset-conversion" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "pallet-assets", "pallet-balances", "parity-scale-codec", "primitive-types", "scale-info", - "sp-api 4.0.0-dev", - "sp-arithmetic 16.0.0", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-api", + "sp-arithmetic", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] name = "pallet-asset-conversion-tx-payment" version = "4.0.0-dev" dependencies = [ - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "pallet-asset-conversion", "pallet-assets", @@ -8924,11 +8825,11 @@ dependencies = [ "pallet-transaction-payment", "parity-scale-codec", "scale-info", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", - "sp-storage 13.0.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", + "sp-storage", ] [[package]] @@ -8936,15 +8837,15 @@ name = "pallet-asset-rate" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "pallet-balances", "parity-scale-codec", "scale-info", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] @@ -8952,7 +8853,7 @@ name = "pallet-asset-tx-payment" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "pallet-assets", "pallet-authorship", @@ -8962,11 +8863,11 @@ dependencies = [ "scale-info", "serde", "serde_json", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", - "sp-storage 13.0.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", + "sp-storage", ] [[package]] @@ -8974,81 +8875,81 @@ name = "pallet-assets" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "log", "pallet-balances", "parity-scale-codec", "scale-info", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] name = "pallet-atomic-swap" version = "4.0.0-dev" dependencies = [ - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "pallet-balances", "parity-scale-codec", "scale-info", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] name = "pallet-aura" version = "4.0.0-dev" dependencies = [ - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "log", "pallet-timestamp", "parity-scale-codec", "scale-info", - "sp-application-crypto 23.0.0", - "sp-consensus-aura 0.10.0-dev", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-application-crypto", + "sp-consensus-aura", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" dependencies = [ - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "pallet-session", "parity-scale-codec", "scale-info", - "sp-application-crypto 23.0.0", - "sp-authority-discovery 4.0.0-dev", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-application-crypto", + "sp-authority-discovery", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] name = "pallet-authorship" version = "4.0.0-dev" dependencies = [ - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "impl-trait-for-tuples", "parity-scale-codec", "scale-info", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] @@ -9057,7 +8958,7 @@ version = "4.0.0-dev" dependencies = [ "frame-benchmarking", "frame-election-provider-support", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "log", "pallet-authorship", @@ -9069,14 +8970,14 @@ dependencies = [ "pallet-timestamp", "parity-scale-codec", "scale-info", - "sp-application-crypto 23.0.0", + "sp-application-crypto", "sp-consensus-babe", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", + "sp-core", + "sp-io", + "sp-runtime", "sp-session", - "sp-staking 4.0.0-dev", - "sp-std 8.0.0", + "sp-staking", + "sp-std", ] [[package]] @@ -9087,17 +8988,17 @@ dependencies = [ "docify", "frame-benchmarking", "frame-election-provider-support", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "log", "pallet-balances", "parity-scale-codec", "scale-info", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", - "sp-tracing 10.0.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", + "sp-tracing", ] [[package]] @@ -9116,16 +9017,16 @@ version = "4.0.0-dev" dependencies = [ "frame-election-provider-support", "frame-remote-externalities", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "log", "pallet-bags-list", "pallet-staking", - "sp-core 21.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", - "sp-storage 13.0.0", - "sp-tracing 10.0.0", + "sp-core", + "sp-runtime", + "sp-std", + "sp-storage", + "sp-tracing", ] [[package]] @@ -9133,17 +9034,17 @@ name = "pallet-balances" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "log", "pallet-transaction-payment", "parity-scale-codec", "paste", "scale-info", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] @@ -9151,7 +9052,7 @@ name = "pallet-beefy" version = "4.0.0-dev" dependencies = [ "frame-election-provider-support", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "log", "pallet-authorship", @@ -9165,13 +9066,13 @@ dependencies = [ "scale-info", "serde", "sp-consensus-beefy", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", + "sp-core", + "sp-io", + "sp-runtime", "sp-session", - "sp-staking 4.0.0-dev", - "sp-state-machine 0.28.0", - "sp-std 8.0.0", + "sp-staking", + "sp-state-machine", + "sp-std", ] [[package]] @@ -9180,7 +9081,7 @@ version = "4.0.0-dev" dependencies = [ "array-bytes", "binary-merkle-tree", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "log", "pallet-beefy", @@ -9189,14 +9090,14 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-api 4.0.0-dev", + "sp-api", "sp-consensus-beefy", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-staking 4.0.0-dev", - "sp-state-machine 0.28.0", - "sp-std 8.0.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-staking", + "sp-state-machine", + "sp-std", ] [[package]] @@ -9204,17 +9105,17 @@ name = "pallet-bounties" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "log", "pallet-balances", "pallet-treasury", "parity-scale-codec", "scale-info", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] @@ -9226,17 +9127,17 @@ dependencies = [ "bp-test-utils", "finality-grandpa", "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "log", "parity-scale-codec", "scale-info", "sp-consensus-grandpa", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", - "sp-trie 22.0.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", + "sp-trie", ] [[package]] @@ -9247,17 +9148,17 @@ dependencies = [ "bp-runtime", "bp-test-utils", "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "log", "num-traits", "pallet-balances", "parity-scale-codec", "scale-info", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] @@ -9270,17 +9171,17 @@ dependencies = [ "bp-runtime", "bp-test-utils", "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "log", "pallet-bridge-grandpa", "parity-scale-codec", "scale-info", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", - "sp-trie 22.0.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", + "sp-trie", ] [[package]] @@ -9291,18 +9192,18 @@ dependencies = [ "bp-relayers", "bp-runtime", "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "log", "pallet-balances", "pallet-bridge-messages", "parity-scale-codec", "scale-info", - "sp-arithmetic 16.0.0", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-arithmetic", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] @@ -9311,15 +9212,15 @@ version = "0.1.0" dependencies = [ "bitvec", "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "parity-scale-codec", "scale-info", - "sp-arithmetic 16.0.0", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-arithmetic", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] @@ -9327,7 +9228,7 @@ name = "pallet-child-bounties" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "log", "pallet-balances", @@ -9335,10 +9236,10 @@ dependencies = [ "pallet-treasury", "parity-scale-codec", "scale-info", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] @@ -9346,7 +9247,7 @@ name = "pallet-collator-selection" version = "3.0.0" dependencies = [ "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "log", "pallet-aura", @@ -9357,13 +9258,13 @@ dependencies = [ "parity-scale-codec", "rand 0.8.5", "scale-info", - "sp-consensus-aura 0.10.0-dev", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-staking 4.0.0-dev", - "sp-std 8.0.0", - "sp-tracing 10.0.0", + "sp-consensus-aura", + "sp-core", + "sp-io", + "sp-runtime", + "sp-staking", + "sp-std", + "sp-tracing", ] [[package]] @@ -9371,15 +9272,15 @@ name = "pallet-collective" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "log", "parity-scale-codec", "scale-info", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] @@ -9392,7 +9293,7 @@ dependencies = [ "env_logger 0.9.3", "environmental", "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "impl-trait-for-tuples", "log", @@ -9410,12 +9311,12 @@ dependencies = [ "scale-info", "serde", "smallvec", - "sp-api 4.0.0-dev", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-keystore 0.27.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-api", + "sp-core", + "sp-io", + "sp-keystore", + "sp-runtime", + "sp-std", "wasm-instrument 0.4.0", "wasmi", "wat", @@ -9428,9 +9329,9 @@ dependencies = [ "bitflags 1.3.2", "parity-scale-codec", "scale-info", - "sp-runtime 24.0.0", - "sp-std 8.0.0", - "sp-weights 20.0.0", + "sp-runtime", + "sp-std", + "sp-weights", ] [[package]] @@ -9448,17 +9349,17 @@ version = "4.0.0-dev" dependencies = [ "assert_matches", "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "pallet-balances", "pallet-scheduler", "parity-scale-codec", "scale-info", "serde", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] @@ -9466,30 +9367,30 @@ name = "pallet-core-fellowship" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "log", "parity-scale-codec", "scale-info", - "sp-arithmetic 16.0.0", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-arithmetic", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] name = "pallet-default-config-example" version = "4.0.0-dev" dependencies = [ - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "log", "parity-scale-codec", "scale-info", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] @@ -9497,7 +9398,7 @@ name = "pallet-democracy" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "log", "pallet-balances", @@ -9506,26 +9407,26 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] name = "pallet-dev-mode" version = "4.0.0-dev" dependencies = [ - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "log", "pallet-balances", "parity-scale-codec", "scale-info", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] @@ -9533,7 +9434,7 @@ name = "pallet-election-provider-e2e-test" version = "1.0.0" dependencies = [ "frame-election-provider-support", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "log", "pallet-bags-list", @@ -9545,13 +9446,13 @@ dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", "scale-info", - "sp-core 21.0.0", - "sp-io 23.0.0", + "sp-core", + "sp-io", "sp-npos-elections", - "sp-runtime 24.0.0", - "sp-staking 4.0.0-dev", - "sp-std 8.0.0", - "sp-tracing 10.0.0", + "sp-runtime", + "sp-staking", + "sp-std", + "sp-tracing", ] [[package]] @@ -9560,7 +9461,7 @@ version = "4.0.0-dev" dependencies = [ "frame-benchmarking", "frame-election-provider-support", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "log", "pallet-balances", @@ -9569,13 +9470,13 @@ dependencies = [ "parking_lot 0.12.1", "rand 0.8.5", "scale-info", - "sp-arithmetic 16.0.0", - "sp-core 21.0.0", - "sp-io 23.0.0", + "sp-arithmetic", + "sp-core", + "sp-io", "sp-npos-elections", - "sp-runtime 24.0.0", - "sp-std 8.0.0", - "sp-tracing 10.0.0", + "sp-runtime", + "sp-std", + "sp-tracing", "strum", ] @@ -9588,8 +9489,8 @@ dependencies = [ "frame-system", "parity-scale-codec", "sp-npos-elections", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-runtime", + "sp-std", ] [[package]] @@ -9597,19 +9498,19 @@ name = "pallet-elections-phragmen" version = "5.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "log", "pallet-balances", "parity-scale-codec", "scale-info", - "sp-core 21.0.0", - "sp-io 23.0.0", + "sp-core", + "sp-io", "sp-npos-elections", - "sp-runtime 24.0.0", - "sp-staking 4.0.0-dev", - "sp-std 8.0.0", - "sp-tracing 10.0.0", + "sp-runtime", + "sp-staking", + "sp-std", + "sp-tracing", "substrate-test-utils", ] @@ -9618,16 +9519,16 @@ name = "pallet-example-basic" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "log", "pallet-balances", "parity-scale-codec", "scale-info", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] @@ -9635,33 +9536,33 @@ name = "pallet-example-kitchensink" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "log", "pallet-balances", "parity-scale-codec", "scale-info", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] name = "pallet-example-offchain-worker" version = "4.0.0-dev" dependencies = [ - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "lite-json", "log", "parity-scale-codec", "scale-info", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-keystore 0.27.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-core", + "sp-io", + "sp-keystore", + "sp-runtime", + "sp-std", ] [[package]] @@ -9669,14 +9570,14 @@ name = "pallet-example-split" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "log", "parity-scale-codec", "scale-info", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-std 8.0.0", + "sp-core", + "sp-io", + "sp-std", ] [[package]] @@ -9698,7 +9599,7 @@ dependencies = [ "docify", "frame-benchmarking", "frame-election-provider-support", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "log", "pallet-balances", @@ -9707,12 +9608,12 @@ dependencies = [ "pallet-timestamp", "parity-scale-codec", "scale-info", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-staking 4.0.0-dev", - "sp-std 8.0.0", - "sp-tracing 10.0.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-staking", + "sp-std", + "sp-tracing", "substrate-test-utils", ] @@ -9722,16 +9623,16 @@ version = "4.0.0-dev" dependencies = [ "blake2", "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "log", "pallet-balances", "parity-scale-codec", "scale-info", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] @@ -9741,7 +9642,7 @@ dependencies = [ "finality-grandpa", "frame-benchmarking", "frame-election-provider-support", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "log", "pallet-authorship", @@ -9753,15 +9654,15 @@ dependencies = [ "pallet-timestamp", "parity-scale-codec", "scale-info", - "sp-application-crypto 23.0.0", + "sp-application-crypto", "sp-consensus-grandpa", - "sp-core 21.0.0", - "sp-io 23.0.0", + "sp-core", + "sp-io", "sp-keyring", - "sp-runtime 24.0.0", + "sp-runtime", "sp-session", - "sp-staking 4.0.0-dev", - "sp-std 8.0.0", + "sp-staking", + "sp-std", ] [[package]] @@ -9770,15 +9671,15 @@ version = "4.0.0-dev" dependencies = [ "enumflags2", "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "pallet-balances", "parity-scale-codec", "scale-info", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] @@ -9786,19 +9687,19 @@ name = "pallet-im-online" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "log", "pallet-authorship", "pallet-session", "parity-scale-codec", "scale-info", - "sp-application-crypto 23.0.0", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-staking 4.0.0-dev", - "sp-std 8.0.0", + "sp-application-crypto", + "sp-core", + "sp-io", + "sp-runtime", + "sp-staking", + "sp-std", ] [[package]] @@ -9806,31 +9707,31 @@ name = "pallet-indices" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "pallet-balances", "parity-scale-codec", "scale-info", - "sp-core 21.0.0", - "sp-io 23.0.0", + "sp-core", + "sp-io", "sp-keyring", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-runtime", + "sp-std", ] [[package]] name = "pallet-insecure-randomness-collective-flip" version = "4.0.0-dev" dependencies = [ - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "parity-scale-codec", "safe-mix", "scale-info", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] @@ -9838,16 +9739,16 @@ name = "pallet-lottery" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-support-test", "frame-system", "pallet-balances", "parity-scale-codec", "scale-info", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] @@ -9855,15 +9756,15 @@ name = "pallet-membership" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "log", "parity-scale-codec", "scale-info", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] @@ -9871,7 +9772,7 @@ name = "pallet-message-queue" version = "7.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "log", "parity-scale-codec", @@ -9879,13 +9780,13 @@ dependencies = [ "rand_distr", "scale-info", "serde", - "sp-arithmetic 16.0.0", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", - "sp-tracing 10.0.0", - "sp-weights 20.0.0", + "sp-arithmetic", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", + "sp-tracing", + "sp-weights", ] [[package]] @@ -9895,17 +9796,17 @@ dependencies = [ "array-bytes", "env_logger 0.9.3", "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "itertools 0.10.5", "log", "parity-scale-codec", "scale-info", - "sp-core 21.0.0", - "sp-io 23.0.0", + "sp-core", + "sp-io", "sp-mmr-primitives", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-runtime", + "sp-std", ] [[package]] @@ -9913,15 +9814,15 @@ name = "pallet-multisig" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "log", "pallet-balances", "parity-scale-codec", "scale-info", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] @@ -9929,7 +9830,7 @@ name = "pallet-nft-fractionalization" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "log", "pallet-assets", @@ -9937,10 +9838,10 @@ dependencies = [ "pallet-nfts", "parity-scale-codec", "scale-info", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] @@ -9949,17 +9850,17 @@ version = "4.0.0-dev" dependencies = [ "enumflags2", "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "log", "pallet-balances", "parity-scale-codec", "scale-info", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-keystore 0.27.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-core", + "sp-io", + "sp-keystore", + "sp-runtime", + "sp-std", ] [[package]] @@ -9968,22 +9869,22 @@ version = "4.0.0-dev" dependencies = [ "pallet-nfts", "parity-scale-codec", - "sp-api 4.0.0-dev", + "sp-api", ] [[package]] name = "pallet-nicks" version = "4.0.0-dev" dependencies = [ - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "pallet-balances", "parity-scale-codec", "scale-info", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] @@ -9991,49 +9892,49 @@ name = "pallet-nis" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "pallet-balances", "parity-scale-codec", "scale-info", - "sp-arithmetic 16.0.0", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-arithmetic", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] name = "pallet-node-authorization" version = "4.0.0-dev" dependencies = [ - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "log", "parity-scale-codec", "scale-info", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] name = "pallet-nomination-pools" version = "1.0.0" dependencies = [ - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "log", "pallet-balances", "parity-scale-codec", "scale-info", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-staking 4.0.0-dev", - "sp-std 8.0.0", - "sp-tracing 10.0.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-staking", + "sp-std", + "sp-tracing", ] [[package]] @@ -10042,7 +9943,7 @@ version = "1.0.0" dependencies = [ "frame-benchmarking", "frame-election-provider-support", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "pallet-bags-list", "pallet-balances", @@ -10052,27 +9953,27 @@ dependencies = [ "pallet-timestamp", "parity-scale-codec", "scale-info", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-runtime-interface 17.0.0", - "sp-staking 4.0.0-dev", - "sp-std 8.0.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-runtime-interface", + "sp-staking", + "sp-std", ] [[package]] name = "pallet-nomination-pools-fuzzer" version = "2.0.0" dependencies = [ - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "honggfuzz", "log", "pallet-nomination-pools", "rand 0.8.5", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-tracing 10.0.0", + "sp-io", + "sp-runtime", + "sp-tracing", ] [[package]] @@ -10081,8 +9982,8 @@ version = "1.0.0-dev" dependencies = [ "pallet-nomination-pools", "parity-scale-codec", - "sp-api 4.0.0-dev", - "sp-std 8.0.0", + "sp-api", + "sp-std", ] [[package]] @@ -10090,7 +9991,7 @@ name = "pallet-nomination-pools-test-staking" version = "1.0.0" dependencies = [ "frame-election-provider-support", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "log", "pallet-bags-list", @@ -10101,30 +10002,30 @@ dependencies = [ "pallet-timestamp", "parity-scale-codec", "scale-info", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-staking 4.0.0-dev", - "sp-std 8.0.0", - "sp-tracing 10.0.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-staking", + "sp-std", + "sp-tracing", ] [[package]] name = "pallet-offences" version = "4.0.0-dev" dependencies = [ - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "log", "pallet-balances", "parity-scale-codec", "scale-info", "serde", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-staking 4.0.0-dev", - "sp-std 8.0.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-staking", + "sp-std", ] [[package]] @@ -10133,7 +10034,7 @@ version = "4.0.0-dev" dependencies = [ "frame-benchmarking", "frame-election-provider-support", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "log", "pallet-babe", @@ -10147,11 +10048,11 @@ dependencies = [ "pallet-timestamp", "parity-scale-codec", "scale-info", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-staking 4.0.0-dev", - "sp-std 8.0.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-staking", + "sp-std", ] [[package]] @@ -10160,15 +10061,15 @@ version = "0.1.0" dependencies = [ "docify", "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "parity-scale-codec", "scale-info", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-metadata-ir 0.1.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-core", + "sp-io", + "sp-metadata-ir", + "sp-runtime", + "sp-std", ] [[package]] @@ -10176,10 +10077,10 @@ name = "pallet-paged-list-fuzzer" version = "0.1.0" dependencies = [ "arbitrary", - "frame-support 4.0.0-dev", + "frame-support", "honggfuzz", "pallet-paged-list", - "sp-io 23.0.0", + "sp-io", ] [[package]] @@ -10187,14 +10088,14 @@ name = "pallet-parachain-template" version = "0.1.0" dependencies = [ "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "parity-scale-codec", "scale-info", "serde", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", + "sp-core", + "sp-io", + "sp-runtime", ] [[package]] @@ -10202,16 +10103,16 @@ name = "pallet-preimage" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "log", "pallet-balances", "parity-scale-codec", "scale-info", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] @@ -10219,16 +10120,16 @@ name = "pallet-proxy" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "pallet-balances", "pallet-utility", "parity-scale-codec", "scale-info", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] @@ -10236,16 +10137,16 @@ name = "pallet-ranked-collective" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "log", "parity-scale-codec", "scale-info", - "sp-arithmetic 16.0.0", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-arithmetic", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] @@ -10253,15 +10154,15 @@ name = "pallet-recovery" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "pallet-balances", "parity-scale-codec", "scale-info", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] @@ -10270,7 +10171,7 @@ version = "4.0.0-dev" dependencies = [ "assert_matches", "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "log", "pallet-balances", @@ -10279,11 +10180,11 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-arithmetic 16.0.0", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-arithmetic", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] @@ -10291,15 +10192,15 @@ name = "pallet-remark" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "parity-scale-codec", "scale-info", "serde", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] @@ -10307,7 +10208,7 @@ name = "pallet-root-offences" version = "1.0.0-dev" dependencies = [ "frame-election-provider-support", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "pallet-balances", "pallet-session", @@ -10316,25 +10217,25 @@ dependencies = [ "pallet-timestamp", "parity-scale-codec", "scale-info", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-staking 4.0.0-dev", - "sp-std 8.0.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-staking", + "sp-std", ] [[package]] name = "pallet-root-testing" version = "1.0.0-dev" dependencies = [ - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "parity-scale-codec", "scale-info", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] @@ -10342,18 +10243,18 @@ name = "pallet-safe-mode" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "pallet-balances", "pallet-proxy", "pallet-utility", "parity-scale-codec", "scale-info", - "sp-arithmetic 16.0.0", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-arithmetic", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] @@ -10361,16 +10262,16 @@ name = "pallet-salary" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "log", "parity-scale-codec", "scale-info", - "sp-arithmetic 16.0.0", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-arithmetic", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] @@ -10379,17 +10280,17 @@ version = "4.0.0-dev" dependencies = [ "docify", "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "log", "pallet-preimage", "parity-scale-codec", "scale-info", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", - "sp-weights 20.0.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", + "sp-weights", "substrate-test-utils", ] @@ -10397,36 +10298,36 @@ dependencies = [ name = "pallet-scored-pool" version = "4.0.0-dev" dependencies = [ - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "pallet-balances", "parity-scale-codec", "scale-info", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] name = "pallet-session" version = "4.0.0-dev" dependencies = [ - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "impl-trait-for-tuples", "log", "pallet-timestamp", "parity-scale-codec", "scale-info", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", + "sp-core", + "sp-io", + "sp-runtime", "sp-session", - "sp-staking 4.0.0-dev", - "sp-state-machine 0.28.0", - "sp-std 8.0.0", - "sp-trie 22.0.0", + "sp-staking", + "sp-state-machine", + "sp-std", + "sp-trie", ] [[package]] @@ -10435,7 +10336,7 @@ version = "4.0.0-dev" dependencies = [ "frame-benchmarking", "frame-election-provider-support", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "pallet-balances", "pallet-session", @@ -10445,11 +10346,11 @@ dependencies = [ "parity-scale-codec", "rand 0.8.5", "scale-info", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", + "sp-core", + "sp-io", + "sp-runtime", "sp-session", - "sp-std 8.0.0", + "sp-std", ] [[package]] @@ -10457,7 +10358,7 @@ name = "pallet-society" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-support-test", "frame-system", "log", @@ -10465,11 +10366,11 @@ dependencies = [ "parity-scale-codec", "rand_chacha 0.2.2", "scale-info", - "sp-arithmetic 16.0.0", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-arithmetic", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] @@ -10478,7 +10379,7 @@ version = "4.0.0-dev" dependencies = [ "frame-benchmarking", "frame-election-provider-support", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "log", "pallet-authorship", @@ -10491,14 +10392,14 @@ dependencies = [ "rand_chacha 0.2.2", "scale-info", "serde", - "sp-application-crypto 23.0.0", - "sp-core 21.0.0", - "sp-io 23.0.0", + "sp-application-crypto", + "sp-core", + "sp-io", "sp-npos-elections", - "sp-runtime 24.0.0", - "sp-staking 4.0.0-dev", - "sp-std 8.0.0", - "sp-tracing 10.0.0", + "sp-runtime", + "sp-staking", + "sp-std", + "sp-tracing", "substrate-test-utils", ] @@ -10509,7 +10410,7 @@ dependencies = [ "proc-macro-crate", "proc-macro2", "quote", - "sp-runtime 24.0.0", + "sp-runtime", "syn 2.0.37", ] @@ -10518,7 +10419,7 @@ name = "pallet-staking-reward-fn" version = "4.0.0-dev" dependencies = [ "log", - "sp-arithmetic 16.0.0", + "sp-arithmetic", ] [[package]] @@ -10526,7 +10427,7 @@ name = "pallet-staking-runtime-api" version = "4.0.0-dev" dependencies = [ "parity-scale-codec", - "sp-api 4.0.0-dev", + "sp-api", ] [[package]] @@ -10535,7 +10436,7 @@ version = "4.0.0-dev" dependencies = [ "frame-benchmarking", "frame-remote-externalities", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "log", "pallet-balances", @@ -10543,11 +10444,11 @@ dependencies = [ "parking_lot 0.12.1", "scale-info", "serde", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", - "sp-tracing 10.0.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", + "sp-tracing", "substrate-state-trie-migration-rpc", "thousands", "tokio", @@ -10558,18 +10459,18 @@ dependencies = [ name = "pallet-statement" version = "4.0.0-dev" dependencies = [ - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "log", "pallet-balances", "parity-scale-codec", "scale-info", - "sp-api 4.0.0-dev", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", + "sp-api", + "sp-core", + "sp-io", + "sp-runtime", "sp-statement-store", - "sp-std 8.0.0", + "sp-std", ] [[package]] @@ -10578,14 +10479,14 @@ version = "4.0.0-dev" dependencies = [ "docify", "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "parity-scale-codec", "scale-info", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] @@ -10593,14 +10494,14 @@ name = "pallet-template" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "parity-scale-codec", "scale-info", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] @@ -10609,18 +10510,18 @@ version = "4.0.0-dev" dependencies = [ "docify", "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "log", "parity-scale-codec", "scale-info", - "sp-core 21.0.0", - "sp-inherents 4.0.0-dev", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", - "sp-storage 13.0.0", - "sp-timestamp 4.0.0-dev", + "sp-core", + "sp-inherents", + "sp-io", + "sp-runtime", + "sp-std", + "sp-storage", + "sp-timestamp", ] [[package]] @@ -10628,7 +10529,7 @@ name = "pallet-tips" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "log", "pallet-balances", @@ -10636,28 +10537,28 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", - "sp-storage 13.0.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", + "sp-storage", ] [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" dependencies = [ - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "pallet-balances", "parity-scale-codec", "scale-info", "serde", "serde_json", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] @@ -10667,12 +10568,12 @@ dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", "parity-scale-codec", - "sp-api 4.0.0-dev", + "sp-api", "sp-blockchain", - "sp-core 21.0.0", + "sp-core", "sp-rpc", - "sp-runtime 24.0.0", - "sp-weights 20.0.0", + "sp-runtime", + "sp-weights", ] [[package]] @@ -10681,9 +10582,9 @@ version = "4.0.0-dev" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", - "sp-api 4.0.0-dev", - "sp-runtime 24.0.0", - "sp-weights 20.0.0", + "sp-api", + "sp-runtime", + "sp-weights", ] [[package]] @@ -10692,18 +10593,18 @@ version = "4.0.0-dev" dependencies = [ "array-bytes", "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "log", "pallet-balances", "parity-scale-codec", "scale-info", "serde", - "sp-core 21.0.0", - "sp-inherents 4.0.0-dev", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-core", + "sp-inherents", + "sp-io", + "sp-runtime", + "sp-std", "sp-transaction-storage-proof", ] @@ -10712,7 +10613,7 @@ name = "pallet-treasury" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "impl-trait-for-tuples", "pallet-balances", @@ -10720,10 +10621,10 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] @@ -10731,17 +10632,17 @@ name = "pallet-tx-pause" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "pallet-balances", "pallet-proxy", "pallet-utility", "parity-scale-codec", "scale-info", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] @@ -10749,16 +10650,16 @@ name = "pallet-uniques" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "log", "pallet-balances", "parity-scale-codec", "scale-info", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] @@ -10766,7 +10667,7 @@ name = "pallet-utility" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "pallet-balances", "pallet-collective", @@ -10774,10 +10675,10 @@ dependencies = [ "pallet-timestamp", "parity-scale-codec", "scale-info", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] @@ -10785,16 +10686,16 @@ name = "pallet-vesting" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "log", "pallet-balances", "parity-scale-codec", "scale-info", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] @@ -10802,17 +10703,17 @@ name = "pallet-whitelist" version = "4.0.0-dev" dependencies = [ "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "pallet-balances", "pallet-preimage", "parity-scale-codec", "scale-info", - "sp-api 4.0.0-dev", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-api", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] @@ -10821,19 +10722,19 @@ version = "1.0.0" dependencies = [ "bounded-collections", "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "log", "pallet-balances", "parity-scale-codec", - "polkadot-parachain-primitives 1.0.0", + "polkadot-parachain-primitives", "polkadot-runtime-parachains", "scale-info", "serde", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -10844,21 +10745,21 @@ name = "pallet-xcm-benchmarks" version = "1.0.0" dependencies = [ "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "log", "pallet-assets", "pallet-balances", "pallet-xcm", "parity-scale-codec", - "polkadot-primitives 1.0.0", + "polkadot-primitives", "polkadot-runtime-common", "scale-info", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", - "sp-tracing 10.0.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", + "sp-tracing", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -10870,15 +10771,15 @@ version = "0.1.0" dependencies = [ "bp-xcm-bridge-hub-router", "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "log", "parity-scale-codec", "scale-info", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", "staging-xcm", "staging-xcm-builder", ] @@ -10888,12 +10789,12 @@ name = "parachain-info" version = "0.1.0" dependencies = [ "cumulus-primitives-core", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "parity-scale-codec", "scale-info", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-runtime", + "sp-std", ] [[package]] @@ -10920,7 +10821,7 @@ dependencies = [ "parachain-template-runtime", "parity-scale-codec", "polkadot-cli", - "polkadot-primitives 1.0.0", + "polkadot-primitives", "sc-basic-authorship", "sc-chain-spec", "sc-cli", @@ -10938,15 +10839,15 @@ dependencies = [ "sc-transaction-pool", "sc-transaction-pool-api", "serde", - "sp-api 4.0.0-dev", + "sp-api", "sp-block-builder", "sp-blockchain", - "sp-consensus-aura 0.10.0-dev", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-keystore 0.27.0", - "sp-runtime 24.0.0", - "sp-timestamp 4.0.0-dev", + "sp-consensus-aura", + "sp-core", + "sp-io", + "sp-keystore", + "sp-runtime", + "sp-timestamp", "staging-xcm", "substrate-build-script-utils", "substrate-frame-rpc-system", @@ -10967,7 +10868,7 @@ dependencies = [ "cumulus-primitives-utility", "frame-benchmarking", "frame-executive", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "frame-system-benchmarking", "frame-system-rpc-runtime-api", @@ -10987,21 +10888,21 @@ dependencies = [ "pallet-xcm", "parachain-info", "parity-scale-codec", - "polkadot-parachain-primitives 1.0.0", + "polkadot-parachain-primitives", "polkadot-runtime-common", "scale-info", "smallvec", - "sp-api 4.0.0-dev", + "sp-api", "sp-block-builder", - "sp-consensus-aura 0.10.0-dev", - "sp-core 21.0.0", - "sp-inherents 4.0.0-dev", + "sp-consensus-aura", + "sp-core", + "sp-inherents", "sp-offchain", - "sp-runtime 24.0.0", + "sp-runtime", "sp-session", - "sp-std 8.0.0", + "sp-std", "sp-transaction-pool", - "sp-version 22.0.0", + "sp-version", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -11014,7 +10915,7 @@ version = "1.0.0" dependencies = [ "cumulus-primitives-core", "cumulus-primitives-utility", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "kusama-runtime-constants", "log", @@ -11025,17 +10926,17 @@ dependencies = [ "pallet-balances", "pallet-collator-selection", "parity-scale-codec", - "polkadot-core-primitives 1.0.0", - "polkadot-primitives 1.0.0", + "polkadot-core-primitives", + "polkadot-primitives", "polkadot-runtime-constants", "rococo-runtime-constants", "scale-info", "smallvec", - "sp-consensus-aura 0.10.0-dev", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-consensus-aura", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -11054,7 +10955,7 @@ dependencies = [ "cumulus-primitives-core", "cumulus-primitives-parachain-inherent", "cumulus-test-relay-sproof-builder", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "hex-literal", "pallet-assets", @@ -11065,13 +10966,13 @@ dependencies = [ "parachain-info", "parachains-common", "parity-scale-codec", - "polkadot-parachain-primitives 1.0.0", - "sp-consensus-aura 0.10.0-dev", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", - "sp-tracing 10.0.0", + "polkadot-parachain-primitives", + "sp-consensus-aura", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", + "sp-tracing", "staging-xcm", "staging-xcm-executor", "substrate-wasm-builder", @@ -11296,7 +11197,7 @@ dependencies = [ "cumulus-primitives-utility", "frame-benchmarking", "frame-executive", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "frame-system-benchmarking", "frame-system-rpc-runtime-api", @@ -11318,23 +11219,23 @@ dependencies = [ "parachain-info", "parachains-common", "parity-scale-codec", - "polkadot-parachain-primitives 1.0.0", - "polkadot-primitives 1.0.0", + "polkadot-parachain-primitives", + "polkadot-primitives", "polkadot-runtime-common", "scale-info", "smallvec", - "sp-api 4.0.0-dev", + "sp-api", "sp-block-builder", - "sp-consensus-aura 0.10.0-dev", - "sp-core 21.0.0", - "sp-inherents 4.0.0-dev", + "sp-consensus-aura", + "sp-core", + "sp-inherents", "sp-offchain", - "sp-runtime 24.0.0", + "sp-runtime", "sp-session", - "sp-std 8.0.0", - "sp-storage 13.0.0", + "sp-std", + "sp-storage", "sp-transaction-pool", - "sp-version 22.0.0", + "sp-version", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -11507,7 +11408,7 @@ dependencies = [ "color-eyre", "nix 0.26.2", "polkadot-cli", - "polkadot-core-primitives 1.0.0", + "polkadot-core-primitives", "polkadot-node-core-pvf", "polkadot-node-core-pvf-common", "polkadot-node-core-pvf-execute-worker", @@ -11536,14 +11437,14 @@ dependencies = [ "polkadot-node-subsystem", "polkadot-node-subsystem-test-helpers", "polkadot-node-subsystem-util", - "polkadot-primitives 1.0.0", + "polkadot-primitives", "polkadot-primitives-test-helpers", "rand 0.8.5", "rand_chacha 0.3.1", "rand_core 0.5.1", "schnorrkel 0.9.1", - "sp-authority-discovery 4.0.0-dev", - "sp-core 21.0.0", + "sp-authority-discovery", + "sp-core", "tracing-gum", ] @@ -11563,14 +11464,14 @@ dependencies = [ "polkadot-node-subsystem", "polkadot-node-subsystem-test-helpers", "polkadot-node-subsystem-util", - "polkadot-primitives 1.0.0", + "polkadot-primitives", "rand 0.8.5", "rand_chacha 0.3.1", - "sp-application-crypto 23.0.0", - "sp-authority-discovery 4.0.0-dev", - "sp-core 21.0.0", + "sp-application-crypto", + "sp-authority-discovery", + "sp-core", "sp-keyring", - "sp-keystore 0.27.0", + "sp-keystore", "tracing-gum", ] @@ -11590,15 +11491,15 @@ dependencies = [ "polkadot-node-subsystem", "polkadot-node-subsystem-test-helpers", "polkadot-node-subsystem-util", - "polkadot-primitives 1.0.0", + "polkadot-primitives", "polkadot-primitives-test-helpers", "rand 0.8.5", "sc-network", "schnellru", - "sp-core 21.0.0", + "sp-core", "sp-keyring", - "sp-keystore 0.27.0", - "sp-tracing 10.0.0", + "sp-keystore", + "sp-tracing", "thiserror", "tracing-gum", ] @@ -11621,13 +11522,13 @@ dependencies = [ "polkadot-node-subsystem", "polkadot-node-subsystem-test-helpers", "polkadot-node-subsystem-util", - "polkadot-primitives 1.0.0", + "polkadot-primitives", "polkadot-primitives-test-helpers", "rand 0.8.5", "sc-network", "schnellru", - "sp-application-crypto 23.0.0", - "sp-core 21.0.0", + "sp-application-crypto", + "sp-core", "sp-keyring", "thiserror", "tracing-gum", @@ -11652,8 +11553,8 @@ dependencies = [ "sc-storage-monitor", "sc-sysinfo", "sc-tracing", - "sp-core 21.0.0", - "sp-io 23.0.0", + "sp-core", + "sp-io", "sp-keyring", "sp-maybe-compressed-blob", "substrate-build-script-utils", @@ -11678,14 +11579,14 @@ dependencies = [ "polkadot-node-subsystem", "polkadot-node-subsystem-test-helpers", "polkadot-node-subsystem-util", - "polkadot-primitives 1.0.0", + "polkadot-primitives", "polkadot-primitives-test-helpers", "sc-keystore", "sc-network", - "sp-core 21.0.0", + "sp-core", "sp-keyring", - "sp-keystore 0.27.0", - "sp-runtime 24.0.0", + "sp-keystore", + "sp-runtime", "thiserror", "tokio-util", "tracing-gum", @@ -11697,22 +11598,9 @@ version = "1.0.0" dependencies = [ "parity-scale-codec", "scale-info", - "sp-core 21.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", -] - -[[package]] -name = "polkadot-core-primitives" -version = "2.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "960aeac8618063cd9eca2a3551a92234a4c9007a970df7bf61d6fc2f9b4b85ff" -dependencies = [ - "parity-scale-codec", - "scale-info", - "sp-core 23.0.0", - "sp-runtime 26.0.0", - "sp-std 10.0.0", + "sp-core", + "sp-runtime", + "sp-std", ] [[package]] @@ -11735,15 +11623,15 @@ dependencies = [ "polkadot-node-subsystem", "polkadot-node-subsystem-test-helpers", "polkadot-node-subsystem-util", - "polkadot-primitives 1.0.0", + "polkadot-primitives", "polkadot-primitives-test-helpers", "sc-keystore", "sc-network", "schnellru", - "sp-application-crypto 23.0.0", + "sp-application-crypto", "sp-keyring", - "sp-keystore 0.27.0", - "sp-tracing 10.0.0", + "sp-keystore", + "sp-tracing", "thiserror", "tracing-gum", ] @@ -11755,10 +11643,10 @@ dependencies = [ "criterion 0.4.0", "parity-scale-codec", "polkadot-node-primitives", - "polkadot-primitives 1.0.0", + "polkadot-primitives", "reed-solomon-novelpoly", - "sp-core 21.0.0", - "sp-trie 22.0.0", + "sp-core", + "sp-trie", "thiserror", ] @@ -11775,18 +11663,18 @@ dependencies = [ "polkadot-node-subsystem", "polkadot-node-subsystem-test-helpers", "polkadot-node-subsystem-util", - "polkadot-primitives 1.0.0", + "polkadot-primitives", "rand 0.8.5", "rand_chacha 0.3.1", "sc-network", "sc-network-common", - "sp-application-crypto 23.0.0", - "sp-authority-discovery 4.0.0-dev", + "sp-application-crypto", + "sp-authority-discovery", "sp-consensus-babe", - "sp-core 21.0.0", + "sp-core", "sp-keyring", - "sp-keystore 0.27.0", - "sp-tracing 10.0.0", + "sp-keystore", + "sp-tracing", "tracing-gum", ] @@ -11809,11 +11697,11 @@ dependencies = [ "polkadot-node-subsystem-test-helpers", "polkadot-node-subsystem-util", "polkadot-overseer", - "polkadot-primitives 1.0.0", + "polkadot-primitives", "polkadot-primitives-test-helpers", "sc-network", "sp-consensus", - "sp-core 21.0.0", + "sp-core", "sp-keyring", "thiserror", "tracing-gum", @@ -11831,9 +11719,9 @@ dependencies = [ "polkadot-node-subsystem", "polkadot-node-subsystem-test-helpers", "polkadot-node-subsystem-util", - "polkadot-primitives 1.0.0", + "polkadot-primitives", "polkadot-primitives-test-helpers", - "sp-core 21.0.0", + "sp-core", "sp-keyring", "sp-maybe-compressed-blob", "thiserror", @@ -11861,20 +11749,20 @@ dependencies = [ "polkadot-node-subsystem-test-helpers", "polkadot-node-subsystem-util", "polkadot-overseer", - "polkadot-primitives 1.0.0", + "polkadot-primitives", "polkadot-primitives-test-helpers", "rand_core 0.5.1", "sc-keystore", "schnellru", "schnorrkel 0.9.1", - "sp-application-crypto 23.0.0", + "sp-application-crypto", "sp-consensus", "sp-consensus-babe", - "sp-consensus-slots 0.10.0-dev", - "sp-core 21.0.0", + "sp-consensus-slots", + "sp-core", "sp-keyring", - "sp-keystore 0.27.0", - "sp-runtime 24.0.0", + "sp-keystore", + "sp-runtime", "thiserror", "tracing-gum", ] @@ -11900,10 +11788,10 @@ dependencies = [ "polkadot-node-subsystem-test-helpers", "polkadot-node-subsystem-util", "polkadot-overseer", - "polkadot-primitives 1.0.0", + "polkadot-primitives", "polkadot-primitives-test-helpers", "sp-consensus", - "sp-core 21.0.0", + "sp-core", "sp-keyring", "thiserror", "tracing-gum", @@ -11922,15 +11810,15 @@ dependencies = [ "polkadot-node-subsystem", "polkadot-node-subsystem-test-helpers", "polkadot-node-subsystem-util", - "polkadot-primitives 1.0.0", + "polkadot-primitives", "polkadot-primitives-test-helpers", "polkadot-statement-table", "sc-keystore", - "sp-application-crypto 23.0.0", - "sp-core 21.0.0", + "sp-application-crypto", + "sp-core", "sp-keyring", - "sp-keystore 0.27.0", - "sp-tracing 10.0.0", + "sp-keystore", + "sp-tracing", "thiserror", "tracing-gum", ] @@ -11943,9 +11831,9 @@ dependencies = [ "polkadot-node-subsystem", "polkadot-node-subsystem-test-helpers", "polkadot-node-subsystem-util", - "polkadot-primitives 1.0.0", + "polkadot-primitives", "polkadot-primitives-test-helpers", - "sp-keystore 0.27.0", + "sp-keystore", "thiserror", "tracing-gum", "wasm-timer", @@ -11967,10 +11855,10 @@ dependencies = [ "polkadot-node-subsystem-test-helpers", "polkadot-node-subsystem-util", "polkadot-overseer", - "polkadot-parachain-primitives 1.0.0", - "polkadot-primitives 1.0.0", + "polkadot-parachain-primitives", + "polkadot-primitives", "polkadot-primitives-test-helpers", - "sp-core 21.0.0", + "sp-core", "sp-keyring", "sp-maybe-compressed-blob", "tracing-gum", @@ -11987,11 +11875,11 @@ dependencies = [ "polkadot-node-primitives", "polkadot-node-subsystem", "polkadot-node-subsystem-test-helpers", - "polkadot-primitives 1.0.0", + "polkadot-primitives", "sc-client-api", "sc-consensus-babe", "sp-blockchain", - "sp-core 21.0.0", + "sp-core", "tracing-gum", ] @@ -12010,8 +11898,8 @@ dependencies = [ "polkadot-node-subsystem", "polkadot-node-subsystem-test-helpers", "polkadot-node-subsystem-util", - "polkadot-primitives 1.0.0", - "sp-core 21.0.0", + "polkadot-primitives", + "sp-core", "thiserror", "tracing-gum", ] @@ -12031,15 +11919,15 @@ dependencies = [ "polkadot-node-subsystem", "polkadot-node-subsystem-test-helpers", "polkadot-node-subsystem-util", - "polkadot-primitives 1.0.0", + "polkadot-primitives", "polkadot-primitives-test-helpers", "sc-keystore", "schnellru", - "sp-application-crypto 23.0.0", - "sp-core 21.0.0", + "sp-application-crypto", + "sp-core", "sp-keyring", - "sp-keystore 0.27.0", - "sp-tracing 10.0.0", + "sp-keystore", + "sp-tracing", "thiserror", "tracing-gum", ] @@ -12053,9 +11941,9 @@ dependencies = [ "futures-timer", "polkadot-node-subsystem", "polkadot-overseer", - "polkadot-primitives 1.0.0", + "polkadot-primitives", "sp-blockchain", - "sp-inherents 4.0.0-dev", + "sp-inherents", "thiserror", "tracing-gum", ] @@ -12074,13 +11962,13 @@ dependencies = [ "polkadot-node-subsystem-test-helpers", "polkadot-node-subsystem-types", "polkadot-node-subsystem-util", - "polkadot-primitives 1.0.0", + "polkadot-primitives", "polkadot-primitives-test-helpers", "sc-keystore", - "sp-application-crypto 23.0.0", - "sp-core 21.0.0", + "sp-application-crypto", + "sp-core", "sp-keyring", - "sp-keystore 0.27.0", + "sp-keystore", "thiserror", "tracing-gum", ] @@ -12097,10 +11985,10 @@ dependencies = [ "polkadot-node-subsystem", "polkadot-node-subsystem-test-helpers", "polkadot-node-subsystem-util", - "polkadot-primitives 1.0.0", + "polkadot-primitives", "polkadot-primitives-test-helpers", - "sp-application-crypto 23.0.0", - "sp-keystore 0.27.0", + "sp-application-crypto", + "sp-keystore", "thiserror", "tracing-gum", ] @@ -12117,20 +12005,20 @@ dependencies = [ "libc", "parity-scale-codec", "pin-project", - "polkadot-core-primitives 1.0.0", + "polkadot-core-primitives", "polkadot-node-core-pvf", "polkadot-node-core-pvf-common", "polkadot-node-core-pvf-execute-worker", "polkadot-node-core-pvf-prepare-worker", "polkadot-node-metrics", "polkadot-node-primitives", - "polkadot-parachain-primitives 1.0.0", - "polkadot-primitives 1.0.0", + "polkadot-parachain-primitives", + "polkadot-primitives", "rand 0.8.5", "slotmap", - "sp-core 21.0.0", + "sp-core", "sp-maybe-compressed-blob", - "sp-wasm-interface 14.0.0", + "sp-wasm-interface", "substrate-build-script-utils", "tempfile", "test-parachain-adder", @@ -12150,14 +12038,14 @@ dependencies = [ "polkadot-node-subsystem-test-helpers", "polkadot-node-subsystem-util", "polkadot-overseer", - "polkadot-primitives 1.0.0", + "polkadot-primitives", "polkadot-primitives-test-helpers", "sc-keystore", - "sp-application-crypto 23.0.0", - "sp-core 21.0.0", + "sp-application-crypto", + "sp-core", "sp-keyring", - "sp-keystore 0.27.0", - "sp-runtime 24.0.0", + "sp-keystore", + "sp-runtime", "thiserror", "tracing-gum", ] @@ -12172,15 +12060,15 @@ dependencies = [ "landlock", "libc", "parity-scale-codec", - "polkadot-parachain-primitives 1.0.0", - "polkadot-primitives 1.0.0", + "polkadot-parachain-primitives", + "polkadot-primitives", "sc-executor", "sc-executor-common", "sc-executor-wasmtime", - "sp-core 21.0.0", - "sp-externalities 0.19.0", - "sp-io 23.0.0", - "sp-tracing 10.0.0", + "sp-core", + "sp-externalities", + "sp-io", + "sp-tracing", "tempfile", "tokio", "tracing-gum", @@ -12194,12 +12082,12 @@ dependencies = [ "futures", "parity-scale-codec", "polkadot-node-core-pvf-common", - "polkadot-parachain-primitives 1.0.0", - "polkadot-primitives 1.0.0", + "polkadot-parachain-primitives", + "polkadot-primitives", "rayon", - "sp-core 21.0.0", + "sp-core", "sp-maybe-compressed-blob", - "sp-tracing 10.0.0", + "sp-tracing", "tokio", "tracing-gum", ] @@ -12212,15 +12100,15 @@ dependencies = [ "libc", "parity-scale-codec", "polkadot-node-core-pvf-common", - "polkadot-parachain-primitives 1.0.0", - "polkadot-primitives 1.0.0", + "polkadot-parachain-primitives", + "polkadot-primitives", "rayon", "sc-executor", "sc-executor-common", "sc-executor-wasmtime", - "sp-io 23.0.0", + "sp-io", "sp-maybe-compressed-blob", - "sp-tracing 10.0.0", + "sp-tracing", "tikv-jemalloc-ctl", "tokio", "tracing-gum", @@ -12237,12 +12125,12 @@ dependencies = [ "polkadot-node-subsystem", "polkadot-node-subsystem-test-helpers", "polkadot-node-subsystem-types", - "polkadot-primitives 1.0.0", + "polkadot-primitives", "polkadot-primitives-test-helpers", "schnellru", - "sp-api 4.0.0-dev", + "sp-api", "sp-consensus-babe", - "sp-core 21.0.0", + "sp-core", "sp-keyring", "tracing-gum", ] @@ -12257,9 +12145,9 @@ dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", "polkadot-node-primitives", - "polkadot-primitives 1.0.0", + "polkadot-primitives", "sc-network", - "sp-core 21.0.0", + "sp-core", "thiserror", "tokio", ] @@ -12275,7 +12163,7 @@ dependencies = [ "hyper", "log", "parity-scale-codec", - "polkadot-primitives 1.0.0", + "polkadot-primitives", "polkadot-test-service", "prioritized-metered-channel", "prometheus-parse", @@ -12304,7 +12192,7 @@ dependencies = [ "parity-scale-codec", "polkadot-node-jaeger", "polkadot-node-primitives", - "polkadot-primitives 1.0.0", + "polkadot-primitives", "rand 0.8.5", "rand_chacha 0.3.1", "sc-authority-discovery", @@ -12322,16 +12210,16 @@ dependencies = [ "futures", "parity-scale-codec", "polkadot-erasure-coding", - "polkadot-parachain-primitives 1.0.0", - "polkadot-primitives 1.0.0", + "polkadot-parachain-primitives", + "polkadot-primitives", "schnorrkel 0.9.1", "serde", - "sp-application-crypto 23.0.0", + "sp-application-crypto", "sp-consensus-babe", - "sp-core 21.0.0", - "sp-keystore 0.27.0", + "sp-core", + "sp-keystore", "sp-maybe-compressed-blob", - "sp-runtime 24.0.0", + "sp-runtime", "thiserror", "zstd 0.12.4", ] @@ -12354,14 +12242,14 @@ dependencies = [ "parking_lot 0.12.1", "polkadot-node-subsystem", "polkadot-node-subsystem-util", - "polkadot-primitives 1.0.0", + "polkadot-primitives", "sc-client-api", "sc-keystore", "sc-utils", - "sp-application-crypto 23.0.0", - "sp-core 21.0.0", + "sp-application-crypto", + "sp-core", "sp-keyring", - "sp-keystore 0.27.0", + "sp-keystore", ] [[package]] @@ -12375,14 +12263,14 @@ dependencies = [ "polkadot-node-jaeger", "polkadot-node-network-protocol", "polkadot-node-primitives", - "polkadot-primitives 1.0.0", + "polkadot-primitives", "polkadot-statement-table", "sc-client-api", "sc-network", "sc-transaction-pool-api", "smallvec", - "sp-api 4.0.0-dev", - "sp-authority-discovery 4.0.0-dev", + "sp-api", + "sp-authority-discovery", "sp-consensus-babe", "substrate-prometheus-endpoint", "thiserror", @@ -12417,15 +12305,15 @@ dependencies = [ "polkadot-node-subsystem-test-helpers", "polkadot-node-subsystem-types", "polkadot-overseer", - "polkadot-primitives 1.0.0", + "polkadot-primitives", "polkadot-primitives-test-helpers", "prioritized-metered-channel", "rand 0.8.5", "sc-client-api", "schnellru", - "sp-application-crypto 23.0.0", - "sp-core 21.0.0", - "sp-keystore 0.27.0", + "sp-application-crypto", + "sp-core", + "sp-keystore", "tempfile", "thiserror", "tracing-gum", @@ -12447,13 +12335,13 @@ dependencies = [ "polkadot-node-primitives", "polkadot-node-subsystem-test-helpers", "polkadot-node-subsystem-types", - "polkadot-primitives 1.0.0", + "polkadot-primitives", "polkadot-primitives-test-helpers", "prioritized-metered-channel", "sc-client-api", "schnellru", - "sp-api 4.0.0-dev", - "sp-core 21.0.0", + "sp-api", + "sp-core", "tikv-jemalloc-ctl", "tracing-gum", ] @@ -12481,7 +12369,7 @@ dependencies = [ "cumulus-client-consensus-proposer", "cumulus-client-consensus-relay-chain", "cumulus-client-service", - "cumulus-primitives-aura 0.2.0", + "cumulus-primitives-aura", "cumulus-primitives-core", "cumulus-primitives-parachain-inherent", "cumulus-relay-chain-interface", @@ -12498,7 +12386,7 @@ dependencies = [ "parity-scale-codec", "penpal-runtime", "polkadot-cli", - "polkadot-primitives 1.0.0", + "polkadot-primitives", "polkadot-service", "rococo-parachain-runtime", "sc-basic-authorship", @@ -12520,17 +12408,17 @@ dependencies = [ "serde", "serde_json", "shell-runtime", - "sp-api 4.0.0-dev", + "sp-api", "sp-block-builder", "sp-blockchain", - "sp-consensus-aura 0.10.0-dev", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-keystore 0.27.0", + "sp-consensus-aura", + "sp-core", + "sp-io", + "sp-keystore", "sp-offchain", - "sp-runtime 24.0.0", + "sp-runtime", "sp-session", - "sp-timestamp 4.0.0-dev", + "sp-timestamp", "sp-transaction-pool", "staging-xcm", "substrate-build-script-utils", @@ -12548,32 +12436,14 @@ version = "1.0.0" dependencies = [ "bounded-collections", "derive_more", - "frame-support 4.0.0-dev", + "frame-support", "parity-scale-codec", - "polkadot-core-primitives 1.0.0", + "polkadot-core-primitives", "scale-info", "serde", - "sp-core 21.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", -] - -[[package]] -name = "polkadot-parachain-primitives" -version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8be23c13fd44bab7ed83eea35e1b68bcd21d61cbc6bb15451a8b0a00e627f0ab" -dependencies = [ - "bounded-collections", - "derive_more", - "frame-support 23.0.0", - "parity-scale-codec", - "polkadot-core-primitives 2.0.0", - "scale-info", - "serde", - "sp-core 23.0.0", - "sp-runtime 26.0.0", - "sp-std 10.0.0", + "sp-core", + "sp-runtime", + "sp-std", ] [[package]] @@ -12585,7 +12455,7 @@ dependencies = [ "polkadot-erasure-coding", "polkadot-node-core-pvf-prepare-worker", "polkadot-node-primitives", - "polkadot-primitives 1.0.0", + "polkadot-primitives", "quote", "sc-executor-common", "sp-maybe-compressed-blob", @@ -12600,61 +12470,34 @@ dependencies = [ "bitvec", "hex-literal", "parity-scale-codec", - "polkadot-core-primitives 1.0.0", - "polkadot-parachain-primitives 1.0.0", - "scale-info", - "serde", - "sp-api 4.0.0-dev", - "sp-application-crypto 23.0.0", - "sp-arithmetic 16.0.0", - "sp-authority-discovery 4.0.0-dev", - "sp-consensus-slots 0.10.0-dev", - "sp-core 21.0.0", - "sp-inherents 4.0.0-dev", - "sp-io 23.0.0", - "sp-keystore 0.27.0", - "sp-runtime 24.0.0", - "sp-staking 4.0.0-dev", - "sp-std 8.0.0", -] - -[[package]] -name = "polkadot-primitives" -version = "2.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ce2c1568c0e0e40b24e8aa149c9194f692c9f9d1f999ab2024974bf47b9323bb" -dependencies = [ - "bitvec", - "hex-literal", - "parity-scale-codec", - "polkadot-core-primitives 2.0.0", - "polkadot-parachain-primitives 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "polkadot-core-primitives", + "polkadot-parachain-primitives", "scale-info", "serde", - "sp-api 21.0.0", - "sp-application-crypto 25.0.0", - "sp-arithmetic 18.0.0", - "sp-authority-discovery 21.0.0", - "sp-consensus-slots 0.27.0", - "sp-core 23.0.0", - "sp-inherents 21.0.0", - "sp-io 25.0.0", - "sp-keystore 0.29.0", - "sp-runtime 26.0.0", - "sp-staking 21.0.0", - "sp-std 10.0.0", + "sp-api", + "sp-application-crypto", + "sp-arithmetic", + "sp-authority-discovery", + "sp-consensus-slots", + "sp-core", + "sp-inherents", + "sp-io", + "sp-keystore", + "sp-runtime", + "sp-staking", + "sp-std", ] [[package]] name = "polkadot-primitives-test-helpers" version = "1.0.0" dependencies = [ - "polkadot-primitives 1.0.0", + "polkadot-primitives", "rand 0.8.5", - "sp-application-crypto 23.0.0", - "sp-core 21.0.0", + "sp-application-crypto", + "sp-core", "sp-keyring", - "sp-runtime 24.0.0", + "sp-runtime", ] [[package]] @@ -12664,7 +12507,7 @@ dependencies = [ "jsonrpsee", "mmr-rpc", "pallet-transaction-payment-rpc", - "polkadot-primitives 1.0.0", + "polkadot-primitives", "sc-chain-spec", "sc-client-api", "sc-consensus-babe", @@ -12677,13 +12520,13 @@ dependencies = [ "sc-rpc", "sc-sync-state-rpc", "sc-transaction-pool-api", - "sp-api 4.0.0-dev", + "sp-api", "sp-block-builder", "sp-blockchain", "sp-consensus", "sp-consensus-babe", - "sp-keystore 0.27.0", - "sp-runtime 24.0.0", + "sp-keystore", + "sp-runtime", "substrate-frame-rpc-system", "substrate-state-trie-migration-rpc", ] @@ -12697,7 +12540,7 @@ dependencies = [ "frame-election-provider-support", "frame-executive", "frame-remote-externalities", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "frame-system-benchmarking", "frame-system-rpc-runtime-api", @@ -12750,7 +12593,7 @@ dependencies = [ "pallet-xcm", "pallet-xcm-benchmarks", "parity-scale-codec", - "polkadot-primitives 1.0.0", + "polkadot-primitives", "polkadot-runtime-common", "polkadot-runtime-constants", "polkadot-runtime-parachains", @@ -12761,28 +12604,28 @@ dependencies = [ "serde_derive", "serde_json", "smallvec", - "sp-api 4.0.0-dev", - "sp-arithmetic 16.0.0", - "sp-authority-discovery 4.0.0-dev", + "sp-api", + "sp-arithmetic", + "sp-authority-discovery", "sp-block-builder", "sp-consensus-babe", "sp-consensus-beefy", - "sp-core 21.0.0", - "sp-inherents 4.0.0-dev", - "sp-io 23.0.0", + "sp-core", + "sp-inherents", + "sp-io", "sp-keyring", "sp-mmr-primitives", "sp-npos-elections", "sp-offchain", - "sp-runtime 24.0.0", + "sp-runtime", "sp-session", - "sp-staking 4.0.0-dev", - "sp-std 8.0.0", - "sp-storage 13.0.0", - "sp-tracing 10.0.0", + "sp-staking", + "sp-std", + "sp-storage", + "sp-tracing", "sp-transaction-pool", - "sp-trie 22.0.0", - "sp-version 22.0.0", + "sp-trie", + "sp-version", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -12799,7 +12642,7 @@ dependencies = [ "bitvec", "frame-benchmarking", "frame-election-provider-support", - "frame-support 4.0.0-dev", + "frame-support", "frame-support-test", "frame-system", "hex-literal", @@ -12819,7 +12662,7 @@ dependencies = [ "pallet-treasury", "pallet-vesting", "parity-scale-codec", - "polkadot-primitives 1.0.0", + "polkadot-primitives", "polkadot-primitives-test-helpers", "polkadot-runtime-parachains", "rustc-hex", @@ -12828,17 +12671,17 @@ dependencies = [ "serde_derive", "serde_json", "slot-range-helper", - "sp-api 4.0.0-dev", - "sp-core 21.0.0", - "sp-inherents 4.0.0-dev", - "sp-io 23.0.0", + "sp-api", + "sp-core", + "sp-inherents", + "sp-io", "sp-keyring", - "sp-keystore 0.27.0", + "sp-keystore", "sp-npos-elections", - "sp-runtime 24.0.0", + "sp-runtime", "sp-session", - "sp-staking 4.0.0-dev", - "sp-std 8.0.0", + "sp-staking", + "sp-std", "staging-xcm", "static_assertions", ] @@ -12847,13 +12690,13 @@ dependencies = [ name = "polkadot-runtime-constants" version = "1.0.0" dependencies = [ - "frame-support 4.0.0-dev", - "polkadot-primitives 1.0.0", + "frame-support", + "polkadot-primitives", "polkadot-runtime-common", "smallvec", - "sp-core 21.0.0", - "sp-runtime 24.0.0", - "sp-weights 20.0.0", + "sp-core", + "sp-runtime", + "sp-weights", ] [[package]] @@ -12863,9 +12706,9 @@ dependencies = [ "bs58 0.5.0", "frame-benchmarking", "parity-scale-codec", - "polkadot-primitives 1.0.0", - "sp-std 8.0.0", - "sp-tracing 10.0.0", + "polkadot-primitives", + "sp-std", + "sp-tracing", ] [[package]] @@ -12877,7 +12720,7 @@ dependencies = [ "bitvec", "derive_more", "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "frame-support-test", "frame-system", "futures", @@ -12894,9 +12737,9 @@ dependencies = [ "pallet-timestamp", "pallet-vesting", "parity-scale-codec", - "polkadot-core-primitives 1.0.0", - "polkadot-parachain-primitives 1.0.0", - "polkadot-primitives 1.0.0", + "polkadot-core-primitives", + "polkadot-parachain-primitives", + "polkadot-primitives", "polkadot-primitives-test-helpers", "polkadot-runtime-metrics", "rand 0.8.5", @@ -12906,18 +12749,18 @@ dependencies = [ "scale-info", "serde", "serde_json", - "sp-api 4.0.0-dev", - "sp-application-crypto 23.0.0", - "sp-core 21.0.0", - "sp-inherents 4.0.0-dev", - "sp-io 23.0.0", + "sp-api", + "sp-application-crypto", + "sp-core", + "sp-inherents", + "sp-io", "sp-keyring", - "sp-keystore 0.27.0", - "sp-runtime 24.0.0", + "sp-keystore", + "sp-runtime", "sp-session", - "sp-staking 4.0.0-dev", - "sp-std 8.0.0", - "sp-tracing 10.0.0", + "sp-staking", + "sp-std", + "sp-tracing", "staging-xcm", "staging-xcm-executor", "static_assertions", @@ -12933,7 +12776,7 @@ dependencies = [ "env_logger 0.9.3", "frame-benchmarking", "frame-benchmarking-cli", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "frame-system-rpc-runtime-api", "futures", @@ -12955,7 +12798,7 @@ dependencies = [ "polkadot-availability-distribution", "polkadot-availability-recovery", "polkadot-collator-protocol", - "polkadot-core-primitives 1.0.0", + "polkadot-core-primitives", "polkadot-dispute-distribution", "polkadot-gossip-support", "polkadot-network-bridge", @@ -12981,8 +12824,8 @@ dependencies = [ "polkadot-node-subsystem-types", "polkadot-node-subsystem-util", "polkadot-overseer", - "polkadot-parachain-primitives 1.0.0", - "polkadot-primitives 1.0.0", + "polkadot-parachain-primitives", + "polkadot-primitives", "polkadot-rpc", "polkadot-runtime-parachains", "polkadot-statement-distribution", @@ -13016,29 +12859,29 @@ dependencies = [ "serde", "serde_json", "serial_test", - "sp-api 4.0.0-dev", - "sp-authority-discovery 4.0.0-dev", + "sp-api", + "sp-authority-discovery", "sp-block-builder", "sp-blockchain", "sp-consensus", "sp-consensus-babe", "sp-consensus-beefy", "sp-consensus-grandpa", - "sp-core 21.0.0", - "sp-inherents 4.0.0-dev", - "sp-io 23.0.0", + "sp-core", + "sp-inherents", + "sp-io", "sp-keyring", - "sp-keystore 0.27.0", + "sp-keystore", "sp-mmr-primitives", "sp-offchain", - "sp-runtime 24.0.0", + "sp-runtime", "sp-session", - "sp-state-machine 0.28.0", - "sp-storage 13.0.0", - "sp-timestamp 4.0.0-dev", + "sp-state-machine", + "sp-storage", + "sp-timestamp", "sp-transaction-pool", - "sp-version 22.0.0", - "sp-weights 20.0.0", + "sp-version", + "sp-weights", "substrate-prometheus-endpoint", "tempfile", "thiserror", @@ -13066,18 +12909,18 @@ dependencies = [ "polkadot-node-subsystem-test-helpers", "polkadot-node-subsystem-types", "polkadot-node-subsystem-util", - "polkadot-primitives 1.0.0", + "polkadot-primitives", "polkadot-primitives-test-helpers", "rand_chacha 0.3.1", "sc-keystore", "sc-network", - "sp-application-crypto 23.0.0", - "sp-authority-discovery 4.0.0-dev", - "sp-core 21.0.0", + "sp-application-crypto", + "sp-authority-discovery", + "sp-core", "sp-keyring", - "sp-keystore 0.27.0", - "sp-staking 4.0.0-dev", - "sp-tracing 10.0.0", + "sp-keystore", + "sp-staking", + "sp-tracing", "thiserror", "tracing-gum", ] @@ -13087,8 +12930,8 @@ name = "polkadot-statement-table" version = "1.0.0" dependencies = [ "parity-scale-codec", - "polkadot-primitives 1.0.0", - "sp-core 21.0.0", + "polkadot-primitives", + "sp-core", ] [[package]] @@ -13099,24 +12942,24 @@ dependencies = [ "futures", "parity-scale-codec", "polkadot-node-subsystem", - "polkadot-primitives 1.0.0", + "polkadot-primitives", "polkadot-test-runtime", "polkadot-test-service", "sc-block-builder", "sc-consensus", "sc-offchain", "sc-service", - "sp-api 4.0.0-dev", + "sp-api", "sp-blockchain", "sp-consensus", "sp-consensus-babe", - "sp-core 21.0.0", - "sp-inherents 4.0.0-dev", - "sp-io 23.0.0", + "sp-core", + "sp-inherents", + "sp-io", "sp-keyring", - "sp-runtime 24.0.0", - "sp-state-machine 0.28.0", - "sp-timestamp 4.0.0-dev", + "sp-runtime", + "sp-state-machine", + "sp-timestamp", "substrate-test-client", ] @@ -13143,10 +12986,10 @@ dependencies = [ "polkadot-node-subsystem-test-helpers", "polkadot-node-subsystem-types", "polkadot-node-subsystem-util", - "polkadot-primitives 1.0.0", + "polkadot-primitives", "rand 0.8.5", - "sp-core 21.0.0", - "sp-keystore 0.27.0", + "sp-core", + "sp-keystore", "substrate-build-script-utils", "tracing-gum", ] @@ -13158,7 +13001,7 @@ dependencies = [ "bitvec", "frame-election-provider-support", "frame-executive", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "frame-system-rpc-runtime-api", "hex-literal", @@ -13180,8 +13023,8 @@ dependencies = [ "pallet-vesting", "pallet-xcm", "parity-scale-codec", - "polkadot-parachain-primitives 1.0.0", - "polkadot-primitives 1.0.0", + "polkadot-parachain-primitives", + "polkadot-primitives", "polkadot-runtime-common", "polkadot-runtime-parachains", "rustc-hex", @@ -13190,24 +13033,24 @@ dependencies = [ "serde_derive", "serde_json", "smallvec", - "sp-api 4.0.0-dev", - "sp-authority-discovery 4.0.0-dev", + "sp-api", + "sp-authority-discovery", "sp-block-builder", "sp-consensus-babe", "sp-consensus-beefy", - "sp-core 21.0.0", - "sp-inherents 4.0.0-dev", - "sp-io 23.0.0", + "sp-core", + "sp-inherents", + "sp-io", "sp-keyring", "sp-mmr-primitives", "sp-offchain", - "sp-runtime 24.0.0", + "sp-runtime", "sp-session", - "sp-staking 4.0.0-dev", - "sp-std 8.0.0", + "sp-staking", + "sp-std", "sp-transaction-pool", - "sp-trie 22.0.0", - "sp-version 22.0.0", + "sp-trie", + "sp-version", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -13229,8 +13072,8 @@ dependencies = [ "polkadot-node-primitives", "polkadot-node-subsystem", "polkadot-overseer", - "polkadot-parachain-primitives 1.0.0", - "polkadot-primitives 1.0.0", + "polkadot-parachain-primitives", + "polkadot-primitives", "polkadot-rpc", "polkadot-runtime-common", "polkadot-runtime-parachains", @@ -13249,17 +13092,17 @@ dependencies = [ "sc-tracing", "sc-transaction-pool", "serde_json", - "sp-arithmetic 16.0.0", - "sp-authority-discovery 4.0.0-dev", + "sp-arithmetic", + "sp-authority-discovery", "sp-blockchain", "sp-consensus", "sp-consensus-babe", "sp-consensus-grandpa", - "sp-core 21.0.0", - "sp-inherents 4.0.0-dev", + "sp-core", + "sp-inherents", "sp-keyring", - "sp-runtime 24.0.0", - "sp-state-machine 0.28.0", + "sp-runtime", + "sp-state-machine", "substrate-test-client", "substrate-test-utils", "tempfile", @@ -13275,7 +13118,7 @@ dependencies = [ "clap 4.4.4", "generate-bags", "polkadot-runtime", - "sp-io 23.0.0", + "sp-io", "staging-kusama-runtime", "westend-runtime", ] @@ -14041,8 +13884,8 @@ dependencies = [ "pallet-bags-list-remote-tests", "polkadot-runtime", "polkadot-runtime-constants", - "sp-core 21.0.0", - "sp-tracing 10.0.0", + "sp-core", + "sp-tracing", "staging-kusama-runtime", "tokio", "westend-runtime", @@ -14190,7 +14033,7 @@ dependencies = [ "cumulus-primitives-utility", "frame-benchmarking", "frame-executive", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "frame-system-rpc-runtime-api", "pallet-assets", @@ -14204,19 +14047,19 @@ dependencies = [ "parachain-info", "parachains-common", "parity-scale-codec", - "polkadot-parachain-primitives 1.0.0", + "polkadot-parachain-primitives", "scale-info", - "sp-api 4.0.0-dev", + "sp-api", "sp-block-builder", - "sp-consensus-aura 0.10.0-dev", - "sp-core 21.0.0", - "sp-inherents 4.0.0-dev", + "sp-consensus-aura", + "sp-core", + "sp-inherents", "sp-offchain", - "sp-runtime 24.0.0", + "sp-runtime", "sp-session", - "sp-std 8.0.0", + "sp-std", "sp-transaction-pool", - "sp-version 22.0.0", + "sp-version", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -14231,7 +14074,7 @@ dependencies = [ "frame-benchmarking", "frame-executive", "frame-remote-externalities", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "frame-system-benchmarking", "frame-system-rpc-runtime-api", @@ -14278,8 +14121,8 @@ dependencies = [ "pallet-xcm", "pallet-xcm-benchmarks", "parity-scale-codec", - "polkadot-parachain-primitives 1.0.0", - "polkadot-primitives 1.0.0", + "polkadot-parachain-primitives", + "polkadot-primitives", "polkadot-runtime-common", "polkadot-runtime-parachains", "rococo-runtime-constants", @@ -14289,26 +14132,26 @@ dependencies = [ "serde_derive", "serde_json", "smallvec", - "sp-api 4.0.0-dev", - "sp-authority-discovery 4.0.0-dev", + "sp-api", + "sp-authority-discovery", "sp-block-builder", "sp-consensus-babe", "sp-consensus-beefy", - "sp-core 21.0.0", - "sp-inherents 4.0.0-dev", - "sp-io 23.0.0", + "sp-core", + "sp-inherents", + "sp-io", "sp-keyring", "sp-mmr-primitives", "sp-offchain", - "sp-runtime 24.0.0", + "sp-runtime", "sp-session", - "sp-staking 4.0.0-dev", - "sp-std 8.0.0", - "sp-storage 13.0.0", - "sp-tracing 10.0.0", + "sp-staking", + "sp-std", + "sp-storage", + "sp-tracing", "sp-transaction-pool", - "sp-trie 22.0.0", - "sp-version 22.0.0", + "sp-trie", + "sp-version", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -14322,13 +14165,13 @@ dependencies = [ name = "rococo-runtime-constants" version = "1.0.0" dependencies = [ - "frame-support 4.0.0-dev", - "polkadot-primitives 1.0.0", + "frame-support", + "polkadot-primitives", "polkadot-runtime-common", "smallvec", - "sp-core 21.0.0", - "sp-runtime 24.0.0", - "sp-weights 20.0.0", + "sp-core", + "sp-runtime", + "sp-weights", ] [[package]] @@ -14633,8 +14476,8 @@ name = "sc-allocator" version = "4.1.0-dev" dependencies = [ "log", - "sp-core 21.0.0", - "sp-wasm-interface 14.0.0", + "sp-core", + "sp-wasm-interface", "thiserror", ] @@ -14656,13 +14499,13 @@ dependencies = [ "rand 0.8.5", "sc-client-api", "sc-network", - "sp-api 4.0.0-dev", - "sp-authority-discovery 4.0.0-dev", + "sp-api", + "sp-authority-discovery", "sp-blockchain", - "sp-core 21.0.0", - "sp-keystore 0.27.0", - "sp-runtime 24.0.0", - "sp-tracing 10.0.0", + "sp-core", + "sp-keystore", + "sp-runtime", + "sp-tracing", "substrate-prometheus-endpoint", "substrate-test-runtime-client", "thiserror", @@ -14683,12 +14526,12 @@ dependencies = [ "sc-telemetry", "sc-transaction-pool", "sc-transaction-pool-api", - "sp-api 4.0.0-dev", + "sp-api", "sp-blockchain", "sp-consensus", - "sp-core 21.0.0", - "sp-inherents 4.0.0-dev", - "sp-runtime 24.0.0", + "sp-core", + "sp-inherents", + "sp-runtime", "substrate-prometheus-endpoint", "substrate-test-runtime-client", ] @@ -14699,13 +14542,13 @@ version = "0.10.0-dev" dependencies = [ "parity-scale-codec", "sc-client-api", - "sp-api 4.0.0-dev", + "sp-api", "sp-block-builder", "sp-blockchain", - "sp-core 21.0.0", - "sp-inherents 4.0.0-dev", - "sp-runtime 24.0.0", - "sp-state-machine 0.28.0", + "sp-core", + "sp-inherents", + "sp-runtime", + "sp-state-machine", "substrate-test-runtime-client", ] @@ -14722,9 +14565,9 @@ dependencies = [ "serde", "serde_json", "sp-blockchain", - "sp-core 21.0.0", - "sp-runtime 24.0.0", - "sp-state-machine 0.28.0", + "sp-core", + "sp-runtime", + "sp-state-machine", ] [[package]] @@ -14765,13 +14608,13 @@ dependencies = [ "serde", "serde_json", "sp-blockchain", - "sp-core 21.0.0", + "sp-core", "sp-keyring", - "sp-keystore 0.27.0", - "sp-panic-handler 8.0.0", - "sp-runtime 24.0.0", - "sp-tracing 10.0.0", - "sp-version 22.0.0", + "sp-keystore", + "sp-panic-handler", + "sp-runtime", + "sp-tracing", + "sp-version", "tempfile", "thiserror", "tiny-bip39", @@ -14790,18 +14633,18 @@ dependencies = [ "sc-executor", "sc-transaction-pool-api", "sc-utils", - "sp-api 4.0.0-dev", + "sp-api", "sp-blockchain", "sp-consensus", - "sp-core 21.0.0", + "sp-core", "sp-database", - "sp-externalities 0.19.0", - "sp-runtime 24.0.0", - "sp-state-machine 0.28.0", + "sp-externalities", + "sp-runtime", + "sp-state-machine", "sp-statement-store", - "sp-storage 13.0.0", + "sp-storage", "sp-test-primitives", - "sp-trie 22.0.0", + "sp-trie", "substrate-prometheus-endpoint", "substrate-test-runtime", "thiserror", @@ -14828,14 +14671,14 @@ dependencies = [ "sc-client-api", "sc-state-db", "schnellru", - "sp-arithmetic 16.0.0", + "sp-arithmetic", "sp-blockchain", - "sp-core 21.0.0", + "sp-core", "sp-database", - "sp-runtime 24.0.0", - "sp-state-machine 0.28.0", - "sp-tracing 10.0.0", - "sp-trie 22.0.0", + "sp-runtime", + "sp-state-machine", + "sp-tracing", + "sp-trie", "substrate-test-runtime-client", "tempfile", ] @@ -14854,12 +14697,12 @@ dependencies = [ "sc-client-api", "sc-utils", "serde", - "sp-api 4.0.0-dev", + "sp-api", "sp-blockchain", "sp-consensus", - "sp-core 21.0.0", - "sp-runtime 24.0.0", - "sp-state-machine 0.28.0", + "sp-core", + "sp-runtime", + "sp-state-machine", "sp-test-primitives", "substrate-prometheus-endpoint", "thiserror", @@ -14882,20 +14725,20 @@ dependencies = [ "sc-network", "sc-network-test", "sc-telemetry", - "sp-api 4.0.0-dev", - "sp-application-crypto 23.0.0", + "sp-api", + "sp-application-crypto", "sp-block-builder", "sp-blockchain", "sp-consensus", - "sp-consensus-aura 0.10.0-dev", - "sp-consensus-slots 0.10.0-dev", - "sp-core 21.0.0", - "sp-inherents 4.0.0-dev", + "sp-consensus-aura", + "sp-consensus-slots", + "sp-core", + "sp-inherents", "sp-keyring", - "sp-keystore 0.27.0", - "sp-runtime 24.0.0", - "sp-timestamp 4.0.0-dev", - "sp-tracing 10.0.0", + "sp-keystore", + "sp-runtime", + "sp-timestamp", + "sp-tracing", "substrate-prometheus-endpoint", "substrate-test-runtime-client", "tempfile", @@ -14924,20 +14767,20 @@ dependencies = [ "sc-network-test", "sc-telemetry", "sc-transaction-pool-api", - "sp-api 4.0.0-dev", - "sp-application-crypto 23.0.0", + "sp-api", + "sp-application-crypto", "sp-block-builder", "sp-blockchain", "sp-consensus", "sp-consensus-babe", - "sp-consensus-slots 0.10.0-dev", - "sp-core 21.0.0", - "sp-inherents 4.0.0-dev", + "sp-consensus-slots", + "sp-core", + "sp-inherents", "sp-keyring", - "sp-keystore 0.27.0", - "sp-runtime 24.0.0", - "sp-timestamp 4.0.0-dev", - "sp-tracing 10.0.0", + "sp-keystore", + "sp-runtime", + "sp-timestamp", + "sp-tracing", "substrate-prometheus-endpoint", "substrate-test-runtime-client", "thiserror", @@ -14958,15 +14801,15 @@ dependencies = [ "sc-transaction-pool-api", "serde", "serde_json", - "sp-api 4.0.0-dev", - "sp-application-crypto 23.0.0", + "sp-api", + "sp-application-crypto", "sp-blockchain", "sp-consensus", "sp-consensus-babe", - "sp-core 21.0.0", + "sp-core", "sp-keyring", - "sp-keystore 0.27.0", - "sp-runtime 24.0.0", + "sp-keystore", + "sp-runtime", "substrate-test-runtime-client", "thiserror", "tokio", @@ -14993,19 +14836,19 @@ dependencies = [ "sc-network-test", "sc-utils", "serde", - "sp-api 4.0.0-dev", - "sp-application-crypto 23.0.0", - "sp-arithmetic 16.0.0", + "sp-api", + "sp-application-crypto", + "sp-arithmetic", "sp-blockchain", "sp-consensus", "sp-consensus-beefy", "sp-consensus-grandpa", - "sp-core 21.0.0", + "sp-core", "sp-keyring", - "sp-keystore 0.27.0", + "sp-keystore", "sp-mmr-primitives", - "sp-runtime 24.0.0", - "sp-tracing 10.0.0", + "sp-runtime", + "sp-tracing", "substrate-prometheus-endpoint", "substrate-test-runtime-client", "tempfile", @@ -15028,8 +14871,8 @@ dependencies = [ "serde", "serde_json", "sp-consensus-beefy", - "sp-core 21.0.0", - "sp-runtime 24.0.0", + "sp-core", + "sp-runtime", "substrate-test-runtime-client", "thiserror", "tokio", @@ -15044,7 +14887,7 @@ dependencies = [ "sc-client-api", "sc-consensus", "sp-blockchain", - "sp-runtime 24.0.0", + "sp-runtime", ] [[package]] @@ -15077,17 +14920,17 @@ dependencies = [ "sc-utils", "serde", "serde_json", - "sp-api 4.0.0-dev", - "sp-application-crypto 23.0.0", - "sp-arithmetic 16.0.0", + "sp-api", + "sp-application-crypto", + "sp-arithmetic", "sp-blockchain", "sp-consensus", "sp-consensus-grandpa", - "sp-core 21.0.0", + "sp-core", "sp-keyring", - "sp-keystore 0.27.0", - "sp-runtime 24.0.0", - "sp-tracing 10.0.0", + "sp-keystore", + "sp-runtime", + "sp-tracing", "substrate-prometheus-endpoint", "substrate-test-runtime-client", "thiserror", @@ -15110,9 +14953,9 @@ dependencies = [ "serde", "sp-blockchain", "sp-consensus-grandpa", - "sp-core 21.0.0", + "sp-core", "sp-keyring", - "sp-runtime 24.0.0", + "sp-runtime", "substrate-test-runtime-client", "thiserror", "tokio", @@ -15138,17 +14981,17 @@ dependencies = [ "sc-transaction-pool", "sc-transaction-pool-api", "serde", - "sp-api 4.0.0-dev", + "sp-api", "sp-blockchain", "sp-consensus", - "sp-consensus-aura 0.10.0-dev", + "sp-consensus-aura", "sp-consensus-babe", - "sp-consensus-slots 0.10.0-dev", - "sp-core 21.0.0", - "sp-inherents 4.0.0-dev", - "sp-keystore 0.27.0", - "sp-runtime 24.0.0", - "sp-timestamp 4.0.0-dev", + "sp-consensus-slots", + "sp-core", + "sp-inherents", + "sp-keystore", + "sp-runtime", + "sp-timestamp", "substrate-prometheus-endpoint", "substrate-test-runtime-client", "substrate-test-runtime-transaction-pool", @@ -15168,14 +15011,14 @@ dependencies = [ "parking_lot 0.12.1", "sc-client-api", "sc-consensus", - "sp-api 4.0.0-dev", + "sp-api", "sp-block-builder", "sp-blockchain", "sp-consensus", "sp-consensus-pow", - "sp-core 21.0.0", - "sp-inherents 4.0.0-dev", - "sp-runtime 24.0.0", + "sp-core", + "sp-inherents", + "sp-runtime", "substrate-prometheus-endpoint", "thiserror", ] @@ -15192,14 +15035,14 @@ dependencies = [ "sc-client-api", "sc-consensus", "sc-telemetry", - "sp-arithmetic 16.0.0", + "sp-arithmetic", "sp-blockchain", "sp-consensus", - "sp-consensus-slots 0.10.0-dev", - "sp-core 21.0.0", - "sp-inherents 4.0.0-dev", - "sp-runtime 24.0.0", - "sp-state-machine 0.28.0", + "sp-consensus-slots", + "sp-core", + "sp-inherents", + "sp-runtime", + "sp-state-machine", "substrate-test-runtime-client", ] @@ -15221,19 +15064,19 @@ dependencies = [ "sc-runtime-test", "sc-tracing", "schnellru", - "sp-api 4.0.0-dev", - "sp-core 21.0.0", - "sp-externalities 0.19.0", - "sp-io 23.0.0", + "sp-api", + "sp-core", + "sp-externalities", + "sp-io", "sp-maybe-compressed-blob", - "sp-panic-handler 8.0.0", - "sp-runtime 24.0.0", - "sp-runtime-interface 17.0.0", - "sp-state-machine 0.28.0", - "sp-tracing 10.0.0", - "sp-trie 22.0.0", - "sp-version 22.0.0", - "sp-wasm-interface 14.0.0", + "sp-panic-handler", + "sp-runtime", + "sp-runtime-interface", + "sp-state-machine", + "sp-tracing", + "sp-trie", + "sp-version", + "sp-wasm-interface", "substrate-test-runtime", "tempfile", "tracing", @@ -15247,7 +15090,7 @@ version = "0.10.0-dev" dependencies = [ "sc-allocator", "sp-maybe-compressed-blob", - "sp-wasm-interface 14.0.0", + "sp-wasm-interface", "thiserror", "wasm-instrument 0.3.0", ] @@ -15267,9 +15110,9 @@ dependencies = [ "sc-allocator", "sc-executor-common", "sc-runtime-test", - "sp-io 23.0.0", - "sp-runtime-interface 17.0.0", - "sp-wasm-interface 14.0.0", + "sp-io", + "sp-runtime-interface", + "sp-wasm-interface", "tempfile", "wasmtime", "wat", @@ -15287,7 +15130,7 @@ dependencies = [ "sc-network", "sc-network-common", "sp-blockchain", - "sp-runtime 24.0.0", + "sp-runtime", ] [[package]] @@ -15297,9 +15140,9 @@ dependencies = [ "array-bytes", "parking_lot 0.12.1", "serde_json", - "sp-application-crypto 23.0.0", - "sp-core 21.0.0", - "sp-keystore 0.27.0", + "sp-application-crypto", + "sp-core", + "sp-keystore", "tempfile", "thiserror", ] @@ -15337,12 +15180,12 @@ dependencies = [ "serde", "serde_json", "smallvec", - "sp-arithmetic 16.0.0", + "sp-arithmetic", "sp-blockchain", - "sp-core 21.0.0", - "sp-runtime 24.0.0", + "sp-core", + "sp-runtime", "sp-test-primitives", - "sp-tracing 10.0.0", + "sp-tracing", "substrate-prometheus-endpoint", "substrate-test-runtime", "substrate-test-runtime-client", @@ -15373,8 +15216,8 @@ dependencies = [ "sc-network", "sp-blockchain", "sp-consensus", - "sp-core 21.0.0", - "sp-runtime 24.0.0", + "sp-core", + "sp-runtime", "substrate-test-runtime", "substrate-test-runtime-client", "thiserror", @@ -15395,7 +15238,7 @@ dependencies = [ "sc-consensus", "sp-consensus", "sp-consensus-grandpa", - "sp-runtime 24.0.0", + "sp-runtime", "tempfile", ] @@ -15412,7 +15255,7 @@ dependencies = [ "sc-network", "sc-network-common", "schnellru", - "sp-runtime 24.0.0", + "sp-runtime", "substrate-prometheus-endpoint", "substrate-test-runtime-client", "tokio", @@ -15434,8 +15277,8 @@ dependencies = [ "sc-client-api", "sc-network", "sp-blockchain", - "sp-core 21.0.0", - "sp-runtime 24.0.0", + "sp-core", + "sp-runtime", "thiserror", ] @@ -15481,14 +15324,14 @@ dependencies = [ "sc-utils", "schnellru", "smallvec", - "sp-arithmetic 16.0.0", + "sp-arithmetic", "sp-blockchain", "sp-consensus", "sp-consensus-grandpa", - "sp-core 21.0.0", - "sp-runtime 24.0.0", + "sp-core", + "sp-runtime", "sp-test-primitives", - "sp-tracing 10.0.0", + "sp-tracing", "substrate-prometheus-endpoint", "substrate-test-runtime-client", "thiserror", @@ -15517,9 +15360,9 @@ dependencies = [ "sc-utils", "sp-blockchain", "sp-consensus", - "sp-core 21.0.0", - "sp-runtime 24.0.0", - "sp-tracing 10.0.0", + "sp-core", + "sp-runtime", + "sp-tracing", "substrate-test-runtime", "substrate-test-runtime-client", "tokio", @@ -15538,7 +15381,7 @@ dependencies = [ "sc-network-common", "sc-utils", "sp-consensus", - "sp-runtime 24.0.0", + "sp-runtime", "substrate-prometheus-endpoint", ] @@ -15569,14 +15412,14 @@ dependencies = [ "sc-transaction-pool", "sc-transaction-pool-api", "sc-utils", - "sp-api 4.0.0-dev", + "sp-api", "sp-consensus", - "sp-core 21.0.0", - "sp-externalities 0.19.0", - "sp-keystore 0.27.0", + "sp-core", + "sp-externalities", + "sp-keystore", "sp-offchain", - "sp-runtime 24.0.0", - "sp-tracing 10.0.0", + "sp-runtime", + "sp-tracing", "substrate-test-runtime-client", "threadpool", "tokio", @@ -15614,18 +15457,18 @@ dependencies = [ "sc-transaction-pool-api", "sc-utils", "serde_json", - "sp-api 4.0.0-dev", + "sp-api", "sp-blockchain", "sp-consensus", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-keystore 0.27.0", + "sp-core", + "sp-io", + "sp-keystore", "sp-offchain", "sp-rpc", - "sp-runtime 24.0.0", + "sp-runtime", "sp-session", "sp-statement-store", - "sp-version 22.0.0", + "sp-version", "substrate-test-runtime-client", "tokio", ] @@ -15641,10 +15484,10 @@ dependencies = [ "scale-info", "serde", "serde_json", - "sp-core 21.0.0", + "sp-core", "sp-rpc", - "sp-runtime 24.0.0", - "sp-version 22.0.0", + "sp-runtime", + "sp-version", "thiserror", ] @@ -15684,13 +15527,13 @@ dependencies = [ "sc-utils", "serde", "serde_json", - "sp-api 4.0.0-dev", + "sp-api", "sp-blockchain", "sp-consensus", - "sp-core 21.0.0", + "sp-core", "sp-maybe-compressed-blob", - "sp-runtime 24.0.0", - "sp-version 22.0.0", + "sp-runtime", + "sp-version", "substrate-test-runtime", "substrate-test-runtime-client", "thiserror", @@ -15702,11 +15545,11 @@ dependencies = [ name = "sc-runtime-test" version = "2.0.0" dependencies = [ - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-runtime-interface 17.0.0", - "sp-std 8.0.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-runtime-interface", + "sp-std", "substrate-wasm-builder", ] @@ -15750,20 +15593,20 @@ dependencies = [ "sc-utils", "serde", "serde_json", - "sp-api 4.0.0-dev", + "sp-api", "sp-blockchain", "sp-consensus", - "sp-core 21.0.0", - "sp-externalities 0.19.0", - "sp-keystore 0.27.0", - "sp-runtime 24.0.0", + "sp-core", + "sp-externalities", + "sp-keystore", + "sp-runtime", "sp-session", - "sp-state-machine 0.28.0", - "sp-storage 13.0.0", + "sp-state-machine", + "sp-storage", "sp-transaction-pool", "sp-transaction-storage-proof", - "sp-trie 22.0.0", - "sp-version 22.0.0", + "sp-trie", + "sp-version", "static_init 1.0.3", "substrate-prometheus-endpoint", "substrate-test-runtime", @@ -15795,16 +15638,16 @@ dependencies = [ "sc-network-sync", "sc-service", "sc-transaction-pool-api", - "sp-api 4.0.0-dev", + "sp-api", "sp-blockchain", "sp-consensus", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-state-machine 0.28.0", - "sp-storage 13.0.0", - "sp-tracing 10.0.0", - "sp-trie 22.0.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-state-machine", + "sp-storage", + "sp-tracing", + "sp-trie", "substrate-test-runtime", "substrate-test-runtime-client", "tempfile", @@ -15818,7 +15661,7 @@ dependencies = [ "log", "parity-scale-codec", "parking_lot 0.12.1", - "sp-core 21.0.0", + "sp-core", ] [[package]] @@ -15831,10 +15674,10 @@ dependencies = [ "parking_lot 0.12.1", "sc-client-api", "sc-keystore", - "sp-api 4.0.0-dev", + "sp-api", "sp-blockchain", - "sp-core 21.0.0", - "sp-runtime 24.0.0", + "sp-core", + "sp-runtime", "sp-statement-store", "substrate-prometheus-endpoint", "tempfile", @@ -15849,7 +15692,7 @@ dependencies = [ "fs4", "log", "sc-client-db", - "sp-core 21.0.0", + "sp-core", "thiserror", "tokio", ] @@ -15868,7 +15711,7 @@ dependencies = [ "serde", "serde_json", "sp-blockchain", - "sp-runtime 24.0.0", + "sp-runtime", "thiserror", ] @@ -15885,10 +15728,10 @@ dependencies = [ "sc-telemetry", "serde", "serde_json", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] @@ -15926,12 +15769,12 @@ dependencies = [ "sc-client-api", "sc-tracing-proc-macro", "serde", - "sp-api 4.0.0-dev", + "sp-api", "sp-blockchain", - "sp-core 21.0.0", + "sp-core", "sp-rpc", - "sp-runtime 24.0.0", - "sp-tracing 10.0.0", + "sp-runtime", + "sp-tracing", "thiserror", "tracing", "tracing-log", @@ -15967,12 +15810,12 @@ dependencies = [ "sc-transaction-pool-api", "sc-utils", "serde", - "sp-api 4.0.0-dev", + "sp-api", "sp-blockchain", "sp-consensus", - "sp-core 21.0.0", - "sp-runtime 24.0.0", - "sp-tracing 10.0.0", + "sp-core", + "sp-runtime", + "sp-tracing", "sp-transaction-pool", "substrate-prometheus-endpoint", "substrate-test-runtime", @@ -15992,8 +15835,8 @@ dependencies = [ "serde", "serde_json", "sp-blockchain", - "sp-core 21.0.0", - "sp-runtime 24.0.0", + "sp-core", + "sp-runtime", "thiserror", ] @@ -16008,7 +15851,7 @@ dependencies = [ "log", "parking_lot 0.12.1", "prometheus", - "sp-arithmetic 16.0.0", + "sp-arithmetic", "tokio-test", ] @@ -16224,7 +16067,7 @@ dependencies = [ "cumulus-primitives-core", "cumulus-primitives-timestamp", "frame-executive", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "pallet-aura", "pallet-balances", @@ -16234,17 +16077,17 @@ dependencies = [ "parachains-common", "parity-scale-codec", "scale-info", - "sp-api 4.0.0-dev", + "sp-api", "sp-block-builder", - "sp-consensus-aura 0.10.0-dev", - "sp-core 21.0.0", - "sp-inherents 4.0.0-dev", + "sp-consensus-aura", + "sp-core", + "sp-inherents", "sp-offchain", - "sp-runtime 24.0.0", + "sp-runtime", "sp-session", - "sp-std 8.0.0", + "sp-std", "sp-transaction-pool", - "sp-version 22.0.0", + "sp-version", "substrate-wasm-builder", ] @@ -16472,7 +16315,7 @@ dependencies = [ "cumulus-pallet-xcm", "cumulus-primitives-core", "frame-executive", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "frame-try-runtime", "pallet-aura", @@ -16481,17 +16324,17 @@ dependencies = [ "parachains-common", "parity-scale-codec", "scale-info", - "sp-api 4.0.0-dev", + "sp-api", "sp-block-builder", - "sp-consensus-aura 0.10.0-dev", - "sp-core 21.0.0", - "sp-inherents 4.0.0-dev", + "sp-consensus-aura", + "sp-core", + "sp-inherents", "sp-offchain", - "sp-runtime 24.0.0", + "sp-runtime", "sp-session", - "sp-std 8.0.0", + "sp-std", "sp-transaction-pool", - "sp-version 22.0.0", + "sp-version", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -16584,8 +16427,8 @@ dependencies = [ "enumn", "parity-scale-codec", "paste", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-runtime", + "sp-std", ] [[package]] @@ -16778,38 +16621,16 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-api-proc-macro 4.0.0-dev", - "sp-core 21.0.0", - "sp-externalities 0.19.0", - "sp-metadata-ir 0.1.0", - "sp-runtime 24.0.0", - "sp-state-machine 0.28.0", - "sp-std 8.0.0", + "sp-api-proc-macro", + "sp-core", + "sp-externalities", + "sp-metadata-ir", + "sp-runtime", + "sp-state-machine", + "sp-std", "sp-test-primitives", - "sp-trie 22.0.0", - "sp-version 22.0.0", - "thiserror", -] - -[[package]] -name = "sp-api" -version = "21.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "86901915aaf9c73f9a8588fae10072c6082e7bf169edae175950410b77ad8103" -dependencies = [ - "hash-db", - "log", - "parity-scale-codec", - "scale-info", - "sp-api-proc-macro 10.0.0", - "sp-core 23.0.0", - "sp-externalities 0.21.0", - "sp-metadata-ir 0.2.0", - "sp-runtime 26.0.0", - "sp-state-machine 0.30.0", - "sp-std 10.0.0", - "sp-trie 24.0.0", - "sp-version 24.0.0", + "sp-trie", + "sp-version", "thiserror", ] @@ -16827,21 +16648,6 @@ dependencies = [ "syn 2.0.37", ] -[[package]] -name = "sp-api-proc-macro" -version = "10.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "972809a3e3a583423bca2ee6d08eb5397814ef6b265abf43e888c4ed9916ff83" -dependencies = [ - "Inflector", - "blake2", - "expander 2.0.0", - "proc-macro-crate", - "proc-macro2", - "quote", - "syn 2.0.37", -] - [[package]] name = "sp-api-test" version = "2.0.1" @@ -16853,13 +16659,13 @@ dependencies = [ "rustversion", "sc-block-builder", "scale-info", - "sp-api 4.0.0-dev", + "sp-api", "sp-consensus", - "sp-core 21.0.0", - "sp-runtime 24.0.0", - "sp-state-machine 0.28.0", - "sp-tracing 10.0.0", - "sp-version 22.0.0", + "sp-core", + "sp-runtime", + "sp-state-machine", + "sp-tracing", + "sp-version", "static_assertions", "substrate-test-runtime-client", "trybuild", @@ -16872,33 +16678,19 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-std 8.0.0", -] - -[[package]] -name = "sp-application-crypto" -version = "25.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7fa730e4f3a2aec3f4ee777410599a86eb17067ee5410c58ab496e88d7bb840c" -dependencies = [ - "parity-scale-codec", - "scale-info", - "serde", - "sp-core 23.0.0", - "sp-io 25.0.0", - "sp-std 10.0.0", + "sp-core", + "sp-io", + "sp-std", ] [[package]] name = "sp-application-crypto-test" version = "2.0.0" dependencies = [ - "sp-api 4.0.0-dev", - "sp-application-crypto 23.0.0", - "sp-core 21.0.0", - "sp-keystore 0.27.0", + "sp-api", + "sp-application-crypto", + "sp-core", + "sp-keystore", "substrate-test-runtime-client", ] @@ -16914,23 +16706,8 @@ dependencies = [ "rand 0.8.5", "scale-info", "serde", - "sp-core 21.0.0", - "sp-std 8.0.0", - "static_assertions", -] - -[[package]] -name = "sp-arithmetic" -version = "18.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2d3d3ff6d6d717d7563659e9e47e958d33ebd2d0b3d8b1a9961cf9832944375e" -dependencies = [ - "integer-sqrt", - "num-traits", - "parity-scale-codec", - "scale-info", - "serde", - "sp-std 10.0.0", + "sp-core", + "sp-std", "static_assertions", ] @@ -16942,7 +16719,7 @@ dependencies = [ "fraction", "honggfuzz", "num-bigint", - "sp-arithmetic 16.0.0", + "sp-arithmetic", ] [[package]] @@ -17045,34 +16822,20 @@ version = "4.0.0-dev" dependencies = [ "parity-scale-codec", "scale-info", - "sp-api 4.0.0-dev", - "sp-application-crypto 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", -] - -[[package]] -name = "sp-authority-discovery" -version = "21.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "06a92d2af502f53c11c4656f58a1f49856b633f455433c6e0c94e59039f560f0" -dependencies = [ - "parity-scale-codec", - "scale-info", - "sp-api 21.0.0", - "sp-application-crypto 25.0.0", - "sp-runtime 26.0.0", - "sp-std 10.0.0", + "sp-api", + "sp-application-crypto", + "sp-runtime", + "sp-std", ] [[package]] name = "sp-block-builder" version = "4.0.0-dev" dependencies = [ - "sp-api 4.0.0-dev", - "sp-inherents 4.0.0-dev", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-api", + "sp-inherents", + "sp-runtime", + "sp-std", ] [[package]] @@ -17084,11 +16847,11 @@ dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", "schnellru", - "sp-api 4.0.0-dev", + "sp-api", "sp-consensus", "sp-database", - "sp-runtime 24.0.0", - "sp-state-machine 0.28.0", + "sp-runtime", + "sp-state-machine", "thiserror", ] @@ -17099,10 +16862,10 @@ dependencies = [ "async-trait", "futures", "log", - "sp-core 21.0.0", - "sp-inherents 4.0.0-dev", - "sp-runtime 24.0.0", - "sp-state-machine 0.28.0", + "sp-core", + "sp-inherents", + "sp-runtime", + "sp-state-machine", "sp-test-primitives", "thiserror", ] @@ -17114,31 +16877,13 @@ dependencies = [ "async-trait", "parity-scale-codec", "scale-info", - "sp-api 4.0.0-dev", - "sp-application-crypto 23.0.0", - "sp-consensus-slots 0.10.0-dev", - "sp-inherents 4.0.0-dev", - "sp-runtime 24.0.0", - "sp-std 8.0.0", - "sp-timestamp 4.0.0-dev", -] - -[[package]] -name = "sp-consensus-aura" -version = "0.27.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9564b98aa33315f542ba0ace2bb5f94a1a0503608b125edbd6537420fcf03a47" -dependencies = [ - "async-trait", - "parity-scale-codec", - "scale-info", - "sp-api 21.0.0", - "sp-application-crypto 25.0.0", - "sp-consensus-slots 0.27.0", - "sp-inherents 21.0.0", - "sp-runtime 26.0.0", - "sp-std 10.0.0", - "sp-timestamp 21.0.0", + "sp-api", + "sp-application-crypto", + "sp-consensus-slots", + "sp-inherents", + "sp-runtime", + "sp-std", + "sp-timestamp", ] [[package]] @@ -17149,14 +16894,14 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-api 4.0.0-dev", - "sp-application-crypto 23.0.0", - "sp-consensus-slots 0.10.0-dev", - "sp-core 21.0.0", - "sp-inherents 4.0.0-dev", - "sp-runtime 24.0.0", - "sp-std 8.0.0", - "sp-timestamp 4.0.0-dev", + "sp-api", + "sp-application-crypto", + "sp-consensus-slots", + "sp-core", + "sp-inherents", + "sp-runtime", + "sp-std", + "sp-timestamp", ] [[package]] @@ -17168,13 +16913,13 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-api 4.0.0-dev", - "sp-application-crypto 23.0.0", - "sp-core 21.0.0", - "sp-io 23.0.0", + "sp-api", + "sp-application-crypto", + "sp-core", + "sp-io", "sp-mmr-primitives", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-runtime", + "sp-std", "strum", "w3f-bls", ] @@ -17188,12 +16933,12 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-api 4.0.0-dev", - "sp-application-crypto 23.0.0", - "sp-core 21.0.0", - "sp-keystore 0.27.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-api", + "sp-application-crypto", + "sp-core", + "sp-keystore", + "sp-runtime", + "sp-std", ] [[package]] @@ -17201,10 +16946,10 @@ name = "sp-consensus-pow" version = "0.10.0-dev" dependencies = [ "parity-scale-codec", - "sp-api 4.0.0-dev", - "sp-core 21.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-api", + "sp-core", + "sp-runtime", + "sp-std", ] [[package]] @@ -17214,12 +16959,12 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-api 4.0.0-dev", - "sp-application-crypto 23.0.0", - "sp-consensus-slots 0.10.0-dev", - "sp-core 21.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-api", + "sp-application-crypto", + "sp-consensus-slots", + "sp-core", + "sp-runtime", + "sp-std", ] [[package]] @@ -17229,21 +16974,8 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-std 8.0.0", - "sp-timestamp 4.0.0-dev", -] - -[[package]] -name = "sp-consensus-slots" -version = "0.27.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c9edd2b6ac697a55075e3a4c5697f1142cd59de015f93aaf0aa843d1194ae268" -dependencies = [ - "parity-scale-codec", - "scale-info", - "serde", - "sp-std 10.0.0", - "sp-timestamp 21.0.0", + "sp-std", + "sp-timestamp", ] [[package]] @@ -17279,13 +17011,13 @@ dependencies = [ "secrecy", "serde", "serde_json", - "sp-core-hashing 9.0.0", - "sp-core-hashing-proc-macro 9.0.0", - "sp-debug-derive 8.0.0", - "sp-externalities 0.19.0", - "sp-runtime-interface 17.0.0", - "sp-std 8.0.0", - "sp-storage 13.0.0", + "sp-core-hashing", + "sp-core-hashing-proc-macro", + "sp-debug-derive", + "sp-externalities", + "sp-runtime-interface", + "sp-std", + "sp-storage", "ss58-registry", "substrate-bip39", "thiserror", @@ -17295,53 +17027,6 @@ dependencies = [ "zeroize", ] -[[package]] -name = "sp-core" -version = "23.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "412e2ec53b1bc63778e2d70c347224e6cd2e25c4bacb509585db85f0788747b7" -dependencies = [ - "array-bytes", - "arrayvec 0.7.4", - "bitflags 1.3.2", - "blake2", - "bounded-collections", - "bs58 0.5.0", - "dyn-clonable", - "ed25519-zebra 3.1.0", - "futures", - "hash-db", - "hash256-std-hasher", - "impl-serde", - "lazy_static", - "libsecp256k1", - "log", - "merlin 2.0.1", - "parity-scale-codec", - "parking_lot 0.12.1", - "paste", - "primitive-types", - "rand 0.8.5", - "regex", - "scale-info", - "schnorrkel 0.9.1", - "secp256k1", - "secrecy", - "serde", - "sp-core-hashing 11.0.0", - "sp-debug-derive 10.0.0", - "sp-externalities 0.21.0", - "sp-runtime-interface 19.0.0", - "sp-std 10.0.0", - "sp-storage 15.0.0", - "ss58-registry", - "substrate-bip39", - "thiserror", - "tiny-bip39", - "tracing", - "zeroize", -] - [[package]] name = "sp-core-hashing" version = "9.0.0" @@ -17354,37 +17039,12 @@ dependencies = [ "twox-hash", ] -[[package]] -name = "sp-core-hashing" -version = "11.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "558116d02341b6f28b033c19a2a5fa555afa3c52628639170087e7685d51e743" -dependencies = [ - "blake2b_simd", - "byteorder", - "digest 0.10.7", - "sha2 0.10.7", - "sha3", - "twox-hash", -] - [[package]] name = "sp-core-hashing-proc-macro" version = "9.0.0" dependencies = [ "quote", - "sp-core-hashing 9.0.0", - "syn 2.0.37", -] - -[[package]] -name = "sp-core-hashing-proc-macro" -version = "11.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5d8681fa136cf504ba2b722fcb10d78df147c15d201b997e06c4c8c72258001a" -dependencies = [ - "quote", - "sp-core-hashing 11.0.0", + "sp-core-hashing", "syn 2.0.37", ] @@ -17410,9 +17070,9 @@ dependencies = [ "sp-ark-ed-on-bls12-377", "sp-ark-ed-on-bls12-381-bandersnatch", "sp-ark-models", - "sp-io 23.0.0", - "sp-runtime-interface 17.0.0", - "sp-std 8.0.0", + "sp-io", + "sp-runtime-interface", + "sp-std", ] [[package]] @@ -17432,37 +17092,14 @@ dependencies = [ "syn 2.0.37", ] -[[package]] -name = "sp-debug-derive" -version = "10.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b4b235a0ad7124d58e6f0a728c8354da5b185b77bcf18b131b3a480cdaa23d95" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.37", -] - [[package]] name = "sp-externalities" version = "0.19.0" dependencies = [ "environmental", "parity-scale-codec", - "sp-std 8.0.0", - "sp-storage 13.0.0", -] - -[[package]] -name = "sp-externalities" -version = "0.21.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "588cf40c36de918f545d712ad1a70631ae71653e4a321506dfcd8fa6fd26453c" -dependencies = [ - "environmental", - "parity-scale-codec", - "sp-std 10.0.0", - "sp-storage 15.0.0", + "sp-std", + "sp-storage", ] [[package]] @@ -17470,21 +17107,9 @@ name = "sp-genesis-builder" version = "0.1.0" dependencies = [ "serde_json", - "sp-api 4.0.0-dev", - "sp-runtime 24.0.0", - "sp-std 8.0.0", -] - -[[package]] -name = "sp-genesis-builder" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1ae51f8a24e1be6593be94581f3465a10d7c86ce403cbf9dcf703d14f35309d1" -dependencies = [ - "serde_json", - "sp-api 21.0.0", - "sp-runtime 26.0.0", - "sp-std 10.0.0", + "sp-api", + "sp-runtime", + "sp-std", ] [[package]] @@ -17496,23 +17121,8 @@ dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", "scale-info", - "sp-runtime 24.0.0", - "sp-std 8.0.0", - "thiserror", -] - -[[package]] -name = "sp-inherents" -version = "21.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4355b6a68001ff5308a09fe069c778c184030ee3b95271dd44841d056ecadf13" -dependencies = [ - "async-trait", - "impl-trait-for-tuples", - "parity-scale-codec", - "scale-info", - "sp-runtime 26.0.0", - "sp-std 10.0.0", + "sp-runtime", + "sp-std", "thiserror", ] @@ -17527,39 +17137,14 @@ dependencies = [ "parity-scale-codec", "rustversion", "secp256k1", - "sp-core 21.0.0", - "sp-externalities 0.19.0", - "sp-keystore 0.27.0", - "sp-runtime-interface 17.0.0", - "sp-state-machine 0.28.0", - "sp-std 8.0.0", - "sp-tracing 10.0.0", - "sp-trie 22.0.0", - "tracing", - "tracing-core", -] - -[[package]] -name = "sp-io" -version = "25.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e9926dba7d67d87e40f49e18ff6cfc01373d5be13e3d373f02182bb5ec8ab37b" -dependencies = [ - "bytes", - "ed25519-dalek", - "libsecp256k1", - "log", - "parity-scale-codec", - "rustversion", - "secp256k1", - "sp-core 23.0.0", - "sp-externalities 0.21.0", - "sp-keystore 0.29.0", - "sp-runtime-interface 19.0.0", - "sp-state-machine 0.30.0", - "sp-std 10.0.0", - "sp-tracing 12.0.0", - "sp-trie 24.0.0", + "sp-core", + "sp-externalities", + "sp-keystore", + "sp-runtime-interface", + "sp-state-machine", + "sp-std", + "sp-tracing", + "sp-trie", "tracing", "tracing-core", ] @@ -17569,8 +17154,8 @@ name = "sp-keyring" version = "24.0.0" dependencies = [ "lazy_static", - "sp-core 21.0.0", - "sp-runtime 24.0.0", + "sp-core", + "sp-runtime", "strum", ] @@ -17582,21 +17167,8 @@ dependencies = [ "parking_lot 0.12.1", "rand 0.7.3", "rand_chacha 0.2.2", - "sp-core 21.0.0", - "sp-externalities 0.19.0", - "thiserror", -] - -[[package]] -name = "sp-keystore" -version = "0.29.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "44f0f9546dd151881c60e75355806f1cbbc893f64aa465fc5bf87a47de59467b" -dependencies = [ - "parity-scale-codec", - "parking_lot 0.12.1", - "sp-core 23.0.0", - "sp-externalities 0.21.0", + "sp-core", + "sp-externalities", "thiserror", ] @@ -17615,19 +17187,7 @@ dependencies = [ "frame-metadata", "parity-scale-codec", "scale-info", - "sp-std 8.0.0", -] - -[[package]] -name = "sp-metadata-ir" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d493f8324241f20d80cbc920fa0ab7a173907d0bf1a10812098a924cdff48d7" -dependencies = [ - "frame-metadata", - "parity-scale-codec", - "scale-info", - "sp-std 10.0.0", + "sp-std", ] [[package]] @@ -17640,11 +17200,11 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-api 4.0.0-dev", - "sp-core 21.0.0", - "sp-debug-derive 8.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-api", + "sp-core", + "sp-debug-derive", + "sp-runtime", + "sp-std", "thiserror", ] @@ -17656,10 +17216,10 @@ dependencies = [ "rand 0.8.5", "scale-info", "serde", - "sp-arithmetic 16.0.0", - "sp-core 21.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-arithmetic", + "sp-core", + "sp-runtime", + "sp-std", "substrate-test-utils", ] @@ -17671,16 +17231,16 @@ dependencies = [ "honggfuzz", "rand 0.8.5", "sp-npos-elections", - "sp-runtime 24.0.0", + "sp-runtime", ] [[package]] name = "sp-offchain" version = "4.0.0-dev" dependencies = [ - "sp-api 4.0.0-dev", - "sp-core 21.0.0", - "sp-runtime 24.0.0", + "sp-api", + "sp-core", + "sp-runtime", ] [[package]] @@ -17692,17 +17252,6 @@ dependencies = [ "regex", ] -[[package]] -name = "sp-panic-handler" -version = "10.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "261572cc0db4b41cf7587b4f7bdc15b8f83f748f17ae1c3c2f56a3e8e62ee913" -dependencies = [ - "backtrace", - "lazy_static", - "regex", -] - [[package]] name = "sp-rpc" version = "6.0.0" @@ -17710,7 +17259,7 @@ dependencies = [ "rustc-hash", "serde", "serde_json", - "sp-core 21.0.0", + "sp-core", ] [[package]] @@ -17727,42 +17276,19 @@ dependencies = [ "scale-info", "serde", "serde_json", - "sp-api 4.0.0-dev", - "sp-application-crypto 23.0.0", - "sp-arithmetic 16.0.0", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-state-machine 0.28.0", - "sp-std 8.0.0", - "sp-tracing 10.0.0", - "sp-weights 20.0.0", + "sp-api", + "sp-application-crypto", + "sp-arithmetic", + "sp-core", + "sp-io", + "sp-state-machine", + "sp-std", + "sp-tracing", + "sp-weights", "substrate-test-runtime-client", "zstd 0.12.4", ] -[[package]] -name = "sp-runtime" -version = "26.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f645e9e2c82d052ea48ed987a8789daca1c03f9b5ed1aa49cd080092eda85330" -dependencies = [ - "either", - "hash256-std-hasher", - "impl-trait-for-tuples", - "log", - "parity-scale-codec", - "paste", - "rand 0.8.5", - "scale-info", - "serde", - "sp-application-crypto 25.0.0", - "sp-arithmetic 18.0.0", - "sp-core 23.0.0", - "sp-io 25.0.0", - "sp-std 10.0.0", - "sp-weights 22.0.0", -] - [[package]] name = "sp-runtime-interface" version = "17.0.0" @@ -17772,39 +17298,20 @@ dependencies = [ "parity-scale-codec", "primitive-types", "rustversion", - "sp-core 21.0.0", - "sp-externalities 0.19.0", - "sp-io 23.0.0", - "sp-runtime-interface-proc-macro 11.0.0", + "sp-core", + "sp-externalities", + "sp-io", + "sp-runtime-interface-proc-macro", "sp-runtime-interface-test-wasm", - "sp-state-machine 0.28.0", - "sp-std 8.0.0", - "sp-storage 13.0.0", - "sp-tracing 10.0.0", - "sp-wasm-interface 14.0.0", + "sp-state-machine", + "sp-std", + "sp-storage", + "sp-tracing", + "sp-wasm-interface", "static_assertions", "trybuild", ] -[[package]] -name = "sp-runtime-interface" -version = "19.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6ef767d6e400ee54a420bcbc570030741420c2d938a6e379d21cab9875a339c5" -dependencies = [ - "bytes", - "impl-trait-for-tuples", - "parity-scale-codec", - "primitive-types", - "sp-externalities 0.21.0", - "sp-runtime-interface-proc-macro 13.0.0", - "sp-std 10.0.0", - "sp-storage 15.0.0", - "sp-tracing 12.0.0", - "sp-wasm-interface 16.0.0", - "static_assertions", -] - [[package]] name = "sp-runtime-interface-proc-macro" version = "11.0.0" @@ -17816,31 +17323,18 @@ dependencies = [ "syn 2.0.37", ] -[[package]] -name = "sp-runtime-interface-proc-macro" -version = "13.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fdd795a4a2205b64d95da897f85b7c83a0044f30df22b0ea282f8387dc6ca428" -dependencies = [ - "Inflector", - "proc-macro-crate", - "proc-macro2", - "quote", - "syn 2.0.37", -] - [[package]] name = "sp-runtime-interface-test" version = "2.0.0" dependencies = [ "sc-executor", "sc-executor-common", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-runtime-interface 17.0.0", + "sp-io", + "sp-runtime", + "sp-runtime-interface", "sp-runtime-interface-test-wasm", "sp-runtime-interface-test-wasm-deprecated", - "sp-state-machine 0.28.0", + "sp-state-machine", "tracing", "tracing-core", ] @@ -17850,10 +17344,10 @@ name = "sp-runtime-interface-test-wasm" version = "2.0.0" dependencies = [ "bytes", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime-interface 17.0.0", - "sp-std 8.0.0", + "sp-core", + "sp-io", + "sp-runtime-interface", + "sp-std", "substrate-wasm-builder", ] @@ -17861,9 +17355,9 @@ dependencies = [ name = "sp-runtime-interface-test-wasm-deprecated" version = "2.0.0" dependencies = [ - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime-interface 17.0.0", + "sp-core", + "sp-io", + "sp-runtime-interface", "substrate-wasm-builder", ] @@ -17873,12 +17367,12 @@ version = "4.0.0-dev" dependencies = [ "parity-scale-codec", "scale-info", - "sp-api 4.0.0-dev", - "sp-core 21.0.0", - "sp-keystore 0.27.0", - "sp-runtime 24.0.0", - "sp-staking 4.0.0-dev", - "sp-std 8.0.0", + "sp-api", + "sp-core", + "sp-keystore", + "sp-runtime", + "sp-staking", + "sp-std", ] [[package]] @@ -17889,24 +17383,9 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-core 21.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", -] - -[[package]] -name = "sp-staking" -version = "21.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8acb11c6a7765d2df277110fe25bba075f697aba999b29a6c9b55eb2b95401b0" -dependencies = [ - "impl-trait-for-tuples", - "parity-scale-codec", - "scale-info", - "serde", - "sp-core 23.0.0", - "sp-runtime 26.0.0", - "sp-std 10.0.0", + "sp-core", + "sp-runtime", + "sp-std", ] [[package]] @@ -17922,37 +17401,15 @@ dependencies = [ "pretty_assertions", "rand 0.8.5", "smallvec", - "sp-core 21.0.0", - "sp-externalities 0.19.0", - "sp-panic-handler 8.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", - "sp-trie 22.0.0", + "sp-core", + "sp-externalities", + "sp-panic-handler", + "sp-runtime", + "sp-std", + "sp-trie", "thiserror", "tracing", - "trie-db 0.28.0", -] - -[[package]] -name = "sp-state-machine" -version = "0.30.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "771dce7d78335718ab8475984b6dbc1f374777049ed1c308186679e611333be2" -dependencies = [ - "hash-db", - "log", - "parity-scale-codec", - "parking_lot 0.12.1", - "rand 0.8.5", - "smallvec", - "sp-core 23.0.0", - "sp-externalities 0.21.0", - "sp-panic-handler 10.0.0", - "sp-std 10.0.0", - "sp-trie 24.0.0", - "thiserror", - "tracing", - "trie-db 0.27.1", + "trie-db", ] [[package]] @@ -17967,13 +17424,13 @@ dependencies = [ "rand 0.8.5", "scale-info", "sha2 0.10.7", - "sp-api 4.0.0-dev", - "sp-application-crypto 23.0.0", - "sp-core 21.0.0", - "sp-externalities 0.19.0", - "sp-runtime 24.0.0", - "sp-runtime-interface 17.0.0", - "sp-std 8.0.0", + "sp-api", + "sp-application-crypto", + "sp-core", + "sp-externalities", + "sp-runtime", + "sp-runtime-interface", + "sp-std", "thiserror", "x25519-dalek 2.0.0", ] @@ -17982,12 +17439,6 @@ dependencies = [ name = "sp-std" version = "8.0.0" -[[package]] -name = "sp-std" -version = "10.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3ed09ef1760e8be9b64b7f739f1cf9a94528130be475d8e4f2d1be1e690c9f9c" - [[package]] name = "sp-storage" version = "13.0.0" @@ -17996,22 +17447,8 @@ dependencies = [ "parity-scale-codec", "ref-cast", "serde", - "sp-debug-derive 8.0.0", - "sp-std 8.0.0", -] - -[[package]] -name = "sp-storage" -version = "15.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c20f503280c004d94033a32cb84274ede30ef0b4b634770b1e7d595f8245bda4" -dependencies = [ - "impl-serde", - "parity-scale-codec", - "ref-cast", - "serde", - "sp-debug-derive 10.0.0", - "sp-std 10.0.0", + "sp-debug-derive", + "sp-std", ] [[package]] @@ -18021,10 +17458,10 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-application-crypto 23.0.0", - "sp-core 21.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-application-crypto", + "sp-core", + "sp-runtime", + "sp-std", ] [[package]] @@ -18033,23 +17470,9 @@ version = "4.0.0-dev" dependencies = [ "async-trait", "parity-scale-codec", - "sp-inherents 4.0.0-dev", - "sp-runtime 24.0.0", - "sp-std 8.0.0", - "thiserror", -] - -[[package]] -name = "sp-timestamp" -version = "21.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "00d60953f7fc9b4f51bbcbac8f0cd8d6e6266a7cc18f661330308bbcec1eb053" -dependencies = [ - "async-trait", - "parity-scale-codec", - "sp-inherents 21.0.0", - "sp-runtime 26.0.0", - "sp-std 10.0.0", + "sp-inherents", + "sp-runtime", + "sp-std", "thiserror", ] @@ -18058,20 +17481,7 @@ name = "sp-tracing" version = "10.0.0" dependencies = [ "parity-scale-codec", - "sp-std 8.0.0", - "tracing", - "tracing-core", - "tracing-subscriber", -] - -[[package]] -name = "sp-tracing" -version = "12.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ebabec43485ebdb2fdb5c6f9b388590d4797a3888024d74724ada2f16b2113b8" -dependencies = [ - "parity-scale-codec", - "sp-std 10.0.0", + "sp-std", "tracing", "tracing-core", "tracing-subscriber", @@ -18081,8 +17491,8 @@ dependencies = [ name = "sp-transaction-pool" version = "4.0.0-dev" dependencies = [ - "sp-api 4.0.0-dev", - "sp-runtime 24.0.0", + "sp-api", + "sp-runtime", ] [[package]] @@ -18092,11 +17502,11 @@ dependencies = [ "async-trait", "parity-scale-codec", "scale-info", - "sp-core 21.0.0", - "sp-inherents 4.0.0-dev", - "sp-runtime 24.0.0", - "sp-std 8.0.0", - "sp-trie 22.0.0", + "sp-core", + "sp-inherents", + "sp-runtime", + "sp-std", + "sp-trie", ] [[package]] @@ -18115,41 +17525,17 @@ dependencies = [ "parking_lot 0.12.1", "scale-info", "schnellru", - "sp-core 21.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-core", + "sp-runtime", + "sp-std", "thiserror", "tracing", "trie-bench", - "trie-db 0.28.0", + "trie-db", "trie-root", "trie-standardmap", ] -[[package]] -name = "sp-trie" -version = "24.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e78585a84d02d1c71e8eb8c00ed586c22a46ad4e773d9ff65c8ed3b8e98b9f51" -dependencies = [ - "ahash 0.8.3", - "hash-db", - "hashbrown 0.13.2", - "lazy_static", - "memory-db", - "nohash-hasher", - "parity-scale-codec", - "parking_lot 0.12.1", - "scale-info", - "schnellru", - "sp-core 23.0.0", - "sp-std 10.0.0", - "thiserror", - "tracing", - "trie-db 0.27.1", - "trie-root", -] - [[package]] name = "sp-version" version = "22.0.0" @@ -18159,28 +17545,10 @@ dependencies = [ "parity-wasm", "scale-info", "serde", - "sp-core-hashing-proc-macro 9.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", - "sp-version-proc-macro 8.0.0", - "thiserror", -] - -[[package]] -name = "sp-version" -version = "24.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "68a8d11b816cd2c68467c697aecca868ab5828af02ef093681a88554d045b878" -dependencies = [ - "impl-serde", - "parity-scale-codec", - "parity-wasm", - "scale-info", - "serde", - "sp-core-hashing-proc-macro 11.0.0", - "sp-runtime 26.0.0", - "sp-std 10.0.0", - "sp-version-proc-macro 10.0.0", + "sp-core-hashing-proc-macro", + "sp-runtime", + "sp-std", + "sp-version-proc-macro", "thiserror", ] @@ -18191,19 +17559,7 @@ dependencies = [ "parity-scale-codec", "proc-macro2", "quote", - "sp-version 22.0.0", - "syn 2.0.37", -] - -[[package]] -name = "sp-version-proc-macro" -version = "10.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6de7bbf860de93bb9b0ccd8e4a74e0dc40089e7192c397bac2b357d4da74e20c" -dependencies = [ - "parity-scale-codec", - "proc-macro2", - "quote", + "sp-version", "syn 2.0.37", ] @@ -18215,21 +17571,7 @@ dependencies = [ "impl-trait-for-tuples", "log", "parity-scale-codec", - "sp-std 8.0.0", - "wasmtime", -] - -[[package]] -name = "sp-wasm-interface" -version = "16.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ee009ac79098027f5990984e0c5ee2fd4883b16bbd6ab97931f28c2148aaa3ea" -dependencies = [ - "anyhow", - "impl-trait-for-tuples", - "log", - "parity-scale-codec", - "sp-std 10.0.0", + "sp-std", "wasmtime", ] @@ -18241,26 +17583,10 @@ dependencies = [ "scale-info", "serde", "smallvec", - "sp-arithmetic 16.0.0", - "sp-core 21.0.0", - "sp-debug-derive 8.0.0", - "sp-std 8.0.0", -] - -[[package]] -name = "sp-weights" -version = "22.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "86566cae93412e40bea0db9e6b110a7379105412a9aed1af73b5d2fb69cb7000" -dependencies = [ - "parity-scale-codec", - "scale-info", - "serde", - "smallvec", - "sp-arithmetic 18.0.0", - "sp-core 23.0.0", - "sp-debug-derive 10.0.0", - "sp-std 10.0.0", + "sp-arithmetic", + "sp-core", + "sp-debug-derive", + "sp-std", ] [[package]] @@ -18337,7 +17663,7 @@ dependencies = [ "frame-election-provider-support", "frame-executive", "frame-remote-externalities", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "frame-system-benchmarking", "frame-system-rpc-runtime-api", @@ -18398,7 +17724,7 @@ dependencies = [ "pallet-xcm", "pallet-xcm-benchmarks", "parity-scale-codec", - "polkadot-primitives 1.0.0", + "polkadot-primitives", "polkadot-runtime-common", "polkadot-runtime-parachains", "rustc-hex", @@ -18408,29 +17734,29 @@ dependencies = [ "serde_derive", "serde_json", "smallvec", - "sp-api 4.0.0-dev", - "sp-application-crypto 23.0.0", - "sp-arithmetic 16.0.0", - "sp-authority-discovery 4.0.0-dev", + "sp-api", + "sp-application-crypto", + "sp-arithmetic", + "sp-authority-discovery", "sp-block-builder", "sp-consensus-babe", "sp-consensus-beefy", - "sp-core 21.0.0", - "sp-inherents 4.0.0-dev", - "sp-io 23.0.0", + "sp-core", + "sp-inherents", + "sp-io", "sp-keyring", "sp-mmr-primitives", "sp-npos-elections", "sp-offchain", - "sp-runtime 24.0.0", + "sp-runtime", "sp-session", - "sp-staking 4.0.0-dev", - "sp-std 8.0.0", - "sp-storage 13.0.0", - "sp-tracing 10.0.0", + "sp-staking", + "sp-std", + "sp-storage", + "sp-tracing", "sp-transaction-pool", - "sp-trie 22.0.0", - "sp-version 22.0.0", + "sp-trie", + "sp-version", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -18454,8 +17780,8 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-io 23.0.0", - "sp-weights 20.0.0", + "sp-io", + "sp-weights", "xcm-procedural", ] @@ -18464,7 +17790,7 @@ name = "staging-xcm-builder" version = "1.0.0" dependencies = [ "assert_matches", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "impl-trait-for-tuples", "log", @@ -18474,17 +17800,17 @@ dependencies = [ "pallet-transaction-payment", "pallet-xcm", "parity-scale-codec", - "polkadot-parachain-primitives 1.0.0", - "polkadot-primitives 1.0.0", + "polkadot-parachain-primitives", + "polkadot-primitives", "polkadot-runtime-parachains", "polkadot-test-runtime", "primitive-types", "scale-info", - "sp-arithmetic 16.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", - "sp-weights 20.0.0", + "sp-arithmetic", + "sp-io", + "sp-runtime", + "sp-std", + "sp-weights", "staging-xcm", "staging-xcm-executor", ] @@ -18495,16 +17821,16 @@ version = "1.0.0" dependencies = [ "environmental", "frame-benchmarking", - "frame-support 4.0.0-dev", + "frame-support", "impl-trait-for-tuples", "log", "parity-scale-codec", - "sp-arithmetic 16.0.0", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", - "sp-weights 20.0.0", + "sp-arithmetic", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", + "sp-weights", "staging-xcm", ] @@ -18661,27 +17987,27 @@ name = "substrate-frame-cli" version = "4.0.0-dev" dependencies = [ "clap 4.4.4", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "sc-cli", - "sp-core 21.0.0", - "sp-runtime 24.0.0", + "sp-core", + "sp-runtime", ] [[package]] name = "substrate-frame-rpc-support" version = "3.0.0" dependencies = [ - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "jsonrpsee", "parity-scale-codec", "sc-rpc-api", "scale-info", "serde", - "sp-core 21.0.0", - "sp-runtime 24.0.0", - "sp-storage 13.0.0", + "sp-core", + "sp-runtime", + "sp-storage", "tokio", ] @@ -18698,12 +18024,12 @@ dependencies = [ "sc-rpc-api", "sc-transaction-pool", "sc-transaction-pool-api", - "sp-api 4.0.0-dev", + "sp-api", "sp-block-builder", "sp-blockchain", - "sp-core 21.0.0", - "sp-runtime 24.0.0", - "sp-tracing 10.0.0", + "sp-core", + "sp-runtime", + "sp-tracing", "substrate-test-runtime-client", "tokio", ] @@ -18728,8 +18054,8 @@ dependencies = [ "log", "sc-rpc-api", "serde", - "sp-core 21.0.0", - "sp-runtime 24.0.0", + "sp-core", + "sp-runtime", "tokio", ] @@ -18743,11 +18069,11 @@ dependencies = [ "sc-rpc-api", "serde", "serde_json", - "sp-core 21.0.0", - "sp-runtime 24.0.0", - "sp-state-machine 0.28.0", - "sp-trie 22.0.0", - "trie-db 0.28.0", + "sp-core", + "sp-runtime", + "sp-state-machine", + "sp-trie", + "trie-db", ] [[package]] @@ -18768,11 +18094,11 @@ dependencies = [ "serde_json", "sp-blockchain", "sp-consensus", - "sp-core 21.0.0", + "sp-core", "sp-keyring", - "sp-keystore 0.27.0", - "sp-runtime 24.0.0", - "sp-state-machine 0.28.0", + "sp-keystore", + "sp-runtime", + "sp-state-machine", ] [[package]] @@ -18781,7 +18107,7 @@ version = "2.0.0" dependencies = [ "array-bytes", "frame-executive", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "frame-system-rpc-runtime-api", "futures", @@ -18798,31 +18124,31 @@ dependencies = [ "scale-info", "serde", "serde_json", - "sp-api 4.0.0-dev", - "sp-application-crypto 23.0.0", + "sp-api", + "sp-application-crypto", "sp-block-builder", "sp-consensus", - "sp-consensus-aura 0.10.0-dev", + "sp-consensus-aura", "sp-consensus-babe", "sp-consensus-grandpa", - "sp-core 21.0.0", - "sp-externalities 0.19.0", - "sp-genesis-builder 0.1.0", - "sp-inherents 4.0.0-dev", - "sp-io 23.0.0", + "sp-core", + "sp-externalities", + "sp-genesis-builder", + "sp-inherents", + "sp-io", "sp-keyring", "sp-offchain", - "sp-runtime 24.0.0", + "sp-runtime", "sp-session", - "sp-state-machine 0.28.0", - "sp-std 8.0.0", - "sp-tracing 10.0.0", + "sp-state-machine", + "sp-std", + "sp-tracing", "sp-transaction-pool", - "sp-trie 22.0.0", - "sp-version 22.0.0", + "sp-trie", + "sp-version", "substrate-test-runtime-client", "substrate-wasm-builder", - "trie-db 0.28.0", + "trie-db", ] [[package]] @@ -18833,11 +18159,11 @@ dependencies = [ "sc-block-builder", "sc-client-api", "sc-consensus", - "sp-api 4.0.0-dev", + "sp-api", "sp-blockchain", "sp-consensus", - "sp-core 21.0.0", - "sp-runtime 24.0.0", + "sp-core", + "sp-runtime", "substrate-test-client", "substrate-test-runtime", ] @@ -18852,7 +18178,7 @@ dependencies = [ "sc-transaction-pool", "sc-transaction-pool-api", "sp-blockchain", - "sp-runtime 24.0.0", + "sp-runtime", "substrate-test-runtime-client", "thiserror", ] @@ -19108,9 +18434,9 @@ version = "1.0.0" dependencies = [ "dlmalloc", "parity-scale-codec", - "polkadot-parachain-primitives 1.0.0", - "sp-io 23.0.0", - "sp-std 8.0.0", + "polkadot-parachain-primitives", + "sp-io", + "sp-std", "substrate-wasm-builder", "tiny-keccak", ] @@ -19128,13 +18454,13 @@ dependencies = [ "polkadot-node-core-pvf", "polkadot-node-primitives", "polkadot-node-subsystem", - "polkadot-parachain-primitives 1.0.0", - "polkadot-primitives 1.0.0", + "polkadot-parachain-primitives", + "polkadot-primitives", "polkadot-service", "polkadot-test-service", "sc-cli", "sc-service", - "sp-core 21.0.0", + "sp-core", "sp-keyring", "substrate-test-utils", "test-parachain-adder", @@ -19156,9 +18482,9 @@ dependencies = [ "dlmalloc", "log", "parity-scale-codec", - "polkadot-parachain-primitives 1.0.0", - "sp-io 23.0.0", - "sp-std 8.0.0", + "polkadot-parachain-primitives", + "sp-io", + "sp-std", "substrate-wasm-builder", "tiny-keccak", ] @@ -19176,13 +18502,13 @@ dependencies = [ "polkadot-node-core-pvf", "polkadot-node-primitives", "polkadot-node-subsystem", - "polkadot-parachain-primitives 1.0.0", - "polkadot-primitives 1.0.0", + "polkadot-parachain-primitives", + "polkadot-primitives", "polkadot-service", "polkadot-test-service", "sc-cli", "sc-service", - "sp-core 21.0.0", + "sp-core", "sp-keyring", "substrate-test-utils", "test-parachain-undying", @@ -19194,7 +18520,7 @@ name = "test-parachains" version = "1.0.0" dependencies = [ "parity-scale-codec", - "sp-core 21.0.0", + "sp-core", "test-parachain-adder", "test-parachain-halt", "tiny-keccak", @@ -19204,13 +18530,13 @@ dependencies = [ name = "test-runtime-constants" version = "1.0.0" dependencies = [ - "frame-support 4.0.0-dev", - "polkadot-primitives 1.0.0", + "frame-support", + "polkadot-primitives", "polkadot-runtime-common", "smallvec", - "sp-core 21.0.0", - "sp-runtime 24.0.0", - "sp-weights 20.0.0", + "sp-core", + "sp-runtime", + "sp-weights", ] [[package]] @@ -19646,7 +18972,7 @@ version = "1.0.0" dependencies = [ "coarsetime", "polkadot-node-jaeger", - "polkadot-primitives 1.0.0", + "polkadot-primitives", "tracing", "tracing-gum-proc-macro", ] @@ -19718,24 +19044,11 @@ dependencies = [ "keccak-hasher", "memory-db", "parity-scale-codec", - "trie-db 0.28.0", + "trie-db", "trie-root", "trie-standardmap", ] -[[package]] -name = "trie-db" -version = "0.27.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "767abe6ffed88a1889671a102c2861ae742726f52e0a5a425b92c9fbfa7e9c85" -dependencies = [ - "hash-db", - "hashbrown 0.13.2", - "log", - "rustc-hex", - "smallvec", -] - [[package]] name = "trie-db" version = "0.28.0" @@ -19838,22 +19151,22 @@ dependencies = [ "sc-executor", "serde", "serde_json", - "sp-api 4.0.0-dev", - "sp-consensus-aura 0.10.0-dev", + "sp-api", + "sp-consensus-aura", "sp-consensus-babe", - "sp-core 21.0.0", - "sp-debug-derive 8.0.0", - "sp-externalities 0.19.0", - "sp-inherents 4.0.0-dev", - "sp-io 23.0.0", - "sp-keystore 0.27.0", + "sp-core", + "sp-debug-derive", + "sp-externalities", + "sp-inherents", + "sp-io", + "sp-keystore", "sp-rpc", - "sp-runtime 24.0.0", - "sp-state-machine 0.28.0", - "sp-timestamp 4.0.0-dev", + "sp-runtime", + "sp-state-machine", + "sp-timestamp", "sp-transaction-storage-proof", - "sp-version 22.0.0", - "sp-weights 20.0.0", + "sp-version", + "sp-weights", "substrate-cli-test-utils", "substrate-rpc-client", "tempfile", @@ -20887,7 +20200,7 @@ dependencies = [ "frame-election-provider-support", "frame-executive", "frame-remote-externalities", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "frame-system-benchmarking", "frame-system-rpc-runtime-api", @@ -20941,8 +20254,8 @@ dependencies = [ "pallet-xcm", "pallet-xcm-benchmarks", "parity-scale-codec", - "polkadot-parachain-primitives 1.0.0", - "polkadot-primitives 1.0.0", + "polkadot-parachain-primitives", + "polkadot-primitives", "polkadot-runtime-common", "polkadot-runtime-parachains", "rustc-hex", @@ -20951,27 +20264,27 @@ dependencies = [ "serde_derive", "serde_json", "smallvec", - "sp-api 4.0.0-dev", - "sp-application-crypto 23.0.0", - "sp-authority-discovery 4.0.0-dev", + "sp-api", + "sp-application-crypto", + "sp-authority-discovery", "sp-block-builder", "sp-consensus-babe", "sp-consensus-beefy", - "sp-core 21.0.0", - "sp-inherents 4.0.0-dev", - "sp-io 23.0.0", + "sp-core", + "sp-inherents", + "sp-io", "sp-keyring", "sp-mmr-primitives", "sp-npos-elections", "sp-offchain", - "sp-runtime 24.0.0", + "sp-runtime", "sp-session", - "sp-staking 4.0.0-dev", - "sp-std 8.0.0", - "sp-storage 13.0.0", - "sp-tracing 10.0.0", + "sp-staking", + "sp-std", + "sp-storage", + "sp-tracing", "sp-transaction-pool", - "sp-version 22.0.0", + "sp-version", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -20985,13 +20298,13 @@ dependencies = [ name = "westend-runtime-constants" version = "1.0.0" dependencies = [ - "frame-support 4.0.0-dev", - "polkadot-primitives 1.0.0", + "frame-support", + "polkadot-primitives", "polkadot-runtime-common", "smallvec", - "sp-core 21.0.0", - "sp-runtime 24.0.0", - "sp-weights 20.0.0", + "sp-core", + "sp-runtime", + "sp-weights", ] [[package]] @@ -21341,7 +20654,7 @@ dependencies = [ "cumulus-primitives-core", "cumulus-primitives-parachain-inherent", "cumulus-test-relay-sproof-builder", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "impl-trait-for-tuples", "lazy_static", @@ -21351,15 +20664,15 @@ dependencies = [ "parachains-common", "parity-scale-codec", "paste", - "polkadot-parachain-primitives 1.0.0", - "polkadot-primitives 1.0.0", + "polkadot-parachain-primitives", + "polkadot-primitives", "polkadot-runtime-parachains", - "sp-arithmetic 16.0.0", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", - "sp-tracing 10.0.0", + "sp-arithmetic", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", + "sp-tracing", "staging-xcm", "staging-xcm-executor", ] @@ -21368,7 +20681,7 @@ dependencies = [ name = "xcm-executor-integration-tests" version = "1.0.0" dependencies = [ - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "futures", "pallet-xcm", @@ -21378,9 +20691,9 @@ dependencies = [ "polkadot-test-service", "sp-consensus", "sp-keyring", - "sp-runtime 24.0.0", - "sp-state-machine 0.28.0", - "sp-tracing 10.0.0", + "sp-runtime", + "sp-state-machine", + "sp-tracing", "staging-xcm", "staging-xcm-executor", ] @@ -21399,14 +20712,14 @@ dependencies = [ name = "xcm-simulator" version = "1.0.0" dependencies = [ - "frame-support 4.0.0-dev", + "frame-support", "parity-scale-codec", "paste", - "polkadot-core-primitives 1.0.0", - "polkadot-parachain-primitives 1.0.0", + "polkadot-core-primitives", + "polkadot-parachain-primitives", "polkadot-runtime-parachains", - "sp-io 23.0.0", - "sp-std 8.0.0", + "sp-io", + "sp-std", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -21416,7 +20729,7 @@ dependencies = [ name = "xcm-simulator-example" version = "1.0.0" dependencies = [ - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "log", "pallet-balances", @@ -21424,15 +20737,15 @@ dependencies = [ "pallet-uniques", "pallet-xcm", "parity-scale-codec", - "polkadot-core-primitives 1.0.0", - "polkadot-parachain-primitives 1.0.0", + "polkadot-core-primitives", + "polkadot-parachain-primitives", "polkadot-runtime-parachains", "scale-info", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", - "sp-tracing 10.0.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", + "sp-tracing", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -21444,21 +20757,21 @@ name = "xcm-simulator-fuzzer" version = "1.0.0" dependencies = [ "arbitrary", - "frame-support 4.0.0-dev", + "frame-support", "frame-system", "honggfuzz", "pallet-balances", "pallet-message-queue", "pallet-xcm", "parity-scale-codec", - "polkadot-core-primitives 1.0.0", - "polkadot-parachain-primitives 1.0.0", + "polkadot-core-primitives", + "polkadot-parachain-primitives", "polkadot-runtime-parachains", "scale-info", - "sp-core 21.0.0", - "sp-io 23.0.0", - "sp-runtime 24.0.0", - "sp-std 8.0.0", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", diff --git a/cumulus/polkadot-parachain/Cargo.toml b/cumulus/polkadot-parachain/Cargo.toml index 26aeb2436f6d5..9d5a5ecda1e68 100644 --- a/cumulus/polkadot-parachain/Cargo.toml +++ b/cumulus/polkadot-parachain/Cargo.toml @@ -87,7 +87,7 @@ cumulus-client-consensus-relay-chain = { path = "../client/consensus/relay-chain cumulus-client-consensus-common = { path = "../client/consensus/common" } cumulus-client-consensus-proposer = { path = "../client/consensus/proposer" } cumulus-client-service = { path = "../client/service" } -cumulus-primitives-aura = { path = "../../../../primitives/aura" } +cumulus-primitives-aura = { path = "../primitives/aura" } cumulus-primitives-core = { path = "../primitives/core" } cumulus-primitives-parachain-inherent = { path = "../primitives/parachain-inherent" } cumulus-relay-chain-interface = { path = "../client/relay-chain-interface" } From 5828dff623bb1704eda8d1ca126743738007390a Mon Sep 17 00:00:00 2001 From: BradleyOlson64 Date: Wed, 20 Sep 2023 13:16:53 -0700 Subject: [PATCH 08/15] Introducing new start_node_impl --- cumulus/polkadot-parachain/src/command.rs | 2 +- cumulus/polkadot-parachain/src/service.rs | 196 +++++++++++++++++++++- 2 files changed, 189 insertions(+), 9 deletions(-) diff --git a/cumulus/polkadot-parachain/src/command.rs b/cumulus/polkadot-parachain/src/command.rs index 19de044e2b77f..3057b971935ce 100644 --- a/cumulus/polkadot-parachain/src/command.rs +++ b/cumulus/polkadot-parachain/src/command.rs @@ -954,7 +954,7 @@ pub fn run() -> Result<()> { .map(|r| r.0) .map_err(Into::into), Runtime::Glutton => - crate::service::start_lookahead_aura_node::< + crate::service::start_basic_lookahead_node::< glutton_runtime::RuntimeApi, AuraId, >(config, polkadot_config, collator_options, id, hwbench) diff --git a/cumulus/polkadot-parachain/src/service.rs b/cumulus/polkadot-parachain/src/service.rs index c99f5097838a0..a84842c1d3f6c 100644 --- a/cumulus/polkadot-parachain/src/service.rs +++ b/cumulus/polkadot-parachain/src/service.rs @@ -556,7 +556,6 @@ where CollatorPair, OverseerHandle, Arc>) + Send + Sync>, - ParachainBackend, ) -> Result<(), sc_service::Error>, { let parachain_config = prepare_node_config(parachain_config); @@ -698,6 +697,188 @@ where Ok((task_manager, client)) } +/// Start a node with the given parachain `Configuration` and relay chain `Configuration`. +/// +/// This is the actual implementation that is abstract over the executor and the runtime api. +/// +/// This node is basic in the sense that it doesn't support functionality like transaction +/// payment. Intended to replace start_shell_node in use for glutton, shell, and seedling. +#[sc_tracing::logging::prefix_logs_with("Parachain")] +async fn start_basic_lookahead_node_impl( + parachain_config: Configuration, + polkadot_config: Configuration, + collator_options: CollatorOptions, + sybil_resistance_level: CollatorSybilResistance, + para_id: ParaId, + rpc_ext_builder: RB, + build_import_queue: BIQ, + start_consensus: SC, + hwbench: Option, +) -> sc_service::error::Result<(TaskManager, Arc>)> +where + RuntimeApi: ConstructRuntimeApi> + Send + Sync + 'static, + RuntimeApi::RuntimeApi: sp_transaction_pool::runtime_api::TaggedTransactionQueue + + sp_api::Metadata + + sp_session::SessionKeys + + sp_api::ApiExt + + sp_offchain::OffchainWorkerApi + + sp_block_builder::BlockBuilder + + cumulus_primitives_core::CollectCollationInfo + + frame_rpc_system::AccountNonceApi, + RB: Fn(Arc>) -> Result, sc_service::Error> + + 'static, + BIQ: FnOnce( + Arc>, + ParachainBlockImport, + &Configuration, + Option, + &TaskManager, + ) -> Result, sc_service::Error>, + SC: FnOnce( + Arc>, + ParachainBlockImport, + Option<&Registry>, + Option, + &TaskManager, + Arc, + Arc>>, + Arc>, + KeystorePtr, + Duration, + ParaId, + CollatorPair, + OverseerHandle, + Arc>) + Send + Sync>, + Arc, + ) -> Result<(), sc_service::Error>, +{ + let parachain_config = prepare_node_config(parachain_config); + + let params = new_partial::(¶chain_config, build_import_queue)?; + let (block_import, mut telemetry, telemetry_worker_handle) = params.other; + + let client = params.client.clone(); + let backend = params.backend.clone(); + + let mut task_manager = params.task_manager; + let (relay_chain_interface, collator_key) = build_relay_chain_interface( + polkadot_config, + ¶chain_config, + telemetry_worker_handle, + &mut task_manager, + collator_options.clone(), + hwbench.clone(), + ) + .await + .map_err(|e| sc_service::Error::Application(Box::new(e) as Box<_>))?; + + let validator = parachain_config.role.is_authority(); + let prometheus_registry = parachain_config.prometheus_registry().cloned(); + let transaction_pool = params.transaction_pool.clone(); + let import_queue_service = params.import_queue.service(); + let net_config = FullNetworkConfiguration::new(¶chain_config.network); + + let (network, system_rpc_tx, tx_handler_controller, start_network, sync_service) = + build_network(BuildNetworkParams { + parachain_config: ¶chain_config, + net_config, + client: client.clone(), + transaction_pool: transaction_pool.clone(), + para_id, + spawn_handle: task_manager.spawn_handle(), + relay_chain_interface: relay_chain_interface.clone(), + import_queue: params.import_queue, + sybil_resistance_level, + }) + .await?; + + let rpc_client = client.clone(); + let rpc_builder = Box::new(move |_, _| rpc_ext_builder(rpc_client.clone())); + + sc_service::spawn_tasks(sc_service::SpawnTasksParams { + rpc_builder, + client: client.clone(), + transaction_pool: transaction_pool.clone(), + task_manager: &mut task_manager, + config: parachain_config, + keystore: params.keystore_container.keystore(), + backend: backend.clone(), + network: network.clone(), + sync_service: sync_service.clone(), + system_rpc_tx, + tx_handler_controller, + telemetry: telemetry.as_mut(), + })?; + + if let Some(hwbench) = hwbench { + sc_sysinfo::print_hwbench(&hwbench); + if validator { + warn_if_slow_hardware(&hwbench); + } + + if let Some(ref mut telemetry) = telemetry { + let telemetry_handle = telemetry.handle(); + task_manager.spawn_handle().spawn( + "telemetry_hwbench", + None, + sc_sysinfo::initialize_hwbench_telemetry(telemetry_handle, hwbench), + ); + } + } + + let announce_block = { + let sync_service = sync_service.clone(); + Arc::new(move |hash, data| sync_service.announce_block(hash, data)) + }; + + let relay_chain_slot_duration = Duration::from_secs(6); + + let overseer_handle = relay_chain_interface + .overseer_handle() + .map_err(|e| sc_service::Error::Application(Box::new(e)))?; + + start_relay_chain_tasks(StartRelayChainTasksParams { + client: client.clone(), + announce_block: announce_block.clone(), + para_id, + relay_chain_interface: relay_chain_interface.clone(), + task_manager: &mut task_manager, + da_recovery_profile: if validator { + DARecoveryProfile::Collator + } else { + DARecoveryProfile::FullNode + }, + import_queue: import_queue_service, + relay_chain_slot_duration, + recovery_handle: Box::new(overseer_handle.clone()), + sync_service: sync_service.clone(), + })?; + + if validator { + start_consensus( + client.clone(), + block_import, + prometheus_registry.as_ref(), + telemetry.as_ref().map(|t| t.handle()), + &task_manager, + relay_chain_interface.clone(), + transaction_pool, + sync_service.clone(), + params.keystore_container.keystore(), + relay_chain_slot_duration, + para_id, + collator_key.expect("Command line arguments do not allow this. qed"), + overseer_handle, + announce_block, + backend.clone(), + )?; + } + + start_network.start_network(); + + Ok((task_manager, client)) +} + /// Build the import queue for the rococo parachain runtime. pub fn rococo_parachain_build_import_queue( client: Arc>, @@ -768,8 +949,7 @@ pub async fn start_rococo_parachain_node( para_id, collator_key, overseer_handle, - announce_block, - backend| { + announce_block| { let slot_duration = cumulus_client_consensus_aura::slot_duration(&*client)?; let proposer_factory = sc_basic_authorship::ProposerFactory::with_proof_recording( @@ -1161,8 +1341,7 @@ where para_id, collator_key, overseer_handle, - announce_block, - backend| { + announce_block| { let slot_duration = cumulus_client_consensus_aura::slot_duration(&*client)?; let proposer_factory = sc_basic_authorship::ProposerFactory::with_proof_recording( @@ -1211,7 +1390,9 @@ where } /// Start an aura powered parachain node which uses the lookahead collator to support async backing. -pub async fn start_lookahead_aura_node( +/// This node is basic in the sense that its runtime api doesn't include common contents such as +/// transaction payment. Used for aura glutton. +pub async fn start_basic_lookahead_node( parachain_config: Configuration, polkadot_config: Configuration, collator_options: CollatorOptions, @@ -1228,13 +1409,12 @@ where + sp_block_builder::BlockBuilder + cumulus_primitives_core::CollectCollationInfo + sp_consensus_aura::AuraApi::Pair as Pair>::Public> - + pallet_transaction_payment_rpc::TransactionPaymentRuntimeApi + frame_rpc_system::AccountNonceApi + cumulus_primitives_aura::AuraUnincludedSegmentApi, <::Pair as Pair>::Signature: TryFrom> + std::hash::Hash + sp_runtime::traits::Member + Codec, { - start_node_impl::( + start_basic_lookahead_node_impl::( parachain_config, polkadot_config, collator_options, From 2171970e12f74f7851a05e8e507d8cd394102067 Mon Sep 17 00:00:00 2001 From: BradleyOlson64 Date: Wed, 20 Sep 2023 13:23:48 -0700 Subject: [PATCH 09/15] fmt --- cumulus/polkadot-parachain/src/service.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cumulus/polkadot-parachain/src/service.rs b/cumulus/polkadot-parachain/src/service.rs index a84842c1d3f6c..2f86f54f12a1c 100644 --- a/cumulus/polkadot-parachain/src/service.rs +++ b/cumulus/polkadot-parachain/src/service.rs @@ -700,8 +700,8 @@ where /// Start a node with the given parachain `Configuration` and relay chain `Configuration`. /// /// This is the actual implementation that is abstract over the executor and the runtime api. -/// -/// This node is basic in the sense that it doesn't support functionality like transaction +/// +/// This node is basic in the sense that it doesn't support functionality like transaction /// payment. Intended to replace start_shell_node in use for glutton, shell, and seedling. #[sc_tracing::logging::prefix_logs_with("Parachain")] async fn start_basic_lookahead_node_impl( @@ -726,7 +726,7 @@ where + cumulus_primitives_core::CollectCollationInfo + frame_rpc_system::AccountNonceApi, RB: Fn(Arc>) -> Result, sc_service::Error> - + 'static, + + 'static, BIQ: FnOnce( Arc>, ParachainBlockImport, @@ -1390,7 +1390,7 @@ where } /// Start an aura powered parachain node which uses the lookahead collator to support async backing. -/// This node is basic in the sense that its runtime api doesn't include common contents such as +/// This node is basic in the sense that its runtime api doesn't include common contents such as /// transaction payment. Used for aura glutton. pub async fn start_basic_lookahead_node( parachain_config: Configuration, From eeb3e6df38dec4e4efafe47ae5e76b8cb064c227 Mon Sep 17 00:00:00 2001 From: BradleyOlson64 Date: Wed, 20 Sep 2023 13:24:20 -0700 Subject: [PATCH 10/15] fmt --- polkadot/tests/common.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/polkadot/tests/common.rs b/polkadot/tests/common.rs index 10859ead5fe8b..15721c990e01b 100644 --- a/polkadot/tests/common.rs +++ b/polkadot/tests/common.rs @@ -33,9 +33,7 @@ pub async fn wait_n_finalized_blocks(n: usize, url: &str) { let mut interval = tokio::time::interval(Duration::from_secs(6)); loop { - let Ok(rpc) = ws_client(url).await else { - continue; - }; + let Ok(rpc) = ws_client(url).await else { continue }; if let Ok(block) = ChainApi::<(), Hash, Header, Block>::finalized_head(&rpc).await { built_blocks.insert(block); From dea26259099f2d98c21ff8702e6233d9e87b7c05 Mon Sep 17 00:00:00 2001 From: georgepisaltu Date: Thu, 28 Sep 2023 19:53:14 +0300 Subject: [PATCH 11/15] Restore asset hub node to transition from shell Signed-off-by: georgepisaltu --- cumulus/polkadot-parachain/src/command.rs | 2 +- cumulus/polkadot-parachain/src/service.rs | 203 +++++++++++++++++++++- 2 files changed, 200 insertions(+), 5 deletions(-) diff --git a/cumulus/polkadot-parachain/src/command.rs b/cumulus/polkadot-parachain/src/command.rs index 3057b971935ce..b3cb9355e5fb5 100644 --- a/cumulus/polkadot-parachain/src/command.rs +++ b/cumulus/polkadot-parachain/src/command.rs @@ -836,7 +836,7 @@ pub fn run() -> Result<()> { info!("Is collating: {}", if config.role.is_authority() { "yes" } else { "no" }); match config.chain_spec.runtime() { - Runtime::AssetHubPolkadot => crate::service::start_generic_aura_node::< + Runtime::AssetHubPolkadot => crate::service::start_asset_hub_node::< asset_hub_polkadot_runtime::RuntimeApi, AssetHubPolkadotAuraId, >(config, polkadot_config, collator_options, id, hwbench) diff --git a/cumulus/polkadot-parachain/src/service.rs b/cumulus/polkadot-parachain/src/service.rs index 2f86f54f12a1c..33ead9847ea91 100644 --- a/cumulus/polkadot-parachain/src/service.rs +++ b/cumulus/polkadot-parachain/src/service.rs @@ -17,9 +17,14 @@ use codec::Codec; use cumulus_client_cli::CollatorOptions; use cumulus_client_collator::service::CollatorService; -use cumulus_client_consensus_aura::collators::{ - basic::{self as basic_aura, Params as BasicAuraParams}, - lookahead::{self as aura, Params as AuraParams}, +#[allow(deprecated)] +use cumulus_client_consensus_aura::BuildAuraConsensusParams; +use cumulus_client_consensus_aura::{ + collators::{ + basic::{self as basic_aura, Params as BasicAuraParams}, + lookahead::{self as aura, Params as AuraParams}, + }, + AuraConsensus, SlotProportion, }; use cumulus_client_consensus_common::{ ParachainBlockImport as TParachainBlockImport, ParachainCandidate, ParachainConsensus, @@ -57,7 +62,10 @@ use sc_telemetry::{Telemetry, TelemetryHandle, TelemetryWorker, TelemetryWorkerH use sp_api::{ApiExt, ConstructRuntimeApi}; use sp_consensus_aura::AuraApi; use sp_keystore::KeystorePtr; -use sp_runtime::{app_crypto::AppCrypto, traits::Header as HeaderT}; +use sp_runtime::{ + app_crypto::AppCrypto, + traits::{BlakeTwo256, Header as HeaderT}, +}; use std::{marker::PhantomData, sync::Arc, time::Duration}; use substrate_prometheus_endpoint::Registry; @@ -1389,6 +1397,193 @@ where .await } +/// Start an shell powered parachain node which transitions into Aura. Asset Hub and Collectives use +/// this. +pub async fn start_asset_hub_node( + parachain_config: Configuration, + polkadot_config: Configuration, + collator_options: CollatorOptions, + para_id: ParaId, + hwbench: Option, +) -> sc_service::error::Result<(TaskManager, Arc>)> +where + RuntimeApi: ConstructRuntimeApi> + Send + Sync + 'static, + RuntimeApi::RuntimeApi: sp_transaction_pool::runtime_api::TaggedTransactionQueue + + sp_api::Metadata + + sp_session::SessionKeys + + sp_api::ApiExt + + sp_offchain::OffchainWorkerApi + + sp_block_builder::BlockBuilder + + cumulus_primitives_core::CollectCollationInfo + + sp_consensus_aura::AuraApi::Pair as Pair>::Public> + + pallet_transaction_payment_rpc::TransactionPaymentRuntimeApi + + frame_rpc_system::AccountNonceApi, + sc_client_api::StateBackendFor: sp_api::StateBackend, + <::Pair as Pair>::Signature: + TryFrom> + std::hash::Hash + sp_runtime::traits::Member + Codec, +{ + start_node_impl::( + parachain_config, + polkadot_config, + collator_options, + CollatorSybilResistance::Resistant, // Aura + para_id, + |_| Ok(RpcModule::new(())), + aura_build_import_queue::<_, AuraId>, + |client, + block_import, + prometheus_registry, + telemetry, + task_manager, + relay_chain_interface, + transaction_pool, + sync_oracle, + keystore, + _relay_chain_slot_duration, + para_id, + collator_key, + overseer_handle, + announce_block| { + let spawn_handle = task_manager.spawn_handle(); + let client2 = client.clone(); + let block_import2 = block_import.clone(); + let transaction_pool2 = transaction_pool.clone(); + let telemetry2 = telemetry.clone(); + let prometheus_registry2 = prometheus_registry.map(|r| (*r).clone()); + let relay_chain_for_aura = relay_chain_interface.clone(); + + let aura_consensus = BuildOnAccess::Uninitialized(Some(Box::new(move || { + let slot_duration = + cumulus_client_consensus_aura::slot_duration(&*client2).unwrap(); + + let proposer_factory = sc_basic_authorship::ProposerFactory::with_proof_recording( + spawn_handle, + client2.clone(), + transaction_pool2, + prometheus_registry2.as_ref(), + telemetry2.clone(), + ); + + let force_authoring = false; + + #[allow(deprecated)] + AuraConsensus::build::<::Pair, _, _, _, _, _, _>( + BuildAuraConsensusParams { + proposer_factory, + create_inherent_data_providers: + move |_, (relay_parent, validation_data)| { + let relay_chain_for_aura = relay_chain_for_aura.clone(); + async move { + let parachain_inherent = + cumulus_primitives_parachain_inherent::ParachainInherentData::create_at( + relay_parent, + &relay_chain_for_aura, + &validation_data, + para_id, + ).await; + + let timestamp = + sp_timestamp::InherentDataProvider::from_system_time(); + + let slot = + sp_consensus_aura::inherents::InherentDataProvider::from_timestamp_and_slot_duration( + *timestamp, + slot_duration, + ); + + let parachain_inherent = + parachain_inherent.ok_or_else(|| { + Box::::from( + "Failed to create parachain inherent", + ) + })?; + + Ok((slot, timestamp, parachain_inherent)) + } + }, + block_import: block_import2, + para_client: client2, + backoff_authoring_blocks: Option::<()>::None, + sync_oracle, + keystore, + force_authoring, + slot_duration, + // We got around 500ms for proposing + block_proposal_slot_portion: SlotProportion::new(1f32 / 24f32), + // And a maximum of 750ms if slots are skipped + max_block_proposal_slot_portion: Some(SlotProportion::new(1f32 / 16f32)), + telemetry: telemetry2, + }, + ) + }))); + + let proposer_factory = sc_basic_authorship::ProposerFactory::with_proof_recording( + task_manager.spawn_handle(), + client.clone(), + transaction_pool, + prometheus_registry, + telemetry, + ); + + let relay_chain_consensus = + cumulus_client_consensus_relay_chain::build_relay_chain_consensus( + cumulus_client_consensus_relay_chain::BuildRelayChainConsensusParams { + para_id, + proposer_factory, + block_import, + relay_chain_interface: relay_chain_interface.clone(), + create_inherent_data_providers: + move |_, (relay_parent, validation_data)| { + let relay_chain_interface = relay_chain_interface.clone(); + async move { + let parachain_inherent = + cumulus_primitives_parachain_inherent::ParachainInherentData::create_at( + relay_parent, + &relay_chain_interface, + &validation_data, + para_id, + ).await; + let parachain_inherent = + parachain_inherent.ok_or_else(|| { + Box::::from( + "Failed to create parachain inherent", + ) + })?; + Ok(parachain_inherent) + } + }, + }, + ); + + let parachain_consensus = Box::new(WaitForAuraConsensus { + client: client.clone(), + aura_consensus: Arc::new(Mutex::new(aura_consensus)), + relay_chain_consensus: Arc::new(Mutex::new(relay_chain_consensus)), + _phantom: PhantomData, + }); + + let spawner = task_manager.spawn_handle(); + + // Required for free-for-all consensus of old shell runtime + #[allow(deprecated)] + old_consensus::start_collator_sync(old_consensus::StartCollatorParams { + para_id, + block_status: client.clone(), + announce_block, + overseer_handle, + spawner, + key: collator_key, + parachain_consensus, + runtime_api: client, + }); + + Ok(()) + }, + hwbench, + ) + .await +} + /// Start an aura powered parachain node which uses the lookahead collator to support async backing. /// This node is basic in the sense that its runtime api doesn't include common contents such as /// transaction payment. Used for aura glutton. From 49e91a523ffa1fd156b8c9040b92f30a16e4aecc Mon Sep 17 00:00:00 2001 From: georgepisaltu Date: Fri, 29 Sep 2023 22:41:26 +0300 Subject: [PATCH 12/15] Move to new impl Signed-off-by: georgepisaltu --- cumulus/client/collator/src/lib.rs | 8 +- cumulus/polkadot-parachain/src/service.rs | 221 ++++++++++++++++++++++ 2 files changed, 227 insertions(+), 2 deletions(-) diff --git a/cumulus/client/collator/src/lib.rs b/cumulus/client/collator/src/lib.rs index f17ae48831060..1fdc397cb00c3 100644 --- a/cumulus/client/collator/src/lib.rs +++ b/cumulus/client/collator/src/lib.rs @@ -69,14 +69,14 @@ where RA::Api: CollectCollationInfo, { /// Create a new instance. - fn new( + pub fn new( collator_service: CollatorService, parachain_consensus: Box>, ) -> Self { Self { service: collator_service, parachain_consensus } } - async fn produce_candidate( + pub async fn produce_candidate( mut self, relay_parent: PHash, validation_data: PersistedValidationData, @@ -142,6 +142,10 @@ where Some(CollationResult { collation, result_sender: Some(result_sender) }) } + + pub fn service(&self) -> &CollatorService { + &self.service + } } /// Relay-chain-driven collators are those whose block production is driven purely diff --git a/cumulus/polkadot-parachain/src/service.rs b/cumulus/polkadot-parachain/src/service.rs index 33ead9847ea91..e79167d1707c6 100644 --- a/cumulus/polkadot-parachain/src/service.rs +++ b/cumulus/polkadot-parachain/src/service.rs @@ -1397,6 +1397,227 @@ where .await } +use cumulus_client_collator::Collator; +use futures::prelude::*; +use sp_api::ProvideRuntimeApi; + +/// Start an aura powered parachain node. Asset Hub and Collectives use this. +pub async fn new_start_generic_aura_node( + parachain_config: Configuration, + polkadot_config: Configuration, + collator_options: CollatorOptions, + para_id: ParaId, + hwbench: Option, +) -> sc_service::error::Result<(TaskManager, Arc>)> +where + RuntimeApi: ConstructRuntimeApi> + Send + Sync + 'static, + RuntimeApi::RuntimeApi: sp_transaction_pool::runtime_api::TaggedTransactionQueue + + sp_api::Metadata + + sp_session::SessionKeys + + sp_api::ApiExt + + sp_offchain::OffchainWorkerApi + + sp_block_builder::BlockBuilder + + cumulus_primitives_core::CollectCollationInfo + + sp_consensus_aura::AuraApi::Pair as Pair>::Public> + + pallet_transaction_payment_rpc::TransactionPaymentRuntimeApi + + frame_rpc_system::AccountNonceApi, + <::Pair as Pair>::Signature: + TryFrom> + std::hash::Hash + sp_runtime::traits::Member + Codec, +{ + start_node_impl::( + parachain_config, + polkadot_config, + collator_options, + CollatorSybilResistance::Resistant, // Aura + para_id, + |_| Ok(RpcModule::new(())), + aura_build_import_queue::<_, AuraId>, + |client, + block_import, + prometheus_registry, + telemetry, + task_manager, + relay_chain_interface, + transaction_pool, + sync_oracle, + keystore, + relay_chain_slot_duration, + para_id, + collator_key, + overseer_handle, + announce_block| { + // let slot_duration = cumulus_client_consensus_aura::slot_duration(&*client)?; + let proposer_factory = sc_basic_authorship::ProposerFactory::with_proof_recording( + task_manager.spawn_handle(), + client.clone(), + transaction_pool.clone(), + prometheus_registry, + telemetry.clone(), + ); + let relay_chain_interface2 = relay_chain_interface.clone(); + + let free_for_all = cumulus_client_consensus_relay_chain::build_relay_chain_consensus( + cumulus_client_consensus_relay_chain::BuildRelayChainConsensusParams { + para_id, + proposer_factory, + block_import: block_import.clone(), + relay_chain_interface: relay_chain_interface.clone(), + create_inherent_data_providers: move |_, (relay_parent, validation_data)| { + let relay_chain_interface = relay_chain_interface.clone(); + async move { + let parachain_inherent = + cumulus_primitives_parachain_inherent::ParachainInherentData::create_at( + relay_parent, + &relay_chain_interface, + &validation_data, + para_id, + ).await; + let parachain_inherent = parachain_inherent.ok_or_else(|| { + Box::::from( + "Failed to create parachain inherent", + ) + })?; + Ok(parachain_inherent) + } + }, + }, + ); + + let spawner = task_manager.spawn_handle(); + let spawner2 = task_manager.spawn_handle(); + + let proposer_factory = sc_basic_authorship::ProposerFactory::with_proof_recording( + task_manager.spawn_handle(), + client.clone(), + transaction_pool, + prometheus_registry, + telemetry.clone(), + ); + let proposer = Proposer::new(proposer_factory); + + // let collator_service = CollatorService::new( + // client.clone(), + // Arc::new(task_manager.spawn_handle()), + // announce_block.clone(), + // client.clone(), + // ); + + // old_consensus::start_collator_sync(old_consensus::StartCollatorParams { + // para_id, + // block_status: client.clone(), + // announce_block, + // overseer_handle, + // spawner, + // key: collator_key, + // parachain_consensus: free_for_all, + // runtime_api: client.clone(), + // }); UNFURLED + { + let collator_service = CollatorService::new( + client.clone(), + Arc::new(spawner.clone()), + announce_block.clone(), + client.clone(), + ); + + let collator = Collator::new(collator_service, free_for_all); + + let collation_future = Box::pin(async move { + let mut request_stream = cumulus_client_collator::relay_chain_driven::init( + collator_key.clone(), + para_id, + overseer_handle.clone(), + ) + .await; + while let Some(request) = request_stream.next().await { + let collation = { + use codec::Decode; + use cumulus_primitives_core::BlockT; + let validation_data = request.persisted_validation_data().clone(); + let last_head = match , + sp_runtime::OpaqueExtrinsic, + > as BlockT>::Header::decode( + &mut &validation_data.parent_head.0[..] + ) { + Ok(x) => x, + Err(_e) => { + // TODO[GMP] log this + request.complete(None); + continue + }, + }; + let last_head_hash = last_head.hash(); + if !collator.service().check_block_status(last_head_hash, &last_head) { + request.complete(None); + continue + } + if client + .runtime_api() + .has_api::>(last_head_hash) + .unwrap_or(false) + { + break + } + + collator + .clone() + .produce_candidate( + *request.relay_parent(), + request.persisted_validation_data().clone(), + ) + .await + }; + + request.complete(collation); + } + + let slot_duration = + cumulus_client_consensus_aura::slot_duration(&*client).unwrap(); + let collator_service = CollatorService::new( + client.clone(), + Arc::new(spawner.clone()), + announce_block, + client.clone(), + ); + let params = BasicAuraParams { + create_inherent_data_providers: move |_, ()| async move { Ok(()) }, + block_import, + para_client: client, + relay_client: relay_chain_interface2, + sync_oracle, + keystore, + collator_key, + para_id, + overseer_handle, + slot_duration, + relay_chain_slot_duration, + proposer, + collator_service, + // Very limited proposal time. + authoring_duration: Duration::from_millis(500), + }; + + basic_aura::run::::Pair, _, _, _, _, _, _, _>( + params, + ) + .await + }); + + spawner2.spawn("cumulus-relay-driven-collator", None, collation_future); + } + + // let fut = + // basic_aura::run::::Pair, _, _, _, _, _, _, _>(params); + // task_manager.spawn_essential_handle().spawn("aura", None, fut); + + Ok(()) + }, + hwbench, + ) + .await +} + /// Start an shell powered parachain node which transitions into Aura. Asset Hub and Collectives use /// this. pub async fn start_asset_hub_node( From f0a8159d6c5c904affb9fa6ab6a1d30b072e82d2 Mon Sep 17 00:00:00 2001 From: georgepisaltu Date: Sat, 30 Sep 2023 22:24:45 +0300 Subject: [PATCH 13/15] Hook to new fn Signed-off-by: georgepisaltu --- cumulus/client/collator/src/lib.rs | 21 +- cumulus/polkadot-parachain/src/command.rs | 4 +- cumulus/polkadot-parachain/src/service.rs | 386 +++++----------------- 3 files changed, 99 insertions(+), 312 deletions(-) diff --git a/cumulus/client/collator/src/lib.rs b/cumulus/client/collator/src/lib.rs index 1fdc397cb00c3..183f1ceae9146 100644 --- a/cumulus/client/collator/src/lib.rs +++ b/cumulus/client/collator/src/lib.rs @@ -143,8 +143,25 @@ where Some(CollationResult { collation, result_sender: Some(result_sender) }) } - pub fn service(&self) -> &CollatorService { - &self.service + pub fn header_hash(&self, pvd: PersistedValidationData) -> Option { + let header = match Block::Header::decode(&mut &pvd.parent_head.0[..]) { + Ok(x) => x, + Err(e) => { + tracing::error!( + target: LOG_TARGET, + error = ?e, + "Could not decode the head data." + ); + return None + }, + }; + + let header_hash = header.hash(); + if !self.service.check_block_status(header_hash, &header) { + return None + } + + Some(header_hash) } } diff --git a/cumulus/polkadot-parachain/src/command.rs b/cumulus/polkadot-parachain/src/command.rs index b3cb9355e5fb5..a7d0c1133371b 100644 --- a/cumulus/polkadot-parachain/src/command.rs +++ b/cumulus/polkadot-parachain/src/command.rs @@ -843,14 +843,14 @@ pub fn run() -> Result<()> { .await .map(|r| r.0) .map_err(Into::into), - Runtime::AssetHubKusama => crate::service::start_generic_aura_node::< + Runtime::AssetHubKusama => crate::service::start_asset_hub_node::< asset_hub_kusama_runtime::RuntimeApi, AuraId, >(config, polkadot_config, collator_options, id, hwbench) .await .map(|r| r.0) .map_err(Into::into), - Runtime::AssetHubWestend => crate::service::start_generic_aura_node::< + Runtime::AssetHubWestend => crate::service::start_asset_hub_node::< asset_hub_westend_runtime::RuntimeApi, AuraId, >(config, polkadot_config, collator_options, id, hwbench) diff --git a/cumulus/polkadot-parachain/src/service.rs b/cumulus/polkadot-parachain/src/service.rs index e79167d1707c6..92e0cebd614f3 100644 --- a/cumulus/polkadot-parachain/src/service.rs +++ b/cumulus/polkadot-parachain/src/service.rs @@ -17,14 +17,9 @@ use codec::Codec; use cumulus_client_cli::CollatorOptions; use cumulus_client_collator::service::CollatorService; -#[allow(deprecated)] -use cumulus_client_consensus_aura::BuildAuraConsensusParams; -use cumulus_client_consensus_aura::{ - collators::{ - basic::{self as basic_aura, Params as BasicAuraParams}, - lookahead::{self as aura, Params as AuraParams}, - }, - AuraConsensus, SlotProportion, +use cumulus_client_consensus_aura::collators::{ + basic::{self as basic_aura, Params as BasicAuraParams}, + lookahead::{self as aura, Params as AuraParams}, }; use cumulus_client_consensus_common::{ ParachainBlockImport as TParachainBlockImport, ParachainCandidate, ParachainConsensus, @@ -62,10 +57,7 @@ use sc_telemetry::{Telemetry, TelemetryHandle, TelemetryWorker, TelemetryWorkerH use sp_api::{ApiExt, ConstructRuntimeApi}; use sp_consensus_aura::AuraApi; use sp_keystore::KeystorePtr; -use sp_runtime::{ - app_crypto::AppCrypto, - traits::{BlakeTwo256, Header as HeaderT}, -}; +use sp_runtime::{app_crypto::AppCrypto, traits::Header as HeaderT}; use std::{marker::PhantomData, sync::Arc, time::Duration}; use substrate_prometheus_endpoint::Registry; @@ -1401,8 +1393,10 @@ use cumulus_client_collator::Collator; use futures::prelude::*; use sp_api::ProvideRuntimeApi; -/// Start an aura powered parachain node. Asset Hub and Collectives use this. -pub async fn new_start_generic_aura_node( +/// Start a shell node which should later transition into an Aura powered parachain node. Asset Hub +/// uses this because at genesis, Asset Hub was on the `shell` runtime which didn't have Aura and +/// needs to sync and upgrade before it can run `AuraApi` functions. +pub async fn start_asset_hub_node( parachain_config: Configuration, polkadot_config: Configuration, collator_options: CollatorOptions, @@ -1446,7 +1440,6 @@ where collator_key, overseer_handle, announce_block| { - // let slot_duration = cumulus_client_consensus_aura::slot_duration(&*client)?; let proposer_factory = sc_basic_authorship::ProposerFactory::with_proof_recording( task_manager.spawn_handle(), client.clone(), @@ -1456,6 +1449,7 @@ where ); let relay_chain_interface2 = relay_chain_interface.clone(); + // Build the free-for-all consensus necessary for the initial `shell` runtime. let free_for_all = cumulus_client_consensus_relay_chain::build_relay_chain_consensus( cumulus_client_consensus_relay_chain::BuildRelayChainConsensusParams { para_id, @@ -1483,9 +1477,6 @@ where }, ); - let spawner = task_manager.spawn_handle(); - let spawner2 = task_manager.spawn_handle(); - let proposer_factory = sc_basic_authorship::ProposerFactory::with_proof_recording( task_manager.spawn_handle(), client.clone(), @@ -1495,308 +1486,87 @@ where ); let proposer = Proposer::new(proposer_factory); - // let collator_service = CollatorService::new( - // client.clone(), - // Arc::new(task_manager.spawn_handle()), - // announce_block.clone(), - // client.clone(), - // ); - - // old_consensus::start_collator_sync(old_consensus::StartCollatorParams { - // para_id, - // block_status: client.clone(), - // announce_block, - // overseer_handle, - // spawner, - // key: collator_key, - // parachain_consensus: free_for_all, - // runtime_api: client.clone(), - // }); UNFURLED - { - let collator_service = CollatorService::new( - client.clone(), - Arc::new(spawner.clone()), - announce_block.clone(), - client.clone(), - ); + let spawner = task_manager.spawn_handle(); + let collator_service = CollatorService::new( + client.clone(), + Arc::new(spawner), + announce_block.clone(), + client.clone(), + ); + + let collator = Collator::new(collator_service.clone(), free_for_all); - let collator = Collator::new(collator_service, free_for_all); - - let collation_future = Box::pin(async move { - let mut request_stream = cumulus_client_collator::relay_chain_driven::init( - collator_key.clone(), - para_id, - overseer_handle.clone(), - ) - .await; - while let Some(request) = request_stream.next().await { - let collation = { - use codec::Decode; - use cumulus_primitives_core::BlockT; - let validation_data = request.persisted_validation_data().clone(); - let last_head = match , - sp_runtime::OpaqueExtrinsic, - > as BlockT>::Header::decode( - &mut &validation_data.parent_head.0[..] - ) { - Ok(x) => x, - Err(_e) => { - // TODO[GMP] log this - request.complete(None); - continue - }, - }; - let last_head_hash = last_head.hash(); - if !collator.service().check_block_status(last_head_hash, &last_head) { + let collation_future = Box::pin(async move { + // Start collating with the `shell` runtime while waiting for an upgrade to an Aura + // compatible runtime. + let mut request_stream = cumulus_client_collator::relay_chain_driven::init( + collator_key.clone(), + para_id, + overseer_handle.clone(), + ) + .await; + while let Some(request) = request_stream.next().await { + let collation = { + let last_head_hash = match collator + .header_hash(request.persisted_validation_data().clone()) + { + Some(header_hash) => header_hash, + None => { request.complete(None); continue - } - if client - .runtime_api() - .has_api::>(last_head_hash) - .unwrap_or(false) - { - break - } - - collator - .clone() - .produce_candidate( - *request.relay_parent(), - request.persisted_validation_data().clone(), - ) - .await + }, }; + // Check if we have upgraded to an Aura compatible runtime and transition if + // necessary. + if client + .runtime_api() + .has_api::>(last_head_hash) + .unwrap_or(false) + { + // Respond to this request before transitioning to Aura. + request.complete(None); + break + } - request.complete(collation); - } - - let slot_duration = - cumulus_client_consensus_aura::slot_duration(&*client).unwrap(); - let collator_service = CollatorService::new( - client.clone(), - Arc::new(spawner.clone()), - announce_block, - client.clone(), - ); - let params = BasicAuraParams { - create_inherent_data_providers: move |_, ()| async move { Ok(()) }, - block_import, - para_client: client, - relay_client: relay_chain_interface2, - sync_oracle, - keystore, - collator_key, - para_id, - overseer_handle, - slot_duration, - relay_chain_slot_duration, - proposer, - collator_service, - // Very limited proposal time. - authoring_duration: Duration::from_millis(500), + collator + .clone() + .produce_candidate( + *request.relay_parent(), + request.persisted_validation_data().clone(), + ) + .await }; - basic_aura::run::::Pair, _, _, _, _, _, _, _>( - params, - ) - .await - }); - - spawner2.spawn("cumulus-relay-driven-collator", None, collation_future); - } + request.complete(collation); + } - // let fut = - // basic_aura::run::::Pair, _, _, _, _, _, _, _>(params); - // task_manager.spawn_essential_handle().spawn("aura", None, fut); - - Ok(()) - }, - hwbench, - ) - .await -} + // Move to Aura consensus. + let slot_duration = cumulus_client_consensus_aura::slot_duration(&*client).unwrap(); -/// Start an shell powered parachain node which transitions into Aura. Asset Hub and Collectives use -/// this. -pub async fn start_asset_hub_node( - parachain_config: Configuration, - polkadot_config: Configuration, - collator_options: CollatorOptions, - para_id: ParaId, - hwbench: Option, -) -> sc_service::error::Result<(TaskManager, Arc>)> -where - RuntimeApi: ConstructRuntimeApi> + Send + Sync + 'static, - RuntimeApi::RuntimeApi: sp_transaction_pool::runtime_api::TaggedTransactionQueue - + sp_api::Metadata - + sp_session::SessionKeys - + sp_api::ApiExt - + sp_offchain::OffchainWorkerApi - + sp_block_builder::BlockBuilder - + cumulus_primitives_core::CollectCollationInfo - + sp_consensus_aura::AuraApi::Pair as Pair>::Public> - + pallet_transaction_payment_rpc::TransactionPaymentRuntimeApi - + frame_rpc_system::AccountNonceApi, - sc_client_api::StateBackendFor: sp_api::StateBackend, - <::Pair as Pair>::Signature: - TryFrom> + std::hash::Hash + sp_runtime::traits::Member + Codec, -{ - start_node_impl::( - parachain_config, - polkadot_config, - collator_options, - CollatorSybilResistance::Resistant, // Aura - para_id, - |_| Ok(RpcModule::new(())), - aura_build_import_queue::<_, AuraId>, - |client, - block_import, - prometheus_registry, - telemetry, - task_manager, - relay_chain_interface, - transaction_pool, - sync_oracle, - keystore, - _relay_chain_slot_duration, - para_id, - collator_key, - overseer_handle, - announce_block| { - let spawn_handle = task_manager.spawn_handle(); - let client2 = client.clone(); - let block_import2 = block_import.clone(); - let transaction_pool2 = transaction_pool.clone(); - let telemetry2 = telemetry.clone(); - let prometheus_registry2 = prometheus_registry.map(|r| (*r).clone()); - let relay_chain_for_aura = relay_chain_interface.clone(); - - let aura_consensus = BuildOnAccess::Uninitialized(Some(Box::new(move || { - let slot_duration = - cumulus_client_consensus_aura::slot_duration(&*client2).unwrap(); - - let proposer_factory = sc_basic_authorship::ProposerFactory::with_proof_recording( - spawn_handle, - client2.clone(), - transaction_pool2, - prometheus_registry2.as_ref(), - telemetry2.clone(), - ); - - let force_authoring = false; - - #[allow(deprecated)] - AuraConsensus::build::<::Pair, _, _, _, _, _, _>( - BuildAuraConsensusParams { - proposer_factory, - create_inherent_data_providers: - move |_, (relay_parent, validation_data)| { - let relay_chain_for_aura = relay_chain_for_aura.clone(); - async move { - let parachain_inherent = - cumulus_primitives_parachain_inherent::ParachainInherentData::create_at( - relay_parent, - &relay_chain_for_aura, - &validation_data, - para_id, - ).await; - - let timestamp = - sp_timestamp::InherentDataProvider::from_system_time(); - - let slot = - sp_consensus_aura::inherents::InherentDataProvider::from_timestamp_and_slot_duration( - *timestamp, - slot_duration, - ); - - let parachain_inherent = - parachain_inherent.ok_or_else(|| { - Box::::from( - "Failed to create parachain inherent", - ) - })?; - - Ok((slot, timestamp, parachain_inherent)) - } - }, - block_import: block_import2, - para_client: client2, - backoff_authoring_blocks: Option::<()>::None, - sync_oracle, - keystore, - force_authoring, - slot_duration, - // We got around 500ms for proposing - block_proposal_slot_portion: SlotProportion::new(1f32 / 24f32), - // And a maximum of 750ms if slots are skipped - max_block_proposal_slot_portion: Some(SlotProportion::new(1f32 / 16f32)), - telemetry: telemetry2, - }, - ) - }))); - - let proposer_factory = sc_basic_authorship::ProposerFactory::with_proof_recording( - task_manager.spawn_handle(), - client.clone(), - transaction_pool, - prometheus_registry, - telemetry, - ); - - let relay_chain_consensus = - cumulus_client_consensus_relay_chain::build_relay_chain_consensus( - cumulus_client_consensus_relay_chain::BuildRelayChainConsensusParams { - para_id, - proposer_factory, - block_import, - relay_chain_interface: relay_chain_interface.clone(), - create_inherent_data_providers: - move |_, (relay_parent, validation_data)| { - let relay_chain_interface = relay_chain_interface.clone(); - async move { - let parachain_inherent = - cumulus_primitives_parachain_inherent::ParachainInherentData::create_at( - relay_parent, - &relay_chain_interface, - &validation_data, - para_id, - ).await; - let parachain_inherent = - parachain_inherent.ok_or_else(|| { - Box::::from( - "Failed to create parachain inherent", - ) - })?; - Ok(parachain_inherent) - } - }, - }, - ); - - let parachain_consensus = Box::new(WaitForAuraConsensus { - client: client.clone(), - aura_consensus: Arc::new(Mutex::new(aura_consensus)), - relay_chain_consensus: Arc::new(Mutex::new(relay_chain_consensus)), - _phantom: PhantomData, + let params = BasicAuraParams { + create_inherent_data_providers: move |_, ()| async move { Ok(()) }, + block_import, + para_client: client, + relay_client: relay_chain_interface2, + sync_oracle, + keystore, + collator_key, + para_id, + overseer_handle, + slot_duration, + relay_chain_slot_duration, + proposer, + collator_service, + // Very limited proposal time. + authoring_duration: Duration::from_millis(500), + }; + + basic_aura::run::::Pair, _, _, _, _, _, _, _>(params) + .await }); let spawner = task_manager.spawn_handle(); - - // Required for free-for-all consensus of old shell runtime - #[allow(deprecated)] - old_consensus::start_collator_sync(old_consensus::StartCollatorParams { - para_id, - block_status: client.clone(), - announce_block, - overseer_handle, - spawner, - key: collator_key, - parachain_consensus, - runtime_api: client, - }); + spawner.spawn("cumulus-asset-hub-collator", None, collation_future); Ok(()) }, From c8fcc99b7c867ec8e099429b467c99b5925ccfc9 Mon Sep 17 00:00:00 2001 From: georgepisaltu Date: Fri, 6 Oct 2023 11:05:23 +0200 Subject: [PATCH 14/15] Remove redundant block production in shell Signed-off-by: georgepisaltu --- cumulus/client/collator/src/lib.rs | 25 +---- cumulus/polkadot-parachain/src/service.rs | 114 ++++++++-------------- 2 files changed, 41 insertions(+), 98 deletions(-) diff --git a/cumulus/client/collator/src/lib.rs b/cumulus/client/collator/src/lib.rs index 183f1ceae9146..f17ae48831060 100644 --- a/cumulus/client/collator/src/lib.rs +++ b/cumulus/client/collator/src/lib.rs @@ -69,14 +69,14 @@ where RA::Api: CollectCollationInfo, { /// Create a new instance. - pub fn new( + fn new( collator_service: CollatorService, parachain_consensus: Box>, ) -> Self { Self { service: collator_service, parachain_consensus } } - pub async fn produce_candidate( + async fn produce_candidate( mut self, relay_parent: PHash, validation_data: PersistedValidationData, @@ -142,27 +142,6 @@ where Some(CollationResult { collation, result_sender: Some(result_sender) }) } - - pub fn header_hash(&self, pvd: PersistedValidationData) -> Option { - let header = match Block::Header::decode(&mut &pvd.parent_head.0[..]) { - Ok(x) => x, - Err(e) => { - tracing::error!( - target: LOG_TARGET, - error = ?e, - "Could not decode the head data." - ); - return None - }, - }; - - let header_hash = header.hash(); - if !self.service.check_block_status(header_hash, &header) { - return None - } - - Some(header_hash) - } } /// Relay-chain-driven collators are those whose block production is driven purely diff --git a/cumulus/polkadot-parachain/src/service.rs b/cumulus/polkadot-parachain/src/service.rs index 084e9d2a4d49c..c8941dc9c7c97 100644 --- a/cumulus/polkadot-parachain/src/service.rs +++ b/cumulus/polkadot-parachain/src/service.rs @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with Cumulus. If not, see . -use codec::Codec; +use codec::{Codec, Decode}; use cumulus_client_cli::CollatorOptions; use cumulus_client_collator::service::CollatorService; use cumulus_client_consensus_aura::collators::{ @@ -43,7 +43,6 @@ use jsonrpsee::RpcModule; use crate::rpc; pub use parachains_common::{AccountId, Balance, Block, BlockNumber, Hash, Header, Nonce}; -use cumulus_client_collator::Collator; use cumulus_client_consensus_relay_chain::Verifier as RelayChainVerifier; use futures::{lock::Mutex, prelude::*}; use sc_consensus::{ @@ -58,7 +57,10 @@ use sc_telemetry::{Telemetry, TelemetryHandle, TelemetryWorker, TelemetryWorkerH use sp_api::{ApiExt, ConstructRuntimeApi, ProvideRuntimeApi}; use sp_consensus_aura::AuraApi; use sp_keystore::KeystorePtr; -use sp_runtime::{app_crypto::AppCrypto, traits::Header as HeaderT}; +use sp_runtime::{ + app_crypto::AppCrypto, + traits::{Block as BlockT, Header as HeaderT}, +}; use std::{marker::PhantomData, sync::Arc, time::Duration}; use substrate_prometheus_endpoint::Registry; @@ -1437,61 +1439,24 @@ where collator_key, overseer_handle, announce_block| { - let proposer_factory = sc_basic_authorship::ProposerFactory::with_proof_recording( - task_manager.spawn_handle(), - client.clone(), - transaction_pool.clone(), - prometheus_registry, - telemetry.clone(), - ); let relay_chain_interface2 = relay_chain_interface.clone(); - // Build the free-for-all consensus necessary for the initial `shell` runtime. - let free_for_all = cumulus_client_consensus_relay_chain::build_relay_chain_consensus( - cumulus_client_consensus_relay_chain::BuildRelayChainConsensusParams { - para_id, - proposer_factory, - block_import: block_import.clone(), - relay_chain_interface: relay_chain_interface.clone(), - create_inherent_data_providers: move |_, (relay_parent, validation_data)| { - let relay_chain_interface = relay_chain_interface.clone(); - async move { - let parachain_inherent = - cumulus_primitives_parachain_inherent::ParachainInherentData::create_at( - relay_parent, - &relay_chain_interface, - &validation_data, - para_id, - ).await; - let parachain_inherent = parachain_inherent.ok_or_else(|| { - Box::::from( - "Failed to create parachain inherent", - ) - })?; - Ok(parachain_inherent) - } - }, - }, + let collator_service = CollatorService::new( + client.clone(), + Arc::new(task_manager.spawn_handle()), + announce_block, + client.clone(), ); + let spawner = task_manager.spawn_handle(); + let proposer_factory = sc_basic_authorship::ProposerFactory::with_proof_recording( - task_manager.spawn_handle(), + spawner, client.clone(), transaction_pool, prometheus_registry, telemetry.clone(), ); - let proposer = Proposer::new(proposer_factory); - - let spawner = task_manager.spawn_handle(); - let collator_service = CollatorService::new( - client.clone(), - Arc::new(spawner), - announce_block.clone(), - client.clone(), - ); - - let collator = Collator::new(collator_service.clone(), free_for_all); let collation_future = Box::pin(async move { // Start collating with the `shell` runtime while waiting for an upgrade to an Aura @@ -1503,43 +1468,42 @@ where ) .await; while let Some(request) = request_stream.next().await { - let collation = { - let last_head_hash = match collator - .header_hash(request.persisted_validation_data().clone()) - { - Some(header_hash) => header_hash, - None => { + let pvd = request.persisted_validation_data().clone(); + let last_header = + match ::Header::decode(&mut &pvd.parent_head.0[..]) { + Ok(x) => x, + Err(e) => { + log::error!("Could not decode the head data: {e}"); request.complete(None); continue }, }; - // Check if we have upgraded to an Aura compatible runtime and transition if - // necessary. - if client - .runtime_api() - .has_api::>(last_head_hash) - .unwrap_or(false) - { - // Respond to this request before transitioning to Aura. - request.complete(None); - break - } - - collator - .clone() - .produce_candidate( - *request.relay_parent(), - request.persisted_validation_data().clone(), - ) - .await - }; - request.complete(collation); + let last_head_hash = last_header.hash(); + + if !collator_service.check_block_status(last_head_hash, &last_header) { + request.complete(None); + continue + } + + // Check if we have upgraded to an Aura compatible runtime and transition if + // necessary. + if client + .runtime_api() + .has_api::>(last_head_hash) + .unwrap_or(false) + { + // Respond to this request before transitioning to Aura. + request.complete(None); + break + } } // Move to Aura consensus. let slot_duration = cumulus_client_consensus_aura::slot_duration(&*client).unwrap(); + let proposer = Proposer::new(proposer_factory); + let params = BasicAuraParams { create_inherent_data_providers: move |_, ()| async move { Ok(()) }, block_import, From f52675e3e1f81f84d90c940760ef6c2d162ebd16 Mon Sep 17 00:00:00 2001 From: georgepisaltu Date: Mon, 9 Oct 2023 17:45:07 +0200 Subject: [PATCH 15/15] Refine impl Signed-off-by: georgepisaltu --- cumulus/polkadot-parachain/src/service.rs | 24 +++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/cumulus/polkadot-parachain/src/service.rs b/cumulus/polkadot-parachain/src/service.rs index c8941dc9c7c97..fa61f534784e0 100644 --- a/cumulus/polkadot-parachain/src/service.rs +++ b/cumulus/polkadot-parachain/src/service.rs @@ -56,6 +56,7 @@ use sc_service::{Configuration, PartialComponents, TFullBackend, TFullClient, Ta use sc_telemetry::{Telemetry, TelemetryHandle, TelemetryWorker, TelemetryWorkerHandle}; use sp_api::{ApiExt, ConstructRuntimeApi, ProvideRuntimeApi}; use sp_consensus_aura::AuraApi; +use sp_core::traits::SpawnEssentialNamed; use sp_keystore::KeystorePtr; use sp_runtime::{ app_crypto::AppCrypto, @@ -1469,9 +1470,9 @@ where .await; while let Some(request) = request_stream.next().await { let pvd = request.persisted_validation_data().clone(); - let last_header = + let last_head_hash = match ::Header::decode(&mut &pvd.parent_head.0[..]) { - Ok(x) => x, + Ok(header) => header.hash(), Err(e) => { log::error!("Could not decode the head data: {e}"); request.complete(None); @@ -1479,13 +1480,6 @@ where }, }; - let last_head_hash = last_header.hash(); - - if !collator_service.check_block_status(last_head_hash, &last_header) { - request.complete(None); - continue - } - // Check if we have upgraded to an Aura compatible runtime and transition if // necessary. if client @@ -1500,7 +1494,13 @@ where } // Move to Aura consensus. - let slot_duration = cumulus_client_consensus_aura::slot_duration(&*client).unwrap(); + let slot_duration = match cumulus_client_consensus_aura::slot_duration(&*client) { + Ok(d) => d, + Err(e) => { + log::error!("Could not get Aura slot duration: {e}"); + return + }, + }; let proposer = Proposer::new(proposer_factory); @@ -1526,8 +1526,8 @@ where .await }); - let spawner = task_manager.spawn_handle(); - spawner.spawn("cumulus-asset-hub-collator", None, collation_future); + let spawner = task_manager.spawn_essential_handle(); + spawner.spawn_essential("cumulus-asset-hub-collator", None, collation_future); Ok(()) },