From d6756995898308c66a3ed5753cd06a2a4de5ffbc Mon Sep 17 00:00:00 2001 From: Liam Aharon Date: Mon, 9 Jun 2025 16:21:37 +1200 Subject: [PATCH 1/8] fc-babe --- Cargo.lock | 14 ++++++++++ Cargo.toml | 4 +++ client/babe/Cargo.toml | 21 +++++++++++++++ client/babe/src/lib.rs | 61 ++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 100 insertions(+) create mode 100644 client/babe/Cargo.toml create mode 100644 client/babe/src/lib.rs diff --git a/Cargo.lock b/Cargo.lock index 3aba96c3f8..c4e87831a8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2251,6 +2251,20 @@ dependencies = [ "sp-timestamp", ] +[[package]] +name = "fc-babe" +version = "1.0.0-dev" +dependencies = [ + "fc-rpc", + "sc-client-api", + "sc-consensus-babe", + "sp-api", + "sp-consensus-babe", + "sp-inherents", + "sp-runtime", + "sp-timestamp", +] + [[package]] name = "fc-cli" version = "1.0.0-dev" diff --git a/Cargo.toml b/Cargo.toml index 1ead2c17fb..f51a3077de 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,6 +20,7 @@ members = [ "frame/hotfix-sufficients", "client/api", "client/aura", + "client/babe", "client/consensus", "client/rpc-core", "client/rpc", @@ -92,6 +93,7 @@ sc-client-api = { git = "https://github.com/paritytech/polkadot-sdk", tag = "pol sc-client-db = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2409-7", default-features = false } sc-consensus = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2409-7" } sc-consensus-aura = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2409-7" } +sc-consensus-babe = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2409-7" } sc-consensus-grandpa = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2409-7" } sc-consensus-manual-seal = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2409-7" } sc-executor = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2409-7" } @@ -113,6 +115,7 @@ sp-block-builder = { git = "https://github.com/paritytech/polkadot-sdk", tag = " sp-blockchain = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2409-7" } sp-consensus = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2409-7" } sp-consensus-aura = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2409-7", default-features = false } +sp-consensus-babe = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2409-7", default-features = false } sp-consensus-grandpa = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2409-7", default-features = false } sp-core = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2409-7", default-features = false } sp-crypto-hashing = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2409-7", default-features = false } @@ -171,6 +174,7 @@ ark-std = { version = "0.4.0", default-features = false } # Frontier Client fc-api = { path = "client/api" } fc-aura = { path = "client/aura" } +fc-babe = { path = "client/babe" } fc-cli = { path = "client/cli", default-features = false } fc-consensus = { path = "client/consensus" } fc-db = { path = "client/db", default-features = false } diff --git a/client/babe/Cargo.toml b/client/babe/Cargo.toml new file mode 100644 index 0000000000..6d4600e3af --- /dev/null +++ b/client/babe/Cargo.toml @@ -0,0 +1,21 @@ +[package] +name = "fc-babe" +version = "1.0.0-dev" +authors = { workspace = true } +edition = { workspace = true } +license = "GPL-3.0-or-later WITH Classpath-exception-2.0" +repository = { workspace = true } +description = "Babe consensus data provider for pending runtime calls" + +[dependencies] +# Substrate +sp-api = { workspace = true } +sp-consensus-babe = { workspace = true } +sp-inherents = { workspace = true } +sp-runtime = { workspace = true } +sp-timestamp = { workspace = true } +sc-client-api = { workspace = true } +sc-consensus-babe = { workspace = true } +# Frontier +fc-rpc = { workspace = true } + diff --git a/client/babe/src/lib.rs b/client/babe/src/lib.rs new file mode 100644 index 0000000000..58f726c4be --- /dev/null +++ b/client/babe/src/lib.rs @@ -0,0 +1,61 @@ +use std::{marker::PhantomData, sync::Arc}; + +use fc_rpc::pending::ConsensusDataProvider; +use sc_client_api::{AuxStore, UsageProvider}; +use sp_api::ProvideRuntimeApi; +use sp_consensus_babe::{digests::CompatibleDigestItem, BabeApi, BabeConfiguration, Slot}; +use sp_inherents::InherentData; +use sp_runtime::{traits::Block as BlockT, Digest, DigestItem}; +use sp_timestamp::TimestampInherentData; + +pub struct BabeConsensusDataProvider { + babe_config: BabeConfiguration, + _phantom: PhantomData<(B, C)>, +} + +impl BabeConsensusDataProvider +where + B: BlockT, + C: AuxStore + ProvideRuntimeApi + UsageProvider, + C::Api: BabeApi, +{ + /// Creates a new instance of the [`BabeConsensusDataProvider`], requires that `client` + /// implements [`sp_consensus_babe::BabeApi`] + pub fn new(client: Arc) -> Self { + let babe_config = sc_consensus_babe::configuration(&*client) + .expect("BabeConsensusDataProvider requires runtime with Babe configured"); + Self { + babe_config, + _phantom: PhantomData, + } + } +} + +impl ConsensusDataProvider for BabeConsensusDataProvider { + fn create_digest( + &self, + _parent: &B::Header, + data: &InherentData, + ) -> Result { + let timestamp = data + .timestamp_inherent_data()? + .expect("Timestamp is always present; qed"); + + let slot_duration = self.babe_config.slot_duration(); + let slot = Slot::from_timestamp(timestamp, slot_duration); + + let digest_item = ::babe_pre_digest( + sp_consensus_babe::digests::PreDigest::SecondaryPlain( + sp_consensus_babe::digests::SecondaryPlainPreDigest { + slot, + authority_index: 0, // Use first authority for pending blocks + }, + ), + ); + + Ok(Digest { + logs: vec![digest_item], + }) + } +} + From 5183278e5f3a21128309360940e458277c18f43e Mon Sep 17 00:00:00 2001 From: Liam Aharon Date: Fri, 20 Jun 2025 15:01:03 +1200 Subject: [PATCH 2/8] reset --- Cargo.toml | 151 +++++++++++++++++++++++++++-------------------------- 1 file changed, 76 insertions(+), 75 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index fb5ae4a524..34f401164f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -84,89 +84,90 @@ thiserror = "2.0" tokio = "1.43.0" # Substrate Client -sc-basic-authorship = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } -sc-block-builder = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } -sc-chain-spec = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } -sc-cli = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -sc-client-api = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } -sc-client-db = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -sc-consensus = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } -sc-consensus-aura = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } -sc-consensus-babe = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } -sc-consensus-grandpa = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } -sc-consensus-manual-seal = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } -sc-executor = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } -sc-keystore = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } -sc-network = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } -sc-network-common = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } -sc-network-sync = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } -sc-offchain = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } -sc-rpc = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } -sc-rpc-api = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } -sc-service = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -sc-telemetry = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } -sc-transaction-pool = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } -sc-transaction-pool-api = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } -sc-utils = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } +sc-basic-authorship = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6" } +sc-block-builder = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6" } +sc-chain-spec = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6" } +sc-cli = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } +sc-client-api = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6" } +sc-client-db = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } +sc-consensus = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6" } +sc-consensus-aura = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6" } +sc-consensus-babe = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6" } +sc-consensus-grandpa = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6" } +sc-consensus-manual-seal = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6" } +sc-executor = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6" } +sc-keystore = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6" } +sc-network = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6" } +sc-network-common = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6" } +sc-network-sync = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6" } +sc-offchain = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6" } +sc-rpc = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6" } +sc-rpc-api = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6" } +sc-service = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } +sc-telemetry = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6" } +sc-transaction-pool = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6" } +sc-transaction-pool-api = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6" } +sc-utils = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6" } + # Substrate Primitive -sp-api = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -sp-block-builder = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -sp-blockchain = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -sp-consensus = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -sp-consensus-aura = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -sp-consensus-babe = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -sp-consensus-grandpa = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -sp-core = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -sp-crypto-hashing = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -sp-database = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -sp-externalities = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -sp-genesis-builder = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -sp-inherents = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -sp-io = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -sp-keyring = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -sp-offchain = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -sp-runtime = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -sp-runtime-interface = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -sp-session = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -sp-state-machine = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -sp-std = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -sp-storage = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -sp-timestamp = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -sp-transaction-pool = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -sp-trie = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -sp-version = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -sp-weights = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } +sp-api = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } +sp-block-builder = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } +sp-blockchain = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } +sp-consensus = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } +sp-consensus-aura = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } +sp-consensus-babe = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } +sp-consensus-grandpa = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } +sp-core = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } +sp-crypto-hashing = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } +sp-database = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } +sp-externalities = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } +sp-genesis-builder = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } +sp-inherents = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } +sp-io = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } +sp-keyring = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } +sp-offchain = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } +sp-runtime-interface = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } +sp-session = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } +sp-state-machine = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } +sp-std = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } +sp-storage = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } +sp-timestamp = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } +sp-transaction-pool = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } +sp-trie = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } +sp-version = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } +sp-weights = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } # Substrate FRAME -frame-benchmarking = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -frame-executive = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -frame-support = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -frame-system = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -frame-system-benchmarking = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -frame-system-rpc-runtime-api = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -pallet-aura = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -pallet-balances = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -pallet-grandpa = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -pallet-sudo = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -pallet-timestamp = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -pallet-transaction-payment = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -pallet-transaction-payment-rpc = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -pallet-utility = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } +frame-benchmarking = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } +frame-executive = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } +frame-support = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } +frame-system = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } +frame-system-benchmarking = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } +pallet-aura = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } +pallet-balances = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } +pallet-grandpa = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } +pallet-sudo = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } +pallet-timestamp = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } +pallet-transaction-payment = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } +pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } +pallet-utility = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } # Substrate Utility -frame-benchmarking-cli = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } -prometheus-endpoint = { package = "substrate-prometheus-endpoint", git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } -substrate-build-script-utils = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } -substrate-frame-rpc-system = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } -substrate-test-runtime-client = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } -substrate-wasm-builder = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } +frame-benchmarking-cli = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6" } +prometheus-endpoint = { package = "substrate-prometheus-endpoint", git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6" } +substrate-build-script-utils = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6" } +substrate-frame-rpc-system = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6" } +substrate-test-runtime-client = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6" } +substrate-wasm-builder = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6" } # Cumulus primitives -cumulus-primitives-proof-size-hostfunction = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -cumulus-primitives-storage-weight-reclaim = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } +cumulus-primitives-proof-size-hostfunction = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } +cumulus-primitives-storage-weight-reclaim = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } # XCM -xcm = { package = "staging-xcm", git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } +xcm = { package = "staging-xcm", git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } # Arkworks ark-bls12-377 = { version = "0.4.0", default-features = false, features = ["curve"] } From 93af177062303bf9ddc8b65a6b3f5b5feea08885 Mon Sep 17 00:00:00 2001 From: Liam Aharon Date: Fri, 20 Jun 2025 17:22:31 +1200 Subject: [PATCH 3/8] update --- Cargo.toml | 151 ++++++++++++++++++++++++++--------------------------- 1 file changed, 75 insertions(+), 76 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 34f401164f..fb5ae4a524 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -84,90 +84,89 @@ thiserror = "2.0" tokio = "1.43.0" # Substrate Client -sc-basic-authorship = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6" } -sc-block-builder = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6" } -sc-chain-spec = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6" } -sc-cli = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } -sc-client-api = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6" } -sc-client-db = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } -sc-consensus = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6" } -sc-consensus-aura = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6" } -sc-consensus-babe = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6" } -sc-consensus-grandpa = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6" } -sc-consensus-manual-seal = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6" } -sc-executor = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6" } -sc-keystore = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6" } -sc-network = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6" } -sc-network-common = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6" } -sc-network-sync = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6" } -sc-offchain = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6" } -sc-rpc = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6" } -sc-rpc-api = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6" } -sc-service = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } -sc-telemetry = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6" } -sc-transaction-pool = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6" } -sc-transaction-pool-api = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6" } -sc-utils = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6" } - +sc-basic-authorship = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } +sc-block-builder = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } +sc-chain-spec = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } +sc-cli = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } +sc-client-api = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } +sc-client-db = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } +sc-consensus = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } +sc-consensus-aura = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } +sc-consensus-babe = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } +sc-consensus-grandpa = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } +sc-consensus-manual-seal = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } +sc-executor = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } +sc-keystore = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } +sc-network = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } +sc-network-common = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } +sc-network-sync = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } +sc-offchain = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } +sc-rpc = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } +sc-rpc-api = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } +sc-service = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } +sc-telemetry = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } +sc-transaction-pool = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } +sc-transaction-pool-api = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } +sc-utils = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } # Substrate Primitive -sp-api = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } -sp-block-builder = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } -sp-blockchain = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } -sp-consensus = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } -sp-consensus-aura = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } -sp-consensus-babe = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } -sp-consensus-grandpa = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } -sp-core = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } -sp-crypto-hashing = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } -sp-database = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } -sp-externalities = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } -sp-genesis-builder = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } -sp-inherents = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } -sp-io = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } -sp-keyring = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } -sp-offchain = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } -sp-runtime-interface = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } -sp-session = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } -sp-state-machine = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } -sp-std = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } -sp-storage = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } -sp-timestamp = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } -sp-transaction-pool = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } -sp-trie = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } -sp-version = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } -sp-weights = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } +sp-api = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } +sp-block-builder = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } +sp-blockchain = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } +sp-consensus = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } +sp-consensus-aura = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } +sp-consensus-babe = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } +sp-consensus-grandpa = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } +sp-core = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } +sp-crypto-hashing = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } +sp-database = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } +sp-externalities = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } +sp-genesis-builder = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } +sp-inherents = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } +sp-io = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } +sp-keyring = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } +sp-offchain = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } +sp-runtime = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } +sp-runtime-interface = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } +sp-session = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } +sp-state-machine = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } +sp-std = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } +sp-storage = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } +sp-timestamp = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } +sp-transaction-pool = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } +sp-trie = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } +sp-version = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } +sp-weights = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } # Substrate FRAME -frame-benchmarking = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } -frame-executive = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } -frame-support = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } -frame-system = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } -frame-system-benchmarking = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } -pallet-aura = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } -pallet-balances = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } -pallet-grandpa = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } -pallet-sudo = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } -pallet-timestamp = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } -pallet-transaction-payment = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } -pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } -pallet-utility = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } +frame-benchmarking = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } +frame-executive = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } +frame-support = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } +frame-system = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } +frame-system-benchmarking = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } +frame-system-rpc-runtime-api = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } +pallet-aura = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } +pallet-balances = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } +pallet-grandpa = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } +pallet-sudo = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } +pallet-timestamp = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } +pallet-transaction-payment = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } +pallet-transaction-payment-rpc = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } +pallet-utility = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } # Substrate Utility -frame-benchmarking-cli = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6" } -prometheus-endpoint = { package = "substrate-prometheus-endpoint", git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6" } -substrate-build-script-utils = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6" } -substrate-frame-rpc-system = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6" } -substrate-test-runtime-client = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6" } -substrate-wasm-builder = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6" } +frame-benchmarking-cli = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } +prometheus-endpoint = { package = "substrate-prometheus-endpoint", git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } +substrate-build-script-utils = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } +substrate-frame-rpc-system = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } +substrate-test-runtime-client = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } +substrate-wasm-builder = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } # Cumulus primitives -cumulus-primitives-proof-size-hostfunction = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } -cumulus-primitives-storage-weight-reclaim = { git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } +cumulus-primitives-proof-size-hostfunction = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } +cumulus-primitives-storage-weight-reclaim = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } # XCM -xcm = { package = "staging-xcm", git = "https://github.com/paritytech/polkadot-sdk", tag="polkadot-stable2412-6", default-features = false } +xcm = { package = "staging-xcm", git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } # Arkworks ark-bls12-377 = { version = "0.4.0", default-features = false, features = ["curve"] } From a3b8eaac3a010751295675237b8960baf7c10696 Mon Sep 17 00:00:00 2001 From: Liam Aharon Date: Fri, 4 Jul 2025 14:01:20 +1200 Subject: [PATCH 4/8] propagate error --- Cargo.lock | 324 +++++++++++++++++++++-------------------- client/babe/Cargo.toml | 1 + client/babe/src/lib.rs | 11 +- 3 files changed, 169 insertions(+), 167 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 68f7bbf3df..4b9a8b95af 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -719,7 +719,7 @@ dependencies = [ [[package]] name = "binary-merkle-tree" version = "16.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "hash-db", "log", @@ -1703,7 +1703,7 @@ dependencies = [ [[package]] name = "cumulus-client-parachain-inherent" version = "0.15.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -1713,7 +1713,7 @@ dependencies = [ "parity-scale-codec", "sc-client-api", "sp-api", - "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6)", "sp-inherents", "sp-runtime", "sp-state-machine", @@ -1725,7 +1725,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-core" version = "0.17.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "parity-scale-codec", "polkadot-core-primitives", @@ -1741,7 +1741,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-parachain-inherent" version = "0.17.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -1755,7 +1755,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-proof-size-hostfunction" version = "0.11.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "sp-externalities", "sp-runtime-interface", @@ -1765,7 +1765,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-storage-weight-reclaim" version = "9.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "cumulus-primitives-core", "cumulus-primitives-proof-size-hostfunction", @@ -1782,7 +1782,7 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-interface" version = "0.21.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -1801,7 +1801,7 @@ dependencies = [ [[package]] name = "cumulus-test-relay-sproof-builder" version = "0.17.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "cumulus-primitives-core", "parity-scale-codec", @@ -2681,6 +2681,7 @@ dependencies = [ "sc-client-api", "sc-consensus-babe", "sp-api", + "sp-blockchain", "sp-consensus-babe", "sp-inherents", "sp-runtime", @@ -2863,7 +2864,7 @@ dependencies = [ "rustc-hex", "serde", "serde_json", - "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6)", ] [[package]] @@ -3063,7 +3064,7 @@ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" [[package]] name = "fork-tree" version = "13.0.1" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "parity-scale-codec", ] @@ -3193,7 +3194,7 @@ checksum = "28dd6caf6059519a65843af8fe2a3ae298b14b80179855aeb4adc2c1934ee619" [[package]] name = "frame-benchmarking" version = "39.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "frame-support", "frame-support-procedural", @@ -3217,7 +3218,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "46.2.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "Inflector", "array-bytes", @@ -3255,7 +3256,7 @@ dependencies = [ "sp-block-builder", "sp-blockchain", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6)", "sp-database", "sp-externalities", "sp-genesis-builder", @@ -3279,7 +3280,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "39.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "aquamarine", "frame-support", @@ -3332,7 +3333,7 @@ dependencies = [ [[package]] name = "frame-metadata-hash-extension" version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "array-bytes", "const-hex", @@ -3348,7 +3349,7 @@ dependencies = [ [[package]] name = "frame-support" version = "39.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "aquamarine", "array-bytes", @@ -3391,7 +3392,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "31.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "Inflector", "cfg-expr", @@ -3404,14 +3405,14 @@ dependencies = [ "proc-macro-warning 1.84.1", "proc-macro2", "quote", - "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6)", "syn 2.0.101", ] [[package]] name = "frame-support-procedural-tools" version = "13.0.1" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate 3.3.0", @@ -3423,7 +3424,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "12.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "proc-macro2", "quote", @@ -3433,7 +3434,7 @@ dependencies = [ [[package]] name = "frame-system" version = "39.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "cfg-if", "docify", @@ -3453,7 +3454,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "39.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "frame-benchmarking", "frame-support", @@ -3467,7 +3468,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "35.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "docify", "parity-scale-codec", @@ -3477,7 +3478,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.45.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "frame-support", "parity-scale-codec", @@ -6818,7 +6819,7 @@ checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" [[package]] name = "pallet-aura" version = "38.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "frame-support", "frame-system", @@ -6834,7 +6835,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "39.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "frame-support", "frame-system", @@ -6847,7 +6848,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "39.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "frame-benchmarking", "frame-support", @@ -6870,7 +6871,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "40.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "docify", "frame-benchmarking", @@ -7111,7 +7112,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "39.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "frame-benchmarking", "frame-support", @@ -7148,7 +7149,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "39.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "frame-support", "frame-system", @@ -7169,7 +7170,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "39.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "docify", "frame-benchmarking", @@ -7184,7 +7185,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "38.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "docify", "frame-benchmarking", @@ -7203,7 +7204,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "39.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "frame-benchmarking", "frame-support", @@ -7219,7 +7220,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "42.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "jsonrpsee 0.24.9", "pallet-transaction-payment-rpc-runtime-api", @@ -7235,7 +7236,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "39.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -7247,7 +7248,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "39.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "frame-benchmarking", "frame-support", @@ -7563,7 +7564,7 @@ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" [[package]] name = "polkadot-core-primitives" version = "16.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "parity-scale-codec", "scale-info", @@ -7574,7 +7575,7 @@ dependencies = [ [[package]] name = "polkadot-node-metrics" version = "21.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "bs58", "futures", @@ -7593,7 +7594,7 @@ dependencies = [ [[package]] name = "polkadot-node-network-protocol" version = "21.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "async-channel 1.9.0", "async-trait", @@ -7618,7 +7619,7 @@ dependencies = [ [[package]] name = "polkadot-node-primitives" version = "17.0.1" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "bitvec", "bounded-vec", @@ -7644,7 +7645,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-types" version = "21.0.1" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "async-trait", "bitvec", @@ -7673,7 +7674,7 @@ dependencies = [ [[package]] name = "polkadot-overseer" version = "21.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "async-trait", "futures", @@ -7695,7 +7696,7 @@ dependencies = [ [[package]] name = "polkadot-parachain-primitives" version = "15.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "bounded-collections", "derive_more 0.99.20", @@ -7711,7 +7712,7 @@ dependencies = [ [[package]] name = "polkadot-primitives" version = "17.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "bitvec", "hex-literal", @@ -7739,7 +7740,7 @@ dependencies = [ [[package]] name = "polkadot-statement-table" version = "17.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "parity-scale-codec", "polkadot-primitives", @@ -7939,7 +7940,7 @@ dependencies = [ "prettyplease", "proc-macro2", "quote", - "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6)", "syn 2.0.101", "trybuild", ] @@ -9075,7 +9076,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "30.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "log", "sp-core", @@ -9086,7 +9087,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.48.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "async-trait", "futures", @@ -9116,7 +9117,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.48.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "futures", "futures-timer", @@ -9138,7 +9139,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.43.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "parity-scale-codec", "sp-api", @@ -9153,7 +9154,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "41.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "array-bytes", "docify", @@ -9169,7 +9170,7 @@ dependencies = [ "serde_json", "sp-blockchain", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6)", "sp-genesis-builder", "sp-io", "sp-runtime", @@ -9180,7 +9181,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "12.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "proc-macro-crate 3.3.0", "proc-macro2", @@ -9191,7 +9192,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.50.1" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "array-bytes", "chrono", @@ -9233,7 +9234,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "38.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "fnv", "futures", @@ -9260,7 +9261,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.45.1" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "hash-db", "kvdb", @@ -9286,7 +9287,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.47.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "async-trait", "futures", @@ -9310,7 +9311,7 @@ dependencies = [ [[package]] name = "sc-consensus-aura" version = "0.48.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "async-trait", "futures", @@ -9339,7 +9340,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.48.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "async-trait", "fork-tree", @@ -9364,7 +9365,7 @@ dependencies = [ "sp-consensus-babe", "sp-consensus-slots", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6)", "sp-inherents", "sp-keystore", "sp-runtime", @@ -9375,7 +9376,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.47.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "fork-tree", "parity-scale-codec", @@ -9388,7 +9389,7 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa" version = "0.33.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "ahash", "array-bytes", @@ -9422,7 +9423,7 @@ dependencies = [ "sp-consensus", "sp-consensus-grandpa", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6)", "sp-keystore", "sp-runtime", "substrate-prometheus-endpoint", @@ -9432,7 +9433,7 @@ dependencies = [ [[package]] name = "sc-consensus-manual-seal" version = "0.49.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "assert_matches", "async-trait", @@ -9467,7 +9468,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.47.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "async-trait", "futures", @@ -9476,6 +9477,7 @@ dependencies = [ "parity-scale-codec", "sc-client-api", "sc-consensus", + "sc-consensus-epochs", "sc-telemetry", "sp-arithmetic", "sp-blockchain", @@ -9490,7 +9492,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.41.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "parity-scale-codec", "parking_lot 0.12.4", @@ -9513,7 +9515,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.36.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "polkavm", "sc-allocator", @@ -9526,7 +9528,7 @@ dependencies = [ [[package]] name = "sc-executor-polkavm" version = "0.33.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "log", "polkavm", @@ -9537,7 +9539,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.36.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "anyhow", "cfg-if", @@ -9555,7 +9557,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.47.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "console", "futures", @@ -9572,7 +9574,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "34.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "array-bytes", "parking_lot 0.12.4", @@ -9586,7 +9588,7 @@ dependencies = [ [[package]] name = "sc-mixnet" version = "0.18.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "array-bytes", "arrayvec 0.7.6", @@ -9615,7 +9617,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.48.4" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -9666,7 +9668,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.47.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "async-trait", "bitflags 1.3.2", @@ -9684,7 +9686,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.48.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "ahash", "futures", @@ -9703,7 +9705,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.47.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -9724,7 +9726,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.47.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -9760,7 +9762,7 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.47.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "array-bytes", "futures", @@ -9779,7 +9781,7 @@ dependencies = [ [[package]] name = "sc-network-types" version = "0.15.2" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "bs58", "ed25519-dalek", @@ -9796,7 +9798,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "43.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "array-bytes", "bytes", @@ -9833,7 +9835,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.18.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -9842,7 +9844,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "43.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "futures", "jsonrpsee 0.24.9", @@ -9874,7 +9876,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.47.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "jsonrpsee 0.24.9", "parity-scale-codec", @@ -9894,7 +9896,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "20.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "dyn-clone", "forwarded-header-value", @@ -9918,7 +9920,7 @@ dependencies = [ [[package]] name = "sc-rpc-spec-v2" version = "0.48.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "array-bytes", "futures", @@ -9950,7 +9952,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.49.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "async-trait", "directories", @@ -10014,7 +10016,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.37.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "log", "parity-scale-codec", @@ -10025,7 +10027,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "41.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "derive_more 0.99.20", "futures", @@ -10038,7 +10040,7 @@ dependencies = [ "serde", "serde_json", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6)", "sp-io", "sp-std", ] @@ -10046,7 +10048,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "chrono", "futures", @@ -10066,7 +10068,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "38.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "chrono", "console", @@ -10094,7 +10096,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "11.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "proc-macro-crate 3.3.0", "proc-macro2", @@ -10105,7 +10107,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "38.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "async-trait", "futures", @@ -10123,7 +10125,7 @@ dependencies = [ "sp-api", "sp-blockchain", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6)", "sp-runtime", "sp-tracing", "sp-transaction-pool", @@ -10136,7 +10138,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "38.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "async-trait", "futures", @@ -10152,7 +10154,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "18.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "async-channel 1.9.0", "futures", @@ -10924,7 +10926,7 @@ dependencies = [ [[package]] name = "sp-api" version = "35.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "docify", "hash-db", @@ -10946,7 +10948,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "21.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "Inflector", "blake2 0.10.6", @@ -10960,7 +10962,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "39.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "parity-scale-codec", "scale-info", @@ -10972,7 +10974,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "docify", "integer-sqrt", @@ -10986,7 +10988,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "35.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "parity-scale-codec", "scale-info", @@ -10998,7 +11000,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "35.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "sp-api", "sp-inherents", @@ -11008,7 +11010,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "38.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "futures", "parity-scale-codec", @@ -11027,7 +11029,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.41.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "async-trait", "futures", @@ -11042,7 +11044,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.41.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "async-trait", "parity-scale-codec", @@ -11058,7 +11060,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.41.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "async-trait", "parity-scale-codec", @@ -11076,7 +11078,7 @@ dependencies = [ [[package]] name = "sp-consensus-grandpa" version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "finality-grandpa", "log", @@ -11093,7 +11095,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.41.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "parity-scale-codec", "scale-info", @@ -11104,7 +11106,7 @@ dependencies = [ [[package]] name = "sp-core" version = "35.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "array-bytes", "bitflags 1.3.2", @@ -11133,7 +11135,7 @@ dependencies = [ "secp256k1 0.28.2", "secrecy", "serde", - "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6)", "sp-debug-derive", "sp-externalities", "sp-runtime-interface", @@ -11164,7 +11166,7 @@ dependencies = [ [[package]] name = "sp-crypto-hashing" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "blake2b_simd", "byteorder", @@ -11177,17 +11179,17 @@ dependencies = [ [[package]] name = "sp-crypto-hashing-proc-macro" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "quote", - "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6)", "syn 2.0.101", ] [[package]] name = "sp-database" version = "10.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "kvdb", "parking_lot 0.12.4", @@ -11196,7 +11198,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "14.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "proc-macro2", "quote", @@ -11206,7 +11208,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.30.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "environmental", "parity-scale-codec", @@ -11216,7 +11218,7 @@ dependencies = [ [[package]] name = "sp-genesis-builder" version = "0.16.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "parity-scale-codec", "scale-info", @@ -11228,7 +11230,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "35.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -11241,7 +11243,7 @@ dependencies = [ [[package]] name = "sp-io" version = "39.0.1" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "bytes", "docify", @@ -11253,7 +11255,7 @@ dependencies = [ "rustversion", "secp256k1 0.28.2", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6)", "sp-externalities", "sp-keystore", "sp-runtime-interface", @@ -11267,7 +11269,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "40.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "sp-core", "sp-runtime", @@ -11277,7 +11279,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.41.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "parity-scale-codec", "parking_lot 0.12.4", @@ -11288,7 +11290,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "11.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "thiserror 1.0.69", "zstd 0.12.4", @@ -11297,7 +11299,7 @@ dependencies = [ [[package]] name = "sp-metadata-ir" version = "0.8.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "frame-metadata 18.0.0", "parity-scale-codec", @@ -11307,7 +11309,7 @@ dependencies = [ [[package]] name = "sp-mixnet" version = "0.13.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "parity-scale-codec", "scale-info", @@ -11318,7 +11320,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "35.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "sp-api", "sp-core", @@ -11328,7 +11330,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "13.0.1" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "backtrace", "regex", @@ -11337,7 +11339,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "33.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "rustc-hash 1.1.0", "serde", @@ -11347,7 +11349,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "40.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "binary-merkle-tree", "docify", @@ -11376,7 +11378,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "29.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -11395,7 +11397,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "18.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "Inflector", "expander", @@ -11408,7 +11410,7 @@ dependencies = [ [[package]] name = "sp-session" version = "37.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "parity-scale-codec", "scale-info", @@ -11422,7 +11424,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "37.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -11435,7 +11437,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.44.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "hash-db", "log", @@ -11455,7 +11457,7 @@ dependencies = [ [[package]] name = "sp-statement-store" version = "19.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "aes-gcm", "curve25519-dalek", @@ -11468,7 +11470,7 @@ dependencies = [ "sp-api", "sp-application-crypto", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6)", "sp-externalities", "sp-runtime", "sp-runtime-interface", @@ -11479,12 +11481,12 @@ dependencies = [ [[package]] name = "sp-std" version = "14.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" [[package]] name = "sp-storage" version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "impl-serde 0.5.0", "parity-scale-codec", @@ -11496,7 +11498,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "35.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "async-trait", "parity-scale-codec", @@ -11508,7 +11510,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "17.0.1" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "parity-scale-codec", "tracing", @@ -11519,7 +11521,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "35.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "sp-api", "sp-runtime", @@ -11528,7 +11530,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "35.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "async-trait", "parity-scale-codec", @@ -11542,7 +11544,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "38.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "ahash", "hash-db", @@ -11564,7 +11566,7 @@ dependencies = [ [[package]] name = "sp-version" version = "38.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "impl-serde 0.5.0", "parity-scale-codec", @@ -11581,7 +11583,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "15.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "parity-scale-codec", "proc-macro-warning 1.84.1", @@ -11593,7 +11595,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "21.0.1" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "anyhow", "impl-trait-for-tuples", @@ -11605,7 +11607,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "31.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "bounded-collections", "parity-scale-codec", @@ -11779,7 +11781,7 @@ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" [[package]] name = "staging-xcm" version = "15.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "array-bytes", "bounded-collections", @@ -11887,7 +11889,7 @@ dependencies = [ [[package]] name = "substrate-bip39" version = "0.6.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "hmac 0.12.1", "pbkdf2", @@ -11912,12 +11914,12 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "11.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" [[package]] name = "substrate-frame-rpc-system" version = "42.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "docify", "frame-system-rpc-runtime-api", @@ -11937,7 +11939,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.17.1" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "http-body-util", "hyper 1.6.0", @@ -11951,7 +11953,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "array-bytes", "async-trait", @@ -11978,7 +11980,7 @@ dependencies = [ [[package]] name = "substrate-test-runtime" version = "2.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "array-bytes", "frame-executive", @@ -12001,7 +12003,7 @@ dependencies = [ "sp-consensus-babe", "sp-consensus-grandpa", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6)", "sp-externalities", "sp-genesis-builder", "sp-inherents", @@ -12022,7 +12024,7 @@ dependencies = [ [[package]] name = "substrate-test-runtime-client" version = "2.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "futures", "sc-block-builder", @@ -12040,7 +12042,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "25.0.1" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "array-bytes", "build-helper", @@ -12752,7 +12754,7 @@ dependencies = [ [[package]] name = "tracing-gum" version = "17.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "coarsetime", "polkadot-primitives", @@ -12763,7 +12765,7 @@ dependencies = [ [[package]] name = "tracing-gum-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "expander", "proc-macro-crate 3.3.0", @@ -14196,7 +14198,7 @@ dependencies = [ [[package]] name = "xcm-procedural" version = "11.0.1" -source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2412-6#bbc435c7667d3283ba280a8fec44676357392753" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" dependencies = [ "Inflector", "proc-macro2", diff --git a/client/babe/Cargo.toml b/client/babe/Cargo.toml index 6d4600e3af..23dcc86c52 100644 --- a/client/babe/Cargo.toml +++ b/client/babe/Cargo.toml @@ -12,6 +12,7 @@ description = "Babe consensus data provider for pending runtime calls" sp-api = { workspace = true } sp-consensus-babe = { workspace = true } sp-inherents = { workspace = true } +sp-blockchain = { workspace = true } sp-runtime = { workspace = true } sp-timestamp = { workspace = true } sc-client-api = { workspace = true } diff --git a/client/babe/src/lib.rs b/client/babe/src/lib.rs index 58f726c4be..817abf1581 100644 --- a/client/babe/src/lib.rs +++ b/client/babe/src/lib.rs @@ -3,6 +3,7 @@ use std::{marker::PhantomData, sync::Arc}; use fc_rpc::pending::ConsensusDataProvider; use sc_client_api::{AuxStore, UsageProvider}; use sp_api::ProvideRuntimeApi; +use sp_blockchain::Error; use sp_consensus_babe::{digests::CompatibleDigestItem, BabeApi, BabeConfiguration, Slot}; use sp_inherents::InherentData; use sp_runtime::{traits::Block as BlockT, Digest, DigestItem}; @@ -21,13 +22,12 @@ where { /// Creates a new instance of the [`BabeConsensusDataProvider`], requires that `client` /// implements [`sp_consensus_babe::BabeApi`] - pub fn new(client: Arc) -> Self { - let babe_config = sc_consensus_babe::configuration(&*client) - .expect("BabeConsensusDataProvider requires runtime with Babe configured"); - Self { + pub fn new(client: Arc) -> Result { + let babe_config = sc_consensus_babe::configuration(&*client)?; + Ok(Self { babe_config, _phantom: PhantomData, - } + }) } } @@ -58,4 +58,3 @@ impl ConsensusDataProvider for BabeConsensusDataPr }) } } - From 9f425b4fd36c7c605bac1231ac4ae0d0aaf4f985 Mon Sep 17 00:00:00 2001 From: Liam Aharon Date: Tue, 15 Jul 2025 13:05:35 +1200 Subject: [PATCH 5/8] update psdk branch --- Cargo.lock | 322 ++++++++++++++++++++++++++--------------------------- Cargo.toml | 150 ++++++++++++------------- 2 files changed, 236 insertions(+), 236 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4b9a8b95af..e647d473b3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -719,7 +719,7 @@ dependencies = [ [[package]] name = "binary-merkle-tree" version = "16.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "hash-db", "log", @@ -1703,7 +1703,7 @@ dependencies = [ [[package]] name = "cumulus-client-parachain-inherent" version = "0.15.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -1713,7 +1713,7 @@ dependencies = [ "parity-scale-codec", "sc-client-api", "sp-api", - "sp-crypto-hashing 0.1.0 (git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches)", "sp-inherents", "sp-runtime", "sp-state-machine", @@ -1725,7 +1725,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-core" version = "0.17.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "parity-scale-codec", "polkadot-core-primitives", @@ -1741,7 +1741,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-parachain-inherent" version = "0.17.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -1755,7 +1755,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-proof-size-hostfunction" version = "0.11.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "sp-externalities", "sp-runtime-interface", @@ -1765,7 +1765,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-storage-weight-reclaim" version = "9.1.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "cumulus-primitives-core", "cumulus-primitives-proof-size-hostfunction", @@ -1782,7 +1782,7 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-interface" version = "0.21.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -1801,7 +1801,7 @@ dependencies = [ [[package]] name = "cumulus-test-relay-sproof-builder" version = "0.17.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "cumulus-primitives-core", "parity-scale-codec", @@ -2864,7 +2864,7 @@ dependencies = [ "rustc-hex", "serde", "serde_json", - "sp-crypto-hashing 0.1.0 (git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches)", ] [[package]] @@ -3064,7 +3064,7 @@ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" [[package]] name = "fork-tree" version = "13.0.1" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "parity-scale-codec", ] @@ -3194,7 +3194,7 @@ checksum = "28dd6caf6059519a65843af8fe2a3ae298b14b80179855aeb4adc2c1934ee619" [[package]] name = "frame-benchmarking" version = "39.1.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "frame-support", "frame-support-procedural", @@ -3218,7 +3218,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "46.2.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "Inflector", "array-bytes", @@ -3256,7 +3256,7 @@ dependencies = [ "sp-block-builder", "sp-blockchain", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches)", "sp-database", "sp-externalities", "sp-genesis-builder", @@ -3280,7 +3280,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "39.1.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "aquamarine", "frame-support", @@ -3333,7 +3333,7 @@ dependencies = [ [[package]] name = "frame-metadata-hash-extension" version = "0.7.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "array-bytes", "const-hex", @@ -3349,7 +3349,7 @@ dependencies = [ [[package]] name = "frame-support" version = "39.1.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "aquamarine", "array-bytes", @@ -3392,7 +3392,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "31.1.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "Inflector", "cfg-expr", @@ -3405,14 +3405,14 @@ dependencies = [ "proc-macro-warning 1.84.1", "proc-macro2", "quote", - "sp-crypto-hashing 0.1.0 (git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches)", "syn 2.0.101", ] [[package]] name = "frame-support-procedural-tools" version = "13.0.1" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate 3.3.0", @@ -3424,7 +3424,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "12.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "proc-macro2", "quote", @@ -3434,7 +3434,7 @@ dependencies = [ [[package]] name = "frame-system" version = "39.1.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "cfg-if", "docify", @@ -3454,7 +3454,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "39.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "frame-benchmarking", "frame-support", @@ -3468,7 +3468,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "35.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "docify", "parity-scale-codec", @@ -3478,7 +3478,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.45.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "frame-support", "parity-scale-codec", @@ -6819,7 +6819,7 @@ checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" [[package]] name = "pallet-aura" version = "38.1.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "frame-support", "frame-system", @@ -6835,7 +6835,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "39.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "frame-support", "frame-system", @@ -6848,7 +6848,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "39.1.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "frame-benchmarking", "frame-support", @@ -6871,7 +6871,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "40.1.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "docify", "frame-benchmarking", @@ -7112,7 +7112,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "39.1.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "frame-benchmarking", "frame-support", @@ -7149,7 +7149,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "39.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "frame-support", "frame-system", @@ -7170,7 +7170,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "39.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "docify", "frame-benchmarking", @@ -7185,7 +7185,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "38.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "docify", "frame-benchmarking", @@ -7204,7 +7204,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "39.1.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "frame-benchmarking", "frame-support", @@ -7220,7 +7220,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "42.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "jsonrpsee 0.24.9", "pallet-transaction-payment-rpc-runtime-api", @@ -7236,7 +7236,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "39.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -7248,7 +7248,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "39.1.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "frame-benchmarking", "frame-support", @@ -7564,7 +7564,7 @@ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" [[package]] name = "polkadot-core-primitives" version = "16.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "parity-scale-codec", "scale-info", @@ -7575,7 +7575,7 @@ dependencies = [ [[package]] name = "polkadot-node-metrics" version = "21.1.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "bs58", "futures", @@ -7594,7 +7594,7 @@ dependencies = [ [[package]] name = "polkadot-node-network-protocol" version = "21.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "async-channel 1.9.0", "async-trait", @@ -7619,7 +7619,7 @@ dependencies = [ [[package]] name = "polkadot-node-primitives" version = "17.0.1" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "bitvec", "bounded-vec", @@ -7645,7 +7645,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-types" version = "21.0.1" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "async-trait", "bitvec", @@ -7674,7 +7674,7 @@ dependencies = [ [[package]] name = "polkadot-overseer" version = "21.1.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "async-trait", "futures", @@ -7696,7 +7696,7 @@ dependencies = [ [[package]] name = "polkadot-parachain-primitives" version = "15.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "bounded-collections", "derive_more 0.99.20", @@ -7712,7 +7712,7 @@ dependencies = [ [[package]] name = "polkadot-primitives" version = "17.1.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "bitvec", "hex-literal", @@ -7740,7 +7740,7 @@ dependencies = [ [[package]] name = "polkadot-statement-table" version = "17.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "parity-scale-codec", "polkadot-primitives", @@ -7940,7 +7940,7 @@ dependencies = [ "prettyplease", "proc-macro2", "quote", - "sp-crypto-hashing 0.1.0 (git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches)", "syn 2.0.101", "trybuild", ] @@ -9076,7 +9076,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "30.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "log", "sp-core", @@ -9087,7 +9087,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.48.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "async-trait", "futures", @@ -9117,7 +9117,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.48.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "futures", "futures-timer", @@ -9139,7 +9139,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.43.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "parity-scale-codec", "sp-api", @@ -9154,7 +9154,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "41.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "array-bytes", "docify", @@ -9170,7 +9170,7 @@ dependencies = [ "serde_json", "sp-blockchain", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches)", "sp-genesis-builder", "sp-io", "sp-runtime", @@ -9181,7 +9181,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "12.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "proc-macro-crate 3.3.0", "proc-macro2", @@ -9192,7 +9192,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.50.1" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "array-bytes", "chrono", @@ -9234,7 +9234,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "38.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "fnv", "futures", @@ -9261,7 +9261,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.45.1" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "hash-db", "kvdb", @@ -9287,7 +9287,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.47.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "async-trait", "futures", @@ -9311,7 +9311,7 @@ dependencies = [ [[package]] name = "sc-consensus-aura" version = "0.48.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "async-trait", "futures", @@ -9340,7 +9340,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.48.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "async-trait", "fork-tree", @@ -9365,7 +9365,7 @@ dependencies = [ "sp-consensus-babe", "sp-consensus-slots", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches)", "sp-inherents", "sp-keystore", "sp-runtime", @@ -9376,7 +9376,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.47.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "fork-tree", "parity-scale-codec", @@ -9389,7 +9389,7 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa" version = "0.33.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "ahash", "array-bytes", @@ -9423,7 +9423,7 @@ dependencies = [ "sp-consensus", "sp-consensus-grandpa", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches)", "sp-keystore", "sp-runtime", "substrate-prometheus-endpoint", @@ -9433,7 +9433,7 @@ dependencies = [ [[package]] name = "sc-consensus-manual-seal" version = "0.49.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "assert_matches", "async-trait", @@ -9468,7 +9468,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.47.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "async-trait", "futures", @@ -9492,7 +9492,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.41.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "parity-scale-codec", "parking_lot 0.12.4", @@ -9515,7 +9515,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.36.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "polkavm", "sc-allocator", @@ -9528,7 +9528,7 @@ dependencies = [ [[package]] name = "sc-executor-polkavm" version = "0.33.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "log", "polkavm", @@ -9539,7 +9539,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.36.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "anyhow", "cfg-if", @@ -9557,7 +9557,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.47.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "console", "futures", @@ -9574,7 +9574,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "34.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "array-bytes", "parking_lot 0.12.4", @@ -9588,7 +9588,7 @@ dependencies = [ [[package]] name = "sc-mixnet" version = "0.18.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "array-bytes", "arrayvec 0.7.6", @@ -9617,7 +9617,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.48.4" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -9668,7 +9668,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.47.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "async-trait", "bitflags 1.3.2", @@ -9686,7 +9686,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.48.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "ahash", "futures", @@ -9705,7 +9705,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.47.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -9726,7 +9726,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.47.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -9762,7 +9762,7 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.47.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "array-bytes", "futures", @@ -9781,7 +9781,7 @@ dependencies = [ [[package]] name = "sc-network-types" version = "0.15.2" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "bs58", "ed25519-dalek", @@ -9798,7 +9798,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "43.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "array-bytes", "bytes", @@ -9835,7 +9835,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.18.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -9844,7 +9844,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "43.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "futures", "jsonrpsee 0.24.9", @@ -9876,7 +9876,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.47.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "jsonrpsee 0.24.9", "parity-scale-codec", @@ -9896,7 +9896,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "20.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "dyn-clone", "forwarded-header-value", @@ -9920,7 +9920,7 @@ dependencies = [ [[package]] name = "sc-rpc-spec-v2" version = "0.48.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "array-bytes", "futures", @@ -9952,7 +9952,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.49.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "async-trait", "directories", @@ -10016,7 +10016,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.37.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "log", "parity-scale-codec", @@ -10027,7 +10027,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "41.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "derive_more 0.99.20", "futures", @@ -10040,7 +10040,7 @@ dependencies = [ "serde", "serde_json", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches)", "sp-io", "sp-std", ] @@ -10048,7 +10048,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "28.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "chrono", "futures", @@ -10068,7 +10068,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "38.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "chrono", "console", @@ -10096,7 +10096,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "11.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "proc-macro-crate 3.3.0", "proc-macro2", @@ -10107,7 +10107,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "38.1.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "async-trait", "futures", @@ -10125,7 +10125,7 @@ dependencies = [ "sp-api", "sp-blockchain", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches)", "sp-runtime", "sp-tracing", "sp-transaction-pool", @@ -10138,7 +10138,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "38.1.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "async-trait", "futures", @@ -10154,7 +10154,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "18.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "async-channel 1.9.0", "futures", @@ -10926,7 +10926,7 @@ dependencies = [ [[package]] name = "sp-api" version = "35.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "docify", "hash-db", @@ -10948,7 +10948,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "21.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "Inflector", "blake2 0.10.6", @@ -10962,7 +10962,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "39.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "parity-scale-codec", "scale-info", @@ -10974,7 +10974,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "26.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "docify", "integer-sqrt", @@ -10988,7 +10988,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "35.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "parity-scale-codec", "scale-info", @@ -11000,7 +11000,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "35.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "sp-api", "sp-inherents", @@ -11010,7 +11010,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "38.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "futures", "parity-scale-codec", @@ -11029,7 +11029,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.41.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "async-trait", "futures", @@ -11044,7 +11044,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.41.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "async-trait", "parity-scale-codec", @@ -11060,7 +11060,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.41.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "async-trait", "parity-scale-codec", @@ -11078,7 +11078,7 @@ dependencies = [ [[package]] name = "sp-consensus-grandpa" version = "22.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "finality-grandpa", "log", @@ -11095,7 +11095,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.41.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "parity-scale-codec", "scale-info", @@ -11106,7 +11106,7 @@ dependencies = [ [[package]] name = "sp-core" version = "35.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "array-bytes", "bitflags 1.3.2", @@ -11135,7 +11135,7 @@ dependencies = [ "secp256k1 0.28.2", "secrecy", "serde", - "sp-crypto-hashing 0.1.0 (git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches)", "sp-debug-derive", "sp-externalities", "sp-runtime-interface", @@ -11166,7 +11166,7 @@ dependencies = [ [[package]] name = "sp-crypto-hashing" version = "0.1.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "blake2b_simd", "byteorder", @@ -11179,17 +11179,17 @@ dependencies = [ [[package]] name = "sp-crypto-hashing-proc-macro" version = "0.1.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "quote", - "sp-crypto-hashing 0.1.0 (git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches)", "syn 2.0.101", ] [[package]] name = "sp-database" version = "10.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "kvdb", "parking_lot 0.12.4", @@ -11198,7 +11198,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "14.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "proc-macro2", "quote", @@ -11208,7 +11208,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.30.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "environmental", "parity-scale-codec", @@ -11218,7 +11218,7 @@ dependencies = [ [[package]] name = "sp-genesis-builder" version = "0.16.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "parity-scale-codec", "scale-info", @@ -11230,7 +11230,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "35.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -11243,7 +11243,7 @@ dependencies = [ [[package]] name = "sp-io" version = "39.0.1" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "bytes", "docify", @@ -11255,7 +11255,7 @@ dependencies = [ "rustversion", "secp256k1 0.28.2", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches)", "sp-externalities", "sp-keystore", "sp-runtime-interface", @@ -11269,7 +11269,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "40.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "sp-core", "sp-runtime", @@ -11279,7 +11279,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.41.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "parity-scale-codec", "parking_lot 0.12.4", @@ -11290,7 +11290,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "11.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "thiserror 1.0.69", "zstd 0.12.4", @@ -11299,7 +11299,7 @@ dependencies = [ [[package]] name = "sp-metadata-ir" version = "0.8.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "frame-metadata 18.0.0", "parity-scale-codec", @@ -11309,7 +11309,7 @@ dependencies = [ [[package]] name = "sp-mixnet" version = "0.13.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "parity-scale-codec", "scale-info", @@ -11320,7 +11320,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "35.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "sp-api", "sp-core", @@ -11330,7 +11330,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "13.0.1" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "backtrace", "regex", @@ -11339,7 +11339,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "33.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "rustc-hash 1.1.0", "serde", @@ -11349,7 +11349,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "40.1.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "binary-merkle-tree", "docify", @@ -11378,7 +11378,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "29.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -11397,7 +11397,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "18.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "Inflector", "expander", @@ -11410,7 +11410,7 @@ dependencies = [ [[package]] name = "sp-session" version = "37.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "parity-scale-codec", "scale-info", @@ -11424,7 +11424,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "37.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -11437,7 +11437,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.44.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "hash-db", "log", @@ -11457,7 +11457,7 @@ dependencies = [ [[package]] name = "sp-statement-store" version = "19.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "aes-gcm", "curve25519-dalek", @@ -11470,7 +11470,7 @@ dependencies = [ "sp-api", "sp-application-crypto", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches)", "sp-externalities", "sp-runtime", "sp-runtime-interface", @@ -11481,12 +11481,12 @@ dependencies = [ [[package]] name = "sp-std" version = "14.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" [[package]] name = "sp-storage" version = "22.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "impl-serde 0.5.0", "parity-scale-codec", @@ -11498,7 +11498,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "35.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "async-trait", "parity-scale-codec", @@ -11510,7 +11510,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "17.0.1" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "parity-scale-codec", "tracing", @@ -11521,7 +11521,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "35.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "sp-api", "sp-runtime", @@ -11530,7 +11530,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "35.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "async-trait", "parity-scale-codec", @@ -11544,7 +11544,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "38.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "ahash", "hash-db", @@ -11566,7 +11566,7 @@ dependencies = [ [[package]] name = "sp-version" version = "38.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "impl-serde 0.5.0", "parity-scale-codec", @@ -11583,7 +11583,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "15.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "parity-scale-codec", "proc-macro-warning 1.84.1", @@ -11595,7 +11595,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "21.0.1" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "anyhow", "impl-trait-for-tuples", @@ -11607,7 +11607,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "31.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "bounded-collections", "parity-scale-codec", @@ -11781,7 +11781,7 @@ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" [[package]] name = "staging-xcm" version = "15.1.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "array-bytes", "bounded-collections", @@ -11889,7 +11889,7 @@ dependencies = [ [[package]] name = "substrate-bip39" version = "0.6.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "hmac 0.12.1", "pbkdf2", @@ -11914,12 +11914,12 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "11.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" [[package]] name = "substrate-frame-rpc-system" version = "42.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "docify", "frame-system-rpc-runtime-api", @@ -11939,7 +11939,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.17.1" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "http-body-util", "hyper 1.6.0", @@ -11953,7 +11953,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "array-bytes", "async-trait", @@ -11980,7 +11980,7 @@ dependencies = [ [[package]] name = "substrate-test-runtime" version = "2.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "array-bytes", "frame-executive", @@ -12003,7 +12003,7 @@ dependencies = [ "sp-consensus-babe", "sp-consensus-grandpa", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches)", "sp-externalities", "sp-genesis-builder", "sp-inherents", @@ -12024,7 +12024,7 @@ dependencies = [ [[package]] name = "substrate-test-runtime-client" version = "2.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "futures", "sc-block-builder", @@ -12042,7 +12042,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "25.0.1" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "array-bytes", "build-helper", @@ -12754,7 +12754,7 @@ dependencies = [ [[package]] name = "tracing-gum" version = "17.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "coarsetime", "polkadot-primitives", @@ -12765,7 +12765,7 @@ dependencies = [ [[package]] name = "tracing-gum-proc-macro" version = "5.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "expander", "proc-macro-crate 3.3.0", @@ -14198,7 +14198,7 @@ dependencies = [ [[package]] name = "xcm-procedural" version = "11.0.1" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=allow-aura-to-babe-upgrades-polkadot-stable2412-6#4d07e2f9d0fc7ce72e53822c431b332d51a9521a" +source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" dependencies = [ "Inflector", "proc-macro2", diff --git a/Cargo.toml b/Cargo.toml index fb5ae4a524..e6a4b2ce78 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -84,89 +84,89 @@ thiserror = "2.0" tokio = "1.43.0" # Substrate Client -sc-basic-authorship = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } -sc-block-builder = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } -sc-chain-spec = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } -sc-cli = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -sc-client-api = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } -sc-client-db = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -sc-consensus = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } -sc-consensus-aura = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } -sc-consensus-babe = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } -sc-consensus-grandpa = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } -sc-consensus-manual-seal = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } -sc-executor = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } -sc-keystore = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } -sc-network = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } -sc-network-common = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } -sc-network-sync = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } -sc-offchain = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } -sc-rpc = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } -sc-rpc-api = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } -sc-service = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -sc-telemetry = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } -sc-transaction-pool = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } -sc-transaction-pool-api = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } -sc-utils = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } +sc-basic-authorship = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches" } +sc-block-builder = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches" } +sc-chain-spec = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches" } +sc-cli = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } +sc-client-api = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches" } +sc-client-db = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } +sc-consensus = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches" } +sc-consensus-aura = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches" } +sc-consensus-babe = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches" } +sc-consensus-grandpa = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches" } +sc-consensus-manual-seal = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches" } +sc-executor = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches" } +sc-keystore = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches" } +sc-network = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches" } +sc-network-common = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches" } +sc-network-sync = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches" } +sc-offchain = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches" } +sc-rpc = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches" } +sc-rpc-api = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches" } +sc-service = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } +sc-telemetry = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches" } +sc-transaction-pool = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches" } +sc-transaction-pool-api = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches" } +sc-utils = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches" } # Substrate Primitive -sp-api = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -sp-block-builder = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -sp-blockchain = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -sp-consensus = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -sp-consensus-aura = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -sp-consensus-babe = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -sp-consensus-grandpa = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -sp-core = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -sp-crypto-hashing = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -sp-database = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -sp-externalities = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -sp-genesis-builder = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -sp-inherents = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -sp-io = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -sp-keyring = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -sp-offchain = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -sp-runtime = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -sp-runtime-interface = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -sp-session = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -sp-state-machine = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -sp-std = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -sp-storage = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -sp-timestamp = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -sp-transaction-pool = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -sp-trie = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -sp-version = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -sp-weights = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } +sp-api = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } +sp-block-builder = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } +sp-blockchain = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } +sp-consensus = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } +sp-consensus-aura = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } +sp-consensus-babe = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } +sp-consensus-grandpa = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } +sp-core = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } +sp-crypto-hashing = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } +sp-database = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } +sp-externalities = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } +sp-genesis-builder = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } +sp-inherents = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } +sp-io = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } +sp-keyring = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } +sp-offchain = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } +sp-runtime = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } +sp-runtime-interface = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } +sp-session = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } +sp-state-machine = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } +sp-std = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } +sp-storage = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } +sp-timestamp = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } +sp-transaction-pool = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } +sp-trie = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } +sp-version = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } +sp-weights = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } # Substrate FRAME -frame-benchmarking = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -frame-executive = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -frame-support = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -frame-system = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -frame-system-benchmarking = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -frame-system-rpc-runtime-api = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -pallet-aura = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -pallet-balances = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -pallet-grandpa = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -pallet-sudo = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -pallet-timestamp = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -pallet-transaction-payment = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -pallet-transaction-payment-rpc = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -pallet-utility = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } +frame-benchmarking = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } +frame-executive = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } +frame-support = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } +frame-system = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } +frame-system-benchmarking = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } +frame-system-rpc-runtime-api = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } +pallet-aura = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } +pallet-balances = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } +pallet-grandpa = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } +pallet-sudo = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } +pallet-timestamp = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } +pallet-transaction-payment = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } +pallet-transaction-payment-rpc = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } +pallet-utility = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } # Substrate Utility -frame-benchmarking-cli = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } -prometheus-endpoint = { package = "substrate-prometheus-endpoint", git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } -substrate-build-script-utils = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } -substrate-frame-rpc-system = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } -substrate-test-runtime-client = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } -substrate-wasm-builder = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6" } +frame-benchmarking-cli = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches" } +prometheus-endpoint = { package = "substrate-prometheus-endpoint", git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches" } +substrate-build-script-utils = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches" } +substrate-frame-rpc-system = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches" } +substrate-test-runtime-client = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches" } +substrate-wasm-builder = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches" } # Cumulus primitives -cumulus-primitives-proof-size-hostfunction = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } -cumulus-primitives-storage-weight-reclaim = { git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } +cumulus-primitives-proof-size-hostfunction = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } +cumulus-primitives-storage-weight-reclaim = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } # XCM -xcm = { package = "staging-xcm", git = "https://github.com/liamaharon/polkadot-sdk", branch="allow-aura-to-babe-upgrades-polkadot-stable2412-6", default-features = false } +xcm = { package = "staging-xcm", git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } # Arkworks ark-bls12-377 = { version = "0.4.0", default-features = false, features = ["curve"] } From f51fcc09b4b3d8713acd0143cd05c06cff6fa51a Mon Sep 17 00:00:00 2001 From: Liam Aharon Date: Tue, 15 Jul 2025 14:01:51 +1200 Subject: [PATCH 6/8] reset cargo.toml --- Cargo.lock | 2914 +++++++++++++++++++++++++--------------------------- Cargo.toml | 166 +-- 2 files changed, 1463 insertions(+), 1617 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e647d473b3..82942ab64f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -190,7 +190,7 @@ dependencies = [ "proc-macro-error", "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] @@ -199,9 +199,9 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fb00293ba84f51ce3bd026bd0de55899c4e68f0a39a5728cebae3a73ffdc0a4f" dependencies = [ - "ark-ec", - "ark-ff", - "ark-std", + "ark-ec 0.4.2", + "ark-ff 0.4.2", + "ark-std 0.4.0", ] [[package]] @@ -210,10 +210,22 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c775f0d12169cba7aae4caeb547bb6a50781c7449a8aa53793827c9ec4abf488" dependencies = [ - "ark-ec", - "ark-ff", - "ark-serialize", - "ark-std", + "ark-ec 0.4.2", + "ark-ff 0.4.2", + "ark-serialize 0.4.2", + "ark-std 0.4.0", +] + +[[package]] +name = "ark-bls12-381" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3df4dcc01ff89867cd86b0da835f23c3f02738353aaee7dde7495af71363b8d5" +dependencies = [ + "ark-ec 0.5.0", + "ark-ff 0.5.0", + "ark-serialize 0.5.0", + "ark-std 0.5.0", ] [[package]] @@ -223,9 +235,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2e0605daf0cc5aa2034b78d008aaf159f56901d92a52ee4f6ecdfdac4f426700" dependencies = [ "ark-bls12-377", - "ark-ec", - "ark-ff", - "ark-std", + "ark-ec 0.4.2", + "ark-ff 0.4.2", + "ark-std 0.4.0", ] [[package]] @@ -234,10 +246,10 @@ version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "defd9a439d56ac24968cca0571f598a61bc8c55f71d50a89cda591cb750670ba" dependencies = [ - "ark-ff", - "ark-poly", - "ark-serialize", - "ark-std", + "ark-ff 0.4.2", + "ark-poly 0.4.2", + "ark-serialize 0.4.2", + "ark-std 0.4.0", "derivative", "hashbrown 0.13.2", "itertools 0.10.5", @@ -245,16 +257,49 @@ dependencies = [ "zeroize", ] +[[package]] +name = "ark-ec" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "43d68f2d516162846c1238e755a7c4d131b892b70cc70c471a8e3ca3ed818fce" +dependencies = [ + "ahash", + "ark-ff 0.5.0", + "ark-poly 0.5.0", + "ark-serialize 0.5.0", + "ark-std 0.5.0", + "educe", + "fnv", + "hashbrown 0.15.3", + "itertools 0.13.0", + "num-bigint", + "num-integer", + "num-traits", + "zeroize", +] + +[[package]] +name = "ark-ed-on-bls12-381-bandersnatch" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1786b2e3832f6f0f7c8d62d5d5a282f6952a1ab99981c54cd52b6ac1d8f02df5" +dependencies = [ + "ark-bls12-381 0.5.0", + "ark-ec 0.5.0", + "ark-ff 0.5.0", + "ark-std 0.5.0", +] + [[package]] name = "ark-ff" version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ec847af850f44ad29048935519032c33da8aa03340876d351dfab5660d2966ba" dependencies = [ - "ark-ff-asm", - "ark-ff-macros", - "ark-serialize", - "ark-std", + "ark-ff-asm 0.4.2", + "ark-ff-macros 0.4.2", + "ark-serialize 0.4.2", + "ark-std 0.4.0", "derivative", "digest 0.10.7", "itertools 0.10.5", @@ -265,6 +310,26 @@ dependencies = [ "zeroize", ] +[[package]] +name = "ark-ff" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a177aba0ed1e0fbb62aa9f6d0502e9b46dad8c2eab04c14258a1212d2557ea70" +dependencies = [ + "ark-ff-asm 0.5.0", + "ark-ff-macros 0.5.0", + "ark-serialize 0.5.0", + "ark-std 0.5.0", + "arrayvec 0.7.6", + "digest 0.10.7", + "educe", + "itertools 0.13.0", + "num-bigint", + "num-traits", + "paste", + "zeroize", +] + [[package]] name = "ark-ff-asm" version = "0.4.2" @@ -275,6 +340,16 @@ dependencies = [ "syn 1.0.109", ] +[[package]] +name = "ark-ff-asm" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "62945a2f7e6de02a31fe400aa489f0e0f5b2502e69f95f853adb82a96c7a6b60" +dependencies = [ + "quote", + "syn 2.0.103", +] + [[package]] name = "ark-ff-macros" version = "0.4.2" @@ -288,27 +363,68 @@ dependencies = [ "syn 1.0.109", ] +[[package]] +name = "ark-ff-macros" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09be120733ee33f7693ceaa202ca41accd5653b779563608f1234f78ae07c4b3" +dependencies = [ + "num-bigint", + "num-traits", + "proc-macro2", + "quote", + "syn 2.0.103", +] + [[package]] name = "ark-poly" version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d320bfc44ee185d899ccbadfa8bc31aab923ce1558716e1997a1e74057fe86bf" dependencies = [ - "ark-ff", - "ark-serialize", - "ark-std", + "ark-ff 0.4.2", + "ark-serialize 0.4.2", + "ark-std 0.4.0", "derivative", "hashbrown 0.13.2", ] +[[package]] +name = "ark-poly" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "579305839da207f02b89cd1679e50e67b4331e2f9294a57693e5051b7703fe27" +dependencies = [ + "ahash", + "ark-ff 0.5.0", + "ark-serialize 0.5.0", + "ark-std 0.5.0", + "educe", + "fnv", + "hashbrown 0.15.3", +] + [[package]] name = "ark-serialize" version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "adb7b85a02b83d2f22f89bd5cac66c9c89474240cb6207cb1efc16d098e822a5" dependencies = [ - "ark-serialize-derive", - "ark-std", + "ark-serialize-derive 0.4.2", + "ark-std 0.4.0", + "digest 0.10.7", + "num-bigint", +] + +[[package]] +name = "ark-serialize" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f4d068aaf107ebcd7dfb52bc748f8030e0fc930ac8e360146ca54c1203088f7" +dependencies = [ + "ark-serialize-derive 0.5.0", + "ark-std 0.5.0", + "arrayvec 0.7.6", "digest 0.10.7", "num-bigint", ] @@ -324,6 +440,17 @@ dependencies = [ "syn 1.0.109", ] +[[package]] +name = "ark-serialize-derive" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "213888f660fddcca0d257e88e54ac05bca01885f258ccdf695bafd77031bb69d" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.103", +] + [[package]] name = "ark-std" version = "0.4.0" @@ -334,6 +461,49 @@ dependencies = [ "rand 0.8.5", ] +[[package]] +name = "ark-std" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "246a225cc6131e9ee4f24619af0f19d67761fff15d7ccc22e42b80846e69449a" +dependencies = [ + "num-traits", + "rand 0.8.5", +] + +[[package]] +name = "ark-transcript" +version = "0.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "47c1c928edb9d8ff24cb5dcb7651d3a98494fff3099eee95c2404cd813a9139f" +dependencies = [ + "ark-ff 0.5.0", + "ark-serialize 0.5.0", + "ark-std 0.5.0", + "digest 0.10.7", + "rand_core 0.6.4", + "sha3", +] + +[[package]] +name = "ark-vrf" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9501da18569b2afe0eb934fb7afd5a247d238b94116155af4dd068f319adfe6d" +dependencies = [ + "ark-bls12-381 0.5.0", + "ark-ec 0.5.0", + "ark-ed-on-bls12-381-bandersnatch", + "ark-ff 0.5.0", + "ark-serialize 0.5.0", + "ark-std 0.5.0", + "digest 0.10.7", + "rand_chacha 0.3.1", + "sha2 0.10.9", + "w3f-ring-proof", + "zeroize", +] + [[package]] name = "array-bytes" version = "6.2.3" @@ -363,12 +533,12 @@ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" [[package]] name = "asn1-rs" -version = "0.5.2" +version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f6fd5ddaf0351dff5b8da21b2fb4ff8e08ddd02857f0bf69c47639106c0fff0" +checksum = "5493c3bedbacf7fd7382c6346bbd66687d12bbaad3a89a2d2c303ee6cf20b048" dependencies = [ - "asn1-rs-derive 0.4.0", - "asn1-rs-impl 0.1.0", + "asn1-rs-derive 0.5.1", + "asn1-rs-impl", "displaydoc", "nom", "num-traits", @@ -384,7 +554,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "56624a96882bb8c26d61312ae18cb45868e5a9992ea73c58e45c3101e56a1e60" dependencies = [ "asn1-rs-derive 0.6.0", - "asn1-rs-impl 0.2.0", + "asn1-rs-impl", "displaydoc", "nom", "num-traits", @@ -395,14 +565,14 @@ dependencies = [ [[package]] name = "asn1-rs-derive" -version = "0.4.0" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "726535892e8eae7e70657b4c8ea93d26b8553afb1ce617caee529ef96d7dee6c" +checksum = "965c2d33e53cb6b267e148a4cb0760bc01f4904c1cd4bb4002a085bb016d1490" dependencies = [ "proc-macro2", "quote", - "syn 1.0.109", - "synstructure 0.12.6", + "syn 2.0.103", + "synstructure 0.13.2", ] [[package]] @@ -413,21 +583,10 @@ checksum = "3109e49b1e4909e9db6515a30c633684d68cdeaa252f215214cb4fa1a5bfee2c" dependencies = [ "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.103", "synstructure 0.13.2", ] -[[package]] -name = "asn1-rs-impl" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2777730b2039ac0f95f093556e61b6d26cebed5393ca6f152717777cec3a42ed" -dependencies = [ - "proc-macro2", - "quote", - "syn 1.0.109", -] - [[package]] name = "asn1-rs-impl" version = "0.2.0" @@ -436,7 +595,7 @@ checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7" dependencies = [ "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] @@ -585,7 +744,7 @@ checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5" dependencies = [ "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] @@ -601,6 +760,19 @@ dependencies = [ "pin-project-lite", ] +[[package]] +name = "asynchronous-codec" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a860072022177f903e59730004fb5dc13db9275b79bb2aef7ba8ce831956c233" +dependencies = [ + "bytes", + "futures-sink", + "futures-util", + "memchr", + "pin-project-lite", +] + [[package]] name = "atoi" version = "2.0.0" @@ -641,7 +813,7 @@ checksum = "ffdcb70bdbc4d478427380519163274ac86e52916e10f0a8889adf0f96d3fee7" dependencies = [ "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] @@ -683,12 +855,6 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6107fe1be6682a68940da878d9e9f5e90ca5745b3dec9fd1bb393c8777d4f581" -[[package]] -name = "base64" -version = "0.13.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" - [[package]] name = "base64" version = "0.21.7" @@ -707,19 +873,10 @@ version = "1.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" -[[package]] -name = "beef" -version = "0.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3a8241f3ebb85c056b509d4327ad0358fbbba6ffb340bf388f26350aeda225b1" -dependencies = [ - "serde", -] - [[package]] name = "binary-merkle-tree" version = "16.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "hash-db", "log", @@ -753,7 +910,7 @@ dependencies = [ "regex", "rustc-hash 1.1.0", "shlex", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] @@ -779,7 +936,7 @@ version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "33415e24172c1b7d6066f6d999545375ab8e1d95421d6784bdfff9496f292387" dependencies = [ - "bitcoin_hashes", + "bitcoin_hashes 0.13.0", "serde", "unicode-normalization", ] @@ -790,6 +947,12 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9425c3bf7089c983facbae04de54513cce73b41c7f9ff8c845b54e7bc64ebbfb" +[[package]] +name = "bitcoin-io" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b47c4ab7a93edb0c7198c5535ed9b52b63095f4e9b45279c6736cec4b856baf" + [[package]] name = "bitcoin_hashes" version = "0.13.0" @@ -797,7 +960,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1930a4dabfebb8d7d9992db18ebe3ae2876f0a305fab206fd168df931ede293b" dependencies = [ "bitcoin-internals", - "hex-conservative", + "hex-conservative 0.1.2", +] + +[[package]] +name = "bitcoin_hashes" +version = "0.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bb18c03d0db0247e147a21a6faafd5a7eb851c743db062de72018b6b7e8e4d16" +dependencies = [ + "bitcoin-io", + "hex-conservative 0.2.1", ] [[package]] @@ -1243,7 +1416,7 @@ dependencies = [ "anstream", "anstyle", "clap_lex", - "strsim 0.11.1", + "strsim", "terminal_size", ] @@ -1256,7 +1429,7 @@ dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] @@ -1691,6 +1864,21 @@ dependencies = [ "subtle 2.6.1", ] +[[package]] +name = "crypto_secretbox" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b9d6cf87adf719ddf43a805e92c6870a531aedda35ff640442cbaf8674e141e1" +dependencies = [ + "aead", + "cipher 0.4.4", + "generic-array 0.14.7", + "poly1305", + "salsa20", + "subtle 2.6.1", + "zeroize", +] + [[package]] name = "ctr" version = "0.9.2" @@ -1702,8 +1890,8 @@ dependencies = [ [[package]] name = "cumulus-client-parachain-inherent" -version = "0.15.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "0.16.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -1712,20 +1900,37 @@ dependencies = [ "cumulus-test-relay-sproof-builder", "parity-scale-codec", "sc-client-api", - "sp-api", - "sp-crypto-hashing 0.1.0 (git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6)", "sp-inherents", "sp-runtime", "sp-state-machine", "sp-storage", - "sp-trie", "tracing", ] +[[package]] +name = "cumulus-pallet-weight-reclaim" +version = "0.2.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" +dependencies = [ + "cumulus-primitives-storage-weight-reclaim", + "derive-where", + "docify", + "frame-benchmarking", + "frame-support", + "frame-system", + "log", + "parity-scale-codec", + "scale-info", + "sp-io", + "sp-runtime", + "sp-trie", +] + [[package]] name = "cumulus-primitives-core" -version = "0.17.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "0.18.1" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "parity-scale-codec", "polkadot-core-primitives", @@ -1740,8 +1945,8 @@ dependencies = [ [[package]] name = "cumulus-primitives-parachain-inherent" -version = "0.17.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "0.18.1" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -1754,8 +1959,8 @@ dependencies = [ [[package]] name = "cumulus-primitives-proof-size-hostfunction" -version = "0.11.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "0.12.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "sp-externalities", "sp-runtime-interface", @@ -1764,8 +1969,8 @@ dependencies = [ [[package]] name = "cumulus-primitives-storage-weight-reclaim" -version = "9.1.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "11.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "cumulus-primitives-core", "cumulus-primitives-proof-size-hostfunction", @@ -1781,13 +1986,13 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-interface" -version = "0.21.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "0.22.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "async-trait", "cumulus-primitives-core", "futures", - "jsonrpsee-core 0.24.9", + "jsonrpsee-core", "parity-scale-codec", "polkadot-overseer", "sc-client-api", @@ -1800,8 +2005,8 @@ dependencies = [ [[package]] name = "cumulus-test-relay-sproof-builder" -version = "0.17.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "0.19.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "cumulus-primitives-core", "parity-scale-codec", @@ -1835,7 +2040,7 @@ checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3" dependencies = [ "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] @@ -1863,7 +2068,7 @@ dependencies = [ "proc-macro2", "quote", "scratch", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] @@ -1876,7 +2081,7 @@ dependencies = [ "codespan-reporting", "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] @@ -1894,77 +2099,42 @@ dependencies = [ "proc-macro2", "quote", "rustversion", - "syn 2.0.101", -] - -[[package]] -name = "darling" -version = "0.14.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7b750cb3417fd1b327431a470f388520309479ab0bf5e323505daf0290cd3850" -dependencies = [ - "darling_core 0.14.4", - "darling_macro 0.14.4", + "syn 2.0.103", ] [[package]] name = "darling" -version = "0.20.11" +version = "0.20.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee" +checksum = "6f63b86c8a8826a49b8c21f08a2d07338eec8d900540f8630dc76284be802989" dependencies = [ - "darling_core 0.20.11", - "darling_macro 0.20.11", -] - -[[package]] -name = "darling_core" -version = "0.14.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "109c1ca6e6b7f82cc233a97004ea8ed7ca123a9af07a8230878fcfda9b158bf0" -dependencies = [ - "fnv", - "ident_case", - "proc-macro2", - "quote", - "strsim 0.10.0", - "syn 1.0.109", + "darling_core", + "darling_macro", ] [[package]] name = "darling_core" -version = "0.20.11" +version = "0.20.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e" +checksum = "95133861a8032aaea082871032f5815eb9e98cef03fa916ab4500513994df9e5" dependencies = [ "fnv", "ident_case", "proc-macro2", "quote", - "strsim 0.11.1", - "syn 2.0.101", -] - -[[package]] -name = "darling_macro" -version = "0.14.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4aab4dbc9f7611d8b55048a3a16d2d010c2c8334e46304b40ac1cc14bf3b48e" -dependencies = [ - "darling_core 0.14.4", - "quote", - "syn 1.0.109", + "strsim", + "syn 2.0.103", ] [[package]] name = "darling_macro" -version = "0.20.11" +version = "0.20.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead" +checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806" dependencies = [ - "darling_core 0.20.11", + "darling_core", "quote", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] @@ -2003,7 +2173,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8d162beedaa69905488a8da94f5ac3edb4dd4788b732fadb7bd120b2625c1976" dependencies = [ "data-encoding", - "syn 2.0.101", + "syn 1.0.109", ] [[package]] @@ -2018,11 +2188,11 @@ dependencies = [ [[package]] name = "der-parser" -version = "8.2.0" +version = "9.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dbd676fbbab537128ef0278adb5576cf363cff6aa22a7b24effe97347cfab61e" +checksum = "5cd0a5c643689626bec213c4d8bd4d96acc8ffdb4ad4bb6bc16abf27d5f4b553" dependencies = [ - "asn1-rs 0.5.2", + "asn1-rs 0.6.2", "displaydoc", "nom", "num-bigint", @@ -2072,7 +2242,7 @@ checksum = "d65d7ce8132b7c0e54497a4d9a55a1c2a0912a0d786cf894472ba818fba45762" dependencies = [ "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] @@ -2083,7 +2253,7 @@ checksum = "e73f2692d4bd3cac41dca28934a39894200c9fabf49586d77d0e5954af1d7902" dependencies = [ "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] @@ -2096,7 +2266,7 @@ dependencies = [ "proc-macro2", "quote", "rustc_version", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] @@ -2116,7 +2286,7 @@ checksum = "cb7330aeadfbe296029522e6c40f315320aba36fc43a5b3632f3795348f3bd22" dependencies = [ "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.103", "unicode-xid", ] @@ -2126,12 +2296,6 @@ version = "0.1.13" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8" -[[package]] -name = "difflib" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8" - [[package]] name = "digest" version = "0.8.1" @@ -2181,6 +2345,15 @@ dependencies = [ "dirs-sys-next", ] +[[package]] +name = "dirs" +version = "5.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225" +dependencies = [ + "dirs-sys", +] + [[package]] name = "dirs-sys" version = "0.4.1" @@ -2212,7 +2385,7 @@ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" dependencies = [ "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] @@ -2236,7 +2409,7 @@ dependencies = [ "proc-macro2", "quote", "regex", - "syn 2.0.101", + "syn 2.0.103", "termcolor", "toml 0.8.22", "walkdir", @@ -2284,7 +2457,7 @@ checksum = "7e8671d54058979a37a26f3511fbf8d198ba1aa35ffb202c42587d918d77213a" dependencies = [ "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] @@ -2348,6 +2521,18 @@ dependencies = [ "zeroize", ] +[[package]] +name = "educe" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d7bc049e1bd8cdeb31b68bbd586a9464ecf9f3944af3958a7a9d0f8b9799417" +dependencies = [ + "enum-ordinalize", + "proc-macro2", + "quote", + "syn 2.0.103", +] + [[package]] name = "either" version = "1.15.0" @@ -2385,26 +2570,34 @@ checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0" [[package]] name = "enum-as-inner" -version = "0.5.1" +version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c9720bba047d567ffc8a3cba48bf19126600e249ab7f128e9233e6376976a116" +checksum = "a1e6a265c649f3f5979b601d26f1d05ada116434c87741c9493cb56218f76cbc" dependencies = [ - "heck 0.4.1", + "heck 0.5.0", "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.103", ] [[package]] -name = "enum-as-inner" -version = "0.6.1" +name = "enum-ordinalize" +version = "4.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1e6a265c649f3f5979b601d26f1d05ada116434c87741c9493cb56218f76cbc" +checksum = "fea0dcfa4e54eeb516fe454635a95753ddd39acda650ce703031c6973e315dd5" +dependencies = [ + "enum-ordinalize-derive", +] + +[[package]] +name = "enum-ordinalize-derive" +version = "4.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0d28318a75d4aead5c4db25382e8ef717932d0346600cacae6357eb5941bc5ff" dependencies = [ - "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] @@ -2439,7 +2632,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cea14ef9355e3beab063703aa9dab15afd25f0667c341310c1e5274bb1d0da18" dependencies = [ "libc", - "windows-sys 0.59.0", + "windows-sys 0.52.0", ] [[package]] @@ -2450,9 +2643,9 @@ checksum = "8c321610643004cf908ec0f5f2aa0d8f1f8e14b540562a2887a1111ff1ecbf7b" dependencies = [ "crunchy", "fixed-hash", - "impl-codec 0.7.1", + "impl-codec", "impl-rlp", - "impl-serde 0.5.0", + "impl-serde", "scale-info", "tiny-keccak", ] @@ -2460,7 +2653,7 @@ dependencies = [ [[package]] name = "ethereum" version = "0.15.0" -source = "git+https://github.com/rust-ethereum/ethereum?rev=3be0d8fd4c2ad1ba216b69ef65b9382612efc8ba#3be0d8fd4c2ad1ba216b69ef65b9382612efc8ba" +source = "git+https://github.com/rust-ethereum/ethereum?rev=bbb544622208ef6e9890a2dbc224248f6dd13318#bbb544622208ef6e9890a2dbc224248f6dd13318" dependencies = [ "bytes", "ethereum-types", @@ -2482,10 +2675,10 @@ checksum = "1ab15ed80916029f878e0267c3a9f92b67df55e79af370bf66199059ae2b4ee3" dependencies = [ "ethbloom", "fixed-hash", - "impl-codec 0.7.1", + "impl-codec", "impl-rlp", - "impl-serde 0.5.0", - "primitive-types 0.13.1", + "impl-serde", + "primitive-types", "scale-info", "uint 0.10.0", ] @@ -2496,16 +2689,6 @@ version = "2.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" -[[package]] -name = "event-listener" -version = "4.0.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "67b215c49b2b248c855fb73579eb1f4f26c38ffdc12973e20e07b91d78d5646e" -dependencies = [ - "concurrent-queue", - "pin-project-lite", -] - [[package]] name = "event-listener" version = "5.4.0" @@ -2530,7 +2713,7 @@ dependencies = [ [[package]] name = "evm" version = "0.42.0" -source = "git+https://github.com/rust-ethereum/evm?rev=e81732d6bb47e3d3d68d233e43919c4522598361#e81732d6bb47e3d3d68d233e43919c4522598361" +source = "git+https://github.com/rust-ethereum/evm?branch=v0.x#6ca5a72bc8942f4860137155dd9033526fd362a5" dependencies = [ "auto_impl", "environmental", @@ -2540,7 +2723,7 @@ dependencies = [ "evm-runtime", "log", "parity-scale-codec", - "primitive-types 0.13.1", + "primitive-types", "rlp", "scale-info", "serde", @@ -2550,10 +2733,10 @@ dependencies = [ [[package]] name = "evm-core" version = "0.42.0" -source = "git+https://github.com/rust-ethereum/evm?rev=e81732d6bb47e3d3d68d233e43919c4522598361#e81732d6bb47e3d3d68d233e43919c4522598361" +source = "git+https://github.com/rust-ethereum/evm?branch=v0.x#6ca5a72bc8942f4860137155dd9033526fd362a5" dependencies = [ "parity-scale-codec", - "primitive-types 0.13.1", + "primitive-types", "scale-info", "serde", ] @@ -2561,23 +2744,23 @@ dependencies = [ [[package]] name = "evm-gasometer" version = "0.42.0" -source = "git+https://github.com/rust-ethereum/evm?rev=e81732d6bb47e3d3d68d233e43919c4522598361#e81732d6bb47e3d3d68d233e43919c4522598361" +source = "git+https://github.com/rust-ethereum/evm?branch=v0.x#6ca5a72bc8942f4860137155dd9033526fd362a5" dependencies = [ "environmental", "evm-core", "evm-runtime", - "primitive-types 0.13.1", + "primitive-types", ] [[package]] name = "evm-runtime" version = "0.42.0" -source = "git+https://github.com/rust-ethereum/evm?rev=e81732d6bb47e3d3d68d233e43919c4522598361#e81732d6bb47e3d3d68d233e43919c4522598361" +source = "git+https://github.com/rust-ethereum/evm?branch=v0.x#6ca5a72bc8942f4860137155dd9033526fd362a5" dependencies = [ "auto_impl", "environmental", "evm-core", - "primitive-types 0.13.1", + "primitive-types", "sha3", ] @@ -2602,7 +2785,7 @@ dependencies = [ "prettyplease", "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] @@ -2644,7 +2827,7 @@ dependencies = [ "proc-macro-crate 3.3.0", "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] @@ -2673,21 +2856,6 @@ dependencies = [ "sp-timestamp", ] -[[package]] -name = "fc-babe" -version = "1.0.0-dev" -dependencies = [ - "fc-rpc", - "sc-client-api", - "sc-consensus-babe", - "sp-api", - "sp-blockchain", - "sp-consensus-babe", - "sp-inherents", - "sp-runtime", - "sp-timestamp", -] - [[package]] name = "fc-cli" version = "1.0.0-dev" @@ -2814,7 +2982,7 @@ dependencies = [ "fp-storage", "futures", "hex", - "jsonrpsee 0.24.9", + "jsonrpsee", "libsecp256k1", "log", "pallet-evm", @@ -2859,12 +3027,12 @@ version = "1.1.0-dev" dependencies = [ "ethereum", "ethereum-types", - "jsonrpsee 0.24.9", + "jsonrpsee", "rlp", "rustc-hex", "serde", "serde_json", - "sp-crypto-hashing 0.1.0 (git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6)", ] [[package]] @@ -2877,7 +3045,7 @@ version = "0.1.0" dependencies = [ "ethereum-types", "fc-rpc-v2-types", - "jsonrpsee 0.24.9", + "jsonrpsee", ] [[package]] @@ -2980,16 +3148,6 @@ dependencies = [ "scale-info", ] -[[package]] -name = "finito" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2384245d85162258a14b43567a9ee3598f5ae746a1581fb5d3d2cb780f0dbf95" -dependencies = [ - "futures-timer", - "pin-project", -] - [[package]] name = "fixed-hash" version = "0.8.0" @@ -3008,21 +3166,6 @@ version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80" -[[package]] -name = "fixedbitset" -version = "0.5.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99" - -[[package]] -name = "float-cmp" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4" -dependencies = [ - "num-traits", -] - [[package]] name = "flume" version = "0.11.1" @@ -3064,7 +3207,7 @@ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" [[package]] name = "fork-tree" version = "13.0.1" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "parity-scale-codec", ] @@ -3093,7 +3236,7 @@ name = "fp-account" version = "1.0.0-dev" dependencies = [ "hex", - "impl-serde 0.5.0", + "impl-serde", "libsecp256k1", "log", "parity-scale-codec", @@ -3193,8 +3336,8 @@ checksum = "28dd6caf6059519a65843af8fe2a3ae298b14b80179855aeb4adc2c1934ee619" [[package]] name = "frame-benchmarking" -version = "39.1.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "40.2.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "frame-support", "frame-support-procedural", @@ -3217,8 +3360,8 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" -version = "46.2.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "47.2.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "Inflector", "array-bytes", @@ -3232,7 +3375,6 @@ dependencies = [ "frame-system", "gethostname", "handlebars", - "hex", "itertools 0.11.0", "linked-hash-map", "log", @@ -3247,7 +3389,7 @@ dependencies = [ "sc-client-api", "sc-client-db", "sc-executor", - "sc-executor-common", + "sc-runtime-utilities", "sc-service", "sc-sysinfo", "serde", @@ -3256,7 +3398,6 @@ dependencies = [ "sp-block-builder", "sp-blockchain", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches)", "sp-database", "sp-externalities", "sp-genesis-builder", @@ -3277,10 +3418,24 @@ dependencies = [ "thousands", ] +[[package]] +name = "frame-decode" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6027a409bac4fe95b4d107f965fcdbc252fc89d884a360d076b3070b6128c094" +dependencies = [ + "frame-metadata 17.0.0", + "parity-scale-codec", + "scale-decode 0.14.0", + "scale-info", + "scale-type-resolver", + "sp-crypto-hashing 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "frame-executive" -version = "39.1.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "40.0.1" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "aquamarine", "frame-support", @@ -3297,20 +3452,9 @@ dependencies = [ [[package]] name = "frame-metadata" -version = "15.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "878babb0b136e731cc77ec2fd883ff02745ff21e6fb662729953d44923df009c" -dependencies = [ - "cfg-if", - "parity-scale-codec", - "scale-info", -] - -[[package]] -name = "frame-metadata" -version = "16.0.0" +version = "17.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "87cf1549fba25a6fcac22785b61698317d958e96cac72a59102ea45b9ae64692" +checksum = "701bac17e9b55e0f95067c428ebcb46496587f08e8cf4ccc0fe5903bea10dbb8" dependencies = [ "cfg-if", "parity-scale-codec", @@ -3320,9 +3464,9 @@ dependencies = [ [[package]] name = "frame-metadata" -version = "18.0.0" +version = "20.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "daaf440c68eb2c3d88e5760fe8c7af3f9fee9181fab6c2f2c4e7cc48dcc40bb8" +checksum = "26de808fa6461f2485dc51811aefed108850064994fb4a62b3ac21ffa62ac8df" dependencies = [ "cfg-if", "parity-scale-codec", @@ -3332,8 +3476,8 @@ dependencies = [ [[package]] name = "frame-metadata-hash-extension" -version = "0.7.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "0.8.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "array-bytes", "const-hex", @@ -3348,8 +3492,8 @@ dependencies = [ [[package]] name = "frame-support" -version = "39.1.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "40.1.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "aquamarine", "array-bytes", @@ -3357,7 +3501,7 @@ dependencies = [ "bitflags 1.3.2", "docify", "environmental", - "frame-metadata 18.0.0", + "frame-metadata 20.0.0", "frame-support-procedural", "impl-trait-for-tuples", "k256", @@ -3368,7 +3512,6 @@ dependencies = [ "scale-info", "serde", "serde_json", - "smallvec", "sp-api", "sp-arithmetic", "sp-core", @@ -3385,14 +3528,13 @@ dependencies = [ "sp-tracing", "sp-trie", "sp-weights", - "static_assertions", "tt-call", ] [[package]] name = "frame-support-procedural" -version = "31.1.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "33.0.1" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "Inflector", "cfg-expr", @@ -3402,39 +3544,39 @@ dependencies = [ "frame-support-procedural-tools", "itertools 0.11.0", "macro_magic", - "proc-macro-warning 1.84.1", + "proc-macro-warning", "proc-macro2", "quote", - "sp-crypto-hashing 0.1.0 (git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches)", - "syn 2.0.101", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6)", + "syn 2.0.103", ] [[package]] name = "frame-support-procedural-tools" version = "13.0.1" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate 3.3.0", "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] name = "frame-support-procedural-tools-derive" version = "12.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] name = "frame-system" -version = "39.1.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "40.1.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "cfg-if", "docify", @@ -3446,15 +3588,14 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-std", "sp-version", "sp-weights", ] [[package]] name = "frame-system-benchmarking" -version = "39.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "40.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "frame-benchmarking", "frame-support", @@ -3467,8 +3608,8 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" -version = "35.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "36.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "docify", "parity-scale-codec", @@ -3477,8 +3618,8 @@ dependencies = [ [[package]] name = "frame-try-runtime" -version = "0.45.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "0.46.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "frame-support", "parity-scale-codec", @@ -3492,8 +3633,8 @@ version = "0.0.0" dependencies = [ "async-trait", "clap", + "cumulus-pallet-weight-reclaim", "cumulus-primitives-proof-size-hostfunction", - "cumulus-primitives-storage-weight-reclaim", "fc-api", "fc-aura", "fc-cli", @@ -3514,7 +3655,7 @@ dependencies = [ "frontier-template-runtime", "futures", "hex-literal", - "jsonrpsee 0.24.9", + "jsonrpsee", "log", "pallet-transaction-payment", "pallet-transaction-payment-rpc", @@ -3560,7 +3701,7 @@ dependencies = [ name = "frontier-template-runtime" version = "0.0.0" dependencies = [ - "cumulus-primitives-storage-weight-reclaim", + "cumulus-pallet-weight-reclaim", "fp-account", "fp-evm", "fp-rpc", @@ -3645,9 +3786,9 @@ dependencies = [ [[package]] name = "futures-bounded" -version = "0.1.0" +version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b07bbbe7d7e78809544c6f718d875627addc73a7c3582447abc052cd3dc67e0" +checksum = "91f328e7fb845fc832912fb6a34f40cf6d1888c92f974d1893a54e97b5ff542e" dependencies = [ "futures-timer", "futures-util", @@ -3719,17 +3860,18 @@ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" dependencies = [ "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] name = "futures-rustls" -version = "0.24.0" +version = "0.26.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "35bd3cf68c183738046838e300353e4716c674dc5e56890de4826801a6622a28" +checksum = "a8f2f12607f92c69b12ed746fabf9ca4f5c482cba46679c1a75b874ed7c26adb" dependencies = [ "futures-io", - "rustls 0.21.12", + "rustls", + "rustls-pki-types", ] [[package]] @@ -3828,8 +3970,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592" dependencies = [ "cfg-if", + "js-sys", "libc", "wasi 0.11.0+wasi-snapshot-preview1", + "wasm-bindgen", ] [[package]] @@ -3839,9 +3983,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4" dependencies = [ "cfg-if", + "js-sys", "libc", "r-efi", "wasi 0.14.2+wasi-0.2.4", + "wasm-bindgen", ] [[package]] @@ -3877,20 +4023,14 @@ dependencies = [ [[package]] name = "gimli" -version = "0.28.1" +version = "0.31.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253" +checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f" dependencies = [ "fallible-iterator 0.3.0", "stable_deref_trait", ] -[[package]] -name = "gimli" -version = "0.31.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f" - [[package]] name = "glob" version = "0.3.2" @@ -4089,12 +4229,46 @@ version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "212ab92002354b4819390025006c897e8140934349e8635c9b077f47b4dcbd20" +[[package]] +name = "hex-conservative" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5313b072ce3c597065a808dbf612c4c8e8590bdbf8b579508bf7a762c5eae6cd" +dependencies = [ + "arrayvec 0.7.6", +] + [[package]] name = "hex-literal" version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6fe2267d4ed49bc07b63801559be28c718ea06c4738b7a03c94df7386d2cde46" +[[package]] +name = "hickory-proto" +version = "0.24.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "92652067c9ce6f66ce53cc38d1169daa36e6e7eb7dd3b63b5103bd9d97117248" +dependencies = [ + "async-trait", + "cfg-if", + "data-encoding", + "enum-as-inner", + "futures-channel", + "futures-io", + "futures-util", + "idna", + "ipnet", + "once_cell", + "rand 0.8.5", + "socket2", + "thiserror 1.0.69", + "tinyvec", + "tokio", + "tracing", + "url", +] + [[package]] name = "hickory-proto" version = "0.25.2" @@ -4104,11 +4278,11 @@ dependencies = [ "async-trait", "cfg-if", "data-encoding", - "enum-as-inner 0.6.1", + "enum-as-inner", "futures-channel", "futures-io", "futures-util", - "idna 1.0.3", + "idna", "ipnet", "once_cell", "rand 0.9.1", @@ -4120,6 +4294,27 @@ dependencies = [ "url", ] +[[package]] +name = "hickory-resolver" +version = "0.24.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cbb117a1ca520e111743ab2f6688eddee69db4e0ea242545a604dce8a66fd22e" +dependencies = [ + "cfg-if", + "futures-util", + "hickory-proto 0.24.4", + "ipconfig", + "lru-cache", + "once_cell", + "parking_lot 0.12.4", + "rand 0.8.5", + "resolv-conf", + "smallvec", + "thiserror 1.0.69", + "tokio", + "tracing", +] + [[package]] name = "hickory-resolver" version = "0.25.2" @@ -4128,7 +4323,7 @@ checksum = "dc62a9a99b0bfb44d2ab95a7208ac952d31060efc16241c87eaf36406fecf87a" dependencies = [ "cfg-if", "futures-util", - "hickory-proto", + "hickory-proto 0.25.2", "ipconfig", "moka", "once_cell", @@ -4271,7 +4466,7 @@ dependencies = [ "httpdate", "itoa", "pin-project-lite", - "socket2 0.5.10", + "socket2", "tokio", "tower-service", "tracing", @@ -4301,35 +4496,20 @@ dependencies = [ [[package]] name = "hyper-rustls" -version = "0.24.2" +version = "0.27.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590" +checksum = "2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2" dependencies = [ "futures-util", - "http 0.2.12", - "hyper 0.14.32", - "log", - "rustls 0.21.12", - "rustls-native-certs 0.6.3", - "tokio", - "tokio-rustls 0.24.1", -] - -[[package]] -name = "hyper-rustls" -version = "0.27.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58" -dependencies = [ "http 1.3.1", "hyper 1.6.0", "hyper-util", "log", - "rustls 0.23.27", - "rustls-native-certs 0.8.1", + "rustls", + "rustls-native-certs", "rustls-pki-types", "tokio", - "tokio-rustls 0.26.2", + "tokio-rustls", "tower-service", ] @@ -4348,7 +4528,7 @@ dependencies = [ "hyper 1.6.0", "libc", "pin-project-lite", - "socket2 0.5.10", + "socket2", "tokio", "tower-service", "tracing", @@ -4470,27 +4650,6 @@ version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" -[[package]] -name = "idna" -version = "0.2.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8" -dependencies = [ - "matches", - "unicode-bidi", - "unicode-normalization", -] - -[[package]] -name = "idna" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c" -dependencies = [ - "unicode-bidi", - "unicode-normalization", -] - [[package]] name = "idna" version = "1.0.3" @@ -4564,15 +4723,6 @@ dependencies = [ "xmltree", ] -[[package]] -name = "impl-codec" -version = "0.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ba6a270039626615617f3f36d15fc827041df3b78c439da2cadfa47455a77f2f" -dependencies = [ - "parity-scale-codec", -] - [[package]] name = "impl-codec" version = "0.7.1" @@ -4602,15 +4752,6 @@ dependencies = [ "rlp", ] -[[package]] -name = "impl-serde" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ebc88fc67028ae3db0c853baa36269d398d5f45b6982f95549ff5def78c935cd" -dependencies = [ - "serde", -] - [[package]] name = "impl-serde" version = "0.5.0" @@ -4628,7 +4769,7 @@ checksum = "a0eb5a3343abf848c0984fe4604b2b105da9539376e24fc0a3b0007411ae4fd9" dependencies = [ "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] @@ -4727,7 +4868,7 @@ version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b58db92f96b720de98181bbbe63c831e87005ab460c1bf306eb2622b4707997f" dependencies = [ - "socket2 0.5.10", + "socket2", "widestring", "windows-sys 0.48.0", "winreg", @@ -4747,7 +4888,7 @@ checksum = "e04d7f318608d35d4b61ddd75cbdaee86b023ebe2bd5a66ee0915f0bf93095a9" dependencies = [ "hermit-abi 0.5.1", "libc", - "windows-sys 0.59.0", + "windows-sys 0.52.0", ] [[package]] @@ -4783,6 +4924,15 @@ dependencies = [ "either", ] +[[package]] +name = "itertools" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186" +dependencies = [ + "either", +] + [[package]] name = "itertools" version = "0.14.0" @@ -4800,16 +4950,18 @@ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" [[package]] name = "jni" -version = "0.19.0" +version = "0.21.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c6df18c2e3db7e453d3c6ac5b3e9d5182664d28788126d39b91f2d1e22b017ec" +checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97" dependencies = [ "cesu8", + "cfg-if", "combine", "jni-sys", "log", "thiserror 1.0.69", "walkdir", + "windows-sys 0.45.0", ] [[package]] @@ -4838,82 +4990,40 @@ dependencies = [ "wasm-bindgen", ] -[[package]] -name = "jsonrpsee" -version = "0.22.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cfdb12a2381ea5b2e68c3469ec604a007b367778cdb14d09612c8069ebd616ad" -dependencies = [ - "jsonrpsee-client-transport 0.22.5", - "jsonrpsee-core 0.22.5", - "jsonrpsee-http-client", - "jsonrpsee-types 0.22.5", -] - -[[package]] -name = "jsonrpsee" -version = "0.23.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "62b089779ad7f80768693755a031cc14a7766aba707cbe886674e3f79e9b7e47" -dependencies = [ - "jsonrpsee-core 0.23.2", - "jsonrpsee-types 0.23.2", - "jsonrpsee-ws-client", -] - [[package]] name = "jsonrpsee" version = "0.24.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "37b26c20e2178756451cfeb0661fb74c47dd5988cb7e3939de7e9241fd604d42" dependencies = [ - "jsonrpsee-core 0.24.9", + "jsonrpsee-client-transport", + "jsonrpsee-core", "jsonrpsee-proc-macros", "jsonrpsee-server", - "jsonrpsee-types 0.24.9", - "tokio", - "tracing", -] - -[[package]] -name = "jsonrpsee-client-transport" -version = "0.22.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4978087a58c3ab02efc5b07c5e5e2803024536106fd5506f558db172c889b3aa" -dependencies = [ - "futures-util", - "http 0.2.12", - "jsonrpsee-core 0.22.5", - "pin-project", - "rustls-native-certs 0.7.3", - "rustls-pki-types", - "soketto 0.7.1", - "thiserror 1.0.69", + "jsonrpsee-types", + "jsonrpsee-ws-client", "tokio", - "tokio-rustls 0.25.0", - "tokio-util", "tracing", - "url", ] [[package]] name = "jsonrpsee-client-transport" -version = "0.23.2" +version = "0.24.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08163edd8bcc466c33d79e10f695cdc98c00d1e6ddfb95cec41b6b0279dd5432" +checksum = "bacb85abf4117092455e1573625e21b8f8ef4dec8aff13361140b2dc266cdff2" dependencies = [ "base64 0.22.1", "futures-util", "http 1.3.1", - "jsonrpsee-core 0.23.2", + "jsonrpsee-core", "pin-project", - "rustls 0.23.27", + "rustls", "rustls-pki-types", "rustls-platform-verifier", - "soketto 0.8.1", + "soketto", "thiserror 1.0.69", "tokio", - "tokio-rustls 0.26.2", + "tokio-rustls", "tokio-util", "tracing", "url", @@ -4921,92 +5031,30 @@ dependencies = [ [[package]] name = "jsonrpsee-core" -version = "0.22.5" +version = "0.24.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b4b257e1ec385e07b0255dde0b933f948b5c8b8c28d42afda9587c3a967b896d" +checksum = "456196007ca3a14db478346f58c7238028d55ee15c1df15115596e411ff27925" dependencies = [ - "anyhow", "async-trait", - "beef", + "bytes", "futures-timer", "futures-util", - "hyper 0.14.32", - "jsonrpsee-types 0.22.5", - "pin-project", - "rustc-hash 1.1.0", - "serde", - "serde_json", - "thiserror 1.0.69", - "tokio", - "tokio-stream", - "tracing", -] - -[[package]] -name = "jsonrpsee-core" -version = "0.23.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "79712302e737d23ca0daa178e752c9334846b08321d439fd89af9a384f8c830b" -dependencies = [ - "anyhow", - "async-trait", - "beef", - "futures-timer", - "futures-util", - "jsonrpsee-types 0.23.2", - "pin-project", - "rustc-hash 1.1.0", - "serde", - "serde_json", - "thiserror 1.0.69", - "tokio", - "tokio-stream", - "tracing", -] - -[[package]] -name = "jsonrpsee-core" -version = "0.24.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "456196007ca3a14db478346f58c7238028d55ee15c1df15115596e411ff27925" -dependencies = [ - "async-trait", - "bytes", - "futures-util", "http 1.3.1", "http-body 1.0.1", "http-body-util", - "jsonrpsee-types 0.24.9", + "jsonrpsee-types", "parking_lot 0.12.4", + "pin-project", "rand 0.8.5", "rustc-hash 2.1.1", "serde", "serde_json", "thiserror 1.0.69", "tokio", + "tokio-stream", "tracing", ] -[[package]] -name = "jsonrpsee-http-client" -version = "0.22.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1ccf93fc4a0bfe05d851d37d7c32b7f370fe94336b52a2f0efc5f1981895c2e5" -dependencies = [ - "async-trait", - "hyper 0.14.32", - "hyper-rustls 0.24.2", - "jsonrpsee-core 0.22.5", - "jsonrpsee-types 0.22.5", - "serde", - "serde_json", - "thiserror 1.0.69", - "tokio", - "tower", - "tracing", - "url", -] - [[package]] name = "jsonrpsee-proc-macros" version = "0.24.9" @@ -5017,7 +5065,7 @@ dependencies = [ "proc-macro-crate 3.3.0", "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] @@ -5032,13 +5080,13 @@ dependencies = [ "http-body-util", "hyper 1.6.0", "hyper-util", - "jsonrpsee-core 0.24.9", - "jsonrpsee-types 0.24.9", + "jsonrpsee-core", + "jsonrpsee-types", "pin-project", "route-recognizer", "serde", "serde_json", - "soketto 0.8.1", + "soketto", "thiserror 1.0.69", "tokio", "tokio-stream", @@ -5047,32 +5095,6 @@ dependencies = [ "tracing", ] -[[package]] -name = "jsonrpsee-types" -version = "0.22.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "150d6168405890a7a3231a3c74843f58b8959471f6df76078db2619ddee1d07d" -dependencies = [ - "anyhow", - "beef", - "serde", - "serde_json", - "thiserror 1.0.69", -] - -[[package]] -name = "jsonrpsee-types" -version = "0.23.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d9c465fbe385238e861fdc4d1c85e04ada6c1fd246161d26385c1b311724d2af" -dependencies = [ - "beef", - "http 1.3.1", - "serde", - "serde_json", - "thiserror 1.0.69", -] - [[package]] name = "jsonrpsee-types" version = "0.24.9" @@ -5087,14 +5109,14 @@ dependencies = [ [[package]] name = "jsonrpsee-ws-client" -version = "0.23.2" +version = "0.24.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1c28759775f5cb2f1ea9667672d3fe2b0e701d1f4b7b67954e60afe7fd058b5e" +checksum = "01b3323d890aa384f12148e8d2a1fd18eb66e9e7e825f9de4fa53bcc19b93eef" dependencies = [ "http 1.3.1", - "jsonrpsee-client-transport 0.23.2", - "jsonrpsee-core 0.23.2", - "jsonrpsee-types 0.23.2", + "jsonrpsee-client-transport", + "jsonrpsee-core", + "jsonrpsee-types", "url", ] @@ -5123,11 +5145,11 @@ dependencies = [ [[package]] name = "keccak-hash" -version = "0.10.0" +version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4b286e6b663fb926e1eeb68528e69cb70ed46c6d65871a21b2215ae8154c6d3c" +checksum = "3e1b8590eb6148af2ea2d75f38e7d29f5ca970d5a4df456b3ef19b8b415d0264" dependencies = [ - "primitive-types 0.12.2", + "primitive-types", "tiny-keccak", ] @@ -5209,16 +5231,15 @@ checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de" [[package]] name = "libp2p" -version = "0.52.4" +version = "0.54.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e94495eb319a85b70a68b85e2389a95bb3555c71c49025b78c691a854a7e6464" +checksum = "bbbe80f9c7e00526cd6b838075b9c171919404a4732cb2fa8ece0a093223bfc4" dependencies = [ "bytes", "either", "futures", "futures-timer", "getrandom 0.2.16", - "instant", "libp2p-allow-block-list", "libp2p-connection-limits", "libp2p-core", @@ -5235,7 +5256,6 @@ dependencies = [ "libp2p-swarm", "libp2p-tcp", "libp2p-upnp", - "libp2p-wasm-ext", "libp2p-websocket", "libp2p-yamux", "multiaddr 0.18.2", @@ -5246,9 +5266,9 @@ dependencies = [ [[package]] name = "libp2p-allow-block-list" -version = "0.2.0" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "55b46558c5c0bf99d3e2a1a38fd54ff5476ca66dd1737b12466a1824dd219311" +checksum = "d1027ccf8d70320ed77e984f273bc8ce952f623762cb9bf2d126df73caef8041" dependencies = [ "libp2p-core", "libp2p-identity", @@ -5258,9 +5278,9 @@ dependencies = [ [[package]] name = "libp2p-connection-limits" -version = "0.2.1" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2f5107ad45cb20b2f6c3628c7b6014b996fcb13a88053f4569c872c6e30abf58" +checksum = "8d003540ee8baef0d254f7b6bfd79bac3ddf774662ca0abf69186d517ef82ad8" dependencies = [ "libp2p-core", "libp2p-identity", @@ -5270,17 +5290,15 @@ dependencies = [ [[package]] name = "libp2p-core" -version = "0.40.1" +version = "0.42.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dd44289ab25e4c9230d9246c475a22241e301b23e8f4061d3bdef304a1a99713" +checksum = "a61f26c83ed111104cd820fe9bc3aaabbac5f1652a1d213ed6e900b7918a1298" dependencies = [ "either", "fnv", "futures", "futures-timer", - "instant", "libp2p-identity", - "log", "multiaddr 0.18.2", "multihash 0.19.3", "multistream-select", @@ -5292,33 +5310,35 @@ dependencies = [ "rw-stream-sink", "smallvec", "thiserror 1.0.69", - "unsigned-varint 0.7.2", + "tracing", + "unsigned-varint 0.8.0", "void", + "web-time", ] [[package]] name = "libp2p-dns" -version = "0.40.1" +version = "0.42.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e6a18db73084b4da2871438f6239fef35190b05023de7656e877c18a00541a3b" +checksum = "97f37f30d5c7275db282ecd86e54f29dd2176bd3ac656f06abf43bedb21eb8bd" dependencies = [ "async-trait", "futures", + "hickory-resolver 0.24.4", "libp2p-core", "libp2p-identity", - "log", "parking_lot 0.12.4", "smallvec", - "trust-dns-resolver", + "tracing", ] [[package]] name = "libp2p-identify" -version = "0.43.1" +version = "0.45.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "45a96638a0a176bec0a4bcaebc1afa8cf909b114477209d7456ade52c61cd9cd" +checksum = "1711b004a273be4f30202778856368683bd9a83c4c7dcc8f848847606831a4e3" dependencies = [ - "asynchronous-codec", + "asynchronous-codec 0.7.0", "either", "futures", "futures-bounded", @@ -5326,12 +5346,12 @@ dependencies = [ "libp2p-core", "libp2p-identity", "libp2p-swarm", - "log", "lru", "quick-protobuf", "quick-protobuf-codec", "smallvec", "thiserror 1.0.69", + "tracing", "void", ] @@ -5355,83 +5375,84 @@ dependencies = [ [[package]] name = "libp2p-kad" -version = "0.44.6" +version = "0.46.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "16ea178dabba6dde6ffc260a8e0452ccdc8f79becf544946692fff9d412fc29d" +checksum = "ced237d0bd84bbebb7c2cad4c073160dacb4fe40534963c32ed6d4c6bb7702a3" dependencies = [ "arrayvec 0.7.6", - "asynchronous-codec", + "asynchronous-codec 0.7.0", "bytes", "either", "fnv", "futures", + "futures-bounded", "futures-timer", - "instant", "libp2p-core", "libp2p-identity", "libp2p-swarm", - "log", "quick-protobuf", "quick-protobuf-codec", "rand 0.8.5", "sha2 0.10.9", "smallvec", "thiserror 1.0.69", + "tracing", "uint 0.9.5", - "unsigned-varint 0.7.2", "void", + "web-time", ] [[package]] name = "libp2p-mdns" -version = "0.44.0" +version = "0.46.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "42a2567c305232f5ef54185e9604579a894fd0674819402bb0ac0246da82f52a" +checksum = "14b8546b6644032565eb29046b42744aee1e9f261ed99671b2c93fb140dba417" dependencies = [ "data-encoding", "futures", + "hickory-proto 0.24.4", "if-watch", "libp2p-core", "libp2p-identity", "libp2p-swarm", - "log", "rand 0.8.5", "smallvec", - "socket2 0.5.10", + "socket2", "tokio", - "trust-dns-proto 0.22.0", + "tracing", "void", ] [[package]] name = "libp2p-metrics" -version = "0.13.1" +version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "239ba7d28f8d0b5d77760dc6619c05c7e88e74ec8fbbe97f856f20a56745e620" +checksum = "77ebafa94a717c8442d8db8d3ae5d1c6a15e30f2d347e0cd31d057ca72e42566" dependencies = [ - "instant", + "futures", "libp2p-core", "libp2p-identify", "libp2p-identity", "libp2p-kad", "libp2p-ping", "libp2p-swarm", - "once_cell", + "pin-project", "prometheus-client", + "web-time", ] [[package]] name = "libp2p-noise" -version = "0.43.2" +version = "0.45.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d2eeec39ad3ad0677551907dd304b2f13f17208ccebe333bef194076cd2e8921" +checksum = "36b137cb1ae86ee39f8e5d6245a296518912014eaa87427d24e6ff58cfc1b28c" dependencies = [ + "asynchronous-codec 0.7.0", "bytes", "curve25519-dalek", "futures", "libp2p-core", "libp2p-identity", - "log", "multiaddr 0.18.2", "multihash 0.19.3", "once_cell", @@ -5441,33 +5462,34 @@ dependencies = [ "snow", "static_assertions", "thiserror 1.0.69", + "tracing", "x25519-dalek", "zeroize", ] [[package]] name = "libp2p-ping" -version = "0.43.1" +version = "0.45.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e702d75cd0827dfa15f8fd92d15b9932abe38d10d21f47c50438c71dd1b5dae3" +checksum = "005a34420359223b974ee344457095f027e51346e992d1e0dcd35173f4cdd422" dependencies = [ "either", "futures", "futures-timer", - "instant", "libp2p-core", "libp2p-identity", "libp2p-swarm", - "log", "rand 0.8.5", + "tracing", "void", + "web-time", ] [[package]] name = "libp2p-quic" -version = "0.9.3" +version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "130d451d83f21b81eb7b35b360bc7972aeafb15177784adc56528db082e6b927" +checksum = "46352ac5cd040c70e88e7ff8257a2ae2f891a4076abad2c439584a31c15fd24e" dependencies = [ "bytes", "futures", @@ -5476,76 +5498,78 @@ dependencies = [ "libp2p-core", "libp2p-identity", "libp2p-tls", - "log", "parking_lot 0.12.4", "quinn", "rand 0.8.5", - "ring 0.16.20", - "rustls 0.21.12", - "socket2 0.5.10", + "ring 0.17.14", + "rustls", + "socket2", "thiserror 1.0.69", "tokio", + "tracing", ] [[package]] name = "libp2p-request-response" -version = "0.25.3" +version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d8e3b4d67870478db72bac87bfc260ee6641d0734e0e3e275798f089c3fecfd4" +checksum = "1356c9e376a94a75ae830c42cdaea3d4fe1290ba409a22c809033d1b7dcab0a6" dependencies = [ "async-trait", "futures", - "instant", + "futures-bounded", + "futures-timer", "libp2p-core", "libp2p-identity", "libp2p-swarm", - "log", "rand 0.8.5", "smallvec", + "tracing", "void", + "web-time", ] [[package]] name = "libp2p-swarm" -version = "0.43.7" +version = "0.45.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "580189e0074af847df90e75ef54f3f30059aedda37ea5a1659e8b9fca05c0141" +checksum = "d7dd6741793d2c1fb2088f67f82cf07261f25272ebe3c0b0c311e0c6b50e851a" dependencies = [ "either", "fnv", "futures", "futures-timer", - "instant", "libp2p-core", "libp2p-identity", "libp2p-swarm-derive", - "log", + "lru", "multistream-select", "once_cell", "rand 0.8.5", "smallvec", "tokio", + "tracing", "void", + "web-time", ] [[package]] name = "libp2p-swarm-derive" -version = "0.33.0" +version = "0.35.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c4d5ec2a3df00c7836d7696c136274c9c59705bac69133253696a6c932cd1d74" +checksum = "206e0aa0ebe004d778d79fb0966aa0de996c19894e2c0605ba2f8524dd4443d8" dependencies = [ - "heck 0.4.1", - "proc-macro-warning 0.4.2", + "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] name = "libp2p-tcp" -version = "0.40.1" +version = "0.42.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b558dd40d1bcd1aaaed9de898e9ec6a436019ecc2420dd0016e712fbb61c5508" +checksum = "ad964f312c59dcfcac840acd8c555de8403e295d39edf96f5240048b5fcaa314" dependencies = [ "futures", "futures-timer", @@ -5553,92 +5577,80 @@ dependencies = [ "libc", "libp2p-core", "libp2p-identity", - "log", - "socket2 0.5.10", + "socket2", "tokio", + "tracing", ] [[package]] name = "libp2p-tls" -version = "0.2.1" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8218d1d5482b122ccae396bbf38abdcb283ecc96fa54760e1dfd251f0546ac61" +checksum = "47b23dddc2b9c355f73c1e36eb0c3ae86f7dc964a3715f0731cfad352db4d847" dependencies = [ "futures", "futures-rustls", "libp2p-core", "libp2p-identity", "rcgen", - "ring 0.16.20", - "rustls 0.21.12", + "ring 0.17.14", + "rustls", "rustls-webpki 0.101.7", "thiserror 1.0.69", - "x509-parser 0.15.1", + "x509-parser 0.16.0", "yasna", ] [[package]] name = "libp2p-upnp" -version = "0.1.1" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "82775a47b34f10f787ad3e2a22e2c1541e6ebef4fe9f28f3ac553921554c94c1" +checksum = "01bf2d1b772bd3abca049214a3304615e6a36fa6ffc742bdd1ba774486200b8f" dependencies = [ "futures", "futures-timer", "igd-next", "libp2p-core", "libp2p-swarm", - "log", "tokio", + "tracing", "void", ] -[[package]] -name = "libp2p-wasm-ext" -version = "0.40.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e5d8e3a9e07da0ef5b55a9f26c009c8fb3c725d492d8bb4b431715786eea79c" -dependencies = [ - "futures", - "js-sys", - "libp2p-core", - "send_wrapper", - "wasm-bindgen", - "wasm-bindgen-futures", -] - [[package]] name = "libp2p-websocket" -version = "0.42.2" +version = "0.44.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "004ee9c4a4631435169aee6aad2f62e3984dc031c43b6d29731e8e82a016c538" +checksum = "888b2ff2e5d8dcef97283daab35ad1043d18952b65e05279eecbe02af4c6e347" dependencies = [ "either", "futures", "futures-rustls", "libp2p-core", "libp2p-identity", - "log", "parking_lot 0.12.4", "pin-project-lite", "rw-stream-sink", - "soketto 0.8.1", + "soketto", "thiserror 1.0.69", + "tracing", "url", - "webpki-roots 0.25.4", + "webpki-roots", ] [[package]] name = "libp2p-yamux" -version = "0.44.1" +version = "0.46.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8eedcb62824c4300efb9cfd4e2a6edaf3ca097b9e68b36dabe45a44469fd6a85" +checksum = "788b61c80789dba9760d8c669a5bedb642c8267555c803fabd8396e4ca5c5882" dependencies = [ + "either", "futures", "libp2p-core", - "log", "thiserror 1.0.69", + "tracing", "yamux 0.12.1", + "yamux 0.13.5", ] [[package]] @@ -5819,10 +5831,10 @@ dependencies = [ "ed25519-dalek", "futures", "futures-timer", - "hickory-resolver", + "hickory-resolver 0.25.2", "indexmap 2.9.0", "libc", - "mockall 0.13.1", + "mockall", "multiaddr 0.17.1", "multihash 0.17.0", "network-interface", @@ -5836,7 +5848,7 @@ dependencies = [ "simple-dns", "smallvec", "snow", - "socket2 0.5.10", + "socket2", "thiserror 2.0.12", "tokio", "tokio-stream", @@ -5900,6 +5912,12 @@ dependencies = [ "linked-hash-map", ] +[[package]] +name = "lru-slab" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154" + [[package]] name = "lz4" version = "1.28.1" @@ -5937,7 +5955,7 @@ dependencies = [ "macro_magic_core", "macro_magic_macros", "quote", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] @@ -5951,7 +5969,7 @@ dependencies = [ "macro_magic_core_macros", "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] @@ -5962,7 +5980,7 @@ checksum = "b02abfe41815b5bd98dbd4260173db2c116dda171dc0fe7838cb206333b83308" dependencies = [ "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] @@ -5973,7 +5991,7 @@ checksum = "73ea28ee64b88876bf45277ed9a5817c1817df061a74f2b988971a12570e5869" dependencies = [ "macro_magic_core", "quote", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] @@ -5989,7 +6007,7 @@ dependencies = [ "serde", "serde_derive", "serde_json", - "syn 2.0.101", + "syn 2.0.103", "toml_edit", ] @@ -6008,12 +6026,6 @@ dependencies = [ "regex-automata 0.1.10", ] -[[package]] -name = "matches" -version = "0.1.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5" - [[package]] name = "matrixmultiply" version = "0.3.10" @@ -6077,15 +6089,15 @@ dependencies = [ [[package]] name = "merkleized-metadata" -version = "0.2.0" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38c592efaf1b3250df14c8f3c2d952233f0302bb81d3586db2f303666c1cd607" +checksum = "dc9b7ac0ce054412d9a85ff39bac27aec27483b06cef8756b57d9c29d448d081" dependencies = [ "array-bytes", "blake3", - "frame-metadata 18.0.0", + "frame-metadata 20.0.0", "parity-scale-codec", - "scale-decode", + "scale-decode 0.13.1", "scale-info", ] @@ -6152,21 +6164,6 @@ dependencies = [ "zeroize", ] -[[package]] -name = "mockall" -version = "0.11.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4c84490118f2ee2d74570d114f3d0493cbf02790df303d2707606c3e14e07c96" -dependencies = [ - "cfg-if", - "downcast", - "fragile", - "lazy_static", - "mockall_derive 0.11.4", - "predicates 2.1.5", - "predicates-tree", -] - [[package]] name = "mockall" version = "0.13.1" @@ -6176,23 +6173,11 @@ dependencies = [ "cfg-if", "downcast", "fragile", - "mockall_derive 0.13.1", - "predicates 3.1.3", + "mockall_derive", + "predicates", "predicates-tree", ] -[[package]] -name = "mockall_derive" -version = "0.11.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22ce75669015c4f47b289fd4d4f56e894e4c96003ffdf3ac51313126f94c6cbb" -dependencies = [ - "cfg-if", - "proc-macro2", - "quote", - "syn 1.0.109", -] - [[package]] name = "mockall_derive" version = "0.13.1" @@ -6202,7 +6187,7 @@ dependencies = [ "cfg-if", "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] @@ -6224,6 +6209,12 @@ dependencies = [ "uuid", ] +[[package]] +name = "multi-stash" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "685a9ac4b61f4e728e1d2c6a7844609c16527aeb5e6c865915c08e619c16410f" + [[package]] name = "multiaddr" version = "0.17.1" @@ -6474,12 +6465,6 @@ version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b93853da6d84c2e3c7d730d6473e8817692dd89be387eb01b94d7f108ecb5b8c" -[[package]] -name = "no-std-net" -version = "0.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "43794a0ace135be66a25d3ae77d41b91615fb68ae937f904090203e81f755b65" - [[package]] name = "nodrop" version = "0.1.14" @@ -6514,12 +6499,6 @@ version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "38bf9645c8b145698bb0b18a4637dcacbc421ea49bef2317e4fd8065a387cf21" -[[package]] -name = "normalize-line-endings" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be" - [[package]] name = "nu-ansi-term" version = "0.46.0" @@ -6569,6 +6548,17 @@ version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" +[[package]] +name = "num-derive" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.103", +] + [[package]] name = "num-format" version = "0.4.4" @@ -6645,10 +6635,10 @@ version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "af1844ef2428cc3e1cb900be36181049ef3d3193c63e43026cfe202983b27a56" dependencies = [ - "proc-macro-crate 3.3.0", + "proc-macro-crate 1.1.3", "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] @@ -6663,15 +6653,6 @@ dependencies = [ "memchr", ] -[[package]] -name = "object" -version = "0.32.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441" -dependencies = [ - "memchr", -] - [[package]] name = "object" version = "0.36.7" @@ -6683,11 +6664,11 @@ dependencies = [ [[package]] name = "oid-registry" -version = "0.6.1" +version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9bedf36ffb6ba96c2eb7144ef6270557b52e54b20c0a8e1eb2ff99a6c6959bff" +checksum = "a8d8034d9489cdaf79228eb9f6a3b8d7bb32ba00d6645ebd48eef4077ceb5bd9" dependencies = [ - "asn1-rs 0.5.2", + "asn1-rs 0.6.2", ] [[package]] @@ -6750,7 +6731,7 @@ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" dependencies = [ "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] @@ -6803,7 +6784,7 @@ dependencies = [ "expander", "indexmap 2.9.0", "itertools 0.11.0", - "petgraph 0.6.5", + "petgraph", "proc-macro-crate 3.3.0", "proc-macro2", "quote", @@ -6818,8 +6799,8 @@ checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" [[package]] name = "pallet-aura" -version = "38.1.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "39.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "frame-support", "frame-system", @@ -6834,8 +6815,8 @@ dependencies = [ [[package]] name = "pallet-authorship" -version = "39.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "40.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "frame-support", "frame-system", @@ -6847,8 +6828,8 @@ dependencies = [ [[package]] name = "pallet-babe" -version = "39.1.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "40.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "frame-benchmarking", "frame-support", @@ -6870,8 +6851,8 @@ dependencies = [ [[package]] name = "pallet-balances" -version = "40.1.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "41.1.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "docify", "frame-benchmarking", @@ -6880,6 +6861,7 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", + "sp-core", "sp-runtime", ] @@ -6993,9 +6975,9 @@ name = "pallet-evm-precompile-bls12377" version = "1.0.0-dev" dependencies = [ "ark-bls12-377", - "ark-ec", - "ark-ff", - "ark-std", + "ark-ec 0.4.2", + "ark-ff 0.4.2", + "ark-std 0.4.0", "fp-evm", "pallet-evm-test-vector-support", "paste", @@ -7005,10 +6987,10 @@ dependencies = [ name = "pallet-evm-precompile-bls12381" version = "1.0.0-dev" dependencies = [ - "ark-bls12-381", - "ark-ec", - "ark-ff", - "ark-std", + "ark-bls12-381 0.4.0", + "ark-ec 0.4.2", + "ark-ff 0.4.2", + "ark-std 0.4.0", "fp-evm", "pallet-evm-test-vector-support", ] @@ -7028,9 +7010,9 @@ name = "pallet-evm-precompile-bw6761" version = "1.0.0-dev" dependencies = [ "ark-bw6-761", - "ark-ec", - "ark-ff", - "ark-std", + "ark-ec 0.4.2", + "ark-ff 0.4.2", + "ark-std 0.4.0", "fp-evm", "pallet-evm-test-vector-support", ] @@ -7111,8 +7093,8 @@ dependencies = [ [[package]] name = "pallet-grandpa" -version = "39.1.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "40.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "frame-benchmarking", "frame-support", @@ -7148,8 +7130,8 @@ dependencies = [ [[package]] name = "pallet-session" -version = "39.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "40.0.1" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "frame-support", "frame-system", @@ -7169,8 +7151,8 @@ dependencies = [ [[package]] name = "pallet-sudo" -version = "39.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "40.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "docify", "frame-benchmarking", @@ -7184,8 +7166,8 @@ dependencies = [ [[package]] name = "pallet-timestamp" -version = "38.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "39.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "docify", "frame-benchmarking", @@ -7203,8 +7185,8 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" -version = "39.1.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "40.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "frame-benchmarking", "frame-support", @@ -7219,10 +7201,10 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" -version = "42.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "43.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ - "jsonrpsee 0.24.9", + "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", "parity-scale-codec", "sp-api", @@ -7235,8 +7217,8 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" -version = "39.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "40.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -7247,8 +7229,8 @@ dependencies = [ [[package]] name = "pallet-utility" -version = "39.1.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "40.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "frame-benchmarking", "frame-support", @@ -7266,7 +7248,7 @@ version = "2.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4e69bf016dc406eff7d53a7d3f7cf1c2e72c82b9088aac1118591e36dd2cd3e9" dependencies = [ - "bitcoin_hashes", + "bitcoin_hashes 0.13.0", "rand 0.8.5", "rand_core 0.6.4", "serde", @@ -7320,7 +7302,7 @@ dependencies = [ "proc-macro-crate 3.3.0", "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] @@ -7413,6 +7395,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2" dependencies = [ "digest 0.10.7", + "hmac 0.12.1", "password-hash", ] @@ -7424,11 +7407,12 @@ checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099" [[package]] name = "pem" -version = "1.1.1" +version = "3.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a8835c273a76a90455d7344889b0964598e3316e2a79ede8e36f16bdcf2228b8" +checksum = "38af38e8470ac9dee3ce1bae1af9c1671fffc44ddfd8bd1d0a3445bf349a8ef3" dependencies = [ - "base64 0.13.1", + "base64 0.22.1", + "serde", ] [[package]] @@ -7468,7 +7452,7 @@ dependencies = [ "pest_meta", "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] @@ -7488,17 +7472,7 @@ version = "0.6.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db" dependencies = [ - "fixedbitset 0.4.2", - "indexmap 2.9.0", -] - -[[package]] -name = "petgraph" -version = "0.7.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3672b37090dbd86368a4145bc067582552b29c27377cad4e0a306c97f9bd7772" -dependencies = [ - "fixedbitset 0.5.7", + "fixedbitset", "indexmap 2.9.0", ] @@ -7519,7 +7493,7 @@ checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861" dependencies = [ "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] @@ -7563,8 +7537,8 @@ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" [[package]] name = "polkadot-core-primitives" -version = "16.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "17.1.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "parity-scale-codec", "scale-info", @@ -7574,13 +7548,12 @@ dependencies = [ [[package]] name = "polkadot-node-metrics" -version = "21.1.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "22.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "bs58", "futures", "futures-timer", - "log", "parity-scale-codec", "polkadot-primitives", "prioritized-metered-channel", @@ -7588,13 +7561,12 @@ dependencies = [ "sc-service", "sc-tracing", "substrate-prometheus-endpoint", - "tracing-gum", ] [[package]] name = "polkadot-node-network-protocol" -version = "21.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "22.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "async-channel 1.9.0", "async-trait", @@ -7618,8 +7590,8 @@ dependencies = [ [[package]] name = "polkadot-node-primitives" -version = "17.0.1" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "19.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "bitvec", "bounded-vec", @@ -7634,21 +7606,18 @@ dependencies = [ "sp-application-crypto", "sp-consensus-babe", "sp-consensus-slots", - "sp-core", "sp-keystore", "sp-maybe-compressed-blob", - "sp-runtime", "thiserror 1.0.69", "zstd 0.12.4", ] [[package]] name = "polkadot-node-subsystem-types" -version = "21.0.1" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "22.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "async-trait", - "bitvec", "derive_more 0.99.20", "fatality", "futures", @@ -7673,21 +7642,19 @@ dependencies = [ [[package]] name = "polkadot-overseer" -version = "21.1.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "22.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "async-trait", "futures", "futures-timer", "orchestra", - "parking_lot 0.12.4", "polkadot-node-metrics", "polkadot-node-network-protocol", "polkadot-node-primitives", "polkadot-node-subsystem-types", "polkadot-primitives", "sc-client-api", - "sp-api", "sp-core", "tikv-jemalloc-ctl", "tracing-gum", @@ -7695,8 +7662,8 @@ dependencies = [ [[package]] name = "polkadot-parachain-primitives" -version = "15.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "16.1.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "bounded-collections", "derive_more 0.99.20", @@ -7711,8 +7678,8 @@ dependencies = [ [[package]] name = "polkadot-primitives" -version = "17.1.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "18.1.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "bitvec", "hex-literal", @@ -7737,22 +7704,30 @@ dependencies = [ "thiserror 1.0.69", ] +[[package]] +name = "polkadot-sdk" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eb819108697967452fa6d8d96ab4c0d48cbaa423b3156499dcb24f1cf95d6775" +dependencies = [ + "sp-crypto-hashing 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "polkadot-statement-table" -version = "17.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "19.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "parity-scale-codec", "polkadot-primitives", - "sp-core", "tracing-gum", ] [[package]] name = "polkavm" -version = "0.9.3" +version = "0.18.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8a3693e5efdb2bf74e449cd25fd777a28bd7ed87e41f5d5da75eb31b4de48b94" +checksum = "dd044ab1d3b11567ab6b98ca71259a992b4034220d5972988a0e96518e5d343d" dependencies = [ "libc", "log", @@ -7763,63 +7738,65 @@ dependencies = [ [[package]] name = "polkavm-assembler" -version = "0.9.0" +version = "0.18.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1fa96d6d868243acc12de813dd48e756cbadcc8e13964c70d272753266deadc1" +checksum = "eaad38dc420bfed79e6f731471c973ce5ff5e47ab403e63cf40358fef8a6368f" dependencies = [ "log", ] [[package]] name = "polkavm-common" -version = "0.9.0" +version = "0.18.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1d9428a5cfcc85c5d7b9fc4b6a18c4b802d0173d768182a51cc7751640f08b92" +checksum = "31ff33982a807d8567645d4784b9b5d7ab87bcb494f534a57cadd9012688e102" dependencies = [ "log", + "polkavm-assembler", ] [[package]] name = "polkavm-derive" -version = "0.9.1" +version = "0.18.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ae8c4bea6f3e11cd89bb18bcdddac10bd9a24015399bd1c485ad68a985a19606" +checksum = "c2eb703f3b6404c13228402e98a5eae063fd16b8f58afe334073ec105ee4117e" dependencies = [ "polkavm-derive-impl-macro", ] [[package]] name = "polkavm-derive-impl" -version = "0.9.0" +version = "0.18.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c4fdfc49717fb9a196e74a5d28e0bc764eb394a2c803eb11133a31ac996c60c" +checksum = "2f2116a92e6e96220a398930f4c8a6cda1264206f3e2034fc9982bfd93f261f7" dependencies = [ "polkavm-common", "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] name = "polkavm-derive-impl-macro" -version = "0.9.0" +version = "0.18.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ba81f7b5faac81e528eb6158a6f3c9e0bb1008e0ffa19653bc8dea925ecb429" +checksum = "48c16669ddc7433e34c1007d31080b80901e3e8e523cb9d4b441c3910cf9294b" dependencies = [ "polkavm-derive-impl", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] name = "polkavm-linker" -version = "0.9.2" +version = "0.18.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c7be503e60cf56c0eb785f90aaba4b583b36bff00e93997d93fef97f9553c39" +checksum = "e9bfe793b094d9ea5c99b7c43ba46e277b0f8f48f4bbfdbabf8d3ebf701a4bd3" dependencies = [ - "gimli 0.28.1", + "dirs", + "gimli 0.31.1", "hashbrown 0.14.5", "log", - "object 0.32.2", + "object 0.36.7", "polkavm-common", "regalloc2 0.9.3", "rustc-demangle", @@ -7827,9 +7804,9 @@ dependencies = [ [[package]] name = "polkavm-linux-raw" -version = "0.9.0" +version = "0.18.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26e85d3456948e650dff0cfc85603915847faf893ed1e66b020bb82ef4557120" +checksum = "23eff02c070c70f31878a3d915e88a914ecf3e153741e2fb572dde28cce20fde" [[package]] name = "polling" @@ -7940,8 +7917,8 @@ dependencies = [ "prettyplease", "proc-macro2", "quote", - "sp-crypto-hashing 0.1.0 (git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches)", - "syn 2.0.101", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6)", + "syn 2.0.103", "trybuild", ] @@ -7965,20 +7942,6 @@ dependencies = [ "sp-runtime", ] -[[package]] -name = "predicates" -version = "2.1.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "59230a63c37f3e18569bdb90e4a89cbf5bf8b06fea0b84e65ea10cc4df47addd" -dependencies = [ - "difflib", - "float-cmp", - "itertools 0.10.5", - "normalize-line-endings", - "predicates-core", - "regex", -] - [[package]] name = "predicates" version = "3.1.3" @@ -8007,25 +7970,12 @@ dependencies = [ [[package]] name = "prettyplease" -version = "0.2.33" +version = "0.2.34" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9dee91521343f4c5c6a63edd65e54f31f5c92fe8978c40a4282f8372194c6a7d" +checksum = "6837b9e10d61f45f987d50808f83d1ee3d206c66acf650c3e4ae2e1f6ddedf55" dependencies = [ "proc-macro2", - "syn 2.0.101", -] - -[[package]] -name = "primitive-types" -version = "0.12.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b34d9fd68ae0b74a41b21c03c2f62847aa0ffea044eee893b4c140b37e244e2" -dependencies = [ - "fixed-hash", - "impl-codec 0.6.0", - "impl-serde 0.4.0", - "scale-info", - "uint 0.9.5", + "syn 2.0.103", ] [[package]] @@ -8035,10 +7985,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d15600a7d856470b7d278b3fe0e311fe28c2526348549f8ef2ff7db3299c87f5" dependencies = [ "fixed-hash", - "impl-codec 0.7.1", + "impl-codec", "impl-num-traits", "impl-rlp", - "impl-serde 0.5.0", + "impl-serde", "scale-info", "uint 0.10.0", ] @@ -8103,14 +8053,25 @@ dependencies = [ ] [[package]] -name = "proc-macro-warning" -version = "0.4.2" +name = "proc-macro-error-attr2" +version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3d1eaa7fa0aa1929ffdf7eeb6eac234dde6268914a14ad44d23521ab6a9b258e" +checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5" dependencies = [ "proc-macro2", "quote", - "syn 2.0.101", +] + +[[package]] +name = "proc-macro-error2" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802" +dependencies = [ + "proc-macro-error-attr2", + "proc-macro2", + "quote", + "syn 2.0.103", ] [[package]] @@ -8121,7 +8082,7 @@ checksum = "75eea531cfcd120e0851a3f8aed42c4841f78c889eefafd96339c72677ae42c3" dependencies = [ "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] @@ -8149,9 +8110,9 @@ dependencies = [ [[package]] name = "prometheus-client" -version = "0.21.2" +version = "0.22.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c99afa9a01501019ac3a14d71d9f94050346f55ca471ce90c799a15c58f61e2" +checksum = "504ee9ff529add891127c4827eb481bd69dc0ebc72e9a682e187db4caa60c3ca" dependencies = [ "dtoa", "itoa", @@ -8167,7 +8128,7 @@ checksum = "440f724eba9f6996b75d63681b0a92b06947f1457076d503a4d2e2c8f56442b8" dependencies = [ "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] @@ -8217,12 +8178,12 @@ dependencies = [ "log", "multimap", "once_cell", - "petgraph 0.7.1", + "petgraph", "prettyplease", "prost 0.13.5", "prost-types", "regex", - "syn 2.0.101", + "syn 2.0.103", "tempfile", ] @@ -8236,7 +8197,7 @@ dependencies = [ "itertools 0.12.1", "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] @@ -8249,7 +8210,7 @@ dependencies = [ "itertools 0.14.0", "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] @@ -8296,63 +8257,71 @@ dependencies = [ [[package]] name = "quick-protobuf-codec" -version = "0.2.0" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f8ededb1cd78531627244d51dd0c7139fbe736c7d57af0092a76f0ffb2f56e98" +checksum = "15a0580ab32b169745d7a39db2ba969226ca16738931be152a3209b409de2474" dependencies = [ - "asynchronous-codec", + "asynchronous-codec 0.7.0", "bytes", "quick-protobuf", "thiserror 1.0.69", - "unsigned-varint 0.7.2", + "unsigned-varint 0.8.0", ] [[package]] name = "quinn" -version = "0.10.2" +version = "0.11.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8cc2c5017e4b43d5995dcea317bc46c1e09404c0a9664d2908f7f02dfe943d75" +checksum = "626214629cda6781b6dc1d316ba307189c85ba657213ce642d9c77670f8202c8" dependencies = [ "bytes", + "cfg_aliases 0.2.1", "futures-io", "pin-project-lite", "quinn-proto", "quinn-udp", - "rustc-hash 1.1.0", - "rustls 0.21.12", - "thiserror 1.0.69", + "rustc-hash 2.1.1", + "rustls", + "socket2", + "thiserror 2.0.12", "tokio", "tracing", + "web-time", ] [[package]] name = "quinn-proto" -version = "0.10.6" +version = "0.11.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "141bf7dfde2fbc246bfd3fe12f2455aa24b0fbd9af535d8c86c7bd1381ff2b1a" +checksum = "49df843a9161c85bb8aae55f101bc0bac8bcafd637a620d9122fd7e0b2f7422e" dependencies = [ "bytes", - "rand 0.8.5", - "ring 0.16.20", - "rustc-hash 1.1.0", - "rustls 0.21.12", + "getrandom 0.3.3", + "lru-slab", + "rand 0.9.1", + "ring 0.17.14", + "rustc-hash 2.1.1", + "rustls", + "rustls-pki-types", "slab", - "thiserror 1.0.69", + "thiserror 2.0.12", "tinyvec", "tracing", + "web-time", ] [[package]] name = "quinn-udp" -version = "0.4.1" +version = "0.5.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "055b4e778e8feb9f93c4e439f71dc2156ef13360b432b799e179a8c4cdf0b1d7" +checksum = "ee4e529991f949c5e25755532370b8af5d114acae52326361d68d47af64aa842" dependencies = [ - "bytes", + "cfg_aliases 0.2.1", "libc", - "socket2 0.5.10", + "once_cell", + "socket2", "tracing", - "windows-sys 0.48.0", + "windows-sys 0.59.0", ] [[package]] @@ -8500,9 +8469,9 @@ dependencies = [ [[package]] name = "rcgen" -version = "0.10.0" +version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ffbe84efe2f38dea12e9bfc1f65377fdf03e53a18cb3b995faedf7934c7e785b" +checksum = "52c4f3084aa3bc7dfbba4eff4fab2a54db4324965d8872ab933565e6fbd83bc6" dependencies = [ "pem", "ring 0.16.20", @@ -8510,22 +8479,6 @@ dependencies = [ "yasna", ] -[[package]] -name = "reconnecting-jsonrpsee-ws-client" -version = "0.4.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "06fa4f17e09edfc3131636082faaec633c7baa269396b4004040bc6c52f49f65" -dependencies = [ - "cfg_aliases 0.2.1", - "finito", - "futures", - "jsonrpsee 0.23.2", - "serde_json", - "thiserror 1.0.69", - "tokio", - "tracing", -] - [[package]] name = "redox_syscall" version = "0.2.16" @@ -8572,7 +8525,7 @@ checksum = "1165225c21bff1f3bbce98f5a1f889949bc902d3575308cc7b0de30b4f6d27c7" dependencies = [ "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] @@ -8717,7 +8670,7 @@ checksum = "652db34deaaa57929e10ca18e5454a32cb0efc351ae80d320334bbf907b908b3" dependencies = [ "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] @@ -8841,7 +8794,7 @@ dependencies = [ "errno", "libc", "linux-raw-sys 0.4.15", - "windows-sys 0.59.0", + "windows-sys 0.52.0", ] [[package]] @@ -8857,32 +8810,6 @@ dependencies = [ "windows-sys 0.59.0", ] -[[package]] -name = "rustls" -version = "0.21.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e" -dependencies = [ - "log", - "ring 0.17.14", - "rustls-webpki 0.101.7", - "sct", -] - -[[package]] -name = "rustls" -version = "0.22.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bf4ef73721ac7bcd79b2b315da7779d8fc09718c6b3d2d1b2d94850eb8c18432" -dependencies = [ - "log", - "ring 0.17.14", - "rustls-pki-types", - "rustls-webpki 0.102.8", - "subtle 2.6.1", - "zeroize", -] - [[package]] name = "rustls" version = "0.23.27" @@ -8898,31 +8825,6 @@ dependencies = [ "zeroize", ] -[[package]] -name = "rustls-native-certs" -version = "0.6.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a9aace74cb666635c918e9c12bc0d348266037aa8eb599b5cba565709a8dff00" -dependencies = [ - "openssl-probe", - "rustls-pemfile 1.0.4", - "schannel", - "security-framework 2.11.1", -] - -[[package]] -name = "rustls-native-certs" -version = "0.7.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e5bfb394eeed242e909609f56089eecfe5fda225042e8b171791b9c95f5931e5" -dependencies = [ - "openssl-probe", - "rustls-pemfile 2.2.0", - "rustls-pki-types", - "schannel", - "security-framework 2.11.1", -] - [[package]] name = "rustls-native-certs" version = "0.8.1" @@ -8935,52 +8837,35 @@ dependencies = [ "security-framework 3.2.0", ] -[[package]] -name = "rustls-pemfile" -version = "1.0.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" -dependencies = [ - "base64 0.21.7", -] - -[[package]] -name = "rustls-pemfile" -version = "2.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50" -dependencies = [ - "rustls-pki-types", -] - [[package]] name = "rustls-pki-types" version = "1.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79" dependencies = [ + "web-time", "zeroize", ] [[package]] name = "rustls-platform-verifier" -version = "0.3.4" +version = "0.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "afbb878bdfdf63a336a5e63561b1835e7a8c91524f51621db870169eac84b490" +checksum = "19787cda76408ec5404443dc8b31795c87cd8fec49762dc75fa727740d34acc1" dependencies = [ - "core-foundation 0.9.4", + "core-foundation 0.10.1", "core-foundation-sys", "jni", "log", "once_cell", - "rustls 0.23.27", - "rustls-native-certs 0.7.3", + "rustls", + "rustls-native-certs", "rustls-platform-verifier-android", - "rustls-webpki 0.102.8", - "security-framework 2.11.1", + "rustls-webpki 0.103.3", + "security-framework 3.2.0", "security-framework-sys", - "webpki-roots 0.26.11", - "winapi", + "webpki-root-certs 0.26.11", + "windows-sys 0.59.0", ] [[package]] @@ -8999,17 +8884,6 @@ dependencies = [ "untrusted 0.9.0", ] -[[package]] -name = "rustls-webpki" -version = "0.102.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9" -dependencies = [ - "ring 0.17.14", - "rustls-pki-types", - "untrusted 0.9.0", -] - [[package]] name = "rustls-webpki" version = "0.103.3" @@ -9029,13 +8903,12 @@ checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d" [[package]] name = "ruzstd" -version = "0.5.0" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "58c4eb8a81997cf040a091d1f7e1938aeab6749d3a0dfa73af43cdc32393483d" +checksum = "5174a470eeb535a721ae9fdd6e291c2411a906b96592182d05217591d5c5cf7b" dependencies = [ "byteorder", "derive_more 0.99.20", - "twox-hash", ] [[package]] @@ -9064,6 +8937,15 @@ dependencies = [ "bytemuck", ] +[[package]] +name = "salsa20" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "97a22f5af31f73a954c10289c93e8a50cc23d971e80ee446f1f6f7137a088213" +dependencies = [ + "cipher 0.4.4", +] + [[package]] name = "same-file" version = "1.0.6" @@ -9075,8 +8957,8 @@ dependencies = [ [[package]] name = "sc-allocator" -version = "30.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "31.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "log", "sp-core", @@ -9086,17 +8968,15 @@ dependencies = [ [[package]] name = "sc-authority-discovery" -version = "0.48.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "0.49.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "async-trait", "futures", "futures-timer", "ip_network", - "libp2p", "linked_hash_set", "log", - "multihash 0.19.3", "parity-scale-codec", "prost 0.12.6", "prost-build", @@ -9116,11 +8996,10 @@ dependencies = [ [[package]] name = "sc-basic-authorship" -version = "0.48.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "0.49.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "futures", - "futures-timer", "log", "parity-scale-codec", "sc-block-builder", @@ -9138,8 +9017,8 @@ dependencies = [ [[package]] name = "sc-block-builder" -version = "0.43.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "0.44.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "parity-scale-codec", "sp-api", @@ -9153,12 +9032,11 @@ dependencies = [ [[package]] name = "sc-chain-spec" -version = "41.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "42.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "array-bytes", "docify", - "log", "memmap2 0.9.5", "parity-scale-codec", "sc-chain-spec-derive", @@ -9170,7 +9048,7 @@ dependencies = [ "serde_json", "sp-blockchain", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6)", "sp-genesis-builder", "sp-io", "sp-runtime", @@ -9181,18 +9059,18 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "12.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "proc-macro-crate 3.3.0", "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] name = "sc-cli" -version = "0.50.1" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "0.51.1" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "array-bytes", "chrono", @@ -9233,8 +9111,8 @@ dependencies = [ [[package]] name = "sc-client-api" -version = "38.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "39.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "fnv", "futures", @@ -9252,7 +9130,6 @@ dependencies = [ "sp-externalities", "sp-runtime", "sp-state-machine", - "sp-statement-store", "sp-storage", "sp-trie", "substrate-prometheus-endpoint", @@ -9260,8 +9137,8 @@ dependencies = [ [[package]] name = "sc-client-db" -version = "0.45.1" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "0.46.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "hash-db", "kvdb", @@ -9286,19 +9163,18 @@ dependencies = [ [[package]] name = "sc-consensus" -version = "0.47.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "0.48.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "async-trait", "futures", "log", - "mockall 0.11.4", + "mockall", "parking_lot 0.12.4", "sc-client-api", "sc-network-types", "sc-utils", "serde", - "sp-api", "sp-blockchain", "sp-consensus", "sp-core", @@ -9310,8 +9186,8 @@ dependencies = [ [[package]] name = "sc-consensus-aura" -version = "0.48.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "0.49.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "async-trait", "futures", @@ -9339,8 +9215,8 @@ dependencies = [ [[package]] name = "sc-consensus-babe" -version = "0.48.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "0.49.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "async-trait", "fork-tree", @@ -9365,7 +9241,7 @@ dependencies = [ "sp-consensus-babe", "sp-consensus-slots", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6)", "sp-inherents", "sp-keystore", "sp-runtime", @@ -9375,8 +9251,8 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" -version = "0.47.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "0.48.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "fork-tree", "parity-scale-codec", @@ -9388,8 +9264,8 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa" -version = "0.33.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "0.34.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "ahash", "array-bytes", @@ -9423,7 +9299,7 @@ dependencies = [ "sp-consensus", "sp-consensus-grandpa", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6)", "sp-keystore", "sp-runtime", "substrate-prometheus-endpoint", @@ -9432,14 +9308,14 @@ dependencies = [ [[package]] name = "sc-consensus-manual-seal" -version = "0.49.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "0.50.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "assert_matches", "async-trait", "futures", "futures-timer", - "jsonrpsee 0.24.9", + "jsonrpsee", "log", "parity-scale-codec", "sc-client-api", @@ -9467,8 +9343,8 @@ dependencies = [ [[package]] name = "sc-consensus-slots" -version = "0.47.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "0.48.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "async-trait", "futures", @@ -9477,7 +9353,6 @@ dependencies = [ "parity-scale-codec", "sc-client-api", "sc-consensus", - "sc-consensus-epochs", "sc-telemetry", "sp-arithmetic", "sp-blockchain", @@ -9491,8 +9366,8 @@ dependencies = [ [[package]] name = "sc-executor" -version = "0.41.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "0.42.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "parity-scale-codec", "parking_lot 0.12.4", @@ -9514,8 +9389,8 @@ dependencies = [ [[package]] name = "sc-executor-common" -version = "0.36.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "0.38.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "polkavm", "sc-allocator", @@ -9527,8 +9402,8 @@ dependencies = [ [[package]] name = "sc-executor-polkavm" -version = "0.33.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "0.35.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "log", "polkavm", @@ -9538,12 +9413,10 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" -version = "0.36.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "0.38.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "anyhow", - "cfg-if", - "libc", "log", "parking_lot 0.12.4", "rustix 0.36.17", @@ -9556,8 +9429,8 @@ dependencies = [ [[package]] name = "sc-informant" -version = "0.47.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "0.48.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "console", "futures", @@ -9565,7 +9438,6 @@ dependencies = [ "log", "sc-client-api", "sc-network", - "sc-network-common", "sc-network-sync", "sp-blockchain", "sp-runtime", @@ -9573,8 +9445,8 @@ dependencies = [ [[package]] name = "sc-keystore" -version = "34.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "35.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "array-bytes", "parking_lot 0.12.4", @@ -9587,8 +9459,8 @@ dependencies = [ [[package]] name = "sc-mixnet" -version = "0.18.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "0.19.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "array-bytes", "arrayvec 0.7.6", @@ -9598,7 +9470,6 @@ dependencies = [ "futures-timer", "log", "mixnet", - "multiaddr 0.18.2", "parity-scale-codec", "parking_lot 0.12.4", "sc-client-api", @@ -9616,13 +9487,13 @@ dependencies = [ [[package]] name = "sc-network" -version = "0.48.4" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "0.49.2" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "array-bytes", "async-channel 1.9.0", "async-trait", - "asynchronous-codec", + "asynchronous-codec 0.6.2", "bytes", "cid 0.9.0", "either", @@ -9634,8 +9505,7 @@ dependencies = [ "linked_hash_set", "litep2p", "log", - "mockall 0.11.4", - "once_cell", + "mockall", "parity-scale-codec", "parking_lot 0.12.4", "partial_sort", @@ -9667,26 +9537,18 @@ dependencies = [ [[package]] name = "sc-network-common" -version = "0.47.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "0.48.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ - "async-trait", "bitflags 1.3.2", - "futures", - "libp2p-identity", "parity-scale-codec", - "prost-build", - "sc-consensus", - "sc-network-types", - "sp-consensus", - "sp-consensus-grandpa", "sp-runtime", ] [[package]] name = "sc-network-gossip" -version = "0.48.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "0.49.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "ahash", "futures", @@ -9704,8 +9566,8 @@ dependencies = [ [[package]] name = "sc-network-light" -version = "0.47.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "0.48.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -9725,17 +9587,16 @@ dependencies = [ [[package]] name = "sc-network-sync" -version = "0.47.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "0.48.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "array-bytes", "async-channel 1.9.0", "async-trait", "fork-tree", "futures", - "futures-timer", "log", - "mockall 0.11.4", + "mockall", "parity-scale-codec", "prost 0.12.6", "prost-build", @@ -9761,8 +9622,8 @@ dependencies = [ [[package]] name = "sc-network-transactions" -version = "0.47.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "0.48.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "array-bytes", "futures", @@ -9780,12 +9641,14 @@ dependencies = [ [[package]] name = "sc-network-types" -version = "0.15.2" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "0.15.4" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "bs58", + "bytes", "ed25519-dalek", "libp2p-identity", + "libp2p-kad", "litep2p", "log", "multiaddr 0.18.2", @@ -9797,28 +9660,25 @@ dependencies = [ [[package]] name = "sc-offchain" -version = "43.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "44.0.1" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ - "array-bytes", "bytes", "fnv", "futures", "futures-timer", "http-body-util", "hyper 1.6.0", - "hyper-rustls 0.27.7", + "hyper-rustls", "hyper-util", - "log", "num_cpus", "once_cell", "parity-scale-codec", "parking_lot 0.12.4", "rand 0.8.5", - "rustls 0.23.27", + "rustls", "sc-client-api", "sc-network", - "sc-network-common", "sc-network-types", "sc-transaction-pool-api", "sc-utils", @@ -9834,8 +9694,8 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" -version = "0.18.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "0.20.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -9843,11 +9703,11 @@ dependencies = [ [[package]] name = "sc-rpc" -version = "43.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "44.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "futures", - "jsonrpsee 0.24.9", + "jsonrpsee", "log", "parity-scale-codec", "parking_lot 0.12.4", @@ -9875,10 +9735,10 @@ dependencies = [ [[package]] name = "sc-rpc-api" -version = "0.47.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "0.48.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ - "jsonrpsee 0.24.9", + "jsonrpsee", "parity-scale-codec", "sc-chain-spec", "sc-mixnet", @@ -9895,8 +9755,8 @@ dependencies = [ [[package]] name = "sc-rpc-server" -version = "20.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "21.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "dyn-clone", "forwarded-header-value", @@ -9906,7 +9766,7 @@ dependencies = [ "http-body-util", "hyper 1.6.0", "ip_network", - "jsonrpsee 0.24.9", + "jsonrpsee", "log", "sc-rpc-api", "serde", @@ -9919,15 +9779,15 @@ dependencies = [ [[package]] name = "sc-rpc-spec-v2" -version = "0.48.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "0.49.1" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "array-bytes", "futures", "futures-util", "hex", "itertools 0.11.0", - "jsonrpsee 0.24.9", + "jsonrpsee", "log", "parity-scale-codec", "parking_lot 0.12.4", @@ -9949,17 +9809,32 @@ dependencies = [ "tokio-stream", ] +[[package]] +name = "sc-runtime-utilities" +version = "0.2.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" +dependencies = [ + "parity-scale-codec", + "sc-executor", + "sc-executor-common", + "sp-core", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6)", + "sp-state-machine", + "sp-wasm-interface", + "thiserror 1.0.69", +] + [[package]] name = "sc-service" -version = "0.49.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "0.50.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "async-trait", "directories", "exit-future", "futures", "futures-timer", - "jsonrpsee 0.24.9", + "jsonrpsee", "log", "parity-scale-codec", "parking_lot 0.12.4", @@ -10015,8 +9890,8 @@ dependencies = [ [[package]] name = "sc-state-db" -version = "0.37.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "0.38.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "log", "parity-scale-codec", @@ -10026,8 +9901,8 @@ dependencies = [ [[package]] name = "sc-sysinfo" -version = "41.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "42.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "derive_more 0.99.20", "futures", @@ -10040,15 +9915,14 @@ dependencies = [ "serde", "serde_json", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6)", "sp-io", - "sp-std", ] [[package]] name = "sc-telemetry" -version = "28.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "28.1.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "chrono", "futures", @@ -10057,7 +9931,6 @@ dependencies = [ "parking_lot 0.12.4", "pin-project", "rand 0.8.5", - "sc-network", "sc-utils", "serde", "serde_json", @@ -10067,8 +9940,8 @@ dependencies = [ [[package]] name = "sc-tracing" -version = "38.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "39.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "chrono", "console", @@ -10095,19 +9968,19 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" -version = "11.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "11.1.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "proc-macro-crate 3.3.0", "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] name = "sc-transaction-pool" -version = "38.1.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "39.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "async-trait", "futures", @@ -10125,7 +9998,7 @@ dependencies = [ "sp-api", "sp-blockchain", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6)", "sp-runtime", "sp-tracing", "sp-transaction-pool", @@ -10133,15 +10006,17 @@ dependencies = [ "thiserror 1.0.69", "tokio", "tokio-stream", + "tracing", ] [[package]] name = "sc-transaction-pool-api" -version = "38.1.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "39.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "async-trait", "futures", + "indexmap 2.9.0", "log", "parity-scale-codec", "serde", @@ -10153,8 +10028,8 @@ dependencies = [ [[package]] name = "sc-utils" -version = "18.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "18.0.1" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "async-channel 1.9.0", "futures", @@ -10185,7 +10060,20 @@ checksum = "e98f3262c250d90e700bb802eb704e1f841e03331c2eb815e46516c4edbf5b27" dependencies = [ "derive_more 0.99.20", "parity-scale-codec", - "primitive-types 0.12.2", + "scale-bits", + "scale-type-resolver", + "smallvec", +] + +[[package]] +name = "scale-decode" +version = "0.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8ae9cc099ae85ff28820210732b00f019546f36f33225f509fe25d5816864a0" +dependencies = [ + "derive_more 1.0.0", + "parity-scale-codec", + "primitive-types", "scale-bits", "scale-decode-derive", "scale-type-resolver", @@ -10194,25 +10082,25 @@ dependencies = [ [[package]] name = "scale-decode-derive" -version = "0.13.1" +version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9bb22f574168103cdd3133b19281639ca65ad985e24612728f727339dcaf4021" +checksum = "5ed9401effa946b493f9f84dc03714cca98119b230497df6f3df6b84a2b03648" dependencies = [ - "darling 0.14.4", + "darling", "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.103", ] [[package]] name = "scale-encode" -version = "0.7.2" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "528464e6ae6c8f98e2b79633bf79ef939552e795e316579dab09c61670d56602" +checksum = "5f9271284d05d0749c40771c46180ce89905fd95aa72a2a2fddb4b7c0aa424db" dependencies = [ - "derive_more 0.99.20", + "derive_more 1.0.0", "parity-scale-codec", - "primitive-types 0.12.2", + "primitive-types", "scale-bits", "scale-encode-derive", "scale-type-resolver", @@ -10221,15 +10109,15 @@ dependencies = [ [[package]] name = "scale-encode-derive" -version = "0.7.2" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bef2618f123c88da9cd8853b69d766068f1eddc7692146d7dfe9b89e25ce2efd" +checksum = "102fbc6236de6c53906c0b262f12c7aa69c2bdc604862c12728f5f4d370bc137" dependencies = [ - "darling 0.20.11", + "darling", "proc-macro-crate 3.3.0", "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] @@ -10255,7 +10143,7 @@ dependencies = [ "proc-macro-crate 3.3.0", "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] @@ -10270,31 +10158,30 @@ dependencies = [ [[package]] name = "scale-typegen" -version = "0.8.0" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "498d1aecf2ea61325d4511787c115791639c0fd21ef4f8e11e49dd09eff2bbac" +checksum = "0dc4c70c7fea2eef1740f0081d3fe385d8bee1eef11e9272d3bec7dc8e5438e0" dependencies = [ "proc-macro2", "quote", "scale-info", - "syn 2.0.101", + "syn 2.0.103", "thiserror 1.0.69", ] [[package]] name = "scale-value" -version = "0.16.3" +version = "0.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8cd6ab090d823e75cfdb258aad5fe92e13f2af7d04b43a55d607d25fcc38c811" +checksum = "f5e0ef2a0ee1e02a69ada37feb87ea1616ce9808aca072befe2d3131bf28576e" dependencies = [ "base58", "blake2 0.10.6", - "derive_more 0.99.20", + "derive_more 1.0.0", "either", - "frame-metadata 15.1.0", "parity-scale-codec", "scale-bits", - "scale-decode", + "scale-decode 0.14.0", "scale-encode", "scale-info", "scale-type-resolver", @@ -10360,13 +10247,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9f6280af86e5f559536da57a45ebc84948833b3bee313a7dd25232e09c878a52" [[package]] -name = "sct" -version = "0.7.1" +name = "scrypt" +version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414" +checksum = "0516a385866c09368f0b5bcd1caff3366aace790fcd46e2bb032697bb172fd1f" dependencies = [ - "ring 0.17.14", - "untrusted 0.9.0", + "password-hash", + "pbkdf2", + "salsa20", + "sha2 0.10.9", ] [[package]] @@ -10402,6 +10291,17 @@ dependencies = [ "secp256k1-sys 0.9.2", ] +[[package]] +name = "secp256k1" +version = "0.30.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b50c5943d326858130af85e049f2661ba3c78b26589b8ab98e65e80ae44a1252" +dependencies = [ + "bitcoin_hashes 0.14.0", + "rand 0.8.5", + "secp256k1-sys 0.10.1", +] + [[package]] name = "secp256k1-sys" version = "0.8.1" @@ -10420,6 +10320,15 @@ dependencies = [ "cc", ] +[[package]] +name = "secp256k1-sys" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d4387882333d3aa8cb20530a17c69a3752e97837832f34f6dccc760e715001d9" +dependencies = [ + "cc", +] + [[package]] name = "secrecy" version = "0.8.0" @@ -10429,6 +10338,15 @@ dependencies = [ "zeroize", ] +[[package]] +name = "secrecy" +version = "0.10.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e891af845473308773346dc847b2c23ee78fe442e0472ac50e22a18a93d3ae5a" +dependencies = [ + "zeroize", +] + [[package]] name = "security-framework" version = "2.11.1" @@ -10439,7 +10357,6 @@ dependencies = [ "core-foundation 0.9.4", "core-foundation-sys", "libc", - "num-bigint", "security-framework-sys", ] @@ -10490,12 +10407,6 @@ version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" -[[package]] -name = "send_wrapper" -version = "0.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd0b0ec5f1c1ca621c432a25813d8d60c88abe6d3e08a3eb9cf37d97a0fe3d73" - [[package]] name = "serde" version = "1.0.219" @@ -10522,7 +10433,7 @@ checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00" dependencies = [ "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] @@ -10568,19 +10479,6 @@ dependencies = [ "serde", ] -[[package]] -name = "sha-1" -version = "0.9.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "99cd6713db3cf16b6c84e06321e049a9b9f699826e16096d23bbcc44d15d51a6" -dependencies = [ - "block-buffer 0.9.0", - "cfg-if", - "cpufeatures", - "digest 0.9.0", - "opaque-debug 0.3.1", -] - [[package]] name = "sha1" version = "0.10.6" @@ -10760,14 +10658,14 @@ dependencies = [ [[package]] name = "smoldot" -version = "0.16.0" +version = "0.18.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e6d1eaa97d77be4d026a1e7ffad1bb3b78448763b357ea6f8188d3e6f736a9b9" +checksum = "966e72d77a3b2171bb7461d0cb91f43670c63558c62d7cf42809cae6c8b6b818" dependencies = [ "arrayvec 0.7.6", "async-lock", "atomic-take", - "base64 0.21.7", + "base64 0.22.1", "bip39", "blake2-rfc", "bs58", @@ -10776,18 +10674,17 @@ dependencies = [ "derive_more 0.99.20", "ed25519-zebra", "either", - "event-listener 4.0.3", + "event-listener 5.4.0", "fnv", "futures-lite", "futures-util", "hashbrown 0.14.5", "hex", "hmac 0.12.1", - "itertools 0.12.1", + "itertools 0.13.0", "libm", "libsecp256k1", "merlin", - "no-std-net", "nom", "num-bigint", "num-rational", @@ -10806,7 +10703,7 @@ dependencies = [ "siphasher 1.0.1", "slab", "smallvec", - "soketto 0.7.1", + "soketto", "twox-hash", "wasmi", "x25519-dalek", @@ -10815,27 +10712,27 @@ dependencies = [ [[package]] name = "smoldot-light" -version = "0.14.0" +version = "0.16.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5496f2d116b7019a526b1039ec2247dd172b8670633b1a64a614c9ea12c9d8c7" +checksum = "2a33b06891f687909632ce6a4e3fd7677b24df930365af3d0bcb078310129f3f" dependencies = [ "async-channel 2.3.1", "async-lock", - "base64 0.21.7", + "base64 0.22.1", "blake2-rfc", + "bs58", "derive_more 0.99.20", "either", - "event-listener 4.0.3", + "event-listener 5.4.0", "fnv", "futures-channel", "futures-lite", "futures-util", "hashbrown 0.14.5", "hex", - "itertools 0.12.1", + "itertools 0.13.0", "log", "lru", - "no-std-net", "parking_lot 0.12.4", "pin-project", "rand 0.8.5", @@ -10874,39 +10771,14 @@ dependencies = [ [[package]] name = "socket2" -version = "0.4.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d" -dependencies = [ - "libc", - "winapi", -] - -[[package]] -name = "socket2" -version = "0.5.10" +version = "0.5.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678" +checksum = "4f5fd57c80058a56cf5c777ab8a126398ece8e442983605d280a44ce79d0edef" dependencies = [ "libc", "windows-sys 0.52.0", ] -[[package]] -name = "soketto" -version = "0.7.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "41d1c5305e39e09653383c2c7244f2f78b3bcae37cf50c64cb4789c9f5096ec2" -dependencies = [ - "base64 0.13.1", - "bytes", - "futures", - "httparse", - "log", - "rand 0.8.5", - "sha-1", -] - [[package]] name = "soketto" version = "0.8.1" @@ -10925,8 +10797,8 @@ dependencies = [ [[package]] name = "sp-api" -version = "35.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "36.0.1" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "docify", "hash-db", @@ -10947,8 +10819,8 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" -version = "21.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "22.0.1" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "Inflector", "blake2 0.10.6", @@ -10956,13 +10828,13 @@ dependencies = [ "proc-macro-crate 3.3.0", "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] name = "sp-application-crypto" -version = "39.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "40.1.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "parity-scale-codec", "scale-info", @@ -10973,8 +10845,8 @@ dependencies = [ [[package]] name = "sp-arithmetic" -version = "26.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "26.1.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "docify", "integer-sqrt", @@ -10987,8 +10859,8 @@ dependencies = [ [[package]] name = "sp-authority-discovery" -version = "35.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "36.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "parity-scale-codec", "scale-info", @@ -10999,8 +10871,8 @@ dependencies = [ [[package]] name = "sp-block-builder" -version = "35.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "36.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "sp-api", "sp-inherents", @@ -11009,8 +10881,8 @@ dependencies = [ [[package]] name = "sp-blockchain" -version = "38.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "39.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "futures", "parity-scale-codec", @@ -11028,13 +10900,12 @@ dependencies = [ [[package]] name = "sp-consensus" -version = "0.41.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "0.42.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "async-trait", "futures", "log", - "sp-core", "sp-inherents", "sp-runtime", "sp-state-machine", @@ -11043,8 +10914,8 @@ dependencies = [ [[package]] name = "sp-consensus-aura" -version = "0.41.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "0.42.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "async-trait", "parity-scale-codec", @@ -11059,8 +10930,8 @@ dependencies = [ [[package]] name = "sp-consensus-babe" -version = "0.41.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "0.42.1" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "async-trait", "parity-scale-codec", @@ -11077,8 +10948,8 @@ dependencies = [ [[package]] name = "sp-consensus-grandpa" -version = "22.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "23.1.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "finality-grandpa", "log", @@ -11094,8 +10965,8 @@ dependencies = [ [[package]] name = "sp-consensus-slots" -version = "0.41.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "0.42.1" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "parity-scale-codec", "scale-info", @@ -11105,9 +10976,10 @@ dependencies = [ [[package]] name = "sp-core" -version = "35.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "36.1.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ + "ark-vrf", "array-bytes", "bitflags 1.3.2", "blake2 0.10.6", @@ -11118,7 +10990,7 @@ dependencies = [ "futures", "hash-db", "hash256-std-hasher", - "impl-serde 0.5.0", + "impl-serde", "itertools 0.11.0", "k256", "libsecp256k1", @@ -11128,14 +11000,14 @@ dependencies = [ "parity-scale-codec", "parking_lot 0.12.4", "paste", - "primitive-types 0.13.1", + "primitive-types", "rand 0.8.5", "scale-info", "schnorrkel", "secp256k1 0.28.2", - "secrecy", + "secrecy 0.8.0", "serde", - "sp-crypto-hashing 0.1.0 (git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6)", "sp-debug-derive", "sp-externalities", "sp-runtime-interface", @@ -11166,7 +11038,7 @@ dependencies = [ [[package]] name = "sp-crypto-hashing" version = "0.1.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "blake2b_simd", "byteorder", @@ -11179,17 +11051,17 @@ dependencies = [ [[package]] name = "sp-crypto-hashing-proc-macro" version = "0.1.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "quote", - "sp-crypto-hashing 0.1.0 (git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches)", - "syn 2.0.101", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6)", + "syn 2.0.103", ] [[package]] name = "sp-database" version = "10.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "kvdb", "parking_lot 0.12.4", @@ -11198,17 +11070,17 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "14.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] name = "sp-externalities" version = "0.30.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "environmental", "parity-scale-codec", @@ -11217,8 +11089,8 @@ dependencies = [ [[package]] name = "sp-genesis-builder" -version = "0.16.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "0.17.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "parity-scale-codec", "scale-info", @@ -11229,8 +11101,8 @@ dependencies = [ [[package]] name = "sp-inherents" -version = "35.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "36.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -11242,8 +11114,8 @@ dependencies = [ [[package]] name = "sp-io" -version = "39.0.1" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "40.0.1" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "bytes", "docify", @@ -11255,7 +11127,7 @@ dependencies = [ "rustversion", "secp256k1 0.28.2", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6)", "sp-externalities", "sp-keystore", "sp-runtime-interface", @@ -11268,8 +11140,8 @@ dependencies = [ [[package]] name = "sp-keyring" -version = "40.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "41.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "sp-core", "sp-runtime", @@ -11278,8 +11150,8 @@ dependencies = [ [[package]] name = "sp-keystore" -version = "0.41.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "0.42.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "parity-scale-codec", "parking_lot 0.12.4", @@ -11290,7 +11162,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "11.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "thiserror 1.0.69", "zstd 0.12.4", @@ -11298,18 +11170,18 @@ dependencies = [ [[package]] name = "sp-metadata-ir" -version = "0.8.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "0.10.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ - "frame-metadata 18.0.0", + "frame-metadata 20.0.0", "parity-scale-codec", "scale-info", ] [[package]] name = "sp-mixnet" -version = "0.13.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "0.14.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "parity-scale-codec", "scale-info", @@ -11319,8 +11191,8 @@ dependencies = [ [[package]] name = "sp-offchain" -version = "35.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "36.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "sp-api", "sp-core", @@ -11329,8 +11201,8 @@ dependencies = [ [[package]] name = "sp-panic-handler" -version = "13.0.1" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "13.0.2" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "backtrace", "regex", @@ -11338,8 +11210,8 @@ dependencies = [ [[package]] name = "sp-rpc" -version = "33.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "34.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "rustc-hash 1.1.0", "serde", @@ -11348,8 +11220,8 @@ dependencies = [ [[package]] name = "sp-runtime" -version = "40.1.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "41.1.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "binary-merkle-tree", "docify", @@ -11377,14 +11249,14 @@ dependencies = [ [[package]] name = "sp-runtime-interface" -version = "29.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "29.0.1" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "bytes", "impl-trait-for-tuples", "parity-scale-codec", "polkavm-derive", - "primitive-types 0.13.1", + "primitive-types", "sp-externalities", "sp-runtime-interface-proc-macro", "sp-std", @@ -11397,20 +11269,20 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "18.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "Inflector", "expander", "proc-macro-crate 3.3.0", "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] name = "sp-session" -version = "37.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "38.1.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "parity-scale-codec", "scale-info", @@ -11423,8 +11295,8 @@ dependencies = [ [[package]] name = "sp-staking" -version = "37.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "38.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -11436,8 +11308,8 @@ dependencies = [ [[package]] name = "sp-state-machine" -version = "0.44.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "0.45.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "hash-db", "log", @@ -11456,8 +11328,8 @@ dependencies = [ [[package]] name = "sp-statement-store" -version = "19.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "20.1.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "aes-gcm", "curve25519-dalek", @@ -11470,7 +11342,7 @@ dependencies = [ "sp-api", "sp-application-crypto", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6)", "sp-externalities", "sp-runtime", "sp-runtime-interface", @@ -11481,14 +11353,14 @@ dependencies = [ [[package]] name = "sp-std" version = "14.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" [[package]] name = "sp-storage" version = "22.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ - "impl-serde 0.5.0", + "impl-serde", "parity-scale-codec", "ref-cast", "serde", @@ -11497,8 +11369,8 @@ dependencies = [ [[package]] name = "sp-timestamp" -version = "35.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "36.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "async-trait", "parity-scale-codec", @@ -11509,8 +11381,8 @@ dependencies = [ [[package]] name = "sp-tracing" -version = "17.0.1" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "17.1.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "parity-scale-codec", "tracing", @@ -11520,8 +11392,8 @@ dependencies = [ [[package]] name = "sp-transaction-pool" -version = "35.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "36.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "sp-api", "sp-runtime", @@ -11529,8 +11401,8 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" -version = "35.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "36.1.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "async-trait", "parity-scale-codec", @@ -11543,8 +11415,8 @@ dependencies = [ [[package]] name = "sp-trie" -version = "38.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "39.1.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "ahash", "hash-db", @@ -11565,10 +11437,10 @@ dependencies = [ [[package]] name = "sp-version" -version = "38.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "39.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ - "impl-serde 0.5.0", + "impl-serde", "parity-scale-codec", "parity-wasm", "scale-info", @@ -11583,19 +11455,19 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "15.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "parity-scale-codec", - "proc-macro-warning 1.84.1", + "proc-macro-warning", "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] name = "sp-wasm-interface" version = "21.0.1" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "anyhow", "impl-trait-for-tuples", @@ -11606,8 +11478,8 @@ dependencies = [ [[package]] name = "sp-weights" -version = "31.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "31.1.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "bounded-collections", "parity-scale-codec", @@ -11707,7 +11579,7 @@ dependencies = [ "quote", "sqlx-core", "sqlx-macros-core", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] @@ -11728,7 +11600,7 @@ dependencies = [ "sha2 0.10.9", "sqlx-core", "sqlx-sqlite", - "syn 2.0.101", + "syn 2.0.103", "tokio", "url", ] @@ -11780,12 +11652,12 @@ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" [[package]] name = "staging-xcm" -version = "15.1.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "16.2.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "array-bytes", "bounded-collections", - "derivative", + "derive-where", "environmental", "frame-support", "hex-literal", @@ -11834,10 +11706,14 @@ dependencies = [ ] [[package]] -name = "strsim" -version = "0.10.0" +name = "string-interner" +version = "0.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" +checksum = "1c6a0d765f5807e98a091107bae0a56ea3799f66a5de47b2c84c94a39c09974e" +dependencies = [ + "cfg-if", + "hashbrown 0.14.5", +] [[package]] name = "strsim" @@ -11883,13 +11759,13 @@ dependencies = [ "proc-macro2", "quote", "rustversion", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] name = "substrate-bip39" version = "0.6.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "hmac 0.12.1", "pbkdf2", @@ -11914,17 +11790,17 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "11.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" [[package]] name = "substrate-frame-rpc-system" -version = "42.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "43.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "docify", "frame-system-rpc-runtime-api", "futures", - "jsonrpsee 0.24.9", + "jsonrpsee", "log", "parity-scale-codec", "sc-rpc-api", @@ -11938,8 +11814,8 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" -version = "0.17.1" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "0.17.2" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "http-body-util", "hyper 1.6.0", @@ -11953,7 +11829,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "array-bytes", "async-trait", @@ -11963,7 +11839,6 @@ dependencies = [ "sc-client-db", "sc-consensus", "sc-executor", - "sc-offchain", "sc-service", "serde", "serde_json", @@ -11973,14 +11848,13 @@ dependencies = [ "sp-keyring", "sp-keystore", "sp-runtime", - "sp-state-machine", "tokio", ] [[package]] name = "substrate-test-runtime" version = "2.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "array-bytes", "frame-executive", @@ -12003,7 +11877,7 @@ dependencies = [ "sp-consensus-babe", "sp-consensus-grandpa", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6)", "sp-externalities", "sp-genesis-builder", "sp-inherents", @@ -12024,7 +11898,7 @@ dependencies = [ [[package]] name = "substrate-test-runtime-client" version = "2.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "futures", "sc-block-builder", @@ -12041,15 +11915,15 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" -version = "25.0.1" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "26.0.1" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "array-bytes", "build-helper", "cargo_metadata", "console", "filetime", - "frame-metadata 18.0.0", + "frame-metadata 20.0.0", "jobserver", "merkleized-metadata", "parity-scale-codec", @@ -12083,93 +11957,91 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" [[package]] name = "subxt" -version = "0.37.0" +version = "0.38.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a160cba1edbf3ec4fbbeaea3f1a185f70448116a6bccc8276bb39adb3b3053bd" +checksum = "1c17d7ec2359d33133b63c97e28c8b7cd3f0a5bc6ce567ae3aef9d9e85be3433" dependencies = [ "async-trait", "derive-where", "either", - "frame-metadata 16.0.0", + "frame-metadata 17.0.0", "futures", "hex", - "impl-serde 0.4.0", - "instant", - "jsonrpsee 0.22.5", + "impl-serde", + "jsonrpsee", "parity-scale-codec", - "primitive-types 0.12.2", - "reconnecting-jsonrpsee-ws-client", + "polkadot-sdk", + "primitive-types", "scale-bits", - "scale-decode", + "scale-decode 0.14.0", "scale-encode", "scale-info", "scale-value", "serde", "serde_json", - "sp-crypto-hashing 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "subxt-core", "subxt-lightclient", "subxt-macro", "subxt-metadata", "thiserror 1.0.69", + "tokio", "tokio-util", "tracing", "url", + "web-time", ] [[package]] name = "subxt-codegen" -version = "0.37.0" +version = "0.38.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d703dca0905cc5272d7cc27a4ac5f37dcaae7671acc7fef0200057cc8c317786" +checksum = "6550ef451c77db6e3bc7c56fb6fe1dca9398a2c8fc774b127f6a396a769b9c5b" dependencies = [ - "frame-metadata 16.0.0", "heck 0.5.0", - "hex", - "jsonrpsee 0.22.5", "parity-scale-codec", "proc-macro2", "quote", "scale-info", "scale-typegen", "subxt-metadata", - "syn 2.0.101", + "syn 2.0.103", "thiserror 1.0.69", - "tokio", ] [[package]] name = "subxt-core" -version = "0.37.1" +version = "0.38.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3af3b36405538a36b424d229dc908d1396ceb0994c90825ce928709eac1a159a" +checksum = "cb7a1bc6c9c1724971636a66e3225a7253cdb35bb6efb81524a6c71c04f08c59" dependencies = [ "base58", "blake2 0.10.6", "derive-where", - "frame-metadata 16.0.0", + "frame-decode", + "frame-metadata 17.0.0", "hashbrown 0.14.5", "hex", - "impl-serde 0.4.0", + "impl-serde", + "keccak-hash", "parity-scale-codec", - "primitive-types 0.12.2", + "polkadot-sdk", + "primitive-types", "scale-bits", - "scale-decode", + "scale-decode 0.14.0", "scale-encode", "scale-info", "scale-value", "serde", "serde_json", - "sp-crypto-hashing 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "subxt-metadata", "tracing", ] [[package]] name = "subxt-lightclient" -version = "0.37.0" +version = "0.38.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d9406fbdb9548c110803cb8afa750f8b911d51eefdf95474b11319591d225d9" +checksum = "89ebc9131da4d0ba1f7814495b8cc79698798ccd52cacd7bcefe451e415bd945" dependencies = [ "futures", "futures-util", @@ -12184,56 +12056,74 @@ dependencies = [ [[package]] name = "subxt-macro" -version = "0.37.0" +version = "0.38.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1c195f803d70687e409aba9be6c87115b5da8952cd83c4d13f2e043239818fcd" +checksum = "7819c5e09aae0319981ee853869f2fcd1fac4db8babd0d004c17161297aadc05" dependencies = [ - "darling 0.20.11", + "darling", "parity-scale-codec", - "proc-macro-error", + "proc-macro-error2", "quote", "scale-typegen", "subxt-codegen", - "syn 2.0.101", + "subxt-utils-fetchmetadata", + "syn 2.0.103", ] [[package]] name = "subxt-metadata" -version = "0.37.0" +version = "0.38.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "738be5890fdeff899bbffff4d9c0f244fe2a952fb861301b937e3aa40ebb55da" +checksum = "aacd4e7484fef58deaa2dcb32d94753a864b208a668c0dd0c28be1d8abeeadb2" dependencies = [ - "frame-metadata 16.0.0", + "frame-decode", + "frame-metadata 17.0.0", "hashbrown 0.14.5", "parity-scale-codec", + "polkadot-sdk", "scale-info", - "sp-crypto-hashing 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "subxt-signer" -version = "0.37.0" +version = "0.38.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f49888ae6ae90fe01b471193528eea5bd4ed52d8eecd2d13f4a2333b87388850" +checksum = "d680352d04665b1e4eb6f9d2a54b800c4d8e1b20478e69be1b7d975b08d9fc34" dependencies = [ + "base64 0.22.1", "bip32", "bip39", "cfg-if", + "crypto_secretbox", "hex", "hmac 0.12.1", "keccak-hash", "parity-scale-codec", "pbkdf2", + "polkadot-sdk", "regex", "schnorrkel", - "secp256k1 0.28.2", - "secrecy", + "scrypt", + "secp256k1 0.30.0", + "secrecy 0.10.3", + "serde", + "serde_json", "sha2 0.10.9", - "sp-crypto-hashing 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "subxt-core", "zeroize", ] +[[package]] +name = "subxt-utils-fetchmetadata" +version = "0.38.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a3c53bc3eeaacc143a2f29ace4082edd2edaccab37b69ad20befba9fb00fdb3d" +dependencies = [ + "hex", + "parity-scale-codec", + "thiserror 1.0.69", +] + [[package]] name = "syn" version = "1.0.109" @@ -12247,9 +12137,9 @@ dependencies = [ [[package]] name = "syn" -version = "2.0.101" +version = "2.0.103" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ce2b7fc941b3a24138a0a7cf8e858bfc6a992e7978a068a5c760deb0ed43caf" +checksum = "e4307e30089d6fd6aff212f2da3a1f9e32f3223b1f010fb09b7c95f90f3ca1e8" dependencies = [ "proc-macro2", "quote", @@ -12276,7 +12166,7 @@ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" dependencies = [ "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] @@ -12334,7 +12224,7 @@ dependencies = [ "getrandom 0.3.3", "once_cell", "rustix 1.0.7", - "windows-sys 0.59.0", + "windows-sys 0.52.0", ] [[package]] @@ -12388,7 +12278,7 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" dependencies = [ "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] @@ -12399,7 +12289,7 @@ checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d" dependencies = [ "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] @@ -12526,7 +12416,7 @@ dependencies = [ "parking_lot 0.12.4", "pin-project-lite", "signal-hook-registry", - "socket2 0.5.10", + "socket2", "tokio-macros", "windows-sys 0.52.0", ] @@ -12539,37 +12429,16 @@ checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8" dependencies = [ "proc-macro2", "quote", - "syn 2.0.101", -] - -[[package]] -name = "tokio-rustls" -version = "0.24.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081" -dependencies = [ - "rustls 0.21.12", - "tokio", -] - -[[package]] -name = "tokio-rustls" -version = "0.25.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "775e0c0f0adb3a2f22a00c4745d728b479985fc15ee7ca6a2608388c5569860f" -dependencies = [ - "rustls 0.22.4", - "rustls-pki-types", - "tokio", + "syn 2.0.103", ] [[package]] name = "tokio-rustls" -version = "0.26.2" +version = "0.26.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b" +checksum = "5f6d0975eaace0cf0fcadee4e4aaa5da15b5c079146f2cffb67c113be122bf37" dependencies = [ - "rustls 0.23.27", + "rustls", "tokio", ] @@ -12593,11 +12462,11 @@ checksum = "7a9daff607c6d2bf6c16fd681ccb7eecc83e4e2cdc1ca067ffaadfca5de7f084" dependencies = [ "futures-util", "log", - "rustls 0.23.27", - "rustls-native-certs 0.8.1", + "rustls", + "rustls-native-certs", "rustls-pki-types", "tokio", - "tokio-rustls 0.26.2", + "tokio-rustls", "tungstenite", ] @@ -12728,7 +12597,7 @@ checksum = "1b1ffbcf9c6f6b99d386e7444eb608ba646ae452a36b39737deb9663b610f662" dependencies = [ "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] @@ -12753,8 +12622,8 @@ dependencies = [ [[package]] name = "tracing-gum" -version = "17.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "19.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "coarsetime", "polkadot-primitives", @@ -12765,13 +12634,13 @@ dependencies = [ [[package]] name = "tracing-gum-proc-macro" version = "5.0.0" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "expander", "proc-macro-crate 3.3.0", "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] @@ -12807,9 +12676,9 @@ dependencies = [ [[package]] name = "trie-db" -version = "0.29.1" +version = "0.30.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c992b4f40c234a074d48a757efeabb1a6be88af84c0c23f7ca158950cb0ae7f" +checksum = "6c0670ab45a6b7002c7df369fee950a27cf29ae0474343fd3a15aa15f691e7a6" dependencies = [ "hash-db", "log", @@ -12826,78 +12695,6 @@ dependencies = [ "hash-db", ] -[[package]] -name = "trust-dns-proto" -version = "0.22.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4f7f83d1e4a0e4358ac54c5c3681e5d7da5efc5a7a632c90bb6d6669ddd9bc26" -dependencies = [ - "async-trait", - "cfg-if", - "data-encoding", - "enum-as-inner 0.5.1", - "futures-channel", - "futures-io", - "futures-util", - "idna 0.2.3", - "ipnet", - "lazy_static", - "rand 0.8.5", - "smallvec", - "socket2 0.4.10", - "thiserror 1.0.69", - "tinyvec", - "tokio", - "tracing", - "url", -] - -[[package]] -name = "trust-dns-proto" -version = "0.23.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3119112651c157f4488931a01e586aa459736e9d6046d3bd9105ffb69352d374" -dependencies = [ - "async-trait", - "cfg-if", - "data-encoding", - "enum-as-inner 0.6.1", - "futures-channel", - "futures-io", - "futures-util", - "idna 0.4.0", - "ipnet", - "once_cell", - "rand 0.8.5", - "smallvec", - "thiserror 1.0.69", - "tinyvec", - "tokio", - "tracing", - "url", -] - -[[package]] -name = "trust-dns-resolver" -version = "0.23.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "10a3e6c3aff1718b3c73e395d1f35202ba2ffa847c6a62eea0db8fb4cfe30be6" -dependencies = [ - "cfg-if", - "futures-util", - "ipconfig", - "lru-cache", - "once_cell", - "parking_lot 0.12.4", - "rand 0.8.5", - "resolv-conf", - "smallvec", - "thiserror 1.0.69", - "tokio", - "tracing", - "trust-dns-proto 0.23.2", -] - [[package]] name = "try-lock" version = "0.2.5" @@ -12937,7 +12734,7 @@ dependencies = [ "httparse", "log", "rand 0.9.1", - "rustls 0.23.27", + "rustls", "rustls-pki-types", "sha1", "thiserror 2.0.12", @@ -13005,12 +12802,6 @@ version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94" -[[package]] -name = "unicode-bidi" -version = "0.3.18" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5" - [[package]] name = "unicode-ident" version = "1.0.18" @@ -13060,7 +12851,7 @@ version = "0.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6889a77d49f1f013504cec6bf97a2c730394adedaeb1deb5ea08949a50541105" dependencies = [ - "asynchronous-codec", + "asynchronous-codec 0.6.2", "bytes", "futures-io", "futures-util", @@ -13095,7 +12886,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60" dependencies = [ "form_urlencoded", - "idna 1.0.3", + "idna", "percent-encoding", ] @@ -13159,11 +12950,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e6bfb937b3d12077654a9e43e32a4e9c20177dd9fea0f3aba673e7840bb54f32" dependencies = [ "ark-bls12-377", - "ark-bls12-381", - "ark-ec", - "ark-ff", - "ark-serialize", - "ark-serialize-derive", + "ark-bls12-381 0.4.0", + "ark-ec 0.4.2", + "ark-ff 0.4.2", + "ark-serialize 0.4.2", + "ark-serialize-derive 0.4.2", "arrayref", "digest 0.10.7", "rand 0.8.5", @@ -13174,6 +12965,52 @@ dependencies = [ "zeroize", ] +[[package]] +name = "w3f-pcs" +version = "0.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fbe7a8d5c914b69392ab3b267f679a2e546fe29afaddce47981772ac71bd02e1" +dependencies = [ + "ark-ec 0.5.0", + "ark-ff 0.5.0", + "ark-poly 0.5.0", + "ark-serialize 0.5.0", + "ark-std 0.5.0", + "merlin", +] + +[[package]] +name = "w3f-plonk-common" +version = "0.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1aca389e494fe08c5c108b512e2328309036ee1c0bc7bdfdb743fef54d448c8c" +dependencies = [ + "ark-ec 0.5.0", + "ark-ff 0.5.0", + "ark-poly 0.5.0", + "ark-serialize 0.5.0", + "ark-std 0.5.0", + "getrandom_or_panic", + "rand_core 0.6.4", + "w3f-pcs", +] + +[[package]] +name = "w3f-ring-proof" +version = "0.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a639379402ad51504575dbd258740383291ac8147d3b15859bdf1ea48c677de" +dependencies = [ + "ark-ec 0.5.0", + "ark-ff 0.5.0", + "ark-poly 0.5.0", + "ark-serialize 0.5.0", + "ark-std 0.5.0", + "ark-transcript", + "w3f-pcs", + "w3f-plonk-common", +] + [[package]] name = "walkdir" version = "2.5.0" @@ -13239,7 +13076,7 @@ dependencies = [ "log", "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.103", "wasm-bindgen-shared", ] @@ -13274,7 +13111,7 @@ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de" dependencies = [ "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.103", "wasm-bindgen-backend", "wasm-bindgen-shared", ] @@ -13354,28 +13191,37 @@ dependencies = [ [[package]] name = "wasmi" -version = "0.31.2" +version = "0.32.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "77a8281d1d660cdf54c76a3efa9ddd0c270cada1383a995db3ccb43d166456c7" +checksum = "50386c99b9c32bd2ed71a55b6dd4040af2580530fae8bdb9a6576571a80d0cca" dependencies = [ + "arrayvec 0.7.6", + "multi-stash", + "num-derive", + "num-traits", "smallvec", "spin 0.9.8", - "wasmi_arena", + "wasmi_collections", "wasmi_core", "wasmparser-nostd", ] [[package]] -name = "wasmi_arena" -version = "0.4.1" +name = "wasmi_collections" +version = "0.32.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "104a7f73be44570cac297b3035d76b169d6599637631cf37a1703326a0727073" +checksum = "9c128c039340ffd50d4195c3f8ce31aac357f06804cfc494c8b9508d4b30dca4" +dependencies = [ + "ahash", + "hashbrown 0.14.5", + "string-interner", +] [[package]] name = "wasmi_core" -version = "0.13.0" +version = "0.32.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dcf1a7db34bff95b85c261002720c00c3a6168256dcb93041d3fa2054d19856a" +checksum = "a23b3a7f6c8c3ceeec6b83531ee61f0013c56e51cbf2b14b0f213548b23a4b41" dependencies = [ "downcast-rs", "libm", @@ -13618,29 +13464,29 @@ dependencies = [ ] [[package]] -name = "webpki-roots" -version = "0.25.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1" - -[[package]] -name = "webpki-roots" +name = "webpki-root-certs" version = "0.26.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9" +checksum = "75c7f0ef91146ebfb530314f5f1d24528d7f0767efbfd31dce919275413e393e" dependencies = [ - "webpki-roots 1.0.0", + "webpki-root-certs 1.0.0", ] [[package]] -name = "webpki-roots" +name = "webpki-root-certs" version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2853738d1cc4f2da3a225c18ec6c3721abb31961096e9dbf5ab35fa88b19cfdb" +checksum = "01a83f7e1a9f8712695c03eabe9ed3fbca0feff0152f33f12593e5a6303cb1a4" dependencies = [ "rustls-pki-types", ] +[[package]] +name = "webpki-roots" +version = "0.25.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1" + [[package]] name = "wide" version = "0.7.32" @@ -13679,7 +13525,7 @@ version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb" dependencies = [ - "windows-sys 0.59.0", + "windows-sys 0.48.0", ] [[package]] @@ -13762,7 +13608,7 @@ checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836" dependencies = [ "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] @@ -13773,7 +13619,7 @@ checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8" dependencies = [ "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] @@ -14163,16 +14009,16 @@ dependencies = [ [[package]] name = "x509-parser" -version = "0.15.1" +version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7069fba5b66b9193bd2c5d3d4ff12b839118f6bcbef5328efafafb5395cf63da" +checksum = "fcbc162f30700d6f3f82a24bf7cc62ffe7caea42c0b2cba8bf7f3ae50cf51f69" dependencies = [ - "asn1-rs 0.5.2", + "asn1-rs 0.6.2", "data-encoding", - "der-parser 8.2.0", + "der-parser 9.0.0", "lazy_static", "nom", - "oid-registry 0.6.1", + "oid-registry 0.7.1", "rusticata-macros", "thiserror 1.0.69", "time", @@ -14197,13 +14043,13 @@ dependencies = [ [[package]] name = "xcm-procedural" -version = "11.0.1" -source = "git+https://github.com/liamaharon/polkadot-sdk?branch=polkadot-stable2412-6-otf-patches#e9b8e5818d697c0d382fa32dc64931e2c61841be" +version = "11.0.2" +source = "git+https://github.com/paritytech/polkadot-sdk?tag=polkadot-stable2503-6#598feddb893f5ad3923a62e41a2f179b6e10c30c" dependencies = [ "Inflector", "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] @@ -14287,7 +14133,7 @@ checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6" dependencies = [ "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.103", "synstructure 0.13.2", ] @@ -14308,7 +14154,7 @@ checksum = "28a6e20d751156648aa063f3800b706ee209a32c0b4d9f24be3d980b01be55ef" dependencies = [ "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] @@ -14328,7 +14174,7 @@ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" dependencies = [ "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.103", "synstructure 0.13.2", ] @@ -14349,7 +14195,7 @@ checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69" dependencies = [ "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] @@ -14382,7 +14228,7 @@ checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f" dependencies = [ "proc-macro2", "quote", - "syn 2.0.101", + "syn 2.0.103", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index e6a4b2ce78..c78247461a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -55,9 +55,9 @@ clap = { version = "4.5", features = ["derive", "deprecated"] } const-hex = { version = "1.14", default-features = false, features = ["alloc"] } derive_more = "1.0" environmental = { version = "1.1.4", default-features = false } -ethereum = { git = "https://github.com/rust-ethereum/ethereum", rev = "3be0d8fd4c2ad1ba216b69ef65b9382612efc8ba", default-features = false } +ethereum = { git = "https://github.com/rust-ethereum/ethereum", rev = "bbb544622208ef6e9890a2dbc224248f6dd13318", default-features = false } ethereum-types = { version = "0.15", default-features = false } -evm = { git = "https://github.com/rust-ethereum/evm", rev = "e81732d6bb47e3d3d68d233e43919c4522598361", default-features = false } +evm = { git = "https://github.com/rust-ethereum/evm", branch = "v0.x", default-features = false } futures = "0.3.31" hash-db = { version = "0.16.0", default-features = false } hex = { version = "0.4.3", default-features = false, features = ["alloc"] } @@ -67,106 +67,106 @@ impl-trait-for-tuples = "0.2.3" jsonrpsee = { version = "0.24.9" } jsonrpsee-core = { version = "0.24.9" } kvdb-rocksdb = "0.19.0" -libsecp256k1 = { version = "0.7.1", default-features = false } -log = { version = "0.4.21", default-features = false } +libsecp256k1 = { version = "0.7.2", default-features = false } +log = { version = "0.4.27", default-features = false } num_enum = { version = "0.7.3", default-features = false } parity-db = "0.4.13" parking_lot = "0.12.3" quote = "1.0.40" rlp = { version = "0.6", default-features = false } -scale-codec = { package = "parity-scale-codec", version = "3.6.12", default-features = false, features = ["derive"] } +scale-codec = { package = "parity-scale-codec", version = "3.7.5", default-features = false, features = ["derive"] } scale-info = { version = "2.11.6", default-features = false, features = ["derive"] } serde = { version = "1.0", default-features = false, features = ["derive", "alloc"] } serde_json = "1.0" -similar-asserts = "1.5.0" +similar-asserts = "1.7.0" sqlx = { version = "0.8.2", default-features = false, features = ["macros"] } thiserror = "2.0" -tokio = "1.43.0" +tokio = "1.45.0" # Substrate Client -sc-basic-authorship = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches" } -sc-block-builder = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches" } -sc-chain-spec = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches" } -sc-cli = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } -sc-client-api = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches" } -sc-client-db = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } -sc-consensus = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches" } -sc-consensus-aura = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches" } -sc-consensus-babe = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches" } -sc-consensus-grandpa = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches" } -sc-consensus-manual-seal = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches" } -sc-executor = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches" } -sc-keystore = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches" } -sc-network = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches" } -sc-network-common = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches" } -sc-network-sync = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches" } -sc-offchain = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches" } -sc-rpc = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches" } -sc-rpc-api = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches" } -sc-service = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } -sc-telemetry = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches" } -sc-transaction-pool = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches" } -sc-transaction-pool-api = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches" } -sc-utils = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches" } +sc-basic-authorship = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6" } +sc-block-builder = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6" } +sc-chain-spec = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6" } +sc-cli = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6", default-features = false } +sc-client-api = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6" } +sc-client-db = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6", default-features = false } +sc-consensus = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6" } +sc-consensus-aura = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6" } +sc-consensus-babe = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6" } +sc-consensus-grandpa = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6" } +sc-consensus-manual-seal = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6" } +sc-executor = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6" } +sc-keystore = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6" } +sc-network = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6" } +sc-network-common = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6" } +sc-network-sync = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6" } +sc-offchain = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6" } +sc-rpc = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6" } +sc-rpc-api = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6" } +sc-service = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6", default-features = false } +sc-telemetry = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6" } +sc-transaction-pool = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6" } +sc-transaction-pool-api = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6" } +sc-utils = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6" } # Substrate Primitive -sp-api = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } -sp-block-builder = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } -sp-blockchain = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } -sp-consensus = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } -sp-consensus-aura = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } -sp-consensus-babe = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } -sp-consensus-grandpa = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } -sp-core = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } -sp-crypto-hashing = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } -sp-database = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } -sp-externalities = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } -sp-genesis-builder = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } -sp-inherents = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } -sp-io = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } -sp-keyring = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } -sp-offchain = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } -sp-runtime = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } -sp-runtime-interface = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } -sp-session = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } -sp-state-machine = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } -sp-std = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } -sp-storage = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } -sp-timestamp = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } -sp-transaction-pool = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } -sp-trie = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } -sp-version = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } -sp-weights = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } - +sp-api = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6", default-features = false } +sp-block-builder = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6", default-features = false } +sp-blockchain = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6", default-features = false } +sp-consensus = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6", default-features = false } +sp-consensus-aura = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6", default-features = false } +sp-consensus-babe = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6", default-features = false } +sp-consensus-grandpa = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6", default-features = false } +sp-core = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6", default-features = false } +sp-crypto-hashing = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6", default-features = false } +sp-database = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6", default-features = false } +sp-externalities = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6", default-features = false } +sp-genesis-builder = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6", default-features = false } +sp-inherents = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6", default-features = false } +sp-io = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6", default-features = false } +sp-keyring = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6", default-features = false } +sp-offchain = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6", default-features = false } +sp-runtime-interface = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6", default-features = false } +sp-session = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6", default-features = false } +sp-state-machine = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6", default-features = false } +sp-std = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6", default-features = false } +sp-storage = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6", default-features = false } +sp-timestamp = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6", default-features = false } +sp-transaction-pool = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6", default-features = false } +sp-trie = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6", default-features = false } +sp-version = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6", default-features = false } +sp-weights = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6", default-features = false } # Substrate FRAME -frame-benchmarking = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } -frame-executive = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } -frame-support = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } -frame-system = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } -frame-system-benchmarking = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } -frame-system-rpc-runtime-api = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } -pallet-aura = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } -pallet-balances = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } -pallet-grandpa = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } -pallet-sudo = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } -pallet-timestamp = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } -pallet-transaction-payment = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } -pallet-transaction-payment-rpc = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } -pallet-utility = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } +frame-benchmarking = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6", default-features = false } +frame-executive = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6", default-features = false } +frame-support = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6", default-features = false } +frame-system = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6", default-features = false } +frame-system-benchmarking = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6", default-features = false } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6", default-features = false } +pallet-aura = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6", default-features = false } +pallet-balances = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6", default-features = false } +pallet-grandpa = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6", default-features = false } +pallet-sudo = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6", default-features = false } +pallet-timestamp = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6", default-features = false } +pallet-transaction-payment = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6", default-features = false } +pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6", default-features = false } +pallet-utility = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6", default-features = false } # Substrate Utility -frame-benchmarking-cli = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches" } -prometheus-endpoint = { package = "substrate-prometheus-endpoint", git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches" } -substrate-build-script-utils = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches" } -substrate-frame-rpc-system = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches" } -substrate-test-runtime-client = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches" } -substrate-wasm-builder = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches" } +frame-benchmarking-cli = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6" } +prometheus-endpoint = { package = "substrate-prometheus-endpoint", git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6" } +substrate-build-script-utils = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6" } +substrate-frame-rpc-system = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6" } +substrate-test-runtime-client = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6" } +substrate-wasm-builder = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6" } # Cumulus primitives -cumulus-primitives-proof-size-hostfunction = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } -cumulus-primitives-storage-weight-reclaim = { git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } +cumulus-pallet-weight-reclaim = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6", default-features = false } +cumulus-primitives-proof-size-hostfunction = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6", default-features = false } +cumulus-primitives-storage-weight-reclaim = { git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6", default-features = false } # XCM -xcm = { package = "staging-xcm", git = "https://github.com/liamaharon/polkadot-sdk", branch="polkadot-stable2412-6-otf-patches", default-features = false } +xcm = { package = "staging-xcm", git = "https://github.com/paritytech/polkadot-sdk", tag = "polkadot-stable2503-6", default-features = false } # Arkworks ark-bls12-377 = { version = "0.4.0", default-features = false, features = ["curve"] } From c913d566252ee97950d6429792b63e3a18263d92 Mon Sep 17 00:00:00 2001 From: Liam Aharon Date: Tue, 15 Jul 2025 14:19:35 +1200 Subject: [PATCH 7/8] update cargo.lock --- Cargo.lock | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index 82942ab64f..76d8bf28a7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2856,6 +2856,21 @@ dependencies = [ "sp-timestamp", ] +[[package]] +name = "fc-babe" +version = "1.0.0-dev" +dependencies = [ + "fc-rpc", + "sc-client-api", + "sc-consensus-babe", + "sp-api", + "sp-blockchain", + "sp-consensus-babe", + "sp-inherents", + "sp-runtime", + "sp-timestamp", +] + [[package]] name = "fc-cli" version = "1.0.0-dev" From 75c66abf94f2ba5036d934509cbf6bb4a2f77eae Mon Sep 17 00:00:00 2001 From: Liam Aharon Date: Tue, 15 Jul 2025 14:20:38 +1200 Subject: [PATCH 8/8] taplo format --- client/babe/Cargo.toml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/client/babe/Cargo.toml b/client/babe/Cargo.toml index 23dcc86c52..0bebd13efc 100644 --- a/client/babe/Cargo.toml +++ b/client/babe/Cargo.toml @@ -9,14 +9,13 @@ description = "Babe consensus data provider for pending runtime calls" [dependencies] # Substrate +sc-client-api = { workspace = true } +sc-consensus-babe = { workspace = true } sp-api = { workspace = true } +sp-blockchain = { workspace = true } sp-consensus-babe = { workspace = true } sp-inherents = { workspace = true } -sp-blockchain = { workspace = true } sp-runtime = { workspace = true } sp-timestamp = { workspace = true } -sc-client-api = { workspace = true } -sc-consensus-babe = { workspace = true } # Frontier fc-rpc = { workspace = true } -