From 9ace62753809d1f43e08f7595d1c653dcbf9e754 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexandre=20Bald=C3=A9?= Date: Sat, 15 Nov 2025 01:05:44 +0000 Subject: [PATCH 1/8] Move Polkadot SDK dependencies from GH to crates.io --- Cargo.toml | 60 +++++++++++++++++++++++++++--------------------------- 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index f07acd03354..e0514682e8f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -33,40 +33,40 @@ tokio = { version = "1.40.0" } zstd = { version = "0.13.2", default-features = false } # Polkadot SDK -frame-remote-externalities = { git = "https://github.com/paritytech/polkadot-sdk", rev = "8279d1046cca51a317dec15df5a9b29240545163" } -frame-try-runtime = { git = "https://github.com/paritytech/polkadot-sdk", rev = "8279d1046cca51a317dec15df5a9b29240545163" } -frame-support = { git = "https://github.com/paritytech/polkadot-sdk", rev = "8279d1046cca51a317dec15df5a9b29240545163" } -frame-system = { git = "https://github.com/paritytech/polkadot-sdk", rev = "8279d1046cca51a317dec15df5a9b29240545163" } +frame-remote-externalities = { version = "0.54.0" } +frame-try-runtime = { version = "0.49.0" } +frame-support = { version = "43.0.0" } +frame-system = { version = "43.0.0" } -sc-cli = { git = "https://github.com/paritytech/polkadot-sdk", rev = "8279d1046cca51a317dec15df5a9b29240545163" } -sc-executor = { git = "https://github.com/paritytech/polkadot-sdk", rev = "8279d1046cca51a317dec15df5a9b29240545163" } -sc-service = { git = "https://github.com/paritytech/polkadot-sdk", rev = "8279d1046cca51a317dec15df5a9b29240545163" } +sc-cli = { version = "0.55.0" } +sc-executor = { version = "0.45.0" } +sc-service = { version = "0.54.0" } -sp-api = { git = "https://github.com/paritytech/polkadot-sdk", rev = "8279d1046cca51a317dec15df5a9b29240545163" } -sp-consensus-aura = { git = "https://github.com/paritytech/polkadot-sdk", rev = "8279d1046cca51a317dec15df5a9b29240545163" } -sp-consensus-babe = { git = "https://github.com/paritytech/polkadot-sdk", rev = "8279d1046cca51a317dec15df5a9b29240545163" } -sp-core = { git = "https://github.com/paritytech/polkadot-sdk", rev = "8279d1046cca51a317dec15df5a9b29240545163" } -sp-externalities = { git = "https://github.com/paritytech/polkadot-sdk", rev = "8279d1046cca51a317dec15df5a9b29240545163" } -sp-inherents = { git = "https://github.com/paritytech/polkadot-sdk", rev = "8279d1046cca51a317dec15df5a9b29240545163" } -sp-io = { git = "https://github.com/paritytech/polkadot-sdk", rev = "8279d1046cca51a317dec15df5a9b29240545163" } -sp-keystore = { git = "https://github.com/paritytech/polkadot-sdk", rev = "8279d1046cca51a317dec15df5a9b29240545163" } -sp-rpc = { git = "https://github.com/paritytech/polkadot-sdk", rev = "8279d1046cca51a317dec15df5a9b29240545163" } -sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", rev = "8279d1046cca51a317dec15df5a9b29240545163" } -sp-state-machine = { git = "https://github.com/paritytech/polkadot-sdk", rev = "8279d1046cca51a317dec15df5a9b29240545163" } -sp-storage = { git = "https://github.com/paritytech/polkadot-sdk", rev = "8279d1046cca51a317dec15df5a9b29240545163" } -sp-std = { git = "https://github.com/paritytech/polkadot-sdk", rev = "8279d1046cca51a317dec15df5a9b29240545163" } -sp-timestamp = { git = "https://github.com/paritytech/polkadot-sdk", rev = "8279d1046cca51a317dec15df5a9b29240545163" } -sp-transaction-storage-proof = { git = "https://github.com/paritytech/polkadot-sdk", rev = "8279d1046cca51a317dec15df5a9b29240545163" } -sp-version = { git = "https://github.com/paritytech/polkadot-sdk", rev = "8279d1046cca51a317dec15df5a9b29240545163" } -sp-weights = { git = "https://github.com/paritytech/polkadot-sdk", rev = "8279d1046cca51a317dec15df5a9b29240545163" } +sp-api = { version = "39.0.0" } +sp-consensus-aura = { version = "0.45.0" } +sp-consensus-babe = { version = "0.45.0" } +sp-core = { version = "38.1.0" } +sp-externalities = { version = "0.30.0" } +sp-inherents = { version = "39.0.0" } +sp-io = { version = "43.0.0" } +sp-keystore = { version = "0.44.1" } +sp-rpc = { version = "36.0.1" } +sp-runtime = { version = "44.0.0" } +sp-state-machine = { version = "0.48.0" } +sp-storage = { version = "22.0.0" } +sp-std = { version = "14.0.0" } +sp-timestamp = { version = "39.0.0" } +sp-transaction-storage-proof = { version = "39.0.0" } +sp-version = { version = "42.0.0" } +sp-weights = { version = "33.1.0" } -substrate-cli-test-utils = { git = "https://github.com/paritytech/polkadot-sdk", rev = "8279d1046cca51a317dec15df5a9b29240545163" } -substrate-rpc-client = { git = "https://github.com/paritytech/polkadot-sdk", rev = "8279d1046cca51a317dec15df5a9b29240545163" } +substrate-cli-test-utils = { git = "https://github.com/paritytech/polkadot-sdk", rev = "09c511c3dc97961c8c2bdf7836d3ae02dd672771" } +substrate-rpc-client = { version = "0.52.0" } -polkadot-primitives = { git = "https://github.com/paritytech/polkadot-sdk", rev = "8279d1046cca51a317dec15df5a9b29240545163" } -cumulus-primitives-parachain-inherent = { git = "https://github.com/paritytech/polkadot-sdk", rev = "8279d1046cca51a317dec15df5a9b29240545163" } -cumulus-primitives-core = { git = "https://github.com/paritytech/polkadot-sdk", rev = "8279d1046cca51a317dec15df5a9b29240545163" } -cumulus-client-parachain-inherent = { git = "https://github.com/paritytech/polkadot-sdk", rev = "8279d1046cca51a317dec15df5a9b29240545163" } +polkadot-primitives = { version = "21.0.0" } +cumulus-primitives-parachain-inherent = { version = "0.21.0" } +cumulus-primitives-core = { version = "0.21.0" } +cumulus-client-parachain-inherent = { version = "0.20.0" } # Local try-runtime-core = { path = "core" } From b59cc647caa0edba4ee508fcfcfdfdf24d0e9a92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexandre=20Bald=C3=A9?= Date: Sat, 15 Nov 2025 01:06:38 +0000 Subject: [PATCH 2/8] Update parachain struct with newly introduced field --- .../common/empty_block/inherents/custom_idps/para_parachain.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/src/common/empty_block/inherents/custom_idps/para_parachain.rs b/core/src/common/empty_block/inherents/custom_idps/para_parachain.rs index e92de008605..efe0029ab57 100644 --- a/core/src/common/empty_block/inherents/custom_idps/para_parachain.rs +++ b/core/src/common/empty_block/inherents/custom_idps/para_parachain.rs @@ -20,6 +20,7 @@ use std::{ops::DerefMut, sync::Arc}; +use cumulus_primitives_core::relay_chain::UpgradeGoAhead; use parity_scale_codec::{Decode, Encode}; use polkadot_primitives::{BlockNumber, HeadData}; use sp_consensus_babe::SlotDuration; @@ -119,6 +120,7 @@ impl sp_inherents::InherentDataProvider for InherentDataProvider { raw_horizontal_messages: Default::default(), additional_key_values: Some(additional_key_values), para_id: para_id.into(), + upgrade_go_ahead: Some(UpgradeGoAhead::GoAhead), } .provide_inherent_data(inherent_data) .await From f907df9687985e1da4e4c37ece4c36b06eacba1f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexandre=20Bald=C3=A9?= Date: Sat, 15 Nov 2025 01:07:03 +0000 Subject: [PATCH 3/8] Update Cargo.lock --- Cargo.lock | 17050 +++++++++++++++++++++++++++++++-------------------- 1 file changed, 10375 insertions(+), 6675 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index db25cd328ad..cc38488f52c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. -version = 3 +version = 4 [[package]] name = "Inflector" @@ -14,27 +14,27 @@ dependencies = [ [[package]] name = "addr2line" -version = "0.19.0" +version = "0.24.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a76fd60b23679b7d19bd066031410fb7e458ccc5e958eb5c325888ce4baedc97" +checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1" dependencies = [ - "gimli 0.27.3", + "gimli 0.31.1", ] [[package]] name = "addr2line" -version = "0.24.1" +version = "0.25.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f5fb1d8e4442bd405fdfd1dacb42792696b0cf9cb15882e5d097b742a676d375" +checksum = "1b5d307320b3181d6d7954e663bd7c774a838b8220fe0593c86d9fb09f498b4b" dependencies = [ - "gimli 0.31.0", + "gimli 0.32.3", ] [[package]] name = "adler2" -version = "2.0.0" +version = "2.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627" +checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa" [[package]] name = "aead" @@ -43,7 +43,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0" dependencies = [ "crypto-common", - "generic-array 0.14.7", + "generic-array 0.14.9", ] [[package]] @@ -73,23 +73,12 @@ dependencies = [ [[package]] name = "ahash" -version = "0.7.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9" -dependencies = [ - "getrandom", - "once_cell", - "version_check", -] - -[[package]] -name = "ahash" -version = "0.8.11" +version = "0.8.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011" +checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75" dependencies = [ "cfg-if", - "getrandom", + "getrandom 0.3.4", "once_cell", "version_check", "zerocopy", @@ -97,75 +86,248 @@ dependencies = [ [[package]] name = "aho-corasick" -version = "1.1.3" +version = "1.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" +checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301" dependencies = [ "memchr", ] [[package]] name = "allocator-api2" -version = "0.2.18" +version = "0.2.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923" + +[[package]] +name = "alloy-core" +version = "1.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5ca96214615ec8cf3fa2a54b32f486eb49100ca7fe7eb0b8c1137cd316e7250a" +dependencies = [ + "alloy-dyn-abi", + "alloy-json-abi", + "alloy-primitives", + "alloy-rlp", + "alloy-sol-types", +] + +[[package]] +name = "alloy-dyn-abi" +version = "1.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3fdff496dd4e98a81f4861e66f7eaf5f2488971848bb42d9c892f871730245c8" +dependencies = [ + "alloy-json-abi", + "alloy-primitives", + "alloy-sol-type-parser", + "alloy-sol-types", + "itoa", + "serde", + "serde_json", + "winnow", +] + +[[package]] +name = "alloy-eip2124" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "741bdd7499908b3aa0b159bba11e71c8cddd009a2c2eb7a06e825f1ec87900a5" +dependencies = [ + "alloy-primitives", + "alloy-rlp", + "crc", + "serde", + "thiserror 2.0.17", +] + +[[package]] +name = "alloy-eip2930" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9441120fa82df73e8959ae0e4ab8ade03de2aaae61be313fbf5746277847ce25" +dependencies = [ + "alloy-primitives", + "alloy-rlp", + "borsh", + "serde", +] + +[[package]] +name = "alloy-eip7702" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2919c5a56a1007492da313e7a3b6d45ef5edc5d33416fdec63c0d7a2702a0d20" +dependencies = [ + "alloy-primitives", + "alloy-rlp", + "borsh", + "k256", + "serde", + "thiserror 2.0.17", +] + +[[package]] +name = "alloy-eips" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7bdbec74583d0067798d77afa43d58f00d93035335d7ceaa5d3f93857d461bb9" +dependencies = [ + "alloy-eip2124", + "alloy-eip2930", + "alloy-eip7702", + "alloy-primitives", + "alloy-rlp", + "alloy-serde", + "auto_impl", + "c-kzg", + "derive_more 2.0.1", + "either", + "serde", + "serde_with", + "sha2 0.10.9", + "thiserror 2.0.17", +] + +[[package]] +name = "alloy-json-abi" +version = "1.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c6cb57a04249c6480766f7f7cef5467412af1490f8d1e243141daddada3264f" +checksum = "5513d5e6bd1cba6bdcf5373470f559f320c05c8c59493b6e98912fbe6733943f" +dependencies = [ + "alloy-primitives", + "alloy-sol-type-parser", + "serde", + "serde_json", +] [[package]] name = "alloy-primitives" -version = "0.4.2" +version = "1.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a0628ec0ba5b98b3370bb6be17b12f23bfce8ee4ad83823325a20546d9b03b78" +checksum = "355bf68a433e0fd7f7d33d5a9fc2583fde70bf5c530f63b80845f8da5505cf28" dependencies = [ "alloy-rlp", "bytes", "cfg-if", "const-hex", - "derive_more", - "hex-literal", + "derive_more 2.0.1", + "foldhash 0.2.0", + "hashbrown 0.16.0", + "indexmap 2.12.0", "itoa", + "k256", + "keccak-asm", + "paste", "proptest", - "rand", + "rand 0.9.2", "ruint", + "rustc-hash 2.1.1", "serde", + "sha3", "tiny-keccak", ] [[package]] name = "alloy-rlp" -version = "0.3.8" +version = "0.3.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26154390b1d205a4a7ac7352aa2eb4f81f391399d4e2f546fb81a2f8bb383f62" +checksum = "5f70d83b765fdc080dbcd4f4db70d8d23fe4761f2f02ebfa9146b833900634b4" dependencies = [ + "alloy-rlp-derive", "arrayvec 0.7.6", "bytes", ] +[[package]] +name = "alloy-rlp-derive" +version = "0.3.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "64b728d511962dda67c1bc7ea7c03736ec275ed2cf4c35d9585298ac9ccf3b73" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.110", +] + +[[package]] +name = "alloy-serde" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "751d1887f7d202514a82c5b3caf28ee8bd4a2ad9549e4f498b6f0bff99b52add" +dependencies = [ + "alloy-primitives", + "serde", + "serde_json", +] + [[package]] name = "alloy-sol-macro" -version = "0.4.2" +version = "1.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f3ce480400051b5217f19d6e9a82d9010cdde20f1ae9c00d53591e4a1afbb312" +dependencies = [ + "alloy-sol-macro-expander", + "alloy-sol-macro-input", + "proc-macro-error2", + "proc-macro2", + "quote", + "syn 2.0.110", +] + +[[package]] +name = "alloy-sol-macro-expander" +version = "1.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8a98ad1696a2e17f010ae8e43e9f2a1e930ed176a8e3ff77acfeff6dfb07b42c" +checksum = "6d792e205ed3b72f795a8044c52877d2e6b6e9b1d13f431478121d8d4eaa9028" dependencies = [ + "alloy-sol-macro-input", "const-hex", - "dunce", - "heck 0.4.1", - "proc-macro-error", + "heck 0.5.0", + "indexmap 2.12.0", + "proc-macro-error2", "proc-macro2", "quote", - "syn 2.0.79", + "syn 2.0.110", "syn-solidity", "tiny-keccak", ] +[[package]] +name = "alloy-sol-macro-input" +version = "1.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0bd1247a8f90b465ef3f1207627547ec16940c35597875cdc09c49d58b19693c" +dependencies = [ + "const-hex", + "dunce", + "heck 0.5.0", + "macro-string", + "proc-macro2", + "quote", + "syn 2.0.110", + "syn-solidity", +] + +[[package]] +name = "alloy-sol-type-parser" +version = "1.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "954d1b2533b9b2c7959652df3076954ecb1122a28cc740aa84e7b0a49f6ac0a9" +dependencies = [ + "serde", + "winnow", +] + [[package]] name = "alloy-sol-types" -version = "0.4.2" +version = "1.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "98d7107bed88e8f09f0ddcc3335622d87bfb6821f3e0c7473329fb1cfad5e015" +checksum = "70319350969a3af119da6fb3e9bddb1bce66c9ea933600cb297c8b1850ad2a3c" dependencies = [ + "alloy-json-abi", "alloy-primitives", "alloy-sol-macro", - "const-hex", "serde", ] @@ -175,12 +337,6 @@ version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4436e0292ab1bb631b42973c61205e704475fe8126af845c8d923c0996328127" -[[package]] -name = "android-tzdata" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" - [[package]] name = "android_system_properties" version = "0.1.5" @@ -192,9 +348,9 @@ dependencies = [ [[package]] name = "anstream" -version = "0.6.15" +version = "0.6.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "64e15c1ab1f89faffbf04a634d5e1962e9074f2741eef6d97f3c4e322426d526" +checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a" dependencies = [ "anstyle", "anstyle-parse", @@ -207,43 +363,44 @@ dependencies = [ [[package]] name = "anstyle" -version = "1.0.8" +version = "1.0.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1bec1de6f59aedf83baf9ff929c98f2ad654b97c9510f4e70cf6f661d49fd5b1" +checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78" [[package]] name = "anstyle-parse" -version = "0.2.5" +version = "0.2.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eb47de1e80c2b463c735db5b217a0ddc39d612e7ac9e2e96a5aed1f57616c1cb" +checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2" dependencies = [ "utf8parse", ] [[package]] name = "anstyle-query" -version = "1.1.1" +version = "1.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6d36fc52c7f6c869915e99412912f22093507da8d9e942ceaf66fe4b7c14422a" +checksum = "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2" dependencies = [ - "windows-sys 0.52.0", + "windows-sys 0.60.2", ] [[package]] name = "anstyle-wincon" -version = "3.0.4" +version = "3.0.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5bf74e1b6e971609db8ca7a9ce79fd5768ab6ae46441c572e46cf596f59e57f8" +checksum = "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a" dependencies = [ "anstyle", - "windows-sys 0.52.0", + "once_cell_polyfill", + "windows-sys 0.60.2", ] [[package]] name = "anyhow" -version = "1.0.89" +version = "1.0.100" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "86fdf8605db99b54d3cd748a44c6d04df638eb5dafb219b135d0149bd0db01f6" +checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61" [[package]] name = "approx" @@ -265,16 +422,22 @@ dependencies = [ "proc-macro-error", "proc-macro2", "quote", - "syn 2.0.79", + "syn 2.0.110", ] +[[package]] +name = "arbitrary" +version = "1.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1" + [[package]] name = "ark-bls12-377" version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fb00293ba84f51ce3bd026bd0de55899c4e68f0a39a5728cebae3a73ffdc0a4f" dependencies = [ - "ark-ec", + "ark-ec 0.4.2", "ark-ff 0.4.2", "ark-std 0.4.0", ] @@ -286,7 +449,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "20c7021f180a0cbea0380eba97c2af3c57074cdaffe0eef7e840e1c9f2841e55" dependencies = [ "ark-bls12-377", - "ark-ec", + "ark-ec 0.4.2", "ark-models-ext", "ark-std 0.4.0", ] @@ -297,26 +460,50 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c775f0d12169cba7aae4caeb547bb6a50781c7449a8aa53793827c9ec4abf488" dependencies = [ - "ark-ec", + "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]] name = "ark-bls12-381-ext" version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b1dc4b3d08f19e8ec06e949712f95b8361e43f1391d94f65e4234df03480631c" dependencies = [ - "ark-bls12-381", - "ark-ec", + "ark-bls12-381 0.4.0", + "ark-ec 0.4.2", "ark-ff 0.4.2", "ark-models-ext", "ark-serialize 0.4.2", "ark-std 0.4.0", ] +[[package]] +name = "ark-bn254" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d69eab57e8d2663efa5c63135b2af4f396d66424f88954c21104125ab6b3e6bc" +dependencies = [ + "ark-ec 0.5.0", + "ark-ff 0.5.0", + "ark-r1cs-std", + "ark-std 0.5.0", +] + [[package]] name = "ark-bw6-761" version = "0.4.0" @@ -324,7 +511,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2e0605daf0cc5aa2034b78d008aaf159f56901d92a52ee4f6ecdfdac4f426700" dependencies = [ "ark-bls12-377", - "ark-ec", + "ark-ec 0.4.2", "ark-ff 0.4.2", "ark-std 0.4.0", ] @@ -336,7 +523,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ccee5fba47266f460067588ee1bf070a9c760bf2050c1c509982c5719aadb4f2" dependencies = [ "ark-bw6-761", - "ark-ec", + "ark-ec 0.4.2", "ark-ff 0.4.2", "ark-models-ext", "ark-std 0.4.0", @@ -349,7 +536,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "defd9a439d56ac24968cca0571f598a61bc8c55f71d50a89cda591cb750670ba" dependencies = [ "ark-ff 0.4.2", - "ark-poly", + "ark-poly 0.4.2", "ark-serialize 0.4.2", "ark-std 0.4.0", "derivative", @@ -360,6 +547,28 @@ 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.5", + "itertools 0.13.0", + "num-bigint", + "num-integer", + "num-traits", + "rayon", + "zeroize", +] + [[package]] name = "ark-ed-on-bls12-377" version = "0.4.0" @@ -367,7 +576,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b10d901b9ac4b38f9c32beacedfadcdd64e46f8d7f8e88c1ae1060022cf6f6c6" dependencies = [ "ark-bls12-377", - "ark-ec", + "ark-ec 0.4.2", "ark-ff 0.4.2", "ark-std 0.4.0", ] @@ -378,7 +587,7 @@ version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "524a4fb7540df2e1a8c2e67a83ba1d1e6c3947f4f9342cc2359fc2e789ad731d" dependencies = [ - "ark-ec", + "ark-ec 0.4.2", "ark-ed-on-bls12-377", "ark-ff 0.4.2", "ark-models-ext", @@ -391,20 +600,32 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f9cde0f2aa063a2a5c28d39b47761aa102bda7c13c84fc118a61b87c7b2f785c" dependencies = [ - "ark-bls12-381", - "ark-ec", + "ark-bls12-381 0.4.0", + "ark-ec 0.4.2", "ark-ff 0.4.2", "ark-std 0.4.0", ] +[[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-ed-on-bls12-381-bandersnatch-ext" version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d15185f1acb49a07ff8cbe5f11a1adc5a93b19e211e325d826ae98e98e124346" dependencies = [ - "ark-ec", - "ark-ed-on-bls12-381-bandersnatch", + "ark-ec 0.4.2", + "ark-ed-on-bls12-381-bandersnatch 0.4.0", "ark-ff 0.4.2", "ark-models-ext", "ark-std 0.4.0", @@ -448,6 +669,27 @@ 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", + "rayon", + "zeroize", +] + [[package]] name = "ark-ff-asm" version = "0.3.0" @@ -468,6 +710,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.110", +] + [[package]] name = "ark-ff-macros" version = "0.3.0" @@ -493,13 +745,26 @@ 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.110", +] + [[package]] name = "ark-models-ext" version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3e9eab5d4b5ff2f228b763d38442adc9b084b0a465409b059fac5c2308835ec2" dependencies = [ - "ark-ec", + "ark-ec 0.4.2", "ark-ff 0.4.2", "ark-serialize 0.4.2", "ark-std 0.4.0", @@ -519,13 +784,58 @@ dependencies = [ "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.5", + "rayon", +] + +[[package]] +name = "ark-r1cs-std" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "941551ef1df4c7a401de7068758db6503598e6f01850bdb2cfdb614a1f9dbea1" +dependencies = [ + "ark-ec 0.5.0", + "ark-ff 0.5.0", + "ark-relations", + "ark-std 0.5.0", + "educe", + "num-bigint", + "num-integer", + "num-traits", + "tracing", +] + +[[package]] +name = "ark-relations" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec46ddc93e7af44bcab5230937635b06fb5744464dd6a7e7b083e80ebd274384" +dependencies = [ + "ark-ff 0.5.0", + "ark-std 0.5.0", + "tracing", + "tracing-subscriber 0.2.25", +] + [[package]] name = "ark-scale" version = "0.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5f69c00b3b529be29528a6f2fd5fa7b1790f8bed81b9cdca17e326538545a179" dependencies = [ - "ark-ec", + "ark-ec 0.4.2", "ark-ff 0.4.2", "ark-serialize 0.4.2", "ark-std 0.4.0", @@ -534,18 +844,15 @@ dependencies = [ ] [[package]] -name = "ark-secret-scalar" -version = "0.0.2" -source = "git+https://github.com/w3f/ring-vrf?rev=0fef826#0fef8266d851932ad25d6b41bc4b34d834d1e11d" +name = "ark-scale" +version = "0.0.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "985c81a9c7b23a72f62b7b20686d5326d2a9956806f37de9ee35cb1238faf0c0" dependencies = [ - "ark-ec", - "ark-ff 0.4.2", - "ark-serialize 0.4.2", - "ark-std 0.4.0", - "ark-transcript", - "digest 0.10.7", - "getrandom_or_panic", - "zeroize", + "ark-serialize 0.5.0", + "ark-std 0.5.0", + "parity-scale-codec", + "scale-info", ] [[package]] @@ -564,12 +871,26 @@ version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "adb7b85a02b83d2f22f89bd5cac66c9c89474240cb6207cb1efc16d098e822a5" dependencies = [ - "ark-serialize-derive", + "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", + "rayon", +] + [[package]] name = "ark-serialize-derive" version = "0.4.2" @@ -581,6 +902,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.110", +] + [[package]] name = "ark-std" version = "0.3.0" @@ -588,7 +920,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1df2c09229cbc5a028b1d70e00fdb2acee28b1055dfb5ca73eea49c5a25c4e7c" dependencies = [ "num-traits", - "rand", + "rand 0.8.5", ] [[package]] @@ -598,23 +930,55 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "94893f1e0c6eeab764ade8dc4c0db24caf4fe7cbbaafc0eba0a9030f447b5185" dependencies = [ "num-traits", - "rand", + "rand 0.8.5", + "rayon", +] + +[[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", "rayon", ] [[package]] name = "ark-transcript" -version = "0.0.2" -source = "git+https://github.com/w3f/ring-vrf?rev=0fef826#0fef8266d851932ad25d6b41bc4b34d834d1e11d" +version = "0.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "47c1c928edb9d8ff24cb5dcb7651d3a98494fff3099eee95c2404cd813a9139f" dependencies = [ - "ark-ff 0.4.2", - "ark-serialize 0.4.2", - "ark-std 0.4.0", + "ark-ff 0.5.0", + "ark-serialize 0.5.0", + "ark-std 0.5.0", "digest 0.10.7", - "rand_core", + "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 0.5.0", + "ark-ff 0.5.0", + "ark-serialize 0.5.0", + "ark-std 0.5.0", + "digest 0.10.7", + "rand_chacha 0.3.1", + "rayon", + "sha2 0.10.9", + "w3f-ring-proof", + "zeroize", +] + [[package]] name = "array-bytes" version = "6.2.3" @@ -644,48 +1008,36 @@ 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", "rusticata-macros", - "thiserror", + "thiserror 1.0.69", "time", ] [[package]] name = "asn1-rs" -version = "0.6.2" +version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5493c3bedbacf7fd7382c6346bbd66687d12bbaad3a89a2d2c303ee6cf20b048" +checksum = "56624a96882bb8c26d61312ae18cb45868e5a9992ea73c58e45c3101e56a1e60" dependencies = [ - "asn1-rs-derive 0.5.1", - "asn1-rs-impl 0.2.0", + "asn1-rs-derive 0.6.0", + "asn1-rs-impl", "displaydoc", "nom", "num-traits", "rusticata-macros", - "thiserror", + "thiserror 2.0.17", "time", ] -[[package]] -name = "asn1-rs-derive" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "726535892e8eae7e70657b4c8ea93d26b8553afb1ce617caee529ef96d7dee6c" -dependencies = [ - "proc-macro2", - "quote", - "syn 1.0.109", - "synstructure 0.12.6", -] - [[package]] name = "asn1-rs-derive" version = "0.5.1" @@ -694,19 +1046,20 @@ checksum = "965c2d33e53cb6b267e148a4cb0760bc01f4904c1cd4bb4002a085bb016d1490" dependencies = [ "proc-macro2", "quote", - "syn 2.0.79", - "synstructure 0.13.1", + "syn 2.0.110", + "synstructure 0.13.2", ] [[package]] -name = "asn1-rs-impl" -version = "0.1.0" +name = "asn1-rs-derive" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2777730b2039ac0f95f093556e61b6d26cebed5393ca6f152717777cec3a42ed" +checksum = "3109e49b1e4909e9db6515a30c633684d68cdeaa252f215214cb4fa1a5bfee2c" dependencies = [ "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.110", + "synstructure 0.13.2", ] [[package]] @@ -717,20 +1070,19 @@ checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7" dependencies = [ "proc-macro2", "quote", - "syn 2.0.79", + "syn 2.0.110", ] [[package]] name = "assert_cmd" -version = "2.0.16" +version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dc1835b7f27878de8525dc71410b5a31cdcc5f230aed5ba5df968e09c201b23d" +checksum = "bcbb6924530aa9e0432442af08bbcafdad182db80d2e560da42a6d442535bf85" dependencies = [ "anstyle", "bstr", - "doc-comment", "libc", - "predicates 3.1.2", + "predicates", "predicates-core", "predicates-tree", "wait-timeout", @@ -744,14 +1096,15 @@ checksum = "9b34d609dfbaf33d6889b2b7106d3ca345eacad44200913df5ba02bfd31d2ba9" [[package]] name = "asset-test-utils" -version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "27.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "cumulus-pallet-parachain-system", "cumulus-pallet-xcmp-queue", - "cumulus-primitives-core", - "frame-support", - "frame-system", + "cumulus-primitives-core 0.21.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "pallet-asset-conversion", "pallet-assets", "pallet-balances", "pallet-collator-selection", @@ -762,36 +1115,40 @@ dependencies = [ "parachains-common", "parachains-runtimes-test-utils", "parity-scale-codec", - "sp-io", - "sp-runtime", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "staging-parachain-info", - "staging-xcm", + "staging-xcm 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "staging-xcm-builder", "staging-xcm-executor", - "substrate-wasm-builder", + "xcm-runtime-apis", ] [[package]] name = "assets-common" -version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.25.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "cumulus-primitives-core", - "frame-support", + "cumulus-primitives-core 0.21.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "ethereum-standards", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "impl-trait-for-tuples", - "log", "pallet-asset-conversion", "pallet-assets", + "pallet-revive", + "pallet-revive-uapi", "pallet-xcm", "parachains-common", "parity-scale-codec", "scale-info", - "sp-api", - "sp-runtime", - "staging-xcm", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "staging-xcm 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "staging-xcm-builder", "staging-xcm-executor", - "substrate-wasm-builder", + "tracing", ] [[package]] @@ -807,9 +1164,9 @@ dependencies = [ [[package]] name = "async-channel" -version = "2.3.1" +version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "89b47800b0be77592da0afd425cc03468052844aff33b84e33cc696f64e77b6a" +checksum = "924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2" dependencies = [ "concurrent-queue", "event-listener-strategy", @@ -819,132 +1176,103 @@ dependencies = [ [[package]] name = "async-executor" -version = "1.13.1" +version = "1.13.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "30ca9a001c1e8ba5149f91a74362376cc6bc5b919d92d988668657bd570bdcec" +checksum = "497c00e0fd83a72a79a39fcbd8e3e2f055d6f6c7e025f3b3d91f4f8e76527fb8" dependencies = [ "async-task", "concurrent-queue", - "fastrand 2.1.1", - "futures-lite 2.3.0", + "fastrand", + "futures-lite", + "pin-project-lite", "slab", ] [[package]] name = "async-fs" -version = "1.6.0" +version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "279cf904654eeebfa37ac9bb1598880884924aab82e290aa65c9e77a0e142e06" +checksum = "8034a681df4aed8b8edbd7fbe472401ecf009251c8b40556b304567052e294c5" dependencies = [ - "async-lock 2.8.0", - "autocfg", + "async-lock", "blocking", - "futures-lite 1.13.0", + "futures-lite", ] [[package]] name = "async-io" -version = "1.13.0" +version = "2.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af" +checksum = "456b8a8feb6f42d237746d4b3e9a178494627745c3c56c6ea55d92ba50d026fc" dependencies = [ - "async-lock 2.8.0", "autocfg", "cfg-if", "concurrent-queue", - "futures-lite 1.13.0", - "log", - "parking", - "polling 2.8.0", - "rustix 0.37.27", - "slab", - "socket2 0.4.10", - "waker-fn", -] - -[[package]] -name = "async-io" -version = "2.3.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "444b0228950ee6501b3568d3c93bf1176a1fdbc3b758dcd9475046d30f4dc7e8" -dependencies = [ - "async-lock 3.4.0", - "cfg-if", - "concurrent-queue", "futures-io", - "futures-lite 2.3.0", + "futures-lite", "parking", - "polling 3.7.3", - "rustix 0.38.37", + "polling", + "rustix 1.1.2", "slab", - "tracing", - "windows-sys 0.59.0", -] - -[[package]] -name = "async-lock" -version = "2.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "287272293e9d8c41773cec55e365490fe034813a2f172f502d6ddcf75b2f582b" -dependencies = [ - "event-listener 2.5.3", + "windows-sys 0.61.2", ] [[package]] name = "async-lock" -version = "3.4.0" +version = "3.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ff6e472cdea888a4bd64f342f09b3f50e1886d32afe8df3d663c01140b811b18" +checksum = "5fd03604047cee9b6ce9de9f70c6cd540a0520c813cbd49bae61f33ab80ed1dc" dependencies = [ - "event-listener 5.3.1", + "event-listener 5.4.1", "event-listener-strategy", "pin-project-lite", ] [[package]] name = "async-net" -version = "1.8.0" +version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0434b1ed18ce1cf5769b8ac540e33f01fa9471058b5e89da9e06f3c882a8c12f" +checksum = "b948000fad4873c1c9339d60f2623323a0cfd3816e5181033c6a5cb68b2accf7" dependencies = [ - "async-io 1.13.0", + "async-io", "blocking", - "futures-lite 1.13.0", + "futures-lite", ] [[package]] name = "async-process" -version = "1.8.1" +version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ea6438ba0a08d81529c69b36700fa2f95837bfe3e776ab39cde9c14d9149da88" +checksum = "fc50921ec0055cdd8a16de48773bfeec5c972598674347252c0399676be7da75" dependencies = [ - "async-io 1.13.0", - "async-lock 2.8.0", + "async-channel 2.5.0", + "async-io", + "async-lock", "async-signal", + "async-task", "blocking", "cfg-if", - "event-listener 3.1.0", - "futures-lite 1.13.0", - "rustix 0.38.37", - "windows-sys 0.48.0", + "event-listener 5.4.1", + "futures-lite", + "rustix 1.1.2", ] [[package]] name = "async-signal" -version = "0.2.10" +version = "0.2.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "637e00349800c0bdf8bfc21ebbc0b6524abea702b0da4168ac00d070d0c0b9f3" +checksum = "43c070bbf59cd3570b6b2dd54cd772527c7c3620fce8be898406dd3ed6adc64c" dependencies = [ - "async-io 2.3.4", - "async-lock 3.4.0", + "async-io", + "async-lock", "atomic-waker", "cfg-if", "futures-core", "futures-io", - "rustix 0.38.37", + "rustix 1.1.2", "signal-hook-registry", "slab", - "windows-sys 0.59.0", + "windows-sys 0.61.2", ] [[package]] @@ -955,13 +1283,13 @@ checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de" [[package]] name = "async-trait" -version = "0.1.83" +version = "0.1.89" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "721cae7de5c34fbb2acd27e21e6d2cf7b886dce0c27388d46c4e6c47ea4318dd" +checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb" dependencies = [ "proc-macro2", "quote", - "syn 2.0.79", + "syn 2.0.110", ] [[package]] @@ -977,6 +1305,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 = "atomic-take" version = "1.1.0" @@ -1001,56 +1342,51 @@ dependencies = [ ] [[package]] -name = "auto_impl" +name = "aurora-engine-modexp" version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c87f3f15e7794432337fc718554eaa4dc8f04c9677a950ffe366f20a162ae42" +checksum = "518bc5745a6264b5fd7b09dffb9667e400ee9e2bbe18555fac75e1fe9afa0df9" +dependencies = [ + "hex", + "num", +] + +[[package]] +name = "auto_impl" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ffdcb70bdbc4d478427380519163274ac86e52916e10f0a8889adf0f96d3fee7" dependencies = [ "proc-macro2", "quote", - "syn 2.0.79", + "syn 2.0.110", ] [[package]] name = "autocfg" -version = "1.4.0" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" + +[[package]] +name = "az" +version = "1.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26" +checksum = "7b7e4c2464d97fe331d41de9d5db0def0a96f4d823b8b32a2efd503578988973" [[package]] name = "backtrace" -version = "0.3.74" +version = "0.3.76" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a" +checksum = "bb531853791a215d7c62a30daf0dde835f381ab5de4589cfe7c649d2cbe92bd6" dependencies = [ - "addr2line 0.24.1", + "addr2line 0.25.1", "cfg-if", "libc", "miniz_oxide", - "object 0.36.4", + "object 0.37.3", "rustc-demangle", - "windows-targets 0.52.6", -] - -[[package]] -name = "bandersnatch_vrfs" -version = "0.0.4" -source = "git+https://github.com/w3f/ring-vrf?rev=0fef826#0fef8266d851932ad25d6b41bc4b34d834d1e11d" -dependencies = [ - "ark-bls12-381", - "ark-ec", - "ark-ed-on-bls12-381-bandersnatch", - "ark-ff 0.4.2", - "ark-serialize 0.4.2", - "ark-std 0.4.0", - "dleq_vrf", - "rand_chacha", - "rand_core", - "ring 0.1.0", - "sha2 0.10.8", - "sp-ark-bls12-381", - "sp-ark-ed-on-bls12-381-bandersnatch", - "zeroize", + "windows-link", ] [[package]] @@ -1066,16 +1402,20 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf" [[package]] -name = "base64" -version = "0.13.1" +name = "base256emoji" +version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" +checksum = "b5e9430d9a245a77c92176e649af6e275f20839a48389859d1661e9a128d077c" +dependencies = [ + "const-str", + "match-lookup", +] [[package]] -name = "base64" -version = "0.21.7" +name = "base58" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" +checksum = "6107fe1be6682a68940da878d9e9f5e90ca5745b3dec9fd1bb393c8777d4f581" [[package]] name = "base64" @@ -1085,14 +1425,15 @@ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" [[package]] name = "base64ct" -version = "1.6.0" +version = "1.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" +checksum = "55248b47b0caf0546f7988906588779981c43bb1bc9d0c44087278f80cdb44ba" [[package]] name = "binary-merkle-tree" -version = "13.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "16.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "95c9f6900c9fd344d53fbdfb36e1343429079d73f4168c8ef48884bf15616dbd" dependencies = [ "hash-db", "log", @@ -1100,12 +1441,13 @@ dependencies = [ ] [[package]] -name = "bincode" -version = "1.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad" +name = "binary-merkle-tree" +version = "16.1.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "serde", + "hash-db", + "log", + "parity-scale-codec", ] [[package]] @@ -1126,32 +1468,51 @@ dependencies = [ "regex", "rustc-hash 1.1.0", "shlex", - "syn 2.0.79", + "syn 2.0.110", +] + +[[package]] +name = "bip32" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "db40d3dfbeab4e031d78c844642fa0caa0b0db11ce1607ac9d2986dff1405c69" +dependencies = [ + "bs58", + "hmac 0.12.1", + "k256", + "rand_core 0.6.4", + "ripemd", + "secp256k1 0.27.0", + "sha2 0.10.9", + "subtle 2.6.1", + "zeroize", ] [[package]] name = "bip39" -version = "2.0.0" +version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "93f2635620bf0b9d4576eb7bb9a38a55df78bd1205d26fa994b25911a69f212f" +checksum = "43d193de1f7487df1914d3a568b772458861d33f9c54249612cc2893d6915054" dependencies = [ - "bitcoin_hashes 0.11.0", + "bitcoin_hashes 0.13.0", + "serde", + "unicode-normalization", ] [[package]] name = "bit-set" -version = "0.5.3" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1" +checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3" dependencies = [ "bit-vec", ] [[package]] name = "bit-vec" -version = "0.6.3" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb" +checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7" [[package]] name = "bitcoin-internals" @@ -1160,10 +1521,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9425c3bf7089c983facbae04de54513cce73b41c7f9ff8c845b54e7bc64ebbfb" [[package]] -name = "bitcoin_hashes" -version = "0.11.0" +name = "bitcoin-io" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "90064b8dee6815a6470d60bad07bbbaee885c0e12d04177138fa3291a01b7bc4" +checksum = "0b47c4ab7a93edb0c7198c5535ed9b52b63095f4e9b45279c6736cec4b856baf" [[package]] name = "bitcoin_hashes" @@ -1172,7 +1533,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]] @@ -1183,9 +1554,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" [[package]] name = "bitflags" -version = "2.6.0" +version = "2.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" +checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3" [[package]] name = "bitvec" @@ -1233,9 +1604,9 @@ dependencies = [ [[package]] name = "blake2b_simd" -version = "1.0.2" +version = "1.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "23285ad32269793932e830392f2fe2f83e26488fd3ec778883a93c8323735780" +checksum = "06e903a20b159e944f91ec8499fe1e55651480c541ea0a584f5d967c49ad9d99" dependencies = [ "arrayref", "arrayvec 0.7.6", @@ -1244,9 +1615,9 @@ dependencies = [ [[package]] name = "blake2s_simd" -version = "1.0.2" +version = "1.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "94230421e395b9920d23df13ea5d77a20e1725331f90fbbf6df6040b33f756ae" +checksum = "e90f7deecfac93095eb874a40febd69427776e24e1bd7f87f33ac62d6f0174df" dependencies = [ "arrayref", "arrayvec 0.7.6", @@ -1255,9 +1626,9 @@ dependencies = [ [[package]] name = "blake3" -version = "1.5.4" +version = "1.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d82033247fd8e890df8f740e407ad4d038debb9eb1f40533fffb32e7d17dc6f7" +checksum = "3888aaa89e4b2a40fca9848e400f6a658a5a3978de7be858e209cafa8be9a4a0" dependencies = [ "arrayref", "arrayvec 0.7.6", @@ -1272,7 +1643,7 @@ version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4" dependencies = [ - "generic-array 0.14.7", + "generic-array 0.14.9", ] [[package]] @@ -1281,28 +1652,76 @@ version = "0.10.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" dependencies = [ - "generic-array 0.14.7", + "generic-array 0.14.9", ] [[package]] name = "blocking" -version = "1.6.1" +version = "1.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "703f41c54fc768e63e091340b424302bb1c29ef4aa0c7f10fe849dfb114d29ea" +checksum = "e83f8d02be6967315521be875afa792a316e28d57b5a2d401897e2a7921b7f21" dependencies = [ - "async-channel 2.3.1", + "async-channel 2.5.0", "async-task", "futures-io", - "futures-lite 2.3.0", + "futures-lite", "piper", ] +[[package]] +name = "blst" +version = "0.3.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dcdb4c7013139a150f9fc55d123186dbfaba0d912817466282c73ac49e71fb45" +dependencies = [ + "cc", + "glob", + "threadpool", + "zeroize", +] + +[[package]] +name = "borsh" +version = "1.5.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ad8646f98db542e39fc66e68a20b2144f6a732636df7c2354e74645faaa433ce" +dependencies = [ + "borsh-derive", + "cfg_aliases 0.2.1", +] + +[[package]] +name = "borsh-derive" +version = "1.5.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fdd1d3c0c2f5833f22386f252fe8ed005c7f59fdcddeef025c01b4c3b9fd9ac3" +dependencies = [ + "once_cell", + "proc-macro-crate 3.4.0", + "proc-macro2", + "quote", + "syn 2.0.110", +] + [[package]] name = "bounded-collections" -version = "0.2.0" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ca548b6163b872067dc5eb82fd130c56881435e30367d2073594a3d9744120dd" +dependencies = [ + "log", + "parity-scale-codec", + "scale-info", + "serde", +] + +[[package]] +name = "bounded-collections" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d32385ecb91a31bddaf908e8dcf4a15aef1bcd3913cc03ebfad02ff6d568abc1" +checksum = "dee8eddd066a8825ec5570528e6880471210fd5d88cb6abbe1cfdd51ca249c33" dependencies = [ + "jam-codec", "log", "parity-scale-codec", "scale-info", @@ -1315,135 +1734,121 @@ version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "68534a48cbf63a4b1323c433cf21238c9ec23711e0df13b08c33e5c2082663ce" dependencies = [ - "thiserror", + "thiserror 1.0.69", ] [[package]] name = "bp-header-chain" -version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.23.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "bp-runtime", "finality-grandpa", - "frame-support", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "parity-scale-codec", "scale-info", "serde", - "sp-consensus-grandpa", - "sp-core", - "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", + "sp-consensus-grandpa 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "bp-messages" -version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.23.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "bp-header-chain", "bp-runtime", - "frame-support", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "bp-parachains" -version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.23.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "bp-header-chain", "bp-polkadot-core", "bp-runtime", - "frame-support", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "impl-trait-for-tuples", "parity-scale-codec", "scale-info", - "sp-core", - "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] -name = "bp-polkadot" -version = "0.5.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +name = "bp-polkadot-core" +version = "0.23.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "bp-header-chain", - "bp-polkadot-core", + "bp-messages", "bp-runtime", - "frame-support", - "sp-api", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", -] - -[[package]] -name = "bp-polkadot-core" -version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" -dependencies = [ - "bp-messages", - "bp-runtime", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "parity-scale-codec", - "parity-util-mem", "scale-info", "serde", - "sp-core", - "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "bp-relayers" -version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.23.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "bp-header-chain", "bp-messages", "bp-parachains", "bp-runtime", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "pallet-utility", "parity-scale-codec", "scale-info", - "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "bp-runtime" -version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.23.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "hash-db", "impl-trait-for-tuples", - "log", "num-traits", "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-runtime", - "sp-state-machine", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "sp-trie", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-state-machine 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-trie 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "tracing", "trie-db", ] [[package]] name = "bp-test-utils" -version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.23.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "bp-header-chain", "bp-parachains", @@ -1452,64 +1857,66 @@ dependencies = [ "ed25519-dalek", "finality-grandpa", "parity-scale-codec", - "sp-application-crypto", - "sp-consensus-grandpa", - "sp-core", - "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "sp-trie", + "sp-application-crypto 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus-grandpa 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-trie 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "bp-xcm-bridge-hub" -version = "0.2.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.9.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "bp-messages", "bp-runtime", - "frame-support", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "staging-xcm", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "staging-xcm 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "bp-xcm-bridge-hub-router" -version = "0.6.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.20.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "parity-scale-codec", "scale-info", - "sp-core", - "sp-runtime", - "staging-xcm", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "staging-xcm 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "bridge-hub-common" -version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.16.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "cumulus-primitives-core", - "frame-support", + "cumulus-primitives-core 0.21.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "pallet-message-queue", "parity-scale-codec", "scale-info", "snowbridge-core", - "sp-core", - "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "staging-xcm", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "staging-xcm 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "staging-xcm-builder", + "staging-xcm-executor", ] [[package]] name = "bridge-hub-test-utils" -version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.26.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "asset-test-utils", "bp-header-chain", @@ -1519,14 +1926,11 @@ dependencies = [ "bp-relayers", "bp-runtime", "bp-test-utils", - "bp-xcm-bridge-hub", - "bridge-runtime-common", "cumulus-pallet-parachain-system", "cumulus-pallet-xcmp-queue", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "impl-trait-for-tuples", - "log", "pallet-balances", "pallet-bridge-grandpa", "pallet-bridge-messages", @@ -1539,20 +1943,22 @@ dependencies = [ "parachains-common", "parachains-runtimes-test-utils", "parity-scale-codec", - "sp-core", - "sp-io", - "sp-keyring", - "sp-runtime", - "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "staging-xcm", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-keyring 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-tracing 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "staging-xcm 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "staging-xcm-builder", "staging-xcm-executor", + "tracing", ] [[package]] name = "bridge-runtime-common" -version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.24.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "bp-header-chain", "bp-messages", @@ -1560,10 +1966,8 @@ dependencies = [ "bp-polkadot-core", "bp-relayers", "bp-runtime", - "bp-xcm-bridge-hub", - "frame-support", - "frame-system", - "log", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "pallet-bridge-grandpa", "pallet-bridge-messages", "pallet-bridge-parachains", @@ -1572,11 +1976,13 @@ dependencies = [ "pallet-utility", "parity-scale-codec", "scale-info", - "sp-io", - "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "sp-trie", - "staging-xcm", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-trie 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-weights 33.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "staging-xcm 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "tracing", "tuplex", ] @@ -1586,17 +1992,18 @@ version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bf88ba1141d185c399bee5288d850d63b8369520c1eafc32a0430b5b6c287bf4" dependencies = [ + "sha2 0.10.9", "tinyvec", ] [[package]] name = "bstr" -version = "1.10.0" +version = "1.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "40723b8fb387abc38f4f4a37c09073622e41dd12327033091ef8950659e6dc0c" +checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab" dependencies = [ "memchr", - "regex-automata 0.4.8", + "regex-automata", "serde", ] @@ -1611,15 +2018,18 @@ dependencies = [ [[package]] name = "bumpalo" -version = "3.16.0" +version = "3.19.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" +checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43" +dependencies = [ + "allocator-api2", +] [[package]] name = "byte-slice-cast" -version = "1.2.2" +version = "1.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c3ac9f8b63eca6fd385229b3675f6cc0dc5c8a5c8a54a59d4f52ffd670d87b0c" +checksum = "7575182f7272186991736b70173b0ea045398f984bf5ebbb3804736ce1330c9d" [[package]] name = "byte-tools" @@ -1629,9 +2039,9 @@ checksum = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7" [[package]] name = "bytemuck" -version = "1.18.0" +version = "1.24.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "94bbb0ad554ad961ddc5da507a12a29b14e4ae5bda06b19f575a3e6079d2e2ae" +checksum = "1fbdf580320f38b612e485521afda1ee26d10cc9884efaaa750d383e13e3c5f4" [[package]] name = "byteorder" @@ -1641,30 +2051,47 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" [[package]] name = "bytes" -version = "1.7.2" +version = "1.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "428d9aa8fbc0670b7b8d6030a7fadd0f86151cae55e4dbbece15f3780a3dfaf3" +checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a" +dependencies = [ + "serde", +] [[package]] name = "bytesize" -version = "1.3.0" +version = "1.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a3e368af43e418a04d52505cf3dbc23dda4e3407ae2fa99fd0e4f308ce546acc" +checksum = "2e93abca9e28e0a1b9877922aacb20576e05d4679ffa78c3d6dc22a26a216659" dependencies = [ "serde", ] [[package]] name = "bzip2-sys" -version = "0.1.11+1.0.8" +version = "0.1.13+1.0.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc" +checksum = "225bff33b2141874fe80d71e07d6eec4f85c5c216453dd96388240f96e1acc14" dependencies = [ "cc", - "libc", "pkg-config", ] +[[package]] +name = "c-kzg" +version = "2.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e00bf4b112b07b505472dbefd19e37e53307e2bfed5a79e0cc161d58ccd0e687" +dependencies = [ + "blst", + "cc", + "glob", + "hex", + "libc", + "once_cell", + "serde", +] + [[package]] name = "c2-chacha" version = "0.3.3" @@ -1677,18 +2104,18 @@ dependencies = [ [[package]] name = "camino" -version = "1.1.9" +version = "1.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b96ec4966b5813e2c0507c1f86115c8c5abaadc3980879c3424042a02fd1ad3" +checksum = "276a59bf2b2c967788139340c9f0c5b12d7fd6630315c15c217e559de85d2609" dependencies = [ - "serde", + "serde_core", ] [[package]] name = "cargo-platform" -version = "0.1.8" +version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "24b1f0365a6c6bb4020cd05806fd0d33c44d38046b8bd7f0e40814b9763cabfc" +checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea" dependencies = [ "serde", ] @@ -1701,18 +2128,19 @@ checksum = "eee4243f1f26fc7a42710e7439c149e2b10b05472f88090acce52632f231a73a" dependencies = [ "camino", "cargo-platform", - "semver 1.0.23", + "semver 1.0.27", "serde", "serde_json", - "thiserror", + "thiserror 1.0.69", ] [[package]] name = "cc" -version = "1.1.24" +version = "1.2.45" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "812acba72f0a070b003d3697490d2b55b837230ae7c6c6497f05cc2ddbb8d938" +checksum = "35900b6c8d709fb1d854671ae27aeaa9eec2f8b01b364e1619a40da3e6fe2afe" dependencies = [ + "find-msvc-tools", "jobserver", "libc", "shlex", @@ -1744,9 +2172,9 @@ dependencies = [ [[package]] name = "cfg-if" -version = "1.0.0" +version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" +checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" [[package]] name = "cfg_aliases" @@ -1754,6 +2182,12 @@ version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e" +[[package]] +name = "cfg_aliases" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" + [[package]] name = "chacha" version = "0.3.0" @@ -1790,16 +2224,16 @@ dependencies = [ [[package]] name = "chrono" -version = "0.4.38" +version = "0.4.42" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401" +checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2" dependencies = [ - "android-tzdata", "iana-time-zone", "js-sys", "num-traits", + "serde", "wasm-bindgen", - "windows-targets 0.52.6", + "windows-link", ] [[package]] @@ -1817,15 +2251,14 @@ dependencies = [ [[package]] name = "cid" -version = "0.10.1" +version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fd94671561e36e4e7de75f753f577edafb0e7c05d6e4547229fdf7938fbcd2c3" +checksum = "3147d8272e8fa0ccd29ce51194dd98f79ddfb8191ba9e3409884e751798acf3a" dependencies = [ "core2", "multibase", - "multihash 0.18.1", - "serde", - "unsigned-varint 0.7.2", + "multihash 0.19.3", + "unsigned-varint 0.8.0", ] [[package]] @@ -1834,7 +2267,7 @@ version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "12f8e7987cbd042a63249497f41aed09f8e65add917ea6566effbc56578d6801" dependencies = [ - "generic-array 0.14.7", + "generic-array 0.14.9", ] [[package]] @@ -1861,9 +2294,9 @@ dependencies = [ [[package]] name = "clap" -version = "4.5.18" +version = "4.5.51" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b0956a43b323ac1afaffc053ed5c4b7c1f1800bacd1683c353aabbb752515dd3" +checksum = "4c26d721170e0295f191a69bd9a1f93efcdb0aff38684b61ab5750468972e5f5" dependencies = [ "clap_builder", "clap_derive", @@ -1871,9 +2304,9 @@ dependencies = [ [[package]] name = "clap_builder" -version = "4.5.18" +version = "4.5.51" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4d72166dd41634086d5803a47eb71ae740e61d84709c36f3c34110173db3961b" +checksum = "75835f0c7bf681bfd05abe44e965760fea999a5286c6eb2d59883634fd02011a" dependencies = [ "anstream", "anstyle", @@ -1884,78 +2317,88 @@ dependencies = [ [[package]] name = "clap_complete" -version = "4.5.29" +version = "4.5.60" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8937760c3f4c60871870b8c3ee5f9b30771f792a7045c48bcbba999d7d6b3b8e" +checksum = "8e602857739c5a4291dfa33b5a298aeac9006185229a700e5810a3ef7272d971" dependencies = [ "clap", ] [[package]] name = "clap_derive" -version = "4.5.18" +version = "4.5.49" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ac6a0c7b1a9e9a5186361f67dfa1b88213572f427fb9ab038efb2bd8c582dab" +checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671" dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.79", + "syn 2.0.110", ] [[package]] name = "clap_lex" -version = "0.7.2" +version = "0.7.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97" +checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d" [[package]] name = "coarsetime" -version = "0.1.34" +version = "0.1.36" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "13b3839cf01bb7960114be3ccf2340f541b6d0c81f8690b007b2b39f750f7e5d" +checksum = "91849686042de1b41cd81490edc83afbcb0abe5a9b6f2c4114f23ce8cca1bcf4" dependencies = [ "libc", "wasix", "wasm-bindgen", ] +[[package]] +name = "cobs" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fa961b519f0b462e3a3b4a34b64d119eeaca1d59af726fe450bbba07a9fc0a1" +dependencies = [ + "thiserror 2.0.17", +] + [[package]] name = "codespan-reporting" -version = "0.11.1" +version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e" +checksum = "af491d569909a7e4dee0ad7db7f5341fef5c614d5b8ec8cf765732aba3cff681" dependencies = [ + "serde", "termcolor", "unicode-width", ] [[package]] name = "color-print" -version = "0.3.6" +version = "0.3.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1ee543c60ff3888934877a5671f45494dd27ed4ba25c6670b9a7576b7ed7a8c0" +checksum = "3aa954171903797d5623e047d9ab69d91b493657917bdfb8c2c80ecaf9cdb6f4" dependencies = [ "color-print-proc-macro", ] [[package]] name = "color-print-proc-macro" -version = "0.3.6" +version = "0.3.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "77ff1a80c5f3cb1ca7c06ffdd71b6a6dd6d8f896c42141fbd43f50ed28dcdb93" +checksum = "692186b5ebe54007e45a59aea47ece9eb4108e141326c304cdc91699a7118a22" dependencies = [ "nom", "proc-macro2", "quote", - "syn 2.0.79", + "syn 2.0.110", ] [[package]] name = "colorchoice" -version = "1.0.2" +version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d3fd119d74b830634cea2a0f58bbd0d54540518a14397557951e79340abc28c0" +checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75" [[package]] name = "combine" @@ -1969,31 +2412,14 @@ dependencies = [ [[package]] name = "comfy-table" -version = "7.1.1" +version = "7.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b34115915337defe99b2aff5c2ce6771e5fbc4079f4b506301f5cf394c8452f7" +checksum = "b03b7db8e0b4b2fdad6c551e634134e99ec000e5c8c3b6856c65e8bbaded7a3b" dependencies = [ - "strum 0.26.3", - "strum_macros 0.26.4", + "unicode-segmentation", "unicode-width", ] -[[package]] -name = "common" -version = "0.1.0" -source = "git+https://github.com/w3f/ring-proof?rev=665f5f5#665f5f51af5734c7b6d90b985dd6861d4c5b4752" -dependencies = [ - "ark-ec", - "ark-ff 0.4.2", - "ark-poly", - "ark-serialize 0.4.2", - "ark-std 0.4.0", - "fflonk", - "getrandom_or_panic", - "merlin", - "rand_chacha", -] - [[package]] name = "common-path" version = "1.0.0" @@ -2011,28 +2437,27 @@ dependencies = [ [[package]] name = "console" -version = "0.15.8" +version = "0.15.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0e1f83fc076bd6dd27517eacdf25fef6c4dfe5f1d7448bafaaf3a26f13b5e4eb" +checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8" dependencies = [ "encode_unicode", - "lazy_static", "libc", + "once_cell", "unicode-width", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] name = "const-hex" -version = "1.13.1" +version = "1.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0121754e84117e65f9d90648ee6aa4882a6e63110307ab73967a4c5e7e69e586" +checksum = "3bb320cac8a0750d7f25280aa97b09c26edfe161164238ecbbb31092b079e735" dependencies = [ "cfg-if", "cpufeatures", - "hex", "proptest", - "serde", + "serde_core", ] [[package]] @@ -2056,11 +2481,37 @@ version = "0.1.16" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e" dependencies = [ - "getrandom", + "getrandom 0.2.16", "once_cell", "tiny-keccak", ] +[[package]] +name = "const-str" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2f421161cb492475f1661ddc9815a745a1c894592070661180fdec3d4872e9c3" + +[[package]] +name = "const_format" +version = "0.2.35" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7faa7469a93a566e9ccc1c73fe783b4a65c274c5ace346038dca9c39fe0030ad" +dependencies = [ + "const_format_proc_macros", +] + +[[package]] +name = "const_format_proc_macros" +version = "0.2.34" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d57c2eccfb16dbac1f4e61e206105db5820c9d26c3c472bc17c774259ef7744" +dependencies = [ + "proc-macro2", + "quote", + "unicode-xid", +] + [[package]] name = "constant_time_eq" version = "0.1.5" @@ -2073,12 +2524,6 @@ version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6" -[[package]] -name = "constcat" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd7e35aee659887cbfb97aaf227ac12cad1a9d7c71e55ff3376839ed4e282d08" - [[package]] name = "convert_case" version = "0.4.0" @@ -2095,6 +2540,16 @@ dependencies = [ "libc", ] +[[package]] +name = "core-foundation" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6" +dependencies = [ + "core-foundation-sys", + "libc", +] + [[package]] name = "core-foundation-sys" version = "0.8.7" @@ -2112,9 +2567,9 @@ dependencies = [ [[package]] name = "cpp_demangle" -version = "0.3.5" +version = "0.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eeaa953eaad386a53111e47172c2fedba671e5684c8dd601a5f474f4f118710f" +checksum = "f2bb79cb74d735044c972aae58ed0aaa9a837e85b01106a54c39e42e97f62253" dependencies = [ "cfg-if", ] @@ -2131,71 +2586,120 @@ dependencies = [ [[package]] name = "cpufeatures" -version = "0.2.14" +version = "0.2.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "608697df725056feaccfa42cffdaeeec3fccc4ffc38358ecd19b243e716a78e0" +checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" dependencies = [ "libc", ] +[[package]] +name = "cranelift-assembler-x64" +version = "0.122.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ae7b60ec3fd7162427d3b3801520a1908bef7c035b52983cd3ca11b8e7deb51" +dependencies = [ + "cranelift-assembler-x64-meta", +] + +[[package]] +name = "cranelift-assembler-x64-meta" +version = "0.122.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6511c200fed36452697b4b6b161eae57d917a2044e6333b1c1389ed63ccadeee" +dependencies = [ + "cranelift-srcgen", +] + [[package]] name = "cranelift-bforest" -version = "0.95.1" +version = "0.122.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1277fbfa94bc82c8ec4af2ded3e639d49ca5f7f3c7eeab2c66accd135ece4e70" +checksum = "5f7086a645aa58bae979312f64e3029ac760ac1b577f5cd2417844842a2ca07f" dependencies = [ "cranelift-entity", ] +[[package]] +name = "cranelift-bitset" +version = "0.122.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5225b4dec45f3f3dbf383f12560fac5ce8d780f399893607e21406e12e77f491" +dependencies = [ + "serde", + "serde_derive", +] + [[package]] name = "cranelift-codegen" -version = "0.95.1" +version = "0.122.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c6e8c31ad3b2270e9aeec38723888fe1b0ace3bea2b06b3f749ccf46661d3220" +checksum = "858fb3331e53492a95979378d6df5208dd1d0d315f19c052be8115f4efc888e0" dependencies = [ "bumpalo", + "cranelift-assembler-x64", "cranelift-bforest", + "cranelift-bitset", "cranelift-codegen-meta", "cranelift-codegen-shared", + "cranelift-control", "cranelift-entity", "cranelift-isle", - "gimli 0.27.3", - "hashbrown 0.13.2", + "gimli 0.31.1", + "hashbrown 0.15.5", "log", - "regalloc2 0.6.1", + "pulley-interpreter", + "regalloc2 0.12.2", + "rustc-hash 2.1.1", + "serde", "smallvec", "target-lexicon", + "wasmtime-internal-math", ] [[package]] name = "cranelift-codegen-meta" -version = "0.95.1" +version = "0.122.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c8ac5ac30d62b2d66f12651f6b606dbdfd9c2cfd0908de6b387560a277c5c9da" +checksum = "456715b9d5f12398f156d5081096e7b5d039f01b9ecc49790a011c8e43e65b5f" dependencies = [ + "cranelift-assembler-x64-meta", "cranelift-codegen-shared", + "cranelift-srcgen", + "pulley-interpreter", ] [[package]] name = "cranelift-codegen-shared" -version = "0.95.1" +version = "0.122.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0306041099499833f167a0ddb707e1e54100f1a84eab5631bc3dad249708f482" + +[[package]] +name = "cranelift-control" +version = "0.122.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dd82b8b376247834b59ed9bdc0ddeb50f517452827d4a11bccf5937b213748b8" +checksum = "1672945e1f9afc2297f49c92623f5eabc64398e2cb0d824f8f72a2db2df5af23" +dependencies = [ + "arbitrary", +] [[package]] name = "cranelift-entity" -version = "0.95.1" +version = "0.122.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "40099d38061b37e505e63f89bab52199037a72b931ad4868d9089ff7268660b0" +checksum = "aa3cd55eb5f3825b9ae5de1530887907360a6334caccdc124c52f6d75246c98a" dependencies = [ + "cranelift-bitset", "serde", + "serde_derive", ] [[package]] name = "cranelift-frontend" -version = "0.95.1" +version = "0.122.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "64a25d9d0a0ae3079c463c34115ec59507b4707175454f0eee0891e83e30e82d" +checksum = "781f9905f8139b8de22987b66b522b416fe63eb76d823f0b3a8c02c8fd9500c7" dependencies = [ "cranelift-codegen", "log", @@ -2205,15 +2709,15 @@ dependencies = [ [[package]] name = "cranelift-isle" -version = "0.95.1" +version = "0.122.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "80de6a7d0486e4acbd5f9f87ec49912bf4c8fb6aea00087b989685460d4469ba" +checksum = "a05337a2b02c3df00b4dd9a263a027a07b3dff49f61f7da3b5d195c21eaa633d" [[package]] name = "cranelift-native" -version = "0.95.1" +version = "0.122.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb6b03e0e03801c4b3fd8ce0758a94750c07a44e7944cc0ffbf0d3f2e7c79b00" +checksum = "2eee7a496dd66380082c9c5b6f2d5fa149cec0ec383feec5caf079ca2b3671c2" dependencies = [ "cranelift-codegen", "libc", @@ -2221,35 +2725,55 @@ dependencies = [ ] [[package]] -name = "cranelift-wasm" -version = "0.95.1" +name = "cranelift-srcgen" +version = "0.122.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ff3220489a3d928ad91e59dd7aeaa8b3de18afb554a6211213673a71c90737ac" +checksum = "b530783809a55cb68d070e0de60cfbb3db0dc94c8850dd5725411422bedcf6bb" + +[[package]] +name = "crc" +version = "3.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9710d3b3739c2e349eb44fe848ad0b7c8cb1e42bd87ee49371df2f7acaf3e675" dependencies = [ - "cranelift-codegen", - "cranelift-entity", - "cranelift-frontend", - "itertools 0.10.5", - "log", - "smallvec", - "wasmparser", - "wasmtime-types", + "crc-catalog", ] +[[package]] +name = "crc-catalog" +version = "2.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5" + [[package]] name = "crc32fast" -version = "1.4.2" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3" +checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511" dependencies = [ "cfg-if", ] +[[package]] +name = "critical-section" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b" + +[[package]] +name = "crossbeam-channel" +version = "0.5.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2" +dependencies = [ + "crossbeam-utils", +] + [[package]] name = "crossbeam-deque" -version = "0.8.5" +version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d" +checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51" dependencies = [ "crossbeam-epoch", "crossbeam-utils", @@ -2266,24 +2790,24 @@ dependencies = [ [[package]] name = "crossbeam-queue" -version = "0.3.11" +version = "0.3.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "df0346b5d5e76ac2fe4e327c5fd1118d6be7c51dfb18f9b7922923f287471e35" +checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115" dependencies = [ "crossbeam-utils", ] [[package]] name = "crossbeam-utils" -version = "0.8.20" +version = "0.8.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80" +checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" [[package]] name = "crunchy" -version = "0.2.2" +version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" +checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5" [[package]] name = "crypto-bigint" @@ -2291,8 +2815,8 @@ version = "0.5.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76" dependencies = [ - "generic-array 0.14.7", - "rand_core", + "generic-array 0.14.9", + "rand_core 0.6.4", "subtle 2.6.1", "zeroize", ] @@ -2303,8 +2827,8 @@ version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" dependencies = [ - "generic-array 0.14.7", - "rand_core", + "generic-array 0.14.9", + "rand_core 0.6.4", "typenum", ] @@ -2324,8 +2848,23 @@ version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b584a330336237c1eecd3e94266efb216c56ed91225d634cb2991c5f3fd1aeab" dependencies = [ - "generic-array 0.14.7", + "generic-array 0.14.9", + "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.9", + "poly1305", + "salsa20", "subtle 2.6.1", + "zeroize", ] [[package]] @@ -2337,337 +2876,398 @@ dependencies = [ "cipher 0.4.4", ] +[[package]] +name = "cumulus-client-bootnodes" +version = "0.5.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" +dependencies = [ + "array-bytes", + "async-channel 1.9.0", + "cumulus-primitives-core 0.21.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "cumulus-relay-chain-interface 0.26.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "futures", + "hex", + "ip_network", + "log", + "num-traits", + "parachains-common", + "parity-scale-codec", + "prost 0.12.6", + "prost-build", + "sc-network 0.53.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-service 0.54.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus-babe 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "tokio", +] + [[package]] name = "cumulus-client-cli" -version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.26.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "clap", "parity-scale-codec", - "sc-chain-spec", - "sc-cli", - "sc-client-api", - "sc-service", - "sp-blockchain", - "sp-core", - "sp-runtime", + "sc-chain-spec 46.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-cli 0.55.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-client-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-service 0.54.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-blockchain 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "url", ] [[package]] name = "cumulus-client-collator" -version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.26.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "cumulus-client-consensus-common", "cumulus-client-network", - "cumulus-primitives-core", + "cumulus-primitives-core 0.21.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "futures", "parity-scale-codec", - "parking_lot 0.12.3", - "polkadot-node-primitives", + "parking_lot 0.12.5", + "polkadot-node-primitives 22.0.0", "polkadot-node-subsystem", - "polkadot-overseer", - "polkadot-primitives", - "sc-client-api", - "sp-api", - "sp-consensus", - "sp-core", - "sp-runtime", + "polkadot-overseer 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "polkadot-primitives 21.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-client-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "tracing", ] [[package]] name = "cumulus-client-consensus-aura" -version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.26.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "async-trait", "cumulus-client-collator", "cumulus-client-consensus-common", "cumulus-client-consensus-proposer", - "cumulus-client-parachain-inherent", + "cumulus-client-parachain-inherent 0.20.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "cumulus-primitives-aura", - "cumulus-primitives-core", - "cumulus-relay-chain-interface", + "cumulus-primitives-core 0.21.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "cumulus-relay-chain-interface 0.26.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "futures", "parity-scale-codec", - "parking_lot 0.12.3", - "polkadot-node-primitives", + "parking_lot 0.12.5", + "polkadot-node-primitives 22.0.0", "polkadot-node-subsystem", "polkadot-node-subsystem-util", - "polkadot-overseer", - "polkadot-primitives", - "sc-client-api", - "sc-consensus", + "polkadot-overseer 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "polkadot-primitives 21.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-client-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-consensus 0.52.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "sc-consensus-aura", - "sc-consensus-babe", - "sc-consensus-slots", - "sc-telemetry", - "sc-utils", + "sc-consensus-babe 0.53.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-consensus-slots 0.52.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-telemetry 30.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-utils 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "schnellru", - "sp-api", - "sp-application-crypto", - "sp-block-builder", - "sp-blockchain", - "sp-consensus", - "sp-consensus-aura", - "sp-core", - "sp-inherents", - "sp-keystore", - "sp-runtime", - "sp-state-machine", - "sp-timestamp", - "substrate-prometheus-endpoint", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-application-crypto 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-block-builder 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-blockchain 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus-aura 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-inherents 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-keystore 0.44.1 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-state-machine 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-timestamp 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-trie 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "substrate-prometheus-endpoint 0.17.7 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "tokio", "tracing", ] [[package]] name = "cumulus-client-consensus-common" -version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.26.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "async-trait", "cumulus-client-pov-recovery", - "cumulus-primitives-core", - "cumulus-relay-chain-interface", + "cumulus-primitives-core 0.21.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "cumulus-relay-chain-interface 0.26.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "cumulus-relay-chain-streams", "dyn-clone", "futures", "log", "parity-scale-codec", - "polkadot-primitives", - "sc-client-api", - "sc-consensus", - "sc-consensus-babe", + "polkadot-primitives 21.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-client-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-consensus 0.52.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-consensus-babe 0.53.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-network 0.53.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "schnellru", - "sp-blockchain", - "sp-consensus", - "sp-consensus-slots", - "sp-core", - "sp-runtime", - "sp-timestamp", - "sp-trie", - "sp-version", - "substrate-prometheus-endpoint", + "sp-blockchain 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus-slots 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-timestamp 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-trie 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-version 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "substrate-prometheus-endpoint 0.17.7 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "tracing", ] [[package]] name = "cumulus-client-consensus-proposer" -version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.22.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "anyhow", "async-trait", - "cumulus-primitives-parachain-inherent", - "sp-consensus", - "sp-inherents", - "sp-runtime", - "sp-state-machine", - "thiserror", + "cumulus-primitives-parachain-inherent 0.21.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-basic-authorship", + "sc-block-builder 0.47.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-transaction-pool-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-blockchain 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-inherents 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-state-machine 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "thiserror 1.0.69", ] [[package]] name = "cumulus-client-consensus-relay-chain" -version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.26.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "async-trait", "cumulus-client-consensus-common", - "cumulus-primitives-core", - "cumulus-relay-chain-interface", + "cumulus-primitives-core 0.21.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "cumulus-relay-chain-interface 0.26.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "futures", - "parking_lot 0.12.3", - "sc-consensus", - "sp-api", - "sp-block-builder", - "sp-blockchain", - "sp-consensus", - "sp-core", - "sp-inherents", - "sp-runtime", - "substrate-prometheus-endpoint", + "parking_lot 0.12.5", + "sc-consensus 0.52.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-block-builder 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-blockchain 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-inherents 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "substrate-prometheus-endpoint 0.17.7 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "tracing", ] [[package]] name = "cumulus-client-network" -version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.26.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "async-trait", - "cumulus-relay-chain-interface", + "cumulus-relay-chain-interface 0.26.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "futures", "futures-timer", "parity-scale-codec", - "parking_lot 0.12.3", - "polkadot-node-primitives", + "parking_lot 0.12.5", + "polkadot-node-primitives 22.0.0", "polkadot-node-subsystem", - "polkadot-parachain-primitives", - "polkadot-primitives", - "sc-client-api", - "sp-api", - "sp-blockchain", - "sp-consensus", - "sp-core", - "sp-runtime", - "sp-state-machine", - "sp-version", + "polkadot-parachain-primitives 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "polkadot-primitives 21.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-client-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-network 0.53.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-blockchain 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-state-machine 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-version 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "tracing", ] [[package]] name = "cumulus-client-parachain-inherent" -version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.20.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f192cd1be000a5660d8122f93feee02902e3250153194dc0afac5613e29a186b" +dependencies = [ + "async-trait", + "cumulus-primitives-core 0.21.0 (registry+https://github.com/rust-lang/crates.io-index)", + "cumulus-primitives-parachain-inherent 0.21.0 (registry+https://github.com/rust-lang/crates.io-index)", + "cumulus-relay-chain-interface 0.26.0 (registry+https://github.com/rust-lang/crates.io-index)", + "cumulus-test-relay-sproof-builder 0.22.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec", + "sc-client-api 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-consensus-babe 0.53.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-crypto-hashing 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-inherents 39.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-runtime 44.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-state-machine 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-storage 22.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "tracing", +] + +[[package]] +name = "cumulus-client-parachain-inherent" +version = "0.20.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "async-trait", - "cumulus-primitives-core", - "cumulus-primitives-parachain-inherent", - "cumulus-relay-chain-interface", - "cumulus-test-relay-sproof-builder", - "parity-scale-codec", - "sc-client-api", - "sp-api", - "sp-crypto-hashing", - "sp-inherents", - "sp-runtime", - "sp-state-machine", - "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "sp-trie", + "cumulus-primitives-core 0.21.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "cumulus-primitives-parachain-inherent 0.21.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "cumulus-relay-chain-interface 0.26.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "cumulus-test-relay-sproof-builder 0.22.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "parity-scale-codec", + "sc-client-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-consensus-babe 0.53.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-inherents 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-state-machine 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-storage 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "tracing", ] [[package]] name = "cumulus-client-pov-recovery" -version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.26.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "async-trait", - "cumulus-primitives-core", - "cumulus-relay-chain-interface", + "cumulus-primitives-core 0.21.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "cumulus-relay-chain-interface 0.26.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "cumulus-relay-chain-streams", "futures", "futures-timer", "parity-scale-codec", - "polkadot-node-primitives", + "polkadot-node-primitives 22.0.0", "polkadot-node-subsystem", - "polkadot-overseer", - "polkadot-primitives", - "rand", - "sc-client-api", - "sc-consensus", - "sp-api", - "sp-consensus", - "sp-maybe-compressed-blob", - "sp-runtime", - "sp-version", + "polkadot-overseer 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "polkadot-primitives 21.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "rand 0.8.5", + "sc-client-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-consensus 0.52.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-network 0.53.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-maybe-compressed-blob 11.0.1 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-version 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "tracing", ] [[package]] name = "cumulus-client-service" -version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.28.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ + "async-channel 1.9.0", "cumulus-client-cli", "cumulus-client-collator", "cumulus-client-consensus-common", "cumulus-client-network", "cumulus-client-pov-recovery", - "cumulus-primitives-core", + "cumulus-primitives-core 0.21.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "cumulus-primitives-proof-size-hostfunction", "cumulus-relay-chain-inprocess-interface", - "cumulus-relay-chain-interface", + "cumulus-relay-chain-interface 0.26.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "cumulus-relay-chain-minimal-node", + "cumulus-relay-chain-streams", "futures", - "polkadot-primitives", - "sc-client-api", - "sc-consensus", - "sc-network", - "sc-network-sync", - "sc-network-transactions", - "sc-rpc", - "sc-service", - "sc-sysinfo", - "sc-telemetry", - "sc-transaction-pool", - "sc-utils", - "sp-api", - "sp-blockchain", - "sp-consensus", - "sp-core", - "sp-io", - "sp-runtime", - "sp-transaction-pool", + "polkadot-primitives 21.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "prometheus", + "sc-client-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-consensus 0.52.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-network 0.53.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-network-sync 0.52.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-network-transactions 0.52.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-rpc 48.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-service 0.54.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-sysinfo 45.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-telemetry 30.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-transaction-pool 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-utils 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-blockchain 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-transaction-pool 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "cumulus-pallet-aura-ext" -version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.23.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "cumulus-pallet-parachain-system", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "pallet-aura", "pallet-timestamp", "parity-scale-codec", "scale-info", - "sp-application-crypto", - "sp-consensus-aura", - "sp-runtime", + "sp-application-crypto 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus-aura 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "cumulus-pallet-dmp-queue" -version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.23.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "cumulus-primitives-core", + "cumulus-primitives-core 0.21.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "frame-benchmarking", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "log", "parity-scale-codec", "scale-info", - "sp-io", - "sp-runtime", - "staging-xcm", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "staging-xcm 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "cumulus-pallet-parachain-system" -version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.23.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "bytes", "cumulus-pallet-parachain-system-proc-macro", - "cumulus-primitives-core", - "cumulus-primitives-parachain-inherent", + "cumulus-primitives-core 0.21.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "cumulus-primitives-parachain-inherent 0.21.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "cumulus-primitives-proof-size-hostfunction", "environmental", "frame-benchmarking", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "hashbrown 0.15.5", "impl-trait-for-tuples", "log", "pallet-message-queue", "parity-scale-codec", - "polkadot-parachain-primitives", - "polkadot-runtime-common", + "polkadot-parachain-primitives 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "polkadot-runtime-parachains", "scale-info", - "sp-core", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "sp-inherents", - "sp-io", - "sp-runtime", - "sp-state-machine", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "sp-trie", - "sp-version", - "staging-xcm", + "sp-consensus-babe 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-externalities 0.30.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-inherents 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-state-machine 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-trie 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-version 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "staging-xcm 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "staging-xcm-builder", "trie-db", ] @@ -2675,319 +3275,421 @@ dependencies = [ [[package]] name = "cumulus-pallet-parachain-system-proc-macro" version = "0.6.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "proc-macro-crate 3.2.0", + "proc-macro-crate 3.4.0", "proc-macro2", "quote", - "syn 2.0.79", + "syn 2.0.110", ] [[package]] name = "cumulus-pallet-session-benchmarking" -version = "9.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "24.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "frame-benchmarking", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "pallet-session", "parity-scale-codec", - "sp-runtime", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "cumulus-pallet-solo-to-para" -version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.23.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "cumulus-pallet-parachain-system", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "pallet-sudo", "parity-scale-codec", - "polkadot-primitives", + "polkadot-primitives 21.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "scale-info", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", +] + +[[package]] +name = "cumulus-pallet-weight-reclaim" +version = "0.5.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" +dependencies = [ + "cumulus-primitives-storage-weight-reclaim", + "derive-where", + "docify", + "frame-benchmarking", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "log", + "parity-scale-codec", "scale-info", - "sp-runtime", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-trie 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "cumulus-pallet-xcm" -version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.22.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "cumulus-primitives-core", - "frame-support", - "frame-system", + "cumulus-primitives-core 0.21.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "parity-scale-codec", "scale-info", - "sp-io", - "sp-runtime", - "staging-xcm", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "staging-xcm 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "cumulus-pallet-xcmp-queue" -version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.23.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "bounded-collections", + "approx", + "bounded-collections 0.3.2", "bp-xcm-bridge-hub-router", - "cumulus-primitives-core", + "cumulus-primitives-core 0.21.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "frame-benchmarking", - "frame-support", - "frame-system", - "log", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "pallet-message-queue", "parity-scale-codec", "polkadot-runtime-common", "polkadot-runtime-parachains", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "staging-xcm", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "staging-xcm 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "staging-xcm-builder", "staging-xcm-executor", + "tracing", ] [[package]] name = "cumulus-ping" -version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.23.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "cumulus-pallet-xcm", - "cumulus-primitives-core", - "frame-support", - "frame-system", + "cumulus-primitives-core 0.21.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "parity-scale-codec", "scale-info", - "sp-runtime", - "staging-xcm", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "staging-xcm 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "cumulus-primitives-aura" -version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.20.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "sp-api", - "sp-consensus-aura", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus-aura 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "cumulus-primitives-core" -version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.21.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2534e4bc9829e463e4d65dc7429c7b78a4e71b43dd58ecf8493ec9a5d2e57860" +dependencies = [ + "parity-scale-codec", + "polkadot-core-primitives 20.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "polkadot-parachain-primitives 19.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "polkadot-primitives 21.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "scale-info", + "sp-api 39.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-runtime 44.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-trie 41.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "staging-xcm 19.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "tracing", +] + +[[package]] +name = "cumulus-primitives-core" +version = "0.21.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "parity-scale-codec", - "polkadot-core-primitives", - "polkadot-parachain-primitives", - "polkadot-primitives", + "polkadot-core-primitives 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "polkadot-parachain-primitives 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "polkadot-primitives 21.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "scale-info", - "sp-api", - "sp-runtime", - "sp-trie", - "staging-xcm", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-trie 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "staging-xcm 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "tracing", ] [[package]] name = "cumulus-primitives-parachain-inherent" -version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.21.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7adeba46a8782f1505c8aae0da8c40314fa1671701c07a827460366ec992bb48" +dependencies = [ + "async-trait", + "cumulus-primitives-core 0.21.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec", + "scale-info", + "sp-core 38.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-inherents 39.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-trie 41.1.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "cumulus-primitives-parachain-inherent" +version = "0.21.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "async-trait", - "cumulus-primitives-core", + "cumulus-primitives-core 0.21.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "parity-scale-codec", "scale-info", - "sp-core", - "sp-inherents", - "sp-trie", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-inherents 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-trie 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "cumulus-primitives-proof-size-hostfunction" -version = "0.2.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.15.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "sp-trie", + "sp-externalities 0.30.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime-interface 32.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-trie 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "cumulus-primitives-storage-weight-reclaim" -version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "14.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "cumulus-primitives-core", + "cumulus-primitives-core 0.21.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "cumulus-primitives-proof-size-hostfunction", "docify", - "frame-support", - "frame-system", + "frame-benchmarking", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "log", "parity-scale-codec", "scale-info", - "sp-runtime", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "cumulus-primitives-timestamp" -version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.22.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "cumulus-primitives-core", - "sp-inherents", - "sp-timestamp", + "cumulus-primitives-core 0.21.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-inherents 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-timestamp 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "cumulus-primitives-utility" -version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.23.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "cumulus-primitives-core", - "frame-support", + "cumulus-primitives-core 0.21.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "log", "pallet-asset-conversion", "parity-scale-codec", "polkadot-runtime-common", - "sp-runtime", - "staging-xcm", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "staging-xcm 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "staging-xcm-builder", "staging-xcm-executor", ] [[package]] name = "cumulus-relay-chain-inprocess-interface" -version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.28.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ + "async-channel 1.9.0", "async-trait", - "cumulus-primitives-core", - "cumulus-relay-chain-interface", + "cumulus-client-bootnodes", + "cumulus-primitives-core 0.21.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "cumulus-relay-chain-interface 0.26.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "futures", "futures-timer", "polkadot-cli", + "polkadot-primitives 21.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "polkadot-service", - "sc-cli", - "sc-client-api", - "sc-sysinfo", - "sc-telemetry", - "sc-tracing", - "sp-api", - "sp-consensus", - "sp-core", - "sp-runtime", - "sp-state-machine", + "sc-cli 0.55.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-client-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-network 0.53.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-sysinfo 45.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-telemetry 30.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-tracing 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-state-machine 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "cumulus-relay-chain-interface" -version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.26.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e88a5c6f481a91fe9ed43c23a929d6cde03024dfef62df9ab0dc3f35a082c74a" +dependencies = [ + "async-trait", + "cumulus-primitives-core 0.21.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures", + "jsonrpsee-core", + "parity-scale-codec", + "polkadot-overseer 26.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-client-api 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-network 0.53.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-api 39.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-blockchain 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-state-machine 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-version 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "thiserror 1.0.69", +] + +[[package]] +name = "cumulus-relay-chain-interface" +version = "0.26.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "async-trait", - "cumulus-primitives-core", + "cumulus-primitives-core 0.21.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "futures", "jsonrpsee-core", "parity-scale-codec", - "polkadot-overseer", - "sc-client-api", - "sp-api", - "sp-blockchain", - "sp-state-machine", - "sp-version", - "thiserror", + "polkadot-overseer 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-client-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-network 0.53.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-blockchain 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-state-machine 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-version 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "thiserror 1.0.69", ] [[package]] name = "cumulus-relay-chain-minimal-node" -version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.28.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "array-bytes", + "async-channel 1.9.0", "async-trait", - "cumulus-primitives-core", - "cumulus-relay-chain-interface", + "cumulus-client-bootnodes", + "cumulus-primitives-core 0.21.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "cumulus-relay-chain-interface 0.26.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "cumulus-relay-chain-rpc-interface", "futures", - "polkadot-core-primitives", + "polkadot-core-primitives 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "polkadot-network-bridge", - "polkadot-node-network-protocol", + "polkadot-node-network-protocol 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "polkadot-node-subsystem-util", - "polkadot-overseer", - "polkadot-primitives", + "polkadot-overseer 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "polkadot-primitives 21.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "polkadot-service", - "sc-authority-discovery", - "sc-client-api", - "sc-network", - "sc-network-common", - "sc-service", - "sc-tracing", - "sc-utils", - "sp-api", - "sp-blockchain", - "sp-consensus", - "sp-consensus-babe", - "sp-runtime", - "substrate-prometheus-endpoint", - "tokio", + "sc-authority-discovery 0.53.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-client-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-network 0.53.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-network-common 0.51.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-service 0.54.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-tracing 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-utils 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-blockchain 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus-babe 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "substrate-prometheus-endpoint 0.17.7 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "tracing", ] [[package]] name = "cumulus-relay-chain-rpc-interface" -version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.26.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "async-trait", - "cumulus-primitives-core", - "cumulus-relay-chain-interface", - "either", + "cumulus-primitives-core 0.21.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "cumulus-relay-chain-interface 0.26.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "futures", "futures-timer", "jsonrpsee", "parity-scale-codec", - "pin-project", - "polkadot-overseer", + "polkadot-overseer 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "prometheus", - "rand", - "sc-client-api", - "sc-rpc-api", - "sc-service", + "sc-client-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-rpc-api 0.52.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-service 0.54.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "schnellru", "serde", "serde_json", - "smoldot", - "smoldot-light", - "sp-api", - "sp-authority-discovery", - "sp-consensus-babe", - "sp-core", - "sp-runtime", - "sp-state-machine", - "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "sp-version", - "substrate-prometheus-endpoint", - "thiserror", + "sp-authority-discovery 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus-babe 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-state-machine 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-storage 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-version 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "substrate-prometheus-endpoint 0.17.7 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "tokio", - "tokio-util", "tracing", "url", ] +[[package]] +name = "cumulus-relay-chain-streams" +version = "0.4.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" +dependencies = [ + "cumulus-relay-chain-interface 0.26.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "futures", + "polkadot-node-subsystem", + "polkadot-primitives 21.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "tracing", +] + [[package]] name = "cumulus-test-relay-sproof-builder" -version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.22.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38347f294f0795eebe84490b42890f54e6662b93648d57a69f2132d37b8311bf" +dependencies = [ + "cumulus-primitives-core 0.21.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec", + "polkadot-primitives 21.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-runtime 44.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-state-machine 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-trie 41.1.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "cumulus-test-relay-sproof-builder" +version = "0.22.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "cumulus-primitives-core", + "cumulus-primitives-core 0.21.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "parity-scale-codec", - "polkadot-primitives", - "sp-runtime", - "sp-state-machine", - "sp-trie", + "polkadot-primitives 21.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-state-machine 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-trie 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] @@ -3014,7 +3716,7 @@ checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3" dependencies = [ "proc-macro2", "quote", - "syn 2.0.79", + "syn 2.0.110", ] [[package]] @@ -3025,53 +3727,141 @@ checksum = "1c359b7249347e46fb28804470d071c921156ad62b3eef5d34e2ba867533dec8" dependencies = [ "byteorder", "digest 0.9.0", - "rand_core", + "rand_core 0.6.4", "subtle-ng", "zeroize", ] [[package]] name = "cxx" -version = "1.0.128" +version = "1.0.187" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "54ccead7d199d584d139148b04b4a368d1ec7556a1d9ea2548febb1b9d49f9a4" +checksum = "d8465678d499296e2cbf9d3acf14307458fd69b471a31b65b3c519efe8b5e187" dependencies = [ "cc", + "cxx-build", + "cxxbridge-cmd", "cxxbridge-flags", "cxxbridge-macro", + "foldhash 0.2.0", "link-cplusplus", ] [[package]] name = "cxx-build" -version = "1.0.128" +version = "1.0.187" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c77953e99f01508f89f55c494bfa867171ef3a6c8cea03d26975368f2121a5c1" +checksum = "d74b6bcf49ebbd91f1b1875b706ea46545032a14003b5557b7dfa4bbeba6766e" dependencies = [ "cc", "codespan-reporting", - "once_cell", + "indexmap 2.12.0", "proc-macro2", "quote", "scratch", - "syn 2.0.79", + "syn 2.0.110", +] + +[[package]] +name = "cxxbridge-cmd" +version = "1.0.187" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94ca2ad69673c4b35585edfa379617ac364bccd0ba0adf319811ba3a74ffa48a" +dependencies = [ + "clap", + "codespan-reporting", + "indexmap 2.12.0", + "proc-macro2", + "quote", + "syn 2.0.110", ] [[package]] name = "cxxbridge-flags" -version = "1.0.128" +version = "1.0.187" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "65777e06cc48f0cb0152024c77d6cf9e4bdb4408e7b48bea993d42fa0f5b02b6" +checksum = "d29b52102aa395386d77d322b3a0522f2035e716171c2c60aa87cc5e9466e523" [[package]] name = "cxxbridge-macro" -version = "1.0.128" +version = "1.0.187" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2a8ebf0b6138325af3ec73324cb3a48b64d57721f17291b151206782e61f66cd" +dependencies = [ + "indexmap 2.12.0", + "proc-macro2", + "quote", + "syn 2.0.110", +] + +[[package]] +name = "darling" +version = "0.20.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee" +dependencies = [ + "darling_core 0.20.11", + "darling_macro 0.20.11", +] + +[[package]] +name = "darling" +version = "0.21.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0" +dependencies = [ + "darling_core 0.21.3", + "darling_macro 0.21.3", +] + +[[package]] +name = "darling_core" +version = "0.20.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "98532a60dedaebc4848cb2cba5023337cc9ea3af16a5b062633fabfd9f18fb60" +checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e" dependencies = [ + "fnv", + "ident_case", + "proc-macro2", + "quote", + "strsim", + "syn 2.0.110", +] + +[[package]] +name = "darling_core" +version = "0.21.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4" +dependencies = [ + "fnv", + "ident_case", "proc-macro2", "quote", - "syn 2.0.79", + "strsim", + "syn 2.0.110", +] + +[[package]] +name = "darling_macro" +version = "0.20.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead" +dependencies = [ + "darling_core 0.20.11", + "quote", + "syn 2.0.110", +] + +[[package]] +name = "darling_macro" +version = "0.21.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81" +dependencies = [ + "darling_core 0.21.3", + "quote", + "syn 2.0.110", ] [[package]] @@ -3084,20 +3874,20 @@ dependencies = [ "hashbrown 0.14.5", "lock_api", "once_cell", - "parking_lot_core 0.9.10", + "parking_lot_core 0.9.12", ] [[package]] name = "data-encoding" -version = "2.6.0" +version = "2.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e8566979429cf69b49a5c740c60791108e86440e8be149bbea4fe54d2c32d6e2" +checksum = "2a2330da5de22e8a3cb63252ce2abb30116bf5265e89c0e01bc17015ce30a476" [[package]] name = "data-encoding-macro" -version = "0.1.15" +version = "0.1.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f1559b6cba622276d6d63706db152618eeb15b89b3e4041446b05876e352e639" +checksum = "47ce6c96ea0102f01122a185683611bd5ac8d99e62bc59dd12e6bda344ee673d" dependencies = [ "data-encoding", "data-encoding-macro-internal", @@ -3105,31 +3895,32 @@ dependencies = [ [[package]] name = "data-encoding-macro-internal" -version = "0.1.13" +version = "0.1.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "332d754c0af53bc87c108fed664d121ecf59207ec4196041f04d6ab9002ad33f" +checksum = "8d162beedaa69905488a8da94f5ac3edb4dd4788b732fadb7bd120b2625c1976" dependencies = [ "data-encoding", - "syn 1.0.109", + "syn 2.0.110", ] [[package]] name = "der" -version = "0.7.9" +version = "0.7.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f55bf8e7b65898637379c1b74eb1551107c8294ed26d855ceb9fd1a09cfc9bc0" +checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb" dependencies = [ "const-oid", + "pem-rfc7468", "zeroize", ] [[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", @@ -3139,11 +3930,11 @@ dependencies = [ [[package]] name = "der-parser" -version = "9.0.0" +version = "10.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5cd0a5c643689626bec213c4d8bd4d96acc8ffdb4ad4bb6bc16abf27d5f4b553" +checksum = "07da5016415d5a3c4dd39b11ed26f915f52fc4e0dc197d87908bc916e51bc1a6" dependencies = [ - "asn1-rs 0.6.2", + "asn1-rs 0.7.1", "displaydoc", "nom", "num-bigint", @@ -3153,11 +3944,12 @@ dependencies = [ [[package]] name = "deranged" -version = "0.3.11" +version = "0.5.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4" +checksum = "ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587" dependencies = [ "powerfmt", + "serde_core", ] [[package]] @@ -3179,20 +3971,72 @@ checksum = "d65d7ce8132b7c0e54497a4d9a55a1c2a0912a0d786cf894472ba818fba45762" dependencies = [ "proc-macro2", "quote", - "syn 2.0.79", + "syn 2.0.110", +] + +[[package]] +name = "derive-where" +version = "1.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ef941ded77d15ca19b40374869ac6000af1c9f2a4c0f3d4c70926287e6364a8f" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.110", ] [[package]] name = "derive_more" -version = "0.99.18" +version = "0.99.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f33878137e4dafd7fa914ad4e259e18a4e8e532b9617a2d0150262bf53abfce" +checksum = "6edb4b64a43d977b8e99788fe3a04d483834fba1215a7e02caa415b626497f7f" dependencies = [ "convert_case", "proc-macro2", "quote", "rustc_version 0.4.1", - "syn 2.0.79", + "syn 2.0.110", +] + +[[package]] +name = "derive_more" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4a9b99b9cbbe49445b21764dc0625032a89b145a2642e67603e1c936f5458d05" +dependencies = [ + "derive_more-impl 1.0.0", +] + +[[package]] +name = "derive_more" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "093242cf7570c207c83073cf82f79706fe7b8317e98620a47d5be7c3d8497678" +dependencies = [ + "derive_more-impl 2.0.1", +] + +[[package]] +name = "derive_more-impl" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb7330aeadfbe296029522e6c40f315320aba36fc43a5b3632f3795348f3bd22" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.110", +] + +[[package]] +name = "derive_more-impl" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bda628edc44c4bb645fbe0f758797143e4e07926f7ebf4e9bdfbd3d2ce621df3" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.110", + "unicode-xid", ] [[package]] @@ -3216,7 +4060,7 @@ version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066" dependencies = [ - "generic-array 0.14.7", + "generic-array 0.14.9", ] [[package]] @@ -3250,6 +4094,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" @@ -3281,45 +4134,23 @@ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" dependencies = [ "proc-macro2", "quote", - "syn 2.0.79", -] - -[[package]] -name = "dleq_vrf" -version = "0.0.2" -source = "git+https://github.com/w3f/ring-vrf?rev=0fef826#0fef8266d851932ad25d6b41bc4b34d834d1e11d" -dependencies = [ - "ark-ec", - "ark-ff 0.4.2", - "ark-scale", - "ark-secret-scalar", - "ark-serialize 0.4.2", - "ark-std 0.4.0", - "ark-transcript", - "arrayvec 0.7.6", - "zeroize", + "syn 2.0.110", ] -[[package]] -name = "doc-comment" -version = "0.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10" - [[package]] name = "docify" -version = "0.2.8" +version = "0.2.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "43a2f138ad521dc4a2ced1a4576148a6a610b4c5923933b062a263130a6802ce" +checksum = "a772b62b1837c8f060432ddcc10b17aae1453ef17617a99bc07789252d2a5896" dependencies = [ "docify_macros", ] [[package]] name = "docify_macros" -version = "0.2.8" +version = "0.2.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1a081e51fb188742f5a7a1164ad752121abcb22874b21e2c3b0dd040c515fdad" +checksum = "60e6be249b0a462a14784a99b19bf35a667bb5e09de611738bb7362fa4c95ff7" dependencies = [ "common-path", "derive-syn-parse", @@ -3327,9 +4158,9 @@ dependencies = [ "proc-macro2", "quote", "regex", - "syn 2.0.79", + "syn 2.0.110", "termcolor", - "toml 0.8.19", + "toml 0.8.23", "walkdir", ] @@ -3347,9 +4178,9 @@ checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2" [[package]] name = "dtoa" -version = "1.0.9" +version = "1.0.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dcbb2bf8e87535c23f7a8a321e364ce21462d0ff10cb6407820e8e96dfff6653" +checksum = "d6add3b8cff394282be81f3fc1a0605db594ed69890078ca6e2cab1c408bcf04" [[package]] name = "dunce" @@ -3359,9 +4190,9 @@ checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813" [[package]] name = "dyn-clonable" -version = "0.9.0" +version = "0.9.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4e9232f0e607a262ceb9bd5141a3dfb3e4db6994b31989bbfd845878cba59fd4" +checksum = "a36efbb9bfd58e1723780aa04b61aba95ace6a05d9ffabfdb0b43672552f0805" dependencies = [ "dyn-clonable-impl", "dyn-clone", @@ -3369,20 +4200,20 @@ dependencies = [ [[package]] name = "dyn-clonable-impl" -version = "0.9.0" +version = "0.9.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "558e40ea573c374cf53507fd240b7ee2f5477df7cfebdb97323ec61c719399c5" +checksum = "7e8671d54058979a37a26f3511fbf8d198ba1aa35ffb202c42587d918d77213a" dependencies = [ "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.110", ] [[package]] name = "dyn-clone" -version = "1.0.17" +version = "1.0.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0d6ef0072f8a535281e4876be788938b528e9a1d43900b82c2569af7da799125" +checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555" [[package]] name = "ecdsa" @@ -3411,39 +4242,52 @@ dependencies = [ [[package]] name = "ed25519-dalek" -version = "2.1.1" +version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4a3daa8e81a3963a60642bcc1f90a670680bd4a77535faa384e9d1c79d620871" +checksum = "70e796c081cee67dc755e1a36a0a172b897fab85fc3f6bc48307991f64e4eca9" dependencies = [ "curve25519-dalek", "ed25519", - "rand_core", + "rand_core 0.6.4", "serde", - "sha2 0.10.8", + "sha2 0.10.9", "subtle 2.6.1", "zeroize", ] [[package]] name = "ed25519-zebra" -version = "4.0.3" +version = "4.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7d9ce6874da5d4415896cd45ffbc4d1cfc0c4f9c079427bd870742c30f2f65a9" +checksum = "0017d969298eec91e3db7a2985a8cab4df6341d86e6f3a6f5878b13fb7846bc9" dependencies = [ "curve25519-dalek", "ed25519", - "hashbrown 0.14.5", - "hex", - "rand_core", - "sha2 0.10.8", + "hashbrown 0.15.5", + "pkcs8", + "rand_core 0.6.4", + "sha2 0.10.9", + "subtle 2.6.1", "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.110", +] + [[package]] name = "either" -version = "1.13.0" +version = "1.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0" +checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719" [[package]] name = "elliptic-curve" @@ -3455,10 +4299,10 @@ dependencies = [ "crypto-bigint", "digest 0.10.7", "ff", - "generic-array 0.14.7", + "generic-array 0.14.9", "group", "pkcs8", - "rand_core", + "rand_core 0.6.4", "sec1", "serdect", "subtle 2.6.1", @@ -3466,88 +4310,73 @@ dependencies = [ ] [[package]] -name = "emulated-integration-tests-common" -version = "3.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" -dependencies = [ - "asset-test-utils", - "bp-messages", - "bp-xcm-bridge-hub", - "bridge-runtime-common", - "cumulus-pallet-parachain-system", - "cumulus-pallet-xcmp-queue", - "cumulus-primitives-core", - "frame-support", - "pallet-assets", - "pallet-balances", - "pallet-bridge-messages", - "pallet-message-queue", - "pallet-xcm", - "pallet-xcm-bridge-hub", - "parachains-common", - "parity-scale-codec", - "paste", - "polkadot-parachain-primitives", - "polkadot-primitives", - "polkadot-runtime-parachains", - "sc-consensus-grandpa", - "sp-authority-discovery", - "sp-consensus-babe", - "sp-consensus-beefy", - "sp-core", - "sp-runtime", - "staging-xcm", - "xcm-emulator", -] +name = "embedded-io" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced" + +[[package]] +name = "embedded-io" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d" [[package]] name = "encode_unicode" -version = "0.3.6" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" +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.110", ] [[package]] -name = "enum-as-inner" -version = "0.6.1" +name = "enum-ordinalize" +version = "4.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1e6a265c649f3f5979b601d26f1d05ada116434c87741c9493cb56218f76cbc" +checksum = "4a1091a7bb1f8f2c4b28f1fe2cef4980ca2d410a3d727d67ecc3178c9b0800f0" +dependencies = [ + "enum-ordinalize-derive", +] + +[[package]] +name = "enum-ordinalize-derive" +version = "4.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ca9601fb2d62598ee17836250842873a413586e5d7ed88b356e38ddbb0ec631" dependencies = [ - "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.79", + "syn 2.0.110", ] [[package]] name = "enumflags2" -version = "0.7.10" +version = "0.7.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d232db7f5956f3f14313dc2f87985c58bd2c695ce124c8cdd984e08e15ac133d" +checksum = "1027f7680c853e056ebcec683615fb6fbbc07dbaa13b4d5d9442b146ded4ecef" dependencies = [ "enumflags2_derive", ] [[package]] name = "enumflags2_derive" -version = "0.7.10" +version = "0.7.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "de0d48a183585823424a4ce1aa132d174a6a81bd540895822eb4c8373a8e49e8" +checksum = "67c78a4d8fdf9953a5c9d458f9efe940fd97a0cab0941c075a813ac594733827" dependencies = [ "proc-macro2", "quote", - "syn 2.0.79", + "syn 2.0.110", ] [[package]] @@ -3558,42 +4387,29 @@ checksum = "2f9ed6b3789237c8a0c1c505af1c7eb2c560df6186f01b098c3a1064ea532f38" dependencies = [ "proc-macro2", "quote", - "syn 2.0.79", + "syn 2.0.110", ] [[package]] name = "env_filter" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4f2c92ceda6ceec50f43169f9ee8424fe2db276791afde7b2cd8bc084cb376ab" -dependencies = [ - "log", - "regex", -] - -[[package]] -name = "env_logger" -version = "0.10.2" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4cd405aab171cb85d6735e5c8d9db038c17d3ca007a4d2c25f337935c3d90580" +checksum = "1bf3c259d255ca70051b30e2e95b5446cdb8949ac4cd22c0d7fd634d89f568e2" dependencies = [ - "humantime", - "is-terminal", "log", "regex", - "termcolor", ] [[package]] name = "env_logger" -version = "0.11.5" +version = "0.11.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e13fa619b91fb2381732789fc5de83b45675e882f66623b7d8cb4f643017018d" +checksum = "13c863f0904021b108aa8b2f55046443e6b1ebde8fd4a15c399893aae4fa069f" dependencies = [ "anstream", "anstyle", "env_filter", - "humantime", + "jiff", "log", ] @@ -3605,59 +4421,57 @@ checksum = "e48c92028aaa870e83d51c64e5d4e0b6981b360c522198c23959f219a4e1b15b" [[package]] name = "equivalent" -version = "1.0.1" +version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" +checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" [[package]] name = "errno" -version = "0.3.9" +version = "0.3.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba" +checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" dependencies = [ "libc", - "windows-sys 0.52.0", -] - -[[package]] -name = "ethabi-decode" -version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "09d398648d65820a727d6a81e58b962f874473396a047e4c30bafe3240953417" -dependencies = [ - "ethereum-types", - "tiny-keccak", + "windows-sys 0.61.2", ] [[package]] name = "ethbloom" -version = "0.13.0" +version = "0.14.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c22d4b5885b6aa2fe5e8b9329fb8d232bf739e434e6b87347c63bdd00c120f60" +checksum = "8c321610643004cf908ec0f5f2aa0d8f1f8e14b540562a2887a1111ff1ecbf7b" dependencies = [ "crunchy", "fixed-hash", - "impl-codec", + "impl-codec 0.7.1", "impl-rlp", "impl-serde", "scale-info", "tiny-keccak", ] +[[package]] +name = "ethereum-standards" +version = "0.1.2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" +dependencies = [ + "alloy-core", +] + [[package]] name = "ethereum-types" -version = "0.14.1" +version = "0.15.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "02d215cbf040552efcbe99a38372fe80ab9d00268e20012b79fcd0f073edd8ee" +checksum = "1ab15ed80916029f878e0267c3a9f92b67df55e79af370bf66199059ae2b4ee3" dependencies = [ "ethbloom", "fixed-hash", - "impl-codec", + "impl-codec 0.7.1", "impl-rlp", "impl-serde", - "primitive-types", + "primitive-types 0.13.1", "scale-info", - "uint", + "uint 0.10.0", ] [[package]] @@ -3668,20 +4482,9 @@ checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" [[package]] name = "event-listener" -version = "3.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d93877bcde0eb80ca09131a08d23f0a5c18a620b01db137dba666d18cd9b30c2" -dependencies = [ - "concurrent-queue", - "parking", - "pin-project-lite", -] - -[[package]] -name = "event-listener" -version = "5.3.1" +version = "5.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6032be9bd27023a771701cc49f9f053c751055f71efb2e0ae5c15809093675ba" +checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab" dependencies = [ "concurrent-queue", "parking", @@ -3690,11 +4493,11 @@ dependencies = [ [[package]] name = "event-listener-strategy" -version = "0.5.2" +version = "0.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0f214dc438f977e6d4e3500aaa277f5ad94ca83fbbd9b1a15713ce2344ccc5a1" +checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93" dependencies = [ - "event-listener 5.3.1", + "event-listener 5.4.1", "pin-project-lite", ] @@ -3719,15 +4522,9 @@ dependencies = [ "prettyplease", "proc-macro2", "quote", - "syn 2.0.79", + "syn 2.0.110", ] -[[package]] -name = "fallible-iterator" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7" - [[package]] name = "fallible-iterator" version = "0.3.0" @@ -3736,24 +4533,26 @@ checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649" [[package]] name = "fastrand" -version = "1.9.0" +version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be" -dependencies = [ - "instant", -] +checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" [[package]] -name = "fastrand" -version = "2.1.1" +name = "fastrlp" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e8c02a5121d4ea3eb16a80748c74f5549a5665e4c21333c6098f283870fbdea6" +checksum = "139834ddba373bbdd213dffe02c8d110508dcf1726c2be27e8d1f7d7e1856418" +dependencies = [ + "arrayvec 0.7.6", + "auto_impl", + "bytes", +] [[package]] name = "fastrlp" -version = "0.3.1" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "139834ddba373bbdd213dffe02c8d110508dcf1726c2be27e8d1f7d7e1856418" +checksum = "ce8dba4714ef14b8274c371879b175aa55b16b30f269663f19d576f380018dc4" dependencies = [ "arrayvec 0.7.6", "auto_impl", @@ -3767,7 +4566,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ec6f82451ff7f0568c6181287189126d492b5654e30a788add08027b6363d019" dependencies = [ "fatality-proc-macro", - "thiserror", + "thiserror 1.0.69", ] [[package]] @@ -3777,11 +4576,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eb42427514b063d97ce21d5199f36c0c307d981434a6be32582bc79fe5bd2303" dependencies = [ "expander", - "indexmap 2.5.0", - "proc-macro-crate 3.2.0", + "indexmap 2.12.0", + "proc-macro-crate 3.4.0", "proc-macro2", "quote", - "syn 2.0.79", + "syn 2.0.110", ] [[package]] @@ -3791,32 +4590,19 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e182f7dbc2ef73d9ef67351c5fbbea084729c48362d3ce9dd44c28e32e277fe5" dependencies = [ "libc", - "thiserror", + "thiserror 1.0.69", ] [[package]] name = "ff" -version = "0.13.0" +version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ded41244b729663b1e574f1b4fb731469f69f79c17667b5d776b16cda0479449" +checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393" dependencies = [ - "rand_core", + "rand_core 0.6.4", "subtle 2.6.1", ] -[[package]] -name = "fflonk" -version = "0.1.0" -source = "git+https://github.com/w3f/fflonk#1e854f35e9a65d08b11a86291405cdc95baa0a35" -dependencies = [ - "ark-ec", - "ark-ff 0.4.2", - "ark-poly", - "ark-serialize 0.4.2", - "ark-std 0.4.0", - "merlin", -] - [[package]] name = "fiat-crypto" version = "0.2.9" @@ -3833,33 +4619,23 @@ dependencies = [ "winapi", ] -[[package]] -name = "file-per-thread-logger" -version = "0.1.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "84f2e425d9790201ba4af4630191feac6dcc98765b118d4d18e91d23c2353866" -dependencies = [ - "env_logger 0.10.2", - "log", -] - [[package]] name = "filetime" -version = "0.2.25" +version = "0.2.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "35c0522e981e68cbfa8c3f978441a5f34b30b96e146b33cd3359176b50fe8586" +checksum = "bc0505cd1b6fa6580283f6bdf70a73fcf4aba1184038c90902b92b3dd0df63ed" dependencies = [ "cfg-if", "libc", "libredox", - "windows-sys 0.59.0", + "windows-sys 0.60.2", ] [[package]] name = "finality-grandpa" -version = "0.16.2" +version = "0.16.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "36530797b9bf31cd4ff126dcfee8170f86b00cfdcea3269d73133cc0415945c3" +checksum = "b4f8f43dc520133541781ec03a8cab158ae8b7f7169cdf22e9050aa6cf0fbdfc" dependencies = [ "either", "futures", @@ -3867,10 +4643,16 @@ dependencies = [ "log", "num-traits", "parity-scale-codec", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "scale-info", ] +[[package]] +name = "find-msvc-tools" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52051878f80a721bb68ebfbc930e07b65ba72f2da88968ea5c06fd6ca3d3a127" + [[package]] name = "fixed-hash" version = "0.8.0" @@ -3878,7 +4660,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "835c052cb0c08c1acf6ffd71c022172e18723949c8282f2b9f27efbc51e64534" dependencies = [ "byteorder", - "rand", + "rand 0.8.5", "rustc-hex", "static_assertions", ] @@ -3890,13 +4672,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80" [[package]] -name = "float-cmp" -version = "0.9.0" +name = "fixedbitset" +version = "0.5.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4" -dependencies = [ - "num-traits", -] +checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99" [[package]] name = "fnv" @@ -3904,19 +4683,40 @@ version = "1.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" +[[package]] +name = "foldhash" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2" + +[[package]] +name = "foldhash" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb" + [[package]] name = "fork-tree" -version = "12.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "13.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6736bef9fd175fafbb97495565456651c43ccac2ae550faee709e11534e3621" +dependencies = [ + "parity-scale-codec", +] + +[[package]] +name = "fork-tree" +version = "13.0.1" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "parity-scale-codec", ] [[package]] name = "form_urlencoded" -version = "1.2.1" +version = "1.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" +checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" dependencies = [ "percent-encoding", ] @@ -3928,152 +4728,206 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8835f84f38484cc86f110a805655697908257fb9a7af005234060891557198e9" dependencies = [ "nonempty", - "thiserror", + "thiserror 1.0.69", ] [[package]] name = "fragile" -version = "2.0.0" +version = "2.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa" +checksum = "28dd6caf6059519a65843af8fe2a3ae298b14b80179855aeb4adc2c1934ee619" [[package]] name = "frame-benchmarking" -version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "43.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "frame-support", - "frame-support-procedural", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-support-procedural 35.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "linregress", "log", "parity-scale-codec", "paste", "scale-info", "serde", - "sp-api", - "sp-application-crypto", - "sp-core", - "sp-io", - "sp-runtime", - "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-application-crypto 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime-interface 32.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-storage 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "static_assertions", ] [[package]] name = "frame-benchmarking-cli" -version = "32.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "51.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "Inflector", "array-bytes", "chrono", "clap", "comfy-table", + "cumulus-client-parachain-inherent 0.20.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "cumulus-primitives-proof-size-hostfunction", + "env_filter", "frame-benchmarking", - "frame-support", - "frame-system", + "frame-storage-access-test-runtime", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "gethostname", "handlebars", "itertools 0.11.0", "linked-hash-map", "log", "parity-scale-codec", - "rand", + "polkadot-parachain-primitives 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "polkadot-primitives 21.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "rand 0.8.5", "rand_pcg", - "sc-block-builder", - "sc-chain-spec", - "sc-cli", - "sc-client-api", - "sc-client-db", - "sc-executor", - "sc-service", - "sc-sysinfo", + "sc-block-builder 0.47.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-chain-spec 46.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-cli 0.55.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-client-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-client-db 0.49.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-executor 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-executor-common 0.41.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-executor-wasmtime 0.41.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-runtime-utilities", + "sc-service 0.54.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-sysinfo 45.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "serde", "serde_json", - "sp-api", - "sp-blockchain", - "sp-core", - "sp-database", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "sp-genesis-builder", - "sp-inherents", - "sp-io", - "sp-keystore", - "sp-runtime", - "sp-state-machine", - "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "sp-trie", - "sp-wasm-interface 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "thiserror", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-block-builder 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-blockchain 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-database 10.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-externalities 0.30.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-genesis-builder 0.20.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-inherents 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-keystore 0.44.1 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime-interface 32.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-state-machine 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-storage 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-timestamp 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-transaction-pool 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-trie 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-version 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-wasm-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "subxt", + "subxt-signer", + "thiserror 1.0.69", "thousands", ] [[package]] name = "frame-benchmarking-pallet-pov" -version = "18.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "33.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "frame-benchmarking", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "parity-scale-codec", + "scale-info", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", +] + +[[package]] +name = "frame-decode" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a7cb8796f93fa038f979a014234d632e9688a120e745f936e2635123c77537f7" +dependencies = [ + "frame-metadata 21.0.0", "parity-scale-codec", + "scale-decode", "scale-info", - "sp-io", - "sp-runtime", + "scale-type-resolver", + "sp-crypto-hashing 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "frame-election-provider-solution-type" -version = "13.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "16.1.1" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "proc-macro-crate 3.2.0", + "proc-macro-crate 3.4.0", "proc-macro2", "quote", - "syn 2.0.79", + "syn 2.0.110", ] [[package]] name = "frame-election-provider-support" -version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "43.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "frame-election-provider-solution-type", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "parity-scale-codec", "scale-info", - "sp-arithmetic", - "sp-core", + "sp-arithmetic 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "sp-npos-elections", - "sp-runtime", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "frame-executive" -version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "43.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "aquamarine", - "frame-support", - "frame-system", - "frame-try-runtime", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-try-runtime 0.49.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "log", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-tracing 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "frame-metadata" -version = "16.0.0" +version = "20.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "26de808fa6461f2485dc51811aefed108850064994fb4a62b3ac21ffa62ac8df" +dependencies = [ + "cfg-if", + "parity-scale-codec", + "scale-info", + "serde", +] + +[[package]] +name = "frame-metadata" +version = "21.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "87cf1549fba25a6fcac22785b61698317d958e96cac72a59102ea45b9ae64692" +checksum = "20dfd1d7eae1d94e32e869e2fb272d81f52dd8db57820a373adb83ea24d7d862" +dependencies = [ + "cfg-if", + "parity-scale-codec", + "scale-info", +] + +[[package]] +name = "frame-metadata" +version = "23.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d8c26fcb0454397c522c05fdad5380c4e622f8a875638af33bff5a320d1fc965" dependencies = [ "cfg-if", "parity-scale-codec", @@ -4083,23 +4937,47 @@ dependencies = [ [[package]] name = "frame-metadata-hash-extension" -version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.11.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "array-bytes", + "const-hex", "docify", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "log", "parity-scale-codec", "scale-info", - "sp-runtime", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "frame-remote-externalities" -version = "0.35.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.54.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4d0db64f90122609a14ad4f088026be92b502040486a77d4b4efa2f99b637268" +dependencies = [ + "futures", + "indicatif", + "jsonrpsee", + "log", + "parity-scale-codec", + "serde", + "sp-core 38.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-crypto-hashing 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-io 43.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-runtime 44.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-state-machine 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", + "spinners", + "substrate-rpc-client 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio", + "tokio-retry", +] + +[[package]] +name = "frame-remote-externalities" +version = "0.54.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "futures", "indicatif", @@ -4107,30 +4985,45 @@ dependencies = [ "log", "parity-scale-codec", "serde", - "sp-core", - "sp-crypto-hashing", - "sp-io", - "sp-runtime", - "sp-state-machine", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-state-machine 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "spinners", - "substrate-rpc-client", + "substrate-rpc-client 0.52.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "tokio", "tokio-retry", ] +[[package]] +name = "frame-storage-access-test-runtime" +version = "0.4.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" +dependencies = [ + "cumulus-pallet-parachain-system", + "parity-scale-codec", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-state-machine 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-trie 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "substrate-wasm-builder", +] + [[package]] name = "frame-support" -version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "43.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fde06b7bc60331e0ebb9f7bededa4c79cadc209cf9728b2c685856d418e79487" dependencies = [ "aquamarine", "array-bytes", - "binary-merkle-tree", + "binary-merkle-tree 16.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "bitflags 1.3.2", "docify", "environmental", - "frame-metadata", - "frame-support-procedural", + "frame-metadata 23.0.0", + "frame-support-procedural 35.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "impl-trait-for-tuples", "k256", "log", @@ -4140,122 +5033,237 @@ dependencies = [ "scale-info", "serde", "serde_json", - "smallvec", - "sp-api", - "sp-arithmetic", - "sp-core", - "sp-crypto-hashing-proc-macro", - "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "sp-genesis-builder", - "sp-inherents", - "sp-io", - "sp-metadata-ir", - "sp-runtime", - "sp-staking", - "sp-state-machine", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "sp-trie", - "sp-weights", - "static_assertions", + "sp-api 39.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-arithmetic 28.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-core 38.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-crypto-hashing-proc-macro 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-debug-derive 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-genesis-builder 0.20.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-inherents 39.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-io 43.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-metadata-ir 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-runtime 44.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-staking 41.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-state-machine 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-tracing 19.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-trie 41.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-weights 33.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "tt-call", +] + +[[package]] +name = "frame-support" +version = "43.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" +dependencies = [ + "aquamarine", + "array-bytes", + "binary-merkle-tree 16.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "bitflags 1.3.2", + "docify", + "environmental", + "frame-metadata 23.0.0", + "frame-support-procedural 35.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "impl-trait-for-tuples", + "k256", + "log", + "macro_magic", + "parity-scale-codec", + "paste", + "scale-info", + "serde", + "serde_json", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-arithmetic 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-crypto-hashing-proc-macro 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-genesis-builder 0.20.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-inherents 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-metadata-ir 0.12.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-staking 41.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-state-machine 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-tracing 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-trie 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-weights 33.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "tt-call", ] [[package]] name = "frame-support-procedural" -version = "23.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "35.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c481996abeb9027d9a4d62d0c2cb4115c0ee6ef3120ad234fa2776b6313a4ed4" dependencies = [ "Inflector", "cfg-expr", "derive-syn-parse", "docify", "expander", - "frame-support-procedural-tools", + "frame-support-procedural-tools 13.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "itertools 0.11.0", "macro_magic", - "proc-macro-warning 1.0.2", + "proc-macro-warning", "proc-macro2", "quote", - "sp-crypto-hashing", - "syn 2.0.79", + "sp-crypto-hashing 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 2.0.110", ] [[package]] -name = "frame-support-procedural-tools" -version = "10.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +name = "frame-support-procedural" +version = "35.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" +dependencies = [ + "Inflector", + "cfg-expr", + "derive-syn-parse", + "docify", + "expander", + "frame-support-procedural-tools 13.0.1 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "itertools 0.11.0", + "macro_magic", + "proc-macro-warning", + "proc-macro2", + "quote", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "syn 2.0.110", +] + +[[package]] +name = "frame-support-procedural-tools" +version = "13.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "81a088fd6fda5f53ff0c17fc7551ce8bd0ead14ba742228443c8196296a7369b" +dependencies = [ + "frame-support-procedural-tools-derive 12.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro-crate 3.4.0", + "proc-macro2", + "quote", + "syn 2.0.110", +] + +[[package]] +name = "frame-support-procedural-tools" +version = "13.0.1" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "frame-support-procedural-tools-derive", - "proc-macro-crate 3.2.0", + "frame-support-procedural-tools-derive 12.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "proc-macro-crate 3.4.0", "proc-macro2", "quote", - "syn 2.0.79", + "syn 2.0.110", ] [[package]] name = "frame-support-procedural-tools-derive" -version = "11.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "12.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed971c6435503a099bdac99fe4c5bea08981709e5b5a0a8535a1856f48561191" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.110", +] + +[[package]] +name = "frame-support-procedural-tools-derive" +version = "12.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "proc-macro2", "quote", - "syn 2.0.79", + "syn 2.0.110", ] [[package]] name = "frame-system" -version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "43.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "19ec7d4d9abe4ec9ad4a48c88ddcf654e92a47393001d55760244a906a282c9e" +dependencies = [ + "cfg-if", + "docify", + "frame-support 43.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "log", + "parity-scale-codec", + "scale-info", + "serde", + "sp-core 38.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-io 43.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-runtime 44.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-version 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-weights 33.1.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "frame-system" +version = "43.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "cfg-if", "docify", - "frame-support", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "log", "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "sp-version", - "sp-weights", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-version 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-weights 33.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "frame-system-benchmarking" -version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "43.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "frame-benchmarking", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "parity-scale-codec", "scale-info", - "sp-core", - "sp-runtime", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "frame-system-rpc-runtime-api" -version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "39.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "docify", "parity-scale-codec", - "sp-api", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "frame-try-runtime" -version = "0.34.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.49.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "42efe41db00ed663234c202a65a97c28dfbbec37618752518127d9bb41834541" +dependencies = [ + "frame-support 43.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec", + "sp-api 39.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-runtime 44.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "frame-try-runtime" +version = "0.49.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "frame-support", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "parity-scale-codec", - "sp-api", - "sp-runtime", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] @@ -4283,7 +5291,7 @@ version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "29f9df8a11882c4e3335eb2d18a0137c505d9ca927470b0cac9c6f0ae07d28f7" dependencies = [ - "rustix 0.38.37", + "rustix 0.38.44", "windows-sys 0.48.0", ] @@ -4295,9 +5303,9 @@ checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" [[package]] name = "futures" -version = "0.3.30" +version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0" +checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876" dependencies = [ "futures-channel", "futures-core", @@ -4310,9 +5318,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", @@ -4320,9 +5328,9 @@ dependencies = [ [[package]] name = "futures-channel" -version = "0.3.30" +version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78" +checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" dependencies = [ "futures-core", "futures-sink", @@ -4330,15 +5338,15 @@ dependencies = [ [[package]] name = "futures-core" -version = "0.3.30" +version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d" +checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" [[package]] name = "futures-executor" -version = "0.3.30" +version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d" +checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f" dependencies = [ "futures-core", "futures-task", @@ -4348,32 +5356,17 @@ dependencies = [ [[package]] name = "futures-io" -version = "0.3.30" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1" - -[[package]] -name = "futures-lite" -version = "1.13.0" +version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce" -dependencies = [ - "fastrand 1.9.0", - "futures-core", - "futures-io", - "memchr", - "parking", - "pin-project-lite", - "waker-fn", -] +checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" [[package]] name = "futures-lite" -version = "2.3.0" +version = "2.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "52527eb5074e35e9339c6b4e8d12600c7128b68fb25dcb9fa9dec18f7c25f3a5" +checksum = "f78e10609fe0e0b3f4157ffab1876319b5b0db102a2c60dc4626306dc46b44ad" dependencies = [ - "fastrand 2.1.1", + "fastrand", "futures-core", "futures-io", "parking", @@ -4382,36 +5375,37 @@ dependencies = [ [[package]] name = "futures-macro" -version = "0.3.30" +version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac" +checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" dependencies = [ "proc-macro2", "quote", - "syn 2.0.79", + "syn 2.0.110", ] [[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]] name = "futures-sink" -version = "0.3.30" +version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5" +checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" [[package]] name = "futures-task" -version = "0.3.30" +version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004" +checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" [[package]] name = "futures-timer" @@ -4421,9 +5415,9 @@ checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24" [[package]] name = "futures-util" -version = "0.3.30" +version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48" +checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" dependencies = [ "futures-channel", "futures-core", @@ -4437,27 +5431,18 @@ dependencies = [ "slab", ] -[[package]] -name = "fxhash" -version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c" -dependencies = [ - "byteorder", -] - [[package]] name = "generate-bags" -version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "43.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "chrono", "frame-election-provider-support", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "num-format", "pallet-staking", - "sp-staking", + "sp-staking 41.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] @@ -4471,9 +5456,9 @@ dependencies = [ [[package]] name = "generic-array" -version = "0.14.7" +version = "0.14.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" +checksum = "4bb6743198531e02858aeaea5398fcc883e71851fcbcb5a2f773e2fb6cb1edf2" dependencies = [ "typenum", "version_check", @@ -4492,13 +5477,29 @@ dependencies = [ [[package]] name = "getrandom" -version = "0.2.15" +version = "0.2.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" +checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592" dependencies = [ "cfg-if", + "js-sys", "libc", "wasi", + "wasm-bindgen", +] + +[[package]] +name = "getrandom" +version = "0.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" +dependencies = [ + "cfg-if", + "js-sys", + "libc", + "r-efi", + "wasip2", + "wasm-bindgen", ] [[package]] @@ -4507,8 +5508,8 @@ version = "0.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6ea1015b5a70616b688dc230cfe50c8af89d972cb132d5a622814d29773b10b9" dependencies = [ - "rand", - "rand_core", + "rand 0.8.5", + "rand_core 0.6.4", ] [[package]] @@ -4523,36 +5524,36 @@ dependencies = [ [[package]] name = "gimli" -version = "0.27.3" +version = "0.31.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6c80984affa11d98d1b88b66ac8853f143217b399d3c74116778ff8fdb4ed2e" +checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f" dependencies = [ - "fallible-iterator 0.2.0", - "indexmap 1.9.3", + "fallible-iterator", + "indexmap 2.12.0", "stable_deref_trait", ] [[package]] name = "gimli" -version = "0.28.1" +version = "0.32.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253" -dependencies = [ - "fallible-iterator 0.3.0", - "stable_deref_trait", -] +checksum = "e629b9b98ef3dd8afe6ca2bd0f89306cec16d43d907889945bc5d6687f2f13c7" [[package]] -name = "gimli" -version = "0.31.0" +name = "glob" +version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "32085ea23f3234fc7846555e85283ba4de91e21016dc0455a16286d87a292d64" +checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280" [[package]] -name = "glob" -version = "0.3.1" +name = "gmp-mpfr-sys" +version = "1.6.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" +checksum = "60f8970a75c006bb2f8ae79c6768a116dd215fa8346a87aed99bf9d82ca43394" +dependencies = [ + "libc", + "windows-sys 0.60.2", +] [[package]] name = "governor" @@ -4566,10 +5567,10 @@ dependencies = [ "futures-timer", "no-std-compat", "nonzero_ext", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "portable-atomic", "quanta", - "rand", + "rand 0.8.5", "smallvec", "spinning_top", ] @@ -4581,15 +5582,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63" dependencies = [ "ff", - "rand_core", + "rand_core 0.6.4", "subtle 2.6.1", ] [[package]] name = "h2" -version = "0.3.26" +version = "0.3.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8" +checksum = "0beca50380b1fc32983fc1cb4587bfa4bb9e78fc259aad4a0032d2080309222d" dependencies = [ "bytes", "fnv", @@ -4597,7 +5598,7 @@ dependencies = [ "futures-sink", "futures-util", "http 0.2.12", - "indexmap 2.5.0", + "indexmap 2.12.0", "slab", "tokio", "tokio-util", @@ -4606,17 +5607,17 @@ dependencies = [ [[package]] name = "h2" -version = "0.4.6" +version = "0.4.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "524e8ac6999421f49a846c2d4411f337e53497d8ec55d67753beffa43c5d9205" +checksum = "f3c0b69cfcb4e1b9f1bf2f53f95f766e4661169728ec61cd3fe5a0166f2d1386" dependencies = [ "atomic-waker", "bytes", "fnv", "futures-core", "futures-sink", - "http 1.1.0", - "indexmap 2.5.0", + "http 1.3.1", + "indexmap 2.12.0", "slab", "tokio", "tokio-util", @@ -4634,7 +5635,7 @@ dependencies = [ "pest_derive", "serde", "serde_json", - "thiserror", + "thiserror 1.0.69", ] [[package]] @@ -4657,9 +5658,6 @@ name = "hashbrown" version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" -dependencies = [ - "ahash 0.7.8", -] [[package]] name = "hashbrown" @@ -4667,7 +5665,7 @@ version = "0.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e" dependencies = [ - "ahash 0.8.11", + "ahash", ] [[package]] @@ -4676,8 +5674,30 @@ version = "0.14.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" dependencies = [ - "ahash 0.8.11", + "ahash", + "allocator-api2", + "serde", +] + +[[package]] +name = "hashbrown" +version = "0.15.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" +dependencies = [ "allocator-api2", + "equivalent", + "foldhash 0.1.5", + "serde", +] + +[[package]] +name = "hashbrown" +version = "0.16.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d" +dependencies = [ + "foldhash 0.2.0", "serde", ] @@ -4704,15 +5724,9 @@ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" [[package]] name = "hermit-abi" -version = "0.3.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" - -[[package]] -name = "hermit-abi" -version = "0.4.0" +version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fbf6a919d6cf397374f7dfeeea91d974c7c0a7221d0d0f4f20d859d329e53fcc" +checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c" [[package]] name = "hex" @@ -4726,6 +5740,15 @@ 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" @@ -4734,22 +5757,48 @@ checksum = "6fe2267d4ed49bc07b63801559be28c718ea06c4738b7a03c94df7386d2cde46" [[package]] name = "hickory-proto" -version = "0.24.1" +version = "0.24.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "07698b8420e2f0d6447a436ba999ec85d8fbf2a398bbd737b82cac4a2e96e512" +checksum = "92652067c9ce6f66ce53cc38d1169daa36e6e7eb7dd3b63b5103bd9d97117248" dependencies = [ "async-trait", "cfg-if", "data-encoding", - "enum-as-inner 0.6.1", + "enum-as-inner", "futures-channel", "futures-io", "futures-util", - "idna 0.4.0", + "idna", "ipnet", "once_cell", - "rand", - "thiserror", + "rand 0.8.5", + "socket2 0.5.10", + "thiserror 1.0.69", + "tinyvec", + "tokio", + "tracing", + "url", +] + +[[package]] +name = "hickory-proto" +version = "0.25.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8a6fe56c0038198998a6f217ca4e7ef3a5e51f46163bd6dd60b5c71ca6c6502" +dependencies = [ + "async-trait", + "cfg-if", + "data-encoding", + "enum-as-inner", + "futures-channel", + "futures-io", + "futures-util", + "idna", + "ipnet", + "once_cell", + "rand 0.9.2", + "ring 0.17.14", + "thiserror 2.0.17", "tinyvec", "tokio", "tracing", @@ -4758,21 +5807,42 @@ dependencies = [ [[package]] name = "hickory-resolver" -version = "0.24.1" +version = "0.24.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "28757f23aa75c98f254cf0405e6d8c25b831b32921b050a66692427679b1f243" +checksum = "cbb117a1ca520e111743ab2f6688eddee69db4e0ea242545a604dce8a66fd22e" dependencies = [ "cfg-if", "futures-util", - "hickory-proto", + "hickory-proto 0.24.4", "ipconfig", "lru-cache", "once_cell", - "parking_lot 0.12.3", - "rand", + "parking_lot 0.12.5", + "rand 0.8.5", + "resolv-conf", + "smallvec", + "thiserror 1.0.69", + "tokio", + "tracing", +] + +[[package]] +name = "hickory-resolver" +version = "0.25.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc62a9a99b0bfb44d2ab95a7208ac952d31060efc16241c87eaf36406fecf87a" +dependencies = [ + "cfg-if", + "futures-util", + "hickory-proto 0.25.2", + "ipconfig", + "moka", + "once_cell", + "parking_lot 0.12.5", + "rand 0.9.2", "resolv-conf", "smallvec", - "thiserror", + "thiserror 2.0.17", "tokio", "tracing", ] @@ -4812,21 +5882,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "17ea0a1394df5b6574da6e0c1ade9e78868c9fb0a4e5ef4428e32da4676b85b1" dependencies = [ "digest 0.9.0", - "generic-array 0.14.7", + "generic-array 0.14.9", "hmac 0.8.1", ] -[[package]] -name = "hostname" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867" -dependencies = [ - "libc", - "match_cfg", - "winapi", -] - [[package]] name = "http" version = "0.2.12" @@ -4840,9 +5899,9 @@ dependencies = [ [[package]] name = "http" -version = "1.1.0" +version = "1.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258" +checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565" dependencies = [ "bytes", "fnv", @@ -4867,27 +5926,27 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" dependencies = [ "bytes", - "http 1.1.0", + "http 1.3.1", ] [[package]] name = "http-body-util" -version = "0.1.2" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f" +checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" dependencies = [ "bytes", - "futures-util", - "http 1.1.0", + "futures-core", + "http 1.3.1", "http-body 1.0.1", "pin-project-lite", ] [[package]] name = "httparse" -version = "1.9.5" +version = "1.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7d71d3574edd2771538b901e6549113b4006ece66150fb69c0fb6d9a2adae946" +checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" [[package]] name = "httpdate" @@ -4897,28 +5956,38 @@ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" [[package]] name = "humantime" -version = "2.1.0" +version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" +checksum = "135b12329e5e3ce057a9f972339ea52bc954fe1e9358ef27f95e89716fbc5424" + +[[package]] +name = "humantime-serde" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "57a3db5ea5923d99402c94e9feb261dc5ee9b4efa158b0315f788cf549cc200c" +dependencies = [ + "humantime", + "serde", +] [[package]] name = "hyper" -version = "0.14.30" +version = "0.14.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a152ddd61dfaec7273fe8419ab357f33aee0d914c5f4efbf0d96fa749eea5ec9" +checksum = "41dfc780fdec9373c01bae43289ea34c972e40ee3c9f6b3c8801a35f35586ce7" dependencies = [ "bytes", "futures-channel", "futures-core", "futures-util", - "h2 0.3.26", + "h2 0.3.27", "http 0.2.12", "http-body 0.4.6", "httparse", "httpdate", "itoa", "pin-project-lite", - "socket2 0.5.7", + "socket2 0.5.10", "tokio", "tower-service", "tracing", @@ -4927,20 +5996,22 @@ dependencies = [ [[package]] name = "hyper" -version = "1.4.1" +version = "1.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "50dfd22e0e76d0f662d429a5f80fcaf3855009297eab6a0a9f8543834744ba05" +checksum = "eb3aa54a13a0dfe7fbe3a59e0c76093041720fdc77b110cc0fc260fafb4dc51e" dependencies = [ + "atomic-waker", "bytes", "futures-channel", - "futures-util", - "h2 0.4.6", - "http 1.1.0", + "futures-core", + "h2 0.4.12", + "http 1.3.1", "http-body 1.0.1", "httparse", "httpdate", "itoa", "pin-project-lite", + "pin-utils", "smallvec", "tokio", "want", @@ -4948,52 +6019,38 @@ dependencies = [ [[package]] name = "hyper-rustls" -version = "0.24.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590" -dependencies = [ - "futures-util", - "http 0.2.12", - "hyper 0.14.30", - "log", - "rustls 0.21.12", - "rustls-native-certs 0.6.3", - "tokio", - "tokio-rustls 0.24.1", -] - -[[package]] -name = "hyper-rustls" -version = "0.27.3" +version = "0.27.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08afdbb5c31130e3034af566421053ab03787c640246a446327f550d11bcb333" +checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58" dependencies = [ - "futures-util", - "http 1.1.0", - "hyper 1.4.1", + "http 1.3.1", + "hyper 1.7.0", "hyper-util", "log", - "rustls 0.23.13", + "rustls", + "rustls-native-certs", "rustls-pki-types", "tokio", - "tokio-rustls 0.26.0", + "tokio-rustls", "tower-service", ] [[package]] name = "hyper-util" -version = "0.1.9" +version = "0.1.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "41296eb09f183ac68eec06e03cdbea2e759633d4067b2f6552fc2e009bcad08b" +checksum = "3c6995591a8f1380fcb4ba966a252a4b29188d51d2b89e3a252f5305be65aea8" dependencies = [ "bytes", "futures-channel", + "futures-core", "futures-util", - "http 1.1.0", + "http 1.3.1", "http-body 1.0.1", - "hyper 1.4.1", + "hyper 1.7.0", + "libc", "pin-project-lite", - "socket2 0.5.7", + "socket2 0.6.1", "tokio", "tower-service", "tracing", @@ -5001,16 +6058,17 @@ dependencies = [ [[package]] name = "iana-time-zone" -version = "0.1.61" +version = "0.1.64" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "235e081f3925a06703c2d0117ea8b91f042756fd6e7a6e5d901e8ca1a996b220" +checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb" dependencies = [ "android_system_properties", "core-foundation-sys", "iana-time-zone-haiku", "js-sys", + "log", "wasm-bindgen", - "windows-core 0.52.0", + "windows-core 0.62.2", ] [[package]] @@ -5023,39 +6081,116 @@ dependencies = [ ] [[package]] -name = "idna" -version = "0.2.3" +name = "icu_collections" +version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8" +checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43" dependencies = [ - "matches", - "unicode-bidi", - "unicode-normalization", + "displaydoc", + "potential_utf", + "yoke", + "zerofrom", + "zerovec", ] [[package]] -name = "idna" -version = "0.4.0" +name = "icu_locale_core" +version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c" +checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6" dependencies = [ - "unicode-bidi", - "unicode-normalization", + "displaydoc", + "litemap", + "tinystr", + "writeable", + "zerovec", ] [[package]] -name = "idna" -version = "0.5.0" +name = "icu_normalizer" +version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6" +checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599" dependencies = [ - "unicode-bidi", - "unicode-normalization", + "icu_collections", + "icu_normalizer_data", + "icu_properties", + "icu_provider", + "smallvec", + "zerovec", ] [[package]] -name = "if-addrs" -version = "0.10.2" +name = "icu_normalizer_data" +version = "2.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a" + +[[package]] +name = "icu_properties" +version = "2.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e93fcd3157766c0c8da2f8cff6ce651a31f0810eaa1c51ec363ef790bbb5fb99" +dependencies = [ + "icu_collections", + "icu_locale_core", + "icu_properties_data", + "icu_provider", + "zerotrie", + "zerovec", +] + +[[package]] +name = "icu_properties_data" +version = "2.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "02845b3647bb045f1100ecd6480ff52f34c35f82d9880e029d329c21d1054899" + +[[package]] +name = "icu_provider" +version = "2.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614" +dependencies = [ + "displaydoc", + "icu_locale_core", + "writeable", + "yoke", + "zerofrom", + "zerotrie", + "zerovec", +] + +[[package]] +name = "ident_case" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" + +[[package]] +name = "idna" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de" +dependencies = [ + "idna_adapter", + "smallvec", + "utf8_iter", +] + +[[package]] +name = "idna_adapter" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344" +dependencies = [ + "icu_normalizer", + "icu_properties", +] + +[[package]] +name = "if-addrs" +version = "0.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cabb0019d51a643781ff15c9c8a3e5dedc365c47211270f4e8f82812fedd8f0a" dependencies = [ @@ -5065,21 +6200,25 @@ dependencies = [ [[package]] name = "if-watch" -version = "3.2.0" +version = "3.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d6b0422c86d7ce0e97169cc42e04ae643caf278874a7a3c87b8150a220dc7e1e" +checksum = "cdf9d64cfcf380606e64f9a0bcf493616b65331199f984151a6fa11a7b3cde38" dependencies = [ - "async-io 2.3.4", - "core-foundation", + "async-io", + "core-foundation 0.9.4", "fnv", "futures", "if-addrs", "ipnet", "log", + "netlink-packet-core", + "netlink-packet-route", + "netlink-proto", + "netlink-sys", "rtnetlink", "system-configuration", "tokio", - "windows", + "windows 0.53.0", ] [[package]] @@ -5093,9 +6232,9 @@ dependencies = [ "bytes", "futures", "http 0.2.12", - "hyper 0.14.30", + "hyper 0.14.32", "log", - "rand", + "rand 0.8.5", "tokio", "url", "xmltree", @@ -5110,44 +6249,53 @@ dependencies = [ "parity-scale-codec", ] +[[package]] +name = "impl-codec" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2d40b9d5e17727407e55028eafc22b2dc68781786e6d7eb8a21103f5058e3a14" +dependencies = [ + "parity-scale-codec", +] + [[package]] name = "impl-num-traits" -version = "0.1.2" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "951641f13f873bff03d4bf19ae8bec531935ac0ac2cc775f84d7edfdcfed3f17" +checksum = "803d15461ab0dcc56706adf266158acbc44ccf719bf7d0af30705f58b90a4b8c" dependencies = [ "integer-sqrt", "num-traits", - "uint", + "uint 0.10.0", ] [[package]] name = "impl-rlp" -version = "0.3.0" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f28220f89297a075ddc7245cd538076ee98b01f2a9c23a53a4f1105d5a322808" +checksum = "54ed8ad1f3877f7e775b8cbf30ed1bd3209a95401817f19a0eb4402d13f8cf90" dependencies = [ - "rlp", + "rlp 0.6.1", ] [[package]] name = "impl-serde" -version = "0.4.0" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ebc88fc67028ae3db0c853baa36269d398d5f45b6982f95549ff5def78c935cd" +checksum = "4a143eada6a1ec4aefa5049037a26a6d597bfd64f8c026d07b77133e02b7dd0b" dependencies = [ "serde", ] [[package]] name = "impl-trait-for-tuples" -version = "0.2.2" +version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "11d7a9f6330b71fea57921c9b61c47ee6e84f72d394754eff6163ae67e7395eb" +checksum = "a0eb5a3343abf848c0984fe4604b2b105da9539376e24fc0a3b0007411ae4fd9" dependencies = [ "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.110", ] [[package]] @@ -5182,12 +6330,14 @@ dependencies = [ [[package]] name = "indexmap" -version = "2.5.0" +version = "2.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "68b900aa2f7301e21c36462b170ee99994de34dff39a4a6a528e80e7376d07e5" +checksum = "6717a8d2a5a929a1a2eb43a12812498ed141a0bcfb7e8f7844fbdbe4303bba9f" dependencies = [ "equivalent", - "hashbrown 0.14.5", + "hashbrown 0.16.0", + "serde", + "serde_core", ] [[package]] @@ -5198,24 +6348,24 @@ checksum = "8e04e2fd2b8188ea827b32ef11de88377086d690286ab35747ef7f9bf3ccb590" [[package]] name = "indicatif" -version = "0.17.8" +version = "0.17.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "763a5a8f45087d6bcea4222e7b72c291a054edf80e4ef6efd2a4979878c7bea3" +checksum = "183b3088984b400f4cfac3620d5e076c84da5364016b4f49473de574b2586235" dependencies = [ "console", - "instant", "number_prefix", "portable-atomic", "unicode-width", + "web-time", ] [[package]] name = "inout" -version = "0.1.3" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5" +checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01" dependencies = [ - "generic-array 0.14.7", + "generic-array 0.14.9", ] [[package]] @@ -5227,12 +6377,6 @@ dependencies = [ "cfg-if", ] -[[package]] -name = "integer-encoding" -version = "3.0.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8bb03732005da905c88227371639bf1ad885cc712789c011c31c5fb3ab3ccf02" - [[package]] name = "integer-sqrt" version = "0.1.5" @@ -5242,17 +6386,6 @@ dependencies = [ "num-traits", ] -[[package]] -name = "io-lifetimes" -version = "1.0.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2" -dependencies = [ - "hermit-abi 0.3.9", - "libc", - "windows-sys 0.48.0", -] - [[package]] name = "ip_network" version = "0.4.1" @@ -5265,7 +6398,7 @@ version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b58db92f96b720de98181bbbe63c831e87005ab460c1bf306eb2622b4707997f" dependencies = [ - "socket2 0.5.7", + "socket2 0.5.10", "widestring", "windows-sys 0.48.0", "winreg", @@ -5273,35 +6406,35 @@ dependencies = [ [[package]] name = "ipnet" -version = "2.10.0" +version = "2.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "187674a687eed5fe42285b40c6291f9a01517d415fad1c3cbc6a9f778af7fcd4" +checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130" [[package]] name = "is-terminal" -version = "0.4.13" +version = "0.4.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "261f68e344040fbd0edea105bef17c66edf46f984ddb1115b775ce31be948f4b" +checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46" dependencies = [ - "hermit-abi 0.4.0", + "hermit-abi", "libc", - "windows-sys 0.52.0", + "windows-sys 0.61.2", ] [[package]] name = "is_executable" -version = "1.0.3" +version = "1.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ba3d8548b8b04dafdf2f4cc6f5e379db766d0a6d9aac233ad4c9a92ea892233" +checksum = "baabb8b4867b26294d818bf3f651a454b6901431711abb96e296245888d6e8c4" dependencies = [ - "winapi", + "windows-sys 0.60.2", ] [[package]] name = "is_terminal_polyfill" -version = "1.70.1" +version = "1.70.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf" +checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695" [[package]] name = "itertools" @@ -5339,24 +6472,87 @@ dependencies = [ "either", ] +[[package]] +name = "itertools" +version = "0.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285" +dependencies = [ + "either", +] + [[package]] name = "itoa" -version = "1.0.11" +version = "1.0.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" + +[[package]] +name = "jam-codec" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb948eace373d99de60501a02fb17125d30ac632570de20dccc74370cdd611b9" +dependencies = [ + "arrayvec 0.7.6", + "bitvec", + "byte-slice-cast", + "const_format", + "impl-trait-for-tuples", + "jam-codec-derive", + "rustversion", + "serde", +] + +[[package]] +name = "jam-codec-derive" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "319af585c4c8a6b5552a52b7787a1ab3e4d59df7614190b1f85b9b842488789d" +dependencies = [ + "proc-macro-crate 3.4.0", + "proc-macro2", + "quote", + "syn 2.0.110", +] + +[[package]] +name = "jiff" +version = "0.2.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "49cce2b81f2098e7e3efc35bc2e0a6b7abec9d34128283d7a26fa8f32a6dbb35" +dependencies = [ + "jiff-static", + "log", + "portable-atomic", + "portable-atomic-util", + "serde_core", +] + +[[package]] +name = "jiff-static" +version = "0.2.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" +checksum = "980af8b43c3ad5d8d349ace167ec8170839f753a42d233ba19e08afe1850fa69" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.110", +] [[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", + "thiserror 1.0.69", "walkdir", + "windows-sys 0.45.0", ] [[package]] @@ -5367,28 +6563,31 @@ checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130" [[package]] name = "jobserver" -version = "0.1.32" +version = "0.1.34" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0" +checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33" dependencies = [ + "getrandom 0.3.4", "libc", ] [[package]] name = "js-sys" -version = "0.3.70" +version = "0.3.82" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1868808506b929d7b0cfa8f75951347aa71bb21144b7791bae35d9bccfcfe37a" +checksum = "b011eec8cc36da2aab2d5cff675ec18454fad408585853910a202391cf9f8e65" dependencies = [ + "once_cell", "wasm-bindgen", ] [[package]] name = "jsonrpsee" -version = "0.24.5" +version = "0.24.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "126b48a5acc3c52fbd5381a77898cb60e145123179588a29e7ac48f9c06e401b" +checksum = "e281ae70cc3b98dac15fced3366a880949e65fc66e345ce857a5682d152f3e62" dependencies = [ + "jsonrpsee-client-transport", "jsonrpsee-core", "jsonrpsee-http-client", "jsonrpsee-proc-macros", @@ -5401,22 +6600,22 @@ dependencies = [ [[package]] name = "jsonrpsee-client-transport" -version = "0.24.5" +version = "0.24.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bf679a8e0e083c77997f7c4bb4ca826577105906027ae462aac70ff348d02c6a" +checksum = "cc4280b709ac3bb5e16cf3bad5056a0ec8df55fa89edfe996361219aadc2c7ea" dependencies = [ - "base64 0.22.1", + "base64", "futures-util", - "http 1.1.0", + "http 1.3.1", "jsonrpsee-core", "pin-project", - "rustls 0.23.13", + "rustls", "rustls-pki-types", "rustls-platform-verifier", - "soketto 0.8.0", - "thiserror", + "soketto", + "thiserror 1.0.69", "tokio", - "tokio-rustls 0.26.0", + "tokio-rustls", "tokio-util", "tracing", "url", @@ -5424,25 +6623,25 @@ dependencies = [ [[package]] name = "jsonrpsee-core" -version = "0.24.5" +version = "0.24.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b0e503369a76e195b65af35058add0e6900b794a4e9a9316900ddd3a87a80477" +checksum = "348ee569eaed52926b5e740aae20863762b16596476e943c9e415a6479021622" dependencies = [ "async-trait", "bytes", "futures-timer", "futures-util", - "http 1.1.0", + "http 1.3.1", "http-body 1.0.1", "http-body-util", "jsonrpsee-types", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "pin-project", - "rand", - "rustc-hash 2.0.0", + "rand 0.8.5", + "rustc-hash 2.1.1", "serde", "serde_json", - "thiserror", + "thiserror 1.0.69", "tokio", "tokio-stream", "tracing", @@ -5450,23 +6649,23 @@ dependencies = [ [[package]] name = "jsonrpsee-http-client" -version = "0.24.5" +version = "0.24.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f2c0caba4a6a8efbafeec9baa986aa22a75a96c29d3e4b0091b0098d6470efb5" +checksum = "f50c389d6e6a52eb7c3548a6600c90cf74d9b71cb5912209833f00a5479e9a01" dependencies = [ "async-trait", - "base64 0.22.1", + "base64", "http-body 1.0.1", - "hyper 1.4.1", - "hyper-rustls 0.27.3", + "hyper 1.7.0", + "hyper-rustls", "hyper-util", "jsonrpsee-core", "jsonrpsee-types", - "rustls 0.23.13", + "rustls", "rustls-platform-verifier", "serde", "serde_json", - "thiserror", + "thiserror 1.0.69", "tokio", "tower", "tracing", @@ -5475,28 +6674,28 @@ dependencies = [ [[package]] name = "jsonrpsee-proc-macros" -version = "0.24.5" +version = "0.24.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fc660a9389e2748e794a40673a4155d501f32db667757cdb80edeff0306b489b" +checksum = "7398cddf5013cca4702862a2692b66c48a3bd6cf6ec681a47453c93d63cf8de5" dependencies = [ "heck 0.5.0", - "proc-macro-crate 3.2.0", + "proc-macro-crate 3.4.0", "proc-macro2", "quote", - "syn 2.0.79", + "syn 2.0.110", ] [[package]] name = "jsonrpsee-server" -version = "0.24.5" +version = "0.24.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af6e6c9b6d975edcb443565d648b605f3e85a04ec63aa6941811a8894cc9cded" +checksum = "21429bcdda37dcf2d43b68621b994adede0e28061f816b038b0f18c70c143d51" dependencies = [ "futures-util", - "http 1.1.0", + "http 1.3.1", "http-body 1.0.1", "http-body-util", - "hyper 1.4.1", + "hyper 1.7.0", "hyper-util", "jsonrpsee-core", "jsonrpsee-types", @@ -5504,8 +6703,8 @@ dependencies = [ "route-recognizer", "serde", "serde_json", - "soketto 0.8.0", - "thiserror", + "soketto", + "thiserror 1.0.69", "tokio", "tokio-stream", "tokio-util", @@ -5515,23 +6714,23 @@ dependencies = [ [[package]] name = "jsonrpsee-types" -version = "0.24.5" +version = "0.24.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d8fb16314327cbc94fdf7965ef7e4422509cd5597f76d137bd104eb34aeede67" +checksum = "b0f05e0028e55b15dbd2107163b3c744cd3bb4474f193f95d9708acbf5677e44" dependencies = [ - "http 1.1.0", + "http 1.3.1", "serde", "serde_json", - "thiserror", + "thiserror 1.0.69", ] [[package]] name = "jsonrpsee-ws-client" -version = "0.24.5" +version = "0.24.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "39aabf5d6c6f22da8d5b808eea1fab0736059f11fb42f71f141b14f404e5046a" +checksum = "78fc744f17e7926d57f478cf9ca6e1ee5d8332bf0514860b1a3cdf1742e614cc" dependencies = [ - "http 1.1.0", + "http 1.3.1", "jsonrpsee-client-transport", "jsonrpsee-core", "jsonrpsee-types", @@ -5549,7 +6748,7 @@ dependencies = [ "elliptic-curve", "once_cell", "serdect", - "sha2 0.10.8", + "sha2 0.10.9", ] [[package]] @@ -5561,6 +6760,26 @@ dependencies = [ "cpufeatures", ] +[[package]] +name = "keccak-asm" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "505d1856a39b200489082f90d897c3f07c455563880bc5952e38eabf731c83b6" +dependencies = [ + "digest 0.10.7", + "sha3-asm", +] + +[[package]] +name = "keccak-hash" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3e1b8590eb6148af2ea2d75f38e7d29f5ca970d5a4df456b3ef19b8b415d0264" +dependencies = [ + "primitive-types 0.13.1", + "tiny-keccak", +] + [[package]] name = "keystream" version = "1.0.0" @@ -5569,18 +6788,20 @@ checksum = "c33070833c9ee02266356de0c43f723152bd38bd96ddf52c82b3af10c9138b28" [[package]] name = "kitchensink-runtime" -version = "3.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "3.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ + "array-bytes", "log", "node-primitives", "pallet-example-mbm", "pallet-example-tasks", "parity-scale-codec", "polkadot-sdk", - "primitive-types", + "primitive-types 0.13.1", "scale-info", "serde_json", + "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "static_assertions", "substrate-wasm-builder", ] @@ -5601,7 +6822,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bf7a85fe66f9ff9cd74e169fdd2c94c6e1e74c412c99a73b4df3200b5d3760b2" dependencies = [ "kvdb", - "parking_lot 0.12.3", + "parking_lot 0.12.5", ] [[package]] @@ -5612,7 +6833,7 @@ checksum = "b644c70b92285f66bfc2032922a79000ea30af7bc2ab31902992a5dcb9b434f6" dependencies = [ "kvdb", "num_cpus", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "regex", "rocksdb", "smallvec", @@ -5626,7 +6847,7 @@ checksum = "9baa9eeb6e315942429397e617a190f4fdc696ef1ee0342939d641029cbb4ea7" dependencies = [ "enumflags2", "libc", - "thiserror", + "thiserror 1.0.69", ] [[package]] @@ -5634,6 +6855,9 @@ name = "lazy_static" version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" +dependencies = [ + "spin 0.9.8", +] [[package]] name = "lazycell" @@ -5641,40 +6865,45 @@ version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" +[[package]] +name = "leb128fmt" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2" + [[package]] name = "libc" -version = "0.2.159" +version = "0.2.177" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "561d97a539a36e26a9a5fad1ea11a3039a67714694aaa379433e580854bc3dc5" +checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976" [[package]] name = "libloading" -version = "0.8.5" +version = "0.8.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4979f22fdb869068da03c9f7528f8297c6fd2606bc3a4affe42e6a823fdb8da4" +checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55" dependencies = [ "cfg-if", - "windows-targets 0.52.6", + "windows-link", ] [[package]] name = "libm" -version = "0.2.8" +version = "0.2.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058" +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", - "instant", + "getrandom 0.2.16", "libp2p-allow-block-list", "libp2p-connection-limits", "libp2p-core", @@ -5691,20 +6920,19 @@ dependencies = [ "libp2p-swarm", "libp2p-tcp", "libp2p-upnp", - "libp2p-wasm-ext", "libp2p-websocket", "libp2p-yamux", "multiaddr 0.18.2", "pin-project", "rw-stream-sink", - "thiserror", + "thiserror 1.0.69", ] [[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", @@ -5714,9 +6942,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", @@ -5726,55 +6954,55 @@ 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.1", + "multihash 0.19.3", "multistream-select", "once_cell", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "pin-project", "quick-protobuf", - "rand", + "rand 0.8.5", "rw-stream-sink", "smallvec", - "thiserror", - "unsigned-varint 0.7.2", + "thiserror 1.0.69", + "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.3", + "parking_lot 0.12.5", "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", @@ -5782,148 +7010,150 @@ dependencies = [ "libp2p-core", "libp2p-identity", "libp2p-swarm", - "log", - "lru 0.12.4", + "lru", "quick-protobuf", "quick-protobuf-codec", "smallvec", - "thiserror", + "thiserror 1.0.69", + "tracing", "void", ] [[package]] name = "libp2p-identity" -version = "0.2.9" +version = "0.2.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "55cca1eb2bc1fd29f099f3daaab7effd01e1a54b7c577d0ed082521034d912e8" +checksum = "3104e13b51e4711ff5738caa1fb54467c8604c2e94d607e27745bcf709068774" dependencies = [ "bs58", "ed25519-dalek", "hkdf", - "multihash 0.19.1", + "multihash 0.19.3", "quick-protobuf", - "rand", - "sha2 0.10.8", - "thiserror", + "rand 0.8.5", + "sha2 0.10.9", + "thiserror 2.0.17", "tracing", "zeroize", ] [[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", - "sha2 0.10.8", + "rand 0.8.5", + "sha2 0.10.9", "smallvec", - "thiserror", - "uint", - "unsigned-varint 0.7.2", + "thiserror 1.0.69", + "tracing", + "uint 0.9.5", "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", + "rand 0.8.5", "smallvec", - "socket2 0.5.7", + "socket2 0.5.10", "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.1", + "multihash 0.19.3", "once_cell", "quick-protobuf", - "rand", - "sha2 0.10.8", + "rand 0.8.5", + "sha2 0.10.9", "snow", "static_assertions", - "thiserror", + "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", + "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", @@ -5932,76 +7162,78 @@ dependencies = [ "libp2p-core", "libp2p-identity", "libp2p-tls", - "log", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "quinn", - "rand", - "ring 0.16.20", - "rustls 0.21.12", - "socket2 0.5.7", - "thiserror", + "rand 0.8.5", + "ring 0.17.14", + "rustls", + "socket2 0.5.10", + "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", + "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", + "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.79", + "syn 2.0.110", ] [[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", @@ -6009,103 +7241,91 @@ dependencies = [ "libc", "libp2p-core", "libp2p-identity", - "log", - "socket2 0.5.7", + "socket2 0.5.10", "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", - "x509-parser 0.15.1", + "thiserror 1.0.69", + "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.3", + "parking_lot 0.12.5", "pin-project-lite", "rw-stream-sink", - "soketto 0.8.0", - "thiserror", + "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", - "yamux", + "thiserror 1.0.69", + "tracing", + "yamux 0.12.1", + "yamux 0.13.8", ] [[package]] name = "libredox" -version = "0.1.3" +version = "0.1.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d" +checksum = "416f7e718bdb06000964960ffa43b4335ad4012ae8b99060261aa4a8088d5ccb" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.10.0", "libc", - "redox_syscall 0.5.7", + "redox_syscall 0.5.18", ] [[package]] @@ -6125,18 +7345,18 @@ dependencies = [ [[package]] name = "libsecp256k1" -version = "0.7.1" +version = "0.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "95b09eff1b35ed3b33b877ced3a691fc7a481919c7e29c53c906226fcf55e2a1" +checksum = "e79019718125edc905a079a70cfa5f3820bc76139fc91d6f9abc27ea2a887139" dependencies = [ "arrayref", - "base64 0.13.1", + "base64", "digest 0.9.0", "hmac-drbg", "libsecp256k1-core", "libsecp256k1-gen-ecmult", "libsecp256k1-gen-genmult", - "rand", + "rand 0.8.5", "serde", "sha2 0.9.9", "typenum", @@ -6173,9 +7393,9 @@ dependencies = [ [[package]] name = "libz-sys" -version = "1.1.20" +version = "1.1.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d2d16453e800a8cf6dd2fc3eb4bc99b786a9b90c663b8559a5b1a041bf89e472" +checksum = "8b70e7a7df205e92a1a4cd9aaae7898dac0aa555503cc0a649494d0d60e7651d" dependencies = [ "cc", "pkg-config", @@ -6184,9 +7404,9 @@ dependencies = [ [[package]] name = "link-cplusplus" -version = "1.0.9" +version = "1.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d240c6f7e1ba3a28b0249f774e6a9dd0175054b52dfbb61b16eb8505c3785c9" +checksum = "7f78c730aaa7d0b9336a299029ea49f9ee53b0ed06e9202e8cb7db9bae7b8c82" dependencies = [ "cc", ] @@ -6199,39 +7419,33 @@ checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" [[package]] name = "linked_hash_set" -version = "0.1.4" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "47186c6da4d81ca383c7c47c1bfc80f4b95f4720514d860a5407aaf4233f9588" +checksum = "984fb35d06508d1e69fc91050cceba9c0b748f983e6739fa2c7a9237154c52c8" dependencies = [ "linked-hash-map", ] [[package]] name = "linregress" -version = "0.5.3" +version = "0.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4de04dcecc58d366391f9920245b85ffa684558a5ef6e7736e754347c3aea9c2" +checksum = "a9eda9dcf4f2a99787827661f312ac3219292549c2ee992bf9a6248ffb066bf7" dependencies = [ "nalgebra", ] [[package]] name = "linux-raw-sys" -version = "0.1.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4" - -[[package]] -name = "linux-raw-sys" -version = "0.3.8" +version = "0.4.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519" +checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab" [[package]] name = "linux-raw-sys" -version = "0.4.14" +version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89" +checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039" [[package]] name = "lioness" @@ -6245,96 +7459,81 @@ dependencies = [ "keystream", ] +[[package]] +name = "litemap" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77" + [[package]] name = "litep2p" -version = "0.7.0" +version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d4ab2528b02b6dbbc3e6ec4b55ccde885647c622a315b7da45081ed2dfe4b813" +checksum = "c666ef772d123a7643323ad4979c30dd825e9c68ec1aa5b387a6c9a9871c11ea" dependencies = [ "async-trait", "bs58", "bytes", - "cid 0.10.1", + "cid 0.11.1", "ed25519-dalek", "futures", "futures-timer", - "hex-literal", - "hickory-resolver", - "indexmap 2.5.0", + "hickory-resolver 0.25.2", + "indexmap 2.12.0", "libc", - "mockall 0.13.0", + "mockall", "multiaddr 0.17.1", "multihash 0.17.0", "network-interface", - "nohash-hasher", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "pin-project", - "prost 0.12.6", - "prost-build 0.13.3", - "rand", - "rcgen", - "ring 0.16.20", - "rustls 0.20.9", + "prost 0.13.5", + "prost-build", + "rand 0.8.5", "serde", - "sha2 0.10.8", + "sha2 0.10.9", "simple-dns", "smallvec", "snow", - "socket2 0.5.7", - "static_assertions", - "thiserror", + "socket2 0.5.10", + "thiserror 2.0.17", "tokio", "tokio-stream", "tokio-tungstenite", "tokio-util", "tracing", - "uint", + "uint 0.10.0", "unsigned-varint 0.8.0", "url", "x25519-dalek", - "x509-parser 0.16.0", + "x509-parser 0.17.0", + "yamux 0.13.8", "yasna", "zeroize", ] [[package]] name = "lock_api" -version = "0.4.12" +version = "0.4.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17" +checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965" dependencies = [ - "autocfg", "scopeguard", ] [[package]] name = "log" -version = "0.4.22" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24" - -[[package]] -name = "lru" -version = "0.8.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6e8aaa3f231bb4bd57b84b2d5dc3ae7f350265df8aa96492e0bc394a1571909" -dependencies = [ - "hashbrown 0.12.3", -] - -[[package]] -name = "lru" -version = "0.11.1" +version = "0.4.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4a83fb7698b3643a0e34f9ae6f2e8f0178c0fd42f8b59d493aa271ff3a5bf21" +checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432" [[package]] name = "lru" -version = "0.12.4" +version = "0.12.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "37ee39891760e7d94734f6f63fedc29a2e4a152f836120753a72503f09fcf904" +checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38" dependencies = [ - "hashbrown 0.14.5", + "hashbrown 0.15.5", ] [[package]] @@ -6346,11 +7545,17 @@ 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.0" +version = "1.28.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4d1febb2b4a79ddd1980eede06a8f7902197960aa0383ffcfdd62fe723036725" +checksum = "a20b523e860d03443e98350ceaac5e71c6ba89aea7d960769ec3ce37f4de5af4" dependencies = [ "lz4-sys", ] @@ -6366,14 +7571,25 @@ dependencies = [ ] [[package]] -name = "mach" -version = "0.3.2" +name = "mach2" +version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b823e83b2affd8f40a9ee8c29dbc56404c1e34cd2710921f2801e2cf29527afa" +checksum = "d640282b302c0bb0a2a8e0233ead9035e3bed871f0b7e81fe4a1ec829765db44" dependencies = [ "libc", ] +[[package]] +name = "macro-string" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1b27834086c65ec3f9387b096d66e99f221cf081c2b738042aa252bcd41204e3" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.110", +] + [[package]] name = "macro_magic" version = "0.5.1" @@ -6383,7 +7599,7 @@ dependencies = [ "macro_magic_core", "macro_magic_macros", "quote", - "syn 2.0.79", + "syn 2.0.110", ] [[package]] @@ -6397,7 +7613,7 @@ dependencies = [ "macro_magic_core_macros", "proc-macro2", "quote", - "syn 2.0.79", + "syn 2.0.110", ] [[package]] @@ -6408,7 +7624,7 @@ checksum = "b02abfe41815b5bd98dbd4260173db2c116dda171dc0fe7838cb206333b83308" dependencies = [ "proc-macro2", "quote", - "syn 2.0.79", + "syn 2.0.110", ] [[package]] @@ -6419,7 +7635,7 @@ checksum = "73ea28ee64b88876bf45277ed9a5817c1817df061a74f2b988971a12570e5869" dependencies = [ "macro_magic_core", "quote", - "syn 2.0.79", + "syn 2.0.110", ] [[package]] @@ -6429,31 +7645,30 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d" [[package]] -name = "match_cfg" -version = "0.1.0" +name = "match-lookup" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4" +checksum = "1265724d8cb29dbbc2b0f06fffb8bf1a8c0cf73a78eede9ba73a4a66c52a981e" +dependencies = [ + "proc-macro2", + "quote", + "syn 1.0.109", +] [[package]] name = "matchers" -version = "0.1.0" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558" +checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9" dependencies = [ - "regex-automata 0.1.10", + "regex-automata", ] -[[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.9" +version = "0.3.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9380b911e3e96d10c1f415da0876389aaf1b56759054eeb0de7df940c456ba1a" +checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08" dependencies = [ "autocfg", "rawpointer", @@ -6461,17 +7676,17 @@ dependencies = [ [[package]] name = "memchr" -version = "2.7.4" +version = "2.7.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" +checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273" [[package]] name = "memfd" -version = "0.6.4" +version = "0.6.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b2cffa4ad52c6f791f4f8b15f0c05f9824b2ced1160e88cc393d64fff9a8ac64" +checksum = "ad38eb12aea514a0466ea40a80fd8cc83637065948eb4a426e4aa46261175227" dependencies = [ - "rustix 0.38.37", + "rustix 1.1.2", ] [[package]] @@ -6485,29 +7700,22 @@ dependencies = [ [[package]] name = "memmap2" -version = "0.9.5" +version = "0.9.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fd3f7eed9d3848f8b98834af67102b720745c4ec028fcd0aa0239277e7de374f" +checksum = "744133e4a0e0a658e1374cf3bf8e415c4052a15a111acd372764c55b4177d490" dependencies = [ "libc", ] -[[package]] -name = "memoffset" -version = "0.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d61c719bcfbcf5d62b3a09efa6088de8c54bc0bfcd3ea7ae39fcc186108b8de1" -dependencies = [ - "autocfg", -] - [[package]] name = "memory-db" -version = "0.32.0" +version = "0.34.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "808b50db46293432a45e63bc15ea51e0ab4c0a1647b8eb114e31a3e698dd6fbe" +checksum = "7e300c54e3239a86f9c61cc63ab0f03862eb40b1c6e065dc6fd6ceaeff6da93d" dependencies = [ + "foldhash 0.1.5", "hash-db", + "hashbrown 0.15.5", ] [[package]] @@ -6518,21 +7726,10 @@ checksum = "58c38e2799fc0978b65dfff8023ec7843e2330bb462f19198840b34b6582397d" dependencies = [ "byteorder", "keccak", - "rand_core", + "rand_core 0.6.4", "zeroize", ] -[[package]] -name = "mick-jaeger" -version = "0.1.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "69672161530e8aeca1d1400fbf3f1a1747ff60ea604265a4e906c2442df20532" -dependencies = [ - "futures", - "rand", - "thrift", -] - [[package]] name = "minimal-lexical" version = "0.2.1" @@ -6541,23 +7738,22 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" [[package]] name = "miniz_oxide" -version = "0.8.0" +version = "0.8.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2d80299ef12ff69b16a84bb182e3b9df68b5a91574d3d4fa6e41b65deec4df1" +checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" dependencies = [ "adler2", ] [[package]] name = "mio" -version = "1.0.2" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec" +checksum = "69d83b0086dc8ecf3ce9ae2874b2d1290252e2a30720bea58a5c6639b0092873" dependencies = [ - "hermit-abi 0.3.9", "libc", "wasi", - "windows-sys 0.52.0", + "windows-sys 0.61.2", ] [[package]] @@ -6576,100 +7772,91 @@ dependencies = [ "hashlink", "lioness", "log", - "parking_lot 0.12.3", - "rand", - "rand_chacha", + "parking_lot 0.12.5", + "rand 0.8.5", + "rand_chacha 0.3.1", "rand_distr", "subtle 2.6.1", - "thiserror", + "thiserror 1.0.69", "zeroize", ] [[package]] name = "mmr-gadget" -version = "29.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "48.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "futures", "log", "parity-scale-codec", - "sc-client-api", + "sc-client-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "sc-offchain", - "sp-api", - "sp-blockchain", - "sp-consensus", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-blockchain 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "sp-consensus-beefy", - "sp-core", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "sp-mmr-primitives", - "sp-runtime", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "mmr-rpc" -version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "43.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "jsonrpsee", "parity-scale-codec", "serde", - "sp-api", - "sp-blockchain", - "sp-core", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-blockchain 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "sp-mmr-primitives", - "sp-runtime", -] - -[[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", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "mockall" -version = "0.13.0" +version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d4c28b3fb6d753d28c20e826cd46ee611fda1cf3cde03a443a974043247c065a" +checksum = "39a6bfcc6c8c7eed5ee98b9c3e33adc726054389233e201c95dab2d41a3839d2" dependencies = [ "cfg-if", "downcast", "fragile", - "mockall_derive 0.13.0", - "predicates 3.1.2", + "mockall_derive", + "predicates", "predicates-tree", ] [[package]] name = "mockall_derive" -version = "0.11.4" +version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22ce75669015c4f47b289fd4d4f56e894e4c96003ffdf3ac51313126f94c6cbb" +checksum = "25ca3004c2efe9011bd4e461bd8256445052b9615405b4f7ea43fc8ca5c20898" dependencies = [ "cfg-if", "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.110", ] [[package]] -name = "mockall_derive" -version = "0.13.0" +name = "moka" +version = "0.12.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "341014e7f530314e9a1fdbc7400b244efea7122662c96bfa248c31da5bfb2020" +checksum = "8261cd88c312e0004c1d51baad2980c66528dfdb2bee62003e643a4d8f86b077" dependencies = [ - "cfg-if", - "proc-macro2", - "quote", - "syn 2.0.79", + "crossbeam-channel", + "crossbeam-epoch", + "crossbeam-utils", + "equivalent", + "parking_lot 0.12.5", + "portable-atomic", + "rustc_version 0.4.1", + "smallvec", + "tagptr", + "uuid", ] [[package]] @@ -6708,7 +7895,7 @@ dependencies = [ "data-encoding", "libp2p-identity", "multibase", - "multihash 0.19.1", + "multihash 0.19.3", "percent-encoding", "serde", "static_assertions", @@ -6718,11 +7905,12 @@ dependencies = [ [[package]] name = "multibase" -version = "0.9.1" +version = "0.9.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9b3539ec3c1f04ac9748a260728e855f261b4977f5c3406612c884564f329404" +checksum = "8694bb4835f452b0e3bb06dbebb1d6fc5385b6ca1caf2e55fd165c042390ec77" dependencies = [ "base-x", + "base256emoji", "data-encoding", "data-encoding-macro", ] @@ -6739,36 +7927,19 @@ dependencies = [ "core2", "digest 0.10.7", "multihash-derive", - "sha2 0.10.8", - "sha3", - "unsigned-varint 0.7.2", -] - -[[package]] -name = "multihash" -version = "0.18.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cfd8a792c1694c6da4f68db0a9d707c72bd260994da179e6030a5dcee00bb815" -dependencies = [ - "blake2b_simd", - "blake2s_simd", - "blake3", - "core2", - "digest 0.10.7", - "multihash-derive", - "sha2 0.10.8", + "sha2 0.10.9", "sha3", "unsigned-varint 0.7.2", ] [[package]] name = "multihash" -version = "0.19.1" +version = "0.19.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "076d548d76a0e2a0d4ab471d0b1c36c577786dfc4471242035d97a12a735c492" +checksum = "6b430e7953c29dd6a09afc29ff0bb69c6e306329ee6794700aee27b76a1aea8d" dependencies = [ "core2", - "unsigned-varint 0.7.2", + "unsigned-varint 0.8.0", ] [[package]] @@ -6787,9 +7958,9 @@ dependencies = [ [[package]] name = "multimap" -version = "0.10.0" +version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "defc4c55412d89136f966bbb339008b474350e5e6e78d2714439c386b3137a03" +checksum = "1d87ecb2933e8aeadb3e3a02b828fed80a7528047e68b4f424523a0981a3a084" [[package]] name = "multistream-select" @@ -6807,13 +7978,12 @@ dependencies = [ [[package]] name = "nalgebra" -version = "0.32.6" +version = "0.33.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7b5c17de023a86f59ed79891b2e5d5a94c705dbe904a5b5c9c952ea6221b03e4" +checksum = "26aecdf64b707efd1310e3544d709c5c0ac61c13756046aaaba41be5c4f66a3b" dependencies = [ "approx", "matrixmultiply", - "nalgebra-macros", "num-complex", "num-rational", "num-traits", @@ -6821,24 +7991,13 @@ dependencies = [ "typenum", ] -[[package]] -name = "nalgebra-macros" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "254a5372af8fc138e36684761d3c0cdb758a4410e938babcff1c860ce14ddbfc" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.79", -] - [[package]] name = "names" version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7bddcd3bf5144b6392de80e04c347cd7fab2508f6df16a85fc496ecd5cec39bc" dependencies = [ - "rand", + "rand 0.8.5", ] [[package]] @@ -6849,21 +8008,20 @@ checksum = "6a51313c5820b0b02bd422f4b44776fbf47961755c74ce64afc73bfad10226c3" [[package]] name = "netlink-packet-core" -version = "0.4.2" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "345b8ab5bd4e71a2986663e88c56856699d060e78e152e6e9d7966fcd5491297" +checksum = "72724faf704479d67b388da142b186f916188505e7e0b26719019c525882eda4" dependencies = [ "anyhow", "byteorder", - "libc", "netlink-packet-utils", ] [[package]] name = "netlink-packet-route" -version = "0.12.0" +version = "0.17.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d9ea4302b9759a7a88242299225ea3688e63c85ea136371bb6cf94fd674efaab" +checksum = "053998cea5a306971f88580d0829e90f270f940befd7cf928da179d4187a5a66" dependencies = [ "anyhow", "bitflags 1.3.2", @@ -6882,29 +8040,28 @@ dependencies = [ "anyhow", "byteorder", "paste", - "thiserror", + "thiserror 1.0.69", ] [[package]] name = "netlink-proto" -version = "0.10.0" +version = "0.11.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "65b4b14489ab424703c092062176d52ba55485a89c076b4f9db05092b7223aa6" +checksum = "72452e012c2f8d612410d89eea01e2d9b56205274abb35d53f60200b2ec41d60" dependencies = [ "bytes", "futures", "log", "netlink-packet-core", "netlink-sys", - "thiserror", - "tokio", + "thiserror 2.0.17", ] [[package]] name = "netlink-sys" -version = "0.8.6" +version = "0.8.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "416060d346fbaf1f23f9512963e3e878f1a78e707cb699ba9215761754244307" +checksum = "16c903aa70590cb93691bf97a767c8d1d6122d2cc9070433deb3bbf36ce8bd23" dependencies = [ "bytes", "futures", @@ -6915,21 +8072,21 @@ dependencies = [ [[package]] name = "network-interface" -version = "1.1.4" +version = "2.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4a43439bf756eed340bdf8feba761e2d50c7d47175d87545cd5cbe4a137c4d1" +checksum = "07709a6d4eba90ab10ec170a0530b3aafc81cb8a2d380e4423ae41fc55fe5745" dependencies = [ "cc", "libc", - "thiserror", + "thiserror 2.0.17", "winapi", ] [[package]] name = "nix" -version = "0.24.3" +version = "0.26.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fa52e972a9a719cecb6864fb88568781eb706bac2cd1d4f04a648542dbf78069" +checksum = "598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b" dependencies = [ "bitflags 1.3.2", "cfg-if", @@ -6938,13 +8095,13 @@ dependencies = [ [[package]] name = "nix" -version = "0.28.0" +version = "0.29.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ab2156c4fce2f8df6c499cc1c763e4394b7482525bf2a9701c9d79d215f519e4" +checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.10.0", "cfg-if", - "cfg_aliases", + "cfg_aliases 0.2.1", "libc", ] @@ -6954,52 +8111,46 @@ 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 = "node-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "sp-core", - "sp-runtime", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "node-rpc" -version = "3.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "3.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "jsonrpsee", "mmr-rpc", "node-primitives", "pallet-transaction-payment-rpc", - "sc-chain-spec", - "sc-client-api", - "sc-consensus-babe", + "sc-chain-spec 46.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-client-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-consensus-babe 0.53.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "sc-consensus-babe-rpc", "sc-consensus-beefy", "sc-consensus-beefy-rpc", "sc-consensus-grandpa", "sc-consensus-grandpa-rpc", - "sc-mixnet", - "sc-rpc", + "sc-mixnet 0.23.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-rpc 48.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "sc-sync-state-rpc", - "sc-transaction-pool-api", - "sp-api", - "sp-application-crypto", - "sp-block-builder", - "sp-blockchain", - "sp-consensus", - "sp-consensus-babe", + "sc-transaction-pool-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-application-crypto 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-block-builder 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-blockchain 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus-babe 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "sp-consensus-beefy", - "sp-keystore", - "sp-runtime", - "sp-statement-store", + "sp-keystore 0.44.1 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-statement-store 23.0.0", "substrate-frame-rpc-system", "substrate-state-trie-migration-rpc", ] @@ -7039,19 +8190,35 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "38bf9645c8b145698bb0b18a4637dcacbc421ea49bef2317e4fd8065a387cf21" [[package]] -name = "normalize-line-endings" -version = "0.3.0" +name = "ntapi" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be" +checksum = "e8a3895c6391c39d7fe7ebc444a87eb2991b2a0bc718fdabd071eec617fc68e4" +dependencies = [ + "winapi", +] [[package]] name = "nu-ansi-term" -version = "0.46.0" +version = "0.50.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84" +checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5" dependencies = [ - "overload", - "winapi", + "windows-sys 0.61.2", +] + +[[package]] +name = "num" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23" +dependencies = [ + "num-bigint", + "num-complex", + "num-integer", + "num-iter", + "num-rational", + "num-traits", ] [[package]] @@ -7087,7 +8254,7 @@ checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202" dependencies = [ "proc-macro2", "quote", - "syn 2.0.79", + "syn 2.0.110", ] [[package]] @@ -7109,6 +8276,17 @@ dependencies = [ "num-traits", ] +[[package]] +name = "num-iter" +version = "0.1.45" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf" +dependencies = [ + "autocfg", + "num-integer", + "num-traits", +] + [[package]] name = "num-rational" version = "0.4.2" @@ -7132,77 +8310,97 @@ dependencies = [ [[package]] name = "num_cpus" -version = "1.16.0" +version = "1.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" +checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b" dependencies = [ - "hermit-abi 0.3.9", + "hermit-abi", "libc", ] [[package]] -name = "number_prefix" -version = "0.4.0" +name = "num_enum" +version = "0.7.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3" +checksum = "b1207a7e20ad57b847bbddc6776b968420d38292bbfe2089accff5e19e82454c" +dependencies = [ + "num_enum_derive", + "rustversion", +] [[package]] -name = "object" -version = "0.30.4" +name = "num_enum_derive" +version = "0.7.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "03b4680b86d9cfafba8fc491dc9b6df26b68cf40e9e6cd73909194759a63c385" +checksum = "ff32365de1b6743cb203b710788263c44a03de03802daf96092f2da4fe6ba4d7" dependencies = [ - "crc32fast", - "hashbrown 0.13.2", - "indexmap 1.9.3", - "memchr", + "proc-macro-crate 3.4.0", + "proc-macro2", + "quote", + "syn 2.0.110", ] +[[package]] +name = "number_prefix" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3" + [[package]] name = "object" -version = "0.32.2" +version = "0.36.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441" +checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87" dependencies = [ + "crc32fast", + "hashbrown 0.15.5", + "indexmap 2.12.0", "memchr", ] [[package]] name = "object" -version = "0.36.4" +version = "0.37.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "084f1a5821ac4c651660a94a7153d27ac9d8a53736203f58b31945ded098070a" +checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe" dependencies = [ "memchr", ] [[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]] name = "oid-registry" -version = "0.7.1" +version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a8d8034d9489cdaf79228eb9f6a3b8d7bb32ba00d6645ebd48eef4077ceb5bd9" +checksum = "12f40cff3dde1b6087cc5d5f5d4d65712f34016a03ed60e9c08dcc392736b5b7" dependencies = [ - "asn1-rs 0.6.2", + "asn1-rs 0.7.1", ] [[package]] name = "once_cell" -version = "1.20.1" +version = "1.21.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "82881c4be219ab5faaf2ad5e5e5ecdff8c66bd7402ca3160975c93b24961afd1" +checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" dependencies = [ + "critical-section", "portable-atomic", ] +[[package]] +name = "once_cell_polyfill" +version = "1.70.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe" + [[package]] name = "opaque-debug" version = "0.2.3" @@ -7217,9 +8415,9 @@ checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381" [[package]] name = "openssl-probe" -version = "0.1.5" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" +checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e" [[package]] name = "option-ext" @@ -7229,9 +8427,9 @@ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" [[package]] name = "orchestra" -version = "0.4.0" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "41f6bbacc8c189a3f2e45e0fd0436e5d97f194db888e721bdbc3973e7dbed4c2" +checksum = "19051f0b0512402f5d52d6776999f55996f01887396278aeeccbbdfbc83eef2d" dependencies = [ "async-trait", "dyn-clonable", @@ -7240,296 +8438,331 @@ dependencies = [ "orchestra-proc-macro", "pin-project", "prioritized-metered-channel", - "thiserror", + "thiserror 1.0.69", "tracing", ] [[package]] name = "orchestra-proc-macro" -version = "0.4.0" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f7b1d40dd8f367db3c65bec8d3dd47d4a604ee8874480738f93191bddab4e0e0" +checksum = "43dfaf083aef571385fccfdc3a2f8ede8d0a1863160455d4f2b014d8f7d04a3f" dependencies = [ "expander", - "indexmap 2.5.0", + "indexmap 2.12.0", "itertools 0.11.0", - "petgraph", - "proc-macro-crate 3.2.0", + "petgraph 0.6.5", + "proc-macro-crate 3.4.0", "proc-macro2", "quote", "syn 1.0.109", ] [[package]] -name = "ordered-float" -version = "1.1.1" +name = "p256" +version = "0.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3305af35278dd29f46fcdd139e0b1fbfae2153f0e5928b39b035542dd31e37b7" +checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b" dependencies = [ - "num-traits", + "ecdsa", + "elliptic-curve", + "primeorder", + "sha2 0.10.9", ] -[[package]] -name = "overload" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" - [[package]] name = "pallet-alliance" -version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "42.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "frame-benchmarking", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "log", "pallet-collective", "pallet-identity", "parity-scale-codec", "scale-info", - "sp-core", - "sp-crypto-hashing", - "sp-io", - "sp-runtime", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-asset-conversion" -version = "10.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "25.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "frame-benchmarking", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "log", "parity-scale-codec", "scale-info", - "sp-api", - "sp-arithmetic", - "sp-core", - "sp-io", - "sp-runtime", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-arithmetic 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-asset-conversion-ops" -version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.11.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "frame-benchmarking", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "log", "pallet-asset-conversion", "parity-scale-codec", "scale-info", - "sp-arithmetic", - "sp-core", - "sp-io", - "sp-runtime", + "sp-arithmetic 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-asset-conversion-tx-payment" -version = "10.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "25.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "frame-support", - "frame-system", + "frame-benchmarking", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "pallet-asset-conversion", "pallet-transaction-payment", "parity-scale-codec", "scale-info", - "sp-runtime", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-asset-rate" -version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "22.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "frame-benchmarking", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "parity-scale-codec", "scale-info", - "sp-core", - "sp-runtime", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] -name = "pallet-asset-tx-payment" -version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +name = "pallet-asset-rewards" +version = "0.5.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "frame-benchmarking", - "frame-support", - "frame-system", - "pallet-transaction-payment", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "parity-scale-codec", "scale-info", - "serde", - "sp-core", - "sp-io", - "sp-runtime", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-arithmetic 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] -name = "pallet-assets" -version = "29.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +name = "pallet-asset-tx-payment" +version = "43.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" +dependencies = [ + "frame-benchmarking", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "pallet-transaction-payment", + "parity-scale-codec", + "scale-info", + "serde", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", +] + +[[package]] +name = "pallet-assets" +version = "46.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "frame-benchmarking", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "impl-trait-for-tuples", "log", "parity-scale-codec", "scale-info", - "sp-core", - "sp-runtime", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-assets-freezer" -version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.11.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" +dependencies = [ + "log", + "pallet-assets", + "parity-scale-codec", + "polkadot-sdk-frame", + "scale-info", +] + +[[package]] +name = "pallet-assets-holder" +version = "0.6.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "frame-benchmarking", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "log", "pallet-assets", "parity-scale-codec", "scale-info", - "sp-runtime", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", +] + +[[package]] +name = "pallet-assets-precompiles" +version = "0.2.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" +dependencies = [ + "ethereum-standards", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "pallet-assets", + "pallet-revive", ] [[package]] name = "pallet-atomic-swap" -version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "43.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "frame-support", - "frame-system", "parity-scale-codec", + "polkadot-sdk-frame", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", ] [[package]] name = "pallet-aura" -version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "42.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "log", "pallet-timestamp", "parity-scale-codec", "scale-info", - "sp-application-crypto", - "sp-consensus-aura", - "sp-runtime", + "sp-application-crypto 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus-aura 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-authority-discovery" -version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "43.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "pallet-session", "parity-scale-codec", "scale-info", - "sp-application-crypto", - "sp-authority-discovery", - "sp-runtime", + "sp-application-crypto 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-authority-discovery 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-authorship" -version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "43.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "impl-trait-for-tuples", "parity-scale-codec", "scale-info", - "sp-runtime", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-babe" -version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "43.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "frame-benchmarking", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "log", "pallet-authorship", "pallet-session", "pallet-timestamp", "parity-scale-codec", "scale-info", - "sp-application-crypto", - "sp-consensus-babe", - "sp-core", - "sp-io", - "sp-runtime", - "sp-session", - "sp-staking", + "sp-application-crypto 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus-babe 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-session 41.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-staking 41.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-bags-list" -version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "42.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "aquamarine", "docify", "frame-benchmarking", "frame-election-provider-support", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "log", "pallet-balances", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-tracing 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-balances" -version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "44.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "docify", "frame-benchmarking", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "log", "parity-scale-codec", "scale-info", - "sp-runtime", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-beefy" -version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "44.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "log", "pallet-authorship", "pallet-session", @@ -7537,21 +8770,21 @@ dependencies = [ "scale-info", "serde", "sp-consensus-beefy", - "sp-runtime", - "sp-session", - "sp-staking", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-session 41.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-staking 41.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-beefy-mmr" -version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "44.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "array-bytes", - "binary-merkle-tree", + "binary-merkle-tree 16.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "frame-benchmarking", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "log", "pallet-beefy", "pallet-mmr", @@ -7559,209 +8792,207 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-api", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "sp-consensus-beefy", - "sp-core", - "sp-io", - "sp-runtime", - "sp-state-machine", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-state-machine 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-bounties" -version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "42.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "frame-benchmarking", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "log", "pallet-treasury", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-bridge-grandpa" -version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.23.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "bp-header-chain", "bp-runtime", "bp-test-utils", "frame-benchmarking", - "frame-support", - "frame-system", - "log", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "parity-scale-codec", "scale-info", - "sp-consensus-grandpa", - "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", + "sp-consensus-grandpa 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "tracing", ] [[package]] name = "pallet-bridge-messages" -version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.23.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "bp-header-chain", "bp-messages", "bp-runtime", "frame-benchmarking", - "frame-support", - "frame-system", - "log", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "parity-scale-codec", "scale-info", - "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "sp-trie", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-trie 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "tracing", ] [[package]] name = "pallet-bridge-parachains" -version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.23.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "bp-header-chain", "bp-parachains", "bp-polkadot-core", "bp-runtime", "frame-benchmarking", - "frame-support", - "frame-system", - "log", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "pallet-bridge-grandpa", "parity-scale-codec", "scale-info", - "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "tracing", ] [[package]] name = "pallet-bridge-relayers" -version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.23.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "bp-header-chain", "bp-messages", "bp-relayers", "bp-runtime", "frame-benchmarking", - "frame-support", - "frame-system", - "log", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "pallet-bridge-grandpa", "pallet-bridge-messages", "pallet-bridge-parachains", "pallet-transaction-payment", "parity-scale-codec", "scale-info", - "sp-arithmetic", - "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", + "sp-arithmetic 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "tracing", ] [[package]] name = "pallet-broker" -version = "0.6.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.22.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "bitvec", "frame-benchmarking", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "log", "parity-scale-codec", "scale-info", - "sp-api", - "sp-arithmetic", - "sp-core", - "sp-runtime", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-arithmetic 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-child-bounties" -version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "42.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "frame-benchmarking", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "log", "pallet-bounties", "pallet-treasury", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-collator-selection" -version = "9.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "24.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "frame-benchmarking", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "log", "pallet-authorship", "pallet-balances", "pallet-session", "parity-scale-codec", - "rand", + "rand 0.8.5", "scale-info", - "sp-runtime", - "sp-staking", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-staking 41.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-collective" -version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "43.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "docify", "frame-benchmarking", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "log", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-collective-content" -version = "0.6.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.21.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "frame-benchmarking", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "parity-scale-codec", "scale-info", - "sp-core", - "sp-runtime", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-contracts" -version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "43.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "bitflags 1.3.2", "environmental", "frame-benchmarking", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "impl-trait-for-tuples", "log", "pallet-balances", @@ -7769,51 +9000,46 @@ dependencies = [ "pallet-contracts-uapi", "parity-scale-codec", "paste", - "rand", + "rand 0.8.5", "scale-info", "serde", "smallvec", - "sp-api", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "staging-xcm", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "staging-xcm 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "staging-xcm-builder", "wasm-instrument", - "wasmi 0.32.3", + "wasmi", ] [[package]] name = "pallet-contracts-mock-network" -version = "3.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "21.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "pallet-assets", "pallet-balances", "pallet-contracts", - "pallet-contracts-proc-macro", "pallet-contracts-uapi", - "pallet-insecure-randomness-collective-flip", "pallet-message-queue", - "pallet-proxy", "pallet-timestamp", - "pallet-utility", "pallet-xcm", "parity-scale-codec", - "polkadot-parachain-primitives", - "polkadot-primitives", + "polkadot-parachain-primitives 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "polkadot-primitives 21.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "polkadot-runtime-parachains", "scale-info", - "sp-api", - "sp-core", - "sp-io", - "sp-keystore", - "sp-runtime", - "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "staging-xcm", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-keystore 0.44.1 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-tracing 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "staging-xcm 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "staging-xcm-builder", "staging-xcm-executor", "xcm-simulator", @@ -7821,18 +9047,18 @@ dependencies = [ [[package]] name = "pallet-contracts-proc-macro" -version = "18.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "23.0.3" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "proc-macro2", "quote", - "syn 2.0.79", + "syn 2.0.110", ] [[package]] name = "pallet-contracts-uapi" -version = "5.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "14.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "bitflags 1.3.2", "parity-scale-codec", @@ -7842,554 +9068,600 @@ dependencies = [ [[package]] name = "pallet-conviction-voting" -version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "43.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "assert_matches", "frame-benchmarking", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "parity-scale-codec", "scale-info", "serde", - "sp-io", - "sp-runtime", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-core-fellowship" -version = "12.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "27.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "frame-benchmarking", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "log", "pallet-ranked-collective", "parity-scale-codec", "scale-info", - "sp-arithmetic", - "sp-core", - "sp-io", - "sp-runtime", + "sp-arithmetic 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-delegated-staking" -version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "10.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "log", "parity-scale-codec", "scale-info", - "sp-io", - "sp-runtime", - "sp-staking", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-staking 41.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-democracy" -version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "43.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "frame-benchmarking", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "log", "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-runtime", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", +] + +[[package]] +name = "pallet-derivatives" +version = "0.2.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" +dependencies = [ + "frame-benchmarking", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "log", + "parity-scale-codec", + "scale-info", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "staging-xcm 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "staging-xcm-builder", + "staging-xcm-executor", ] [[package]] name = "pallet-dev-mode" -version = "10.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "25.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "log", "pallet-balances", "parity-scale-codec", "scale-info", - "sp-io", - "sp-runtime", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", +] + +[[package]] +name = "pallet-dummy-dim" +version = "0.4.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" +dependencies = [ + "frame-benchmarking", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "log", + "parity-scale-codec", + "scale-info", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-arithmetic 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", +] + +[[package]] +name = "pallet-election-provider-multi-block" +version = "0.4.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" +dependencies = [ + "frame-benchmarking", + "frame-election-provider-support", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "log", + "parity-scale-codec", + "rand 0.8.5", + "scale-info", + "sp-arithmetic 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-npos-elections", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-election-provider-multi-phase" -version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "42.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "frame-benchmarking", "frame-election-provider-support", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "log", - "pallet-election-provider-support-benchmarking", "parity-scale-codec", - "rand", + "rand 0.8.5", "scale-info", - "sp-arithmetic", - "sp-core", - "sp-io", + "sp-arithmetic 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "sp-npos-elections", - "sp-runtime", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "strum 0.26.3", ] [[package]] name = "pallet-election-provider-support-benchmarking" -version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "42.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "frame-benchmarking", "frame-election-provider-support", - "frame-system", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "parity-scale-codec", "sp-npos-elections", - "sp-runtime", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-elections-phragmen" -version = "29.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "44.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "frame-benchmarking", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "log", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "sp-npos-elections", - "sp-runtime", - "sp-staking", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-staking 41.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-example-mbm" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "frame-benchmarking", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "log", "pallet-migrations", "parity-scale-codec", "scale-info", - "sp-io", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-example-tasks" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "frame-benchmarking", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "log", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-fast-unstake" -version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "42.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "docify", "frame-benchmarking", "frame-election-provider-support", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "log", "parity-scale-codec", "scale-info", - "sp-io", - "sp-runtime", - "sp-staking", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-staking 41.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-glutton" -version = "14.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "29.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "blake2 0.10.6", "frame-benchmarking", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "log", "parity-scale-codec", "scale-info", - "sp-core", - "sp-inherents", - "sp-io", - "sp-runtime", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-inherents 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-grandpa" -version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "43.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "frame-benchmarking", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "log", "pallet-authorship", "pallet-session", "parity-scale-codec", "scale-info", - "sp-application-crypto", - "sp-consensus-grandpa", - "sp-core", - "sp-io", - "sp-runtime", - "sp-session", - "sp-staking", + "sp-application-crypto 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus-grandpa 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-session 41.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-staking 41.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-identity" -version = "29.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "43.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "enumflags2", "frame-benchmarking", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "log", "parity-scale-codec", "scale-info", - "sp-io", - "sp-runtime", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-im-online" -version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "42.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "frame-benchmarking", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "log", "pallet-authorship", "parity-scale-codec", "scale-info", - "sp-application-crypto", - "sp-core", - "sp-io", - "sp-runtime", - "sp-staking", + "sp-application-crypto 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-staking 41.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-indices" -version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "43.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "frame-benchmarking", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-keyring", - "sp-runtime", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-insecure-randomness-collective-flip" -version = "16.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "31.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "frame-support", - "frame-system", "parity-scale-codec", + "polkadot-sdk-frame", "safe-mix", "scale-info", - "sp-runtime", ] [[package]] name = "pallet-lottery" -version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "43.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "frame-benchmarking", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "parity-scale-codec", "scale-info", - "sp-runtime", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-membership" -version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "43.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "frame-benchmarking", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "log", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-message-queue" -version = "31.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "46.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "environmental", "frame-benchmarking", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "log", "parity-scale-codec", "scale-info", - "sp-arithmetic", - "sp-core", - "sp-io", - "sp-runtime", - "sp-weights", + "sp-arithmetic 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-weights 33.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", +] + +[[package]] +name = "pallet-meta-tx" +version = "0.5.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" +dependencies = [ + "docify", + "frame-benchmarking", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "parity-scale-codec", + "scale-info", + "serde", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-migrations" -version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "13.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "cfg-if", "docify", "frame-benchmarking", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "impl-trait-for-tuples", "log", "parity-scale-codec", + "polkadot-sdk-frame", "scale-info", - "sp-core", - "sp-runtime", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-mixnet" -version = "0.4.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.19.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", "log", "parity-scale-codec", + "polkadot-sdk-frame", "scale-info", "serde", - "sp-application-crypto", - "sp-arithmetic", - "sp-io", - "sp-mixnet", - "sp-runtime", + "sp-application-crypto 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-mixnet 0.17.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-mmr" -version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "43.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", "log", "parity-scale-codec", + "polkadot-sdk-frame", "scale-info", - "sp-core", - "sp-io", "sp-mmr-primitives", - "sp-runtime", ] [[package]] name = "pallet-multisig" -version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "43.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", "log", "parity-scale-codec", + "polkadot-sdk-frame", "scale-info", - "sp-io", - "sp-runtime", ] [[package]] name = "pallet-nft-fractionalization" -version = "10.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "27.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", "log", "pallet-assets", "pallet-nfts", "parity-scale-codec", + "polkadot-sdk-frame", "scale-info", - "sp-runtime", ] [[package]] name = "pallet-nfts" -version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "37.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "enumflags2", "frame-benchmarking", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "log", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-nfts-runtime-api" -version = "14.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "29.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "pallet-nfts", "parity-scale-codec", - "sp-api", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-nis" -version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "43.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", "parity-scale-codec", + "polkadot-sdk-frame", "scale-info", - "sp-arithmetic", - "sp-core", - "sp-runtime", ] [[package]] name = "pallet-node-authorization" -version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "43.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "frame-support", - "frame-system", "log", "parity-scale-codec", + "polkadot-sdk-frame", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", ] [[package]] name = "pallet-nomination-pools" -version = "25.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "41.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "log", "pallet-balances", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-staking", - "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-staking 41.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-tracing 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-nomination-pools-benchmarking" -version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "41.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "frame-benchmarking", "frame-election-provider-support", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "pallet-bags-list", "pallet-delegated-staking", "pallet-nomination-pools", "pallet-staking", "parity-scale-codec", "scale-info", - "sp-runtime", - "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "sp-staking", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime-interface 32.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-staking 41.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-nomination-pools-runtime-api" -version = "23.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "39.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "pallet-nomination-pools", "parity-scale-codec", - "sp-api", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-offences" -version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "42.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "log", - "pallet-balances", "parity-scale-codec", "scale-info", "serde", - "sp-runtime", - "sp-staking", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-staking 41.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-offences-benchmarking" -version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "43.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "frame-benchmarking", "frame-election-provider-support", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "log", "pallet-babe", "pallet-balances", @@ -8400,834 +9672,918 @@ dependencies = [ "pallet-staking", "parity-scale-codec", "scale-info", - "sp-runtime", - "sp-staking", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-staking 41.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", +] + +[[package]] +name = "pallet-origin-restriction" +version = "0.4.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" +dependencies = [ + "frame-benchmarking", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "log", + "pallet-transaction-payment", + "parity-scale-codec", + "scale-info", + "sp-arithmetic 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-paged-list" -version = "0.6.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.21.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "docify", - "frame-benchmarking", - "frame-support", - "frame-system", "parity-scale-codec", + "polkadot-sdk-frame", "scale-info", - "sp-core", - "sp-io", - "sp-metadata-ir", - "sp-runtime", + "sp-metadata-ir 0.12.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-parameters" -version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.14.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "docify", "frame-benchmarking", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "parity-scale-codec", "paste", "scale-info", "serde", - "sp-core", - "sp-runtime", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", +] + +[[package]] +name = "pallet-people" +version = "0.4.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" +dependencies = [ + "frame-benchmarking", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "log", + "parity-scale-codec", + "scale-info", + "sp-arithmetic 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "verifiable", ] [[package]] name = "pallet-preimage" -version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "43.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "frame-benchmarking", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "log", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-proxy" -version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "43.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", "parity-scale-codec", + "polkadot-sdk-frame", "scale-info", - "sp-io", - "sp-runtime", ] [[package]] name = "pallet-ranked-collective" -version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "43.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "frame-benchmarking", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "impl-trait-for-tuples", "log", "parity-scale-codec", "scale-info", - "sp-arithmetic", - "sp-core", - "sp-io", - "sp-runtime", + "sp-arithmetic 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-recovery" -version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "43.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", "parity-scale-codec", + "polkadot-sdk-frame", "scale-info", - "sp-io", - "sp-runtime", ] [[package]] name = "pallet-referenda" -version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "43.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "frame-benchmarking", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "log", "parity-scale-codec", "scale-info", "serde", - "sp-arithmetic", - "sp-io", - "sp-runtime", + "sp-arithmetic 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-remark" -version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "43.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "frame-benchmarking", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-runtime", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-revive" -version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.10.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "bitflags 1.3.2", + "alloy-core", + "derive_more 0.99.20", "environmental", + "ethereum-standards", + "ethereum-types", "frame-benchmarking", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "hex-literal", + "humantime-serde", "impl-trait-for-tuples", "log", - "pallet-balances", + "num-bigint", + "num-integer", + "num-traits", "pallet-revive-fixtures", "pallet-revive-proc-macro", "pallet-revive-uapi", + "pallet-transaction-payment", "parity-scale-codec", "paste", - "polkavm 0.11.0", - "rlp", + "polkavm 0.27.0", + "polkavm-common 0.27.0", + "rand 0.8.5", + "revm", + "ripemd", + "rlp 0.6.1", "scale-info", "serde", - "sp-api", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "staging-xcm", - "staging-xcm-builder", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-arithmetic 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus-aura 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus-babe 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus-slots 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "substrate-bn", + "subxt-signer", ] [[package]] name = "pallet-revive-fixtures" -version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.7.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ + "alloy-core", "anyhow", - "frame-system", - "log", - "parity-wasm", - "polkavm-linker 0.11.0", - "sp-core", - "sp-io", - "sp-runtime", - "tempfile", - "toml 0.8.19", -] - -[[package]] -name = "pallet-revive-mock-network" -version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" -dependencies = [ - "frame-support", - "frame-system", - "pallet-assets", - "pallet-balances", - "pallet-message-queue", - "pallet-proxy", - "pallet-revive", - "pallet-revive-proc-macro", + "cargo_metadata", + "hex", "pallet-revive-uapi", - "pallet-timestamp", - "pallet-utility", - "pallet-xcm", - "parity-scale-codec", - "polkadot-parachain-primitives", - "polkadot-primitives", - "polkadot-runtime-parachains", - "scale-info", - "sp-api", - "sp-core", - "sp-io", - "sp-keystore", - "sp-runtime", - "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "staging-xcm", - "staging-xcm-builder", - "staging-xcm-executor", - "xcm-simulator", + "polkavm-linker 0.27.0", + "serde_json", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "toml 0.8.23", ] [[package]] name = "pallet-revive-proc-macro" -version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.5.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "proc-macro2", "quote", - "syn 2.0.79", + "syn 2.0.110", ] [[package]] name = "pallet-revive-uapi" -version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.8.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "bitflags 1.3.2", + "pallet-revive-proc-macro", "parity-scale-codec", - "paste", - "polkavm-derive 0.11.0", + "polkavm-derive 0.27.0", "scale-info", ] [[package]] name = "pallet-root-offences" -version = "25.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "40.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "pallet-session", "pallet-staking", "parity-scale-codec", "scale-info", - "sp-runtime", - "sp-staking", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-staking 41.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-root-testing" -version = "4.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "19.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-safe-mode" -version = "9.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "24.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "docify", - "frame-benchmarking", - "frame-support", - "frame-system", "pallet-balances", "pallet-proxy", "pallet-utility", "parity-scale-codec", + "polkadot-sdk-frame", "scale-info", - "sp-arithmetic", - "sp-runtime", ] [[package]] name = "pallet-salary" -version = "13.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "28.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", "log", "pallet-ranked-collective", "parity-scale-codec", + "polkadot-sdk-frame", "scale-info", - "sp-arithmetic", - "sp-core", - "sp-io", - "sp-runtime", ] [[package]] name = "pallet-scheduler" -version = "29.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "44.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "docify", "frame-benchmarking", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "log", "parity-scale-codec", "scale-info", - "sp-io", - "sp-runtime", - "sp-weights", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-weights 33.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-scored-pool" -version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "43.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "parity-scale-codec", "scale-info", - "sp-io", - "sp-runtime", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-session" -version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "43.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "impl-trait-for-tuples", "log", + "pallet-balances", "pallet-timestamp", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-session", - "sp-staking", - "sp-state-machine", - "sp-trie", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-session 41.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-staking 41.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-state-machine 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-trie 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-session-benchmarking" -version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "43.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "frame-benchmarking", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "pallet-session", "pallet-staking", "parity-scale-codec", - "rand", - "sp-runtime", - "sp-session", + "rand 0.8.5", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-session 41.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-skip-feeless-payment" -version = "3.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "18.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "parity-scale-codec", "scale-info", - "sp-runtime", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-society" -version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "43.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "frame-benchmarking", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "log", "parity-scale-codec", - "rand_chacha", + "rand_chacha 0.3.1", "scale-info", - "sp-arithmetic", - "sp-io", - "sp-runtime", + "sp-arithmetic 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-staking" -version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "43.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" +dependencies = [ + "frame-benchmarking", + "frame-election-provider-support", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "log", + "pallet-authorship", + "pallet-session", + "parity-scale-codec", + "scale-info", + "serde", + "sp-application-crypto 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-staking 41.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", +] + +[[package]] +name = "pallet-staking-async" +version = "0.5.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "frame-benchmarking", "frame-election-provider-support", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "log", + "pallet-staking-async-rc-client", + "parity-scale-codec", + "rand 0.8.5", + "rand_chacha 0.3.1", + "scale-info", + "serde", + "sp-application-crypto 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-npos-elections", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-staking 41.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", +] + +[[package]] +name = "pallet-staking-async-ah-client" +version = "0.4.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" +dependencies = [ + "frame-benchmarking", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "log", "pallet-authorship", "pallet-session", + "pallet-staking-async-rc-client", "parity-scale-codec", "scale-info", "serde", - "sp-application-crypto", - "sp-io", - "sp-runtime", - "sp-staking", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-staking 41.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", +] + +[[package]] +name = "pallet-staking-async-rc-client" +version = "0.4.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" +dependencies = [ + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "impl-trait-for-tuples", + "log", + "parity-scale-codec", + "scale-info", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-staking 41.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "staging-xcm 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", +] + +[[package]] +name = "pallet-staking-async-reward-fn" +version = "0.3.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" +dependencies = [ + "log", + "sp-arithmetic 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", +] + +[[package]] +name = "pallet-staking-async-runtime-api" +version = "0.4.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" +dependencies = [ + "parity-scale-codec", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-staking 41.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-staking-reward-curve" -version = "11.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "12.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "proc-macro-crate 3.2.0", + "proc-macro-crate 3.4.0", "proc-macro2", "quote", - "syn 2.0.79", + "syn 2.0.110", ] [[package]] name = "pallet-staking-reward-fn" -version = "19.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "24.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "log", - "sp-arithmetic", + "sp-arithmetic 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-staking-runtime-api" -version = "14.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "29.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "parity-scale-codec", - "sp-api", - "sp-staking", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-staking 41.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-state-trie-migration" -version = "29.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "48.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "frame-benchmarking", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "log", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-statement" -version = "10.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "25.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "log", "parity-scale-codec", "scale-info", - "sp-api", - "sp-core", - "sp-io", - "sp-runtime", - "sp-statement-store", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-statement-store 23.0.0", ] [[package]] name = "pallet-sudo" -version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "43.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "docify", "frame-benchmarking", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "parity-scale-codec", "scale-info", - "sp-io", - "sp-runtime", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-timestamp" -version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "42.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "docify", "frame-benchmarking", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "log", "parity-scale-codec", "scale-info", - "sp-inherents", - "sp-io", - "sp-runtime", - "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "sp-timestamp", + "sp-inherents 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-storage 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-timestamp 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-tips" -version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "42.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "frame-benchmarking", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "log", "pallet-treasury", "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-runtime", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-transaction-payment" -version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "43.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "frame-support", - "frame-system", + "frame-benchmarking", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-runtime", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-transaction-payment-rpc" -version = "30.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "46.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", "parity-scale-codec", - "sp-api", - "sp-blockchain", - "sp-core", - "sp-rpc", - "sp-runtime", - "sp-weights", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-blockchain 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-rpc 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-weights 33.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-transaction-payment-rpc-runtime-api" -version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "43.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", - "sp-api", - "sp-runtime", - "sp-weights", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-weights 33.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-transaction-storage" -version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "42.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "frame-benchmarking", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "log", "pallet-balances", "parity-scale-codec", "scale-info", "serde", - "sp-inherents", - "sp-io", - "sp-runtime", - "sp-transaction-storage-proof", + "sp-inherents 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-transaction-storage-proof 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-treasury" -version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "42.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "docify", "frame-benchmarking", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "impl-trait-for-tuples", + "log", "pallet-balances", "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-runtime", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-tx-pause" -version = "9.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "24.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "docify", - "frame-benchmarking", - "frame-support", - "frame-system", - "pallet-balances", - "pallet-proxy", - "pallet-utility", "parity-scale-codec", + "polkadot-sdk-frame", "scale-info", - "sp-runtime", ] [[package]] name = "pallet-uniques" -version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "43.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "frame-benchmarking", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "log", "parity-scale-codec", "scale-info", - "sp-runtime", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-utility" -version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "43.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" +dependencies = [ + "frame-benchmarking", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "parity-scale-codec", + "scale-info", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", +] + +[[package]] +name = "pallet-verify-signature" +version = "0.6.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "frame-benchmarking", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-weights 33.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-vesting" -version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "43.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "frame-benchmarking", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "log", "parity-scale-codec", "scale-info", - "sp-runtime", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "pallet-whitelist" -version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "42.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", "parity-scale-codec", + "polkadot-sdk-frame", "scale-info", - "sp-api", - "sp-runtime", ] [[package]] name = "pallet-xcm" -version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "23.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "bounded-collections", + "bounded-collections 0.3.2", "frame-benchmarking", - "frame-support", - "frame-system", - "log", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "hex-literal", "pallet-balances", + "pallet-revive", "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-runtime", - "staging-xcm", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "staging-xcm 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "staging-xcm-builder", "staging-xcm-executor", + "tracing", "xcm-runtime-apis", ] [[package]] name = "pallet-xcm-benchmarks" -version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "23.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "frame-benchmarking", - "frame-support", - "frame-system", - "log", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "parity-scale-codec", "scale-info", - "sp-io", - "sp-runtime", - "staging-xcm", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "staging-xcm 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "staging-xcm-builder", "staging-xcm-executor", ] [[package]] name = "pallet-xcm-bridge-hub" -version = "0.2.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.19.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "bp-messages", "bp-runtime", "bp-xcm-bridge-hub", - "frame-support", - "frame-system", - "log", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "pallet-bridge-messages", "parity-scale-codec", "scale-info", - "sp-core", - "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "staging-xcm", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "staging-xcm 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "staging-xcm-builder", "staging-xcm-executor", + "tracing", ] [[package]] name = "pallet-xcm-bridge-hub-router" -version = "0.5.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.21.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "bp-xcm-bridge-hub-router", "frame-benchmarking", - "frame-support", - "frame-system", - "log", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "parity-scale-codec", + "polkadot-runtime-parachains", "scale-info", - "sp-core", - "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "staging-xcm", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "staging-xcm 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "staging-xcm-builder", + "tracing", ] [[package]] name = "parachains-common" -version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "25.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "cumulus-primitives-core", + "cumulus-primitives-core 0.21.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "cumulus-primitives-utility", - "frame-support", - "frame-system", - "log", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "pallet-asset-tx-payment", "pallet-assets", "pallet-authorship", "pallet-balances", "pallet-collator-selection", "pallet-message-queue", + "pallet-treasury", "pallet-xcm", "parity-scale-codec", - "polkadot-primitives", + "polkadot-primitives 21.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "polkadot-runtime-common", "scale-info", - "sp-consensus-aura", - "sp-core", - "sp-io", - "sp-runtime", + "sp-consensus-aura 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "staging-parachain-info", - "staging-xcm", + "staging-xcm 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "staging-xcm-executor", - "substrate-wasm-builder", + "tracing", ] [[package]] name = "parachains-runtimes-test-utils" -version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "26.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "cumulus-pallet-parachain-system", "cumulus-pallet-xcmp-queue", - "cumulus-primitives-core", - "cumulus-primitives-parachain-inherent", - "cumulus-test-relay-sproof-builder", - "frame-support", - "frame-system", + "cumulus-primitives-core 0.21.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "cumulus-primitives-parachain-inherent 0.21.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "cumulus-test-relay-sproof-builder 0.22.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "pallet-balances", "pallet-collator-selection", "pallet-session", "pallet-timestamp", "pallet-xcm", + "parachains-common", "parity-scale-codec", - "polkadot-parachain-primitives", - "sp-consensus-aura", - "sp-core", - "sp-io", - "sp-runtime", - "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", + "polkadot-parachain-primitives 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus-aura 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-tracing 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "staging-parachain-info", - "staging-xcm", + "staging-xcm 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "staging-xcm-executor", - "substrate-wasm-builder", + "xcm-runtime-apis", ] [[package]] @@ -9243,18 +10599,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4e69bf016dc406eff7d53a7d3f7cf1c2e72c82b9088aac1118591e36dd2cd3e9" dependencies = [ "bitcoin_hashes 0.13.0", - "rand", - "rand_core", + "rand 0.8.5", + "rand_core 0.6.4", "serde", "unicode-normalization", ] -[[package]] -name = "parity-bytes" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "16b56e3a2420138bdb970f84dfb9c774aea80fa0e7371549eedec0d80c209c67" - [[package]] name = "parity-db" version = "0.4.13" @@ -9269,67 +10619,40 @@ dependencies = [ "log", "lz4", "memmap2 0.5.10", - "parking_lot 0.12.3", - "rand", - "siphasher", + "parking_lot 0.12.5", + "rand 0.8.5", + "siphasher 0.3.11", "snap", "winapi", ] [[package]] name = "parity-scale-codec" -version = "3.6.12" +version = "3.7.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "306800abfa29c7f16596b5970a588435e3d5b3149683d00c12b699cc19f895ee" +checksum = "799781ae679d79a948e13d4824a40970bfa500058d245760dd857301059810fa" dependencies = [ "arrayvec 0.7.6", "bitvec", "byte-slice-cast", "bytes", + "const_format", "impl-trait-for-tuples", "parity-scale-codec-derive", + "rustversion", "serde", ] [[package]] name = "parity-scale-codec-derive" -version = "3.6.12" +version = "3.7.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d830939c76d294956402033aee57a6da7b438f2294eb94864c37b0569053a42c" +checksum = "34b4653168b563151153c9e4c08ebed57fb8262bebfa79711552fa983c623e7a" dependencies = [ - "proc-macro-crate 3.2.0", + "proc-macro-crate 3.4.0", "proc-macro2", "quote", - "syn 1.0.109", -] - -[[package]] -name = "parity-util-mem" -version = "0.12.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0d32c34f4f5ca7f9196001c0aba5a1f9a5a12382c8944b8b0f90233282d1e8f8" -dependencies = [ - "cfg-if", - "ethereum-types", - "hashbrown 0.12.3", - "impl-trait-for-tuples", - "lru 0.8.1", - "parity-util-mem-derive", - "parking_lot 0.12.3", - "primitive-types", - "smallvec", - "winapi", -] - -[[package]] -name = "parity-util-mem-derive" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f557c32c6d268a07c921471619c0295f5efad3a0e76d4f97a05c091a51d110b2" -dependencies = [ - "proc-macro2", - "syn 1.0.109", - "synstructure 0.12.6", + "syn 2.0.110", ] [[package]] @@ -9357,12 +10680,12 @@ dependencies = [ [[package]] name = "parking_lot" -version = "0.12.3" +version = "0.12.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27" +checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a" dependencies = [ "lock_api", - "parking_lot_core 0.9.10", + "parking_lot_core 0.9.12", ] [[package]] @@ -9381,15 +10704,15 @@ dependencies = [ [[package]] name = "parking_lot_core" -version = "0.9.10" +version = "0.9.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8" +checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1" dependencies = [ "cfg-if", "libc", - "redox_syscall 0.5.7", + "redox_syscall 0.5.18", "smallvec", - "windows-targets 0.52.6", + "windows-link", ] [[package]] @@ -9405,7 +10728,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "346f04948ba92c43e8469c1ee6736c7563d71012b17d40745260fe106aac2166" dependencies = [ "base64ct", - "rand_core", + "rand_core 0.6.4", "subtle 2.6.1", ] @@ -9422,6 +10745,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2" dependencies = [ "digest 0.10.7", + "hmac 0.12.1", "password-hash", ] @@ -9433,35 +10757,44 @@ checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099" [[package]] name = "pem" -version = "1.1.1" +version = "3.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d30c53c26bc5b31a98cd02d20f25a7c8567146caf63ed593a9d87b2775291be" +dependencies = [ + "base64", + "serde_core", +] + +[[package]] +name = "pem-rfc7468" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a8835c273a76a90455d7344889b0964598e3316e2a79ede8e36f16bdcf2228b8" +checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412" dependencies = [ - "base64 0.13.1", + "base64ct", ] [[package]] name = "percent-encoding" -version = "2.3.1" +version = "2.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" +checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" [[package]] name = "pest" -version = "2.7.13" +version = "2.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fdbef9d1d47087a895abd220ed25eb4ad973a5e26f6a4367b038c25e28dfc2d9" +checksum = "989e7521a040efde50c3ab6bbadafbe15ab6dc042686926be59ac35d74607df4" dependencies = [ "memchr", - "thiserror", "ucd-trie", ] [[package]] name = "pest_derive" -version = "2.7.13" +version = "2.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4d3a6e3394ec80feb3b6393c725571754c6188490265c61aaf260810d6b95aa0" +checksum = "187da9a3030dbafabbbfb20cb323b976dc7b7ce91fcd84f2f74d6e31d378e2de" dependencies = [ "pest", "pest_generator", @@ -9469,26 +10802,25 @@ dependencies = [ [[package]] name = "pest_generator" -version = "2.7.13" +version = "2.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "94429506bde1ca69d1b5601962c73f4172ab4726571a59ea95931218cb0e930e" +checksum = "49b401d98f5757ebe97a26085998d6c0eecec4995cad6ab7fc30ffdf4b052843" dependencies = [ "pest", "pest_meta", "proc-macro2", "quote", - "syn 2.0.79", + "syn 2.0.110", ] [[package]] name = "pest_meta" -version = "2.7.13" +version = "2.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ac8a071862e93690b6e34e9a5fb8e33ff3734473ac0245b27232222c4906a33f" +checksum = "72f27a2cfee9f9039c4d86faa5af122a0ac3851441a34865b8a043b46be0065a" dependencies = [ - "once_cell", "pest", - "sha2 0.10.8", + "sha2 0.10.9", ] [[package]] @@ -9497,35 +10829,87 @@ version = "0.6.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db" dependencies = [ - "fixedbitset", - "indexmap 2.5.0", + "fixedbitset 0.4.2", + "indexmap 2.12.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", + "indexmap 2.12.0", +] + +[[package]] +name = "phf" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078" +dependencies = [ + "phf_macros", + "phf_shared", +] + +[[package]] +name = "phf_generator" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d" +dependencies = [ + "phf_shared", + "rand 0.8.5", +] + +[[package]] +name = "phf_macros" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216" +dependencies = [ + "phf_generator", + "phf_shared", + "proc-macro2", + "quote", + "syn 2.0.110", +] + +[[package]] +name = "phf_shared" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5" +dependencies = [ + "siphasher 1.0.1", ] [[package]] name = "pin-project" -version = "1.1.5" +version = "1.1.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3" +checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a" dependencies = [ "pin-project-internal", ] [[package]] name = "pin-project-internal" -version = "1.1.5" +version = "1.1.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965" +checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861" dependencies = [ "proc-macro2", "quote", - "syn 2.0.79", + "syn 2.0.110", ] [[package]] name = "pin-project-lite" -version = "0.2.14" +version = "0.2.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02" +checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" [[package]] name = "pin-utils" @@ -9540,7 +10924,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "96c8c490f422ef9a4efd2cb5b42b76c8613d7e7dfc1caf667b8a3350a5acc066" dependencies = [ "atomic-waker", - "fastrand 2.1.1", + "fastrand", "futures-io", ] @@ -9556,97 +10940,94 @@ dependencies = [ [[package]] name = "pkg-config" -version = "0.3.31" +version = "0.3.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2" +checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" [[package]] name = "polkadot-approval-distribution" -version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "26.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "bitvec", "futures", "futures-timer", "itertools 0.11.0", - "polkadot-node-metrics", - "polkadot-node-network-protocol", - "polkadot-node-primitives", + "polkadot-node-metrics 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "polkadot-node-network-protocol 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "polkadot-node-primitives 22.0.0", "polkadot-node-subsystem", "polkadot-node-subsystem-util", - "polkadot-primitives", - "rand", - "tracing-gum", + "polkadot-primitives 21.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "rand 0.8.5", + "tracing-gum 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "polkadot-availability-bitfield-distribution" -version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "26.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "always-assert", "futures", "futures-timer", - "polkadot-node-network-protocol", + "polkadot-node-network-protocol 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "polkadot-node-subsystem", "polkadot-node-subsystem-util", - "polkadot-primitives", - "rand", - "tracing-gum", + "polkadot-primitives 21.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "rand 0.8.5", + "tracing-gum 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "polkadot-availability-distribution" -version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "26.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "derive_more", "fatality", "futures", "parity-scale-codec", "polkadot-erasure-coding", - "polkadot-node-network-protocol", - "polkadot-node-primitives", + "polkadot-node-network-protocol 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "polkadot-node-primitives 22.0.0", "polkadot-node-subsystem", "polkadot-node-subsystem-util", - "polkadot-primitives", - "rand", - "sc-network", + "polkadot-primitives 21.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "rand 0.8.5", + "sc-network 0.53.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "schnellru", - "sp-core", - "sp-keystore", - "thiserror", - "tracing-gum", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-keystore 0.44.1 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "thiserror 1.0.69", + "tracing-gum 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "polkadot-availability-recovery" -version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "26.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "async-trait", "fatality", "futures", "parity-scale-codec", "polkadot-erasure-coding", - "polkadot-node-network-protocol", - "polkadot-node-primitives", + "polkadot-node-network-protocol 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "polkadot-node-primitives 22.0.0", "polkadot-node-subsystem", "polkadot-node-subsystem-util", - "polkadot-primitives", - "rand", - "sc-network", + "polkadot-primitives 21.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "rand 0.8.5", + "sc-network 0.53.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "schnellru", - "thiserror", + "thiserror 1.0.69", "tokio", - "tracing-gum", + "tracing-gum 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "polkadot-ckb-merkle-mountain-range" -version = "0.7.0" +version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4b44320e5f7ce2c18227537a3032ae5b2c476a7e8eddba45333e1011fc31b92" +checksum = "221c71b432b38e494a0fdedb5f720e4cb974edf03a0af09e5b2238dbac7e6947" dependencies = [ "cfg-if", "itertools 0.10.5", @@ -9654,131 +11035,136 @@ dependencies = [ [[package]] name = "polkadot-cli" -version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "28.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "cfg-if", "clap", "frame-benchmarking-cli", "futures", "log", - "polkadot-node-metrics", - "polkadot-node-primitives", + "polkadot-node-metrics 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "polkadot-node-primitives 22.0.0", "polkadot-service", - "sc-cli", - "sc-executor", - "sc-service", + "sc-cli 0.55.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-network-types 0.19.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-service 0.54.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "sc-storage-monitor", - "sc-sysinfo", - "sc-tracing", - "sp-core", - "sp-io", - "sp-keyring", - "sp-maybe-compressed-blob", - "sp-runtime", + "sc-sysinfo 45.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-tracing 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-keyring 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "substrate-build-script-utils", - "thiserror", + "thiserror 1.0.69", ] [[package]] name = "polkadot-collator-protocol" -version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "26.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "bitvec", "fatality", "futures", "futures-timer", - "polkadot-node-network-protocol", - "polkadot-node-primitives", + "polkadot-node-network-protocol 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "polkadot-node-primitives 22.0.0", "polkadot-node-subsystem", "polkadot-node-subsystem-util", - "polkadot-primitives", + "polkadot-primitives 21.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "schnellru", - "sp-core", - "sp-keystore", - "sp-runtime", - "thiserror", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-keystore 0.44.1 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "thiserror 1.0.69", "tokio-util", - "tracing-gum", + "tracing-gum 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", +] + +[[package]] +name = "polkadot-core-primitives" +version = "20.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "939814e39dbe32958ab6aafcc59c42941a98416a5504c32181b08500530f8a0c" +dependencies = [ + "parity-scale-codec", + "scale-info", + "sp-core 38.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-runtime 44.0.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "polkadot-core-primitives" -version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "20.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "parity-scale-codec", "scale-info", - "sp-core", - "sp-runtime", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "polkadot-dispute-distribution" -version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "26.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "derive_more", "fatality", "futures", "futures-timer", - "indexmap 2.5.0", + "indexmap 2.12.0", "parity-scale-codec", - "polkadot-erasure-coding", - "polkadot-node-network-protocol", - "polkadot-node-primitives", + "polkadot-node-network-protocol 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "polkadot-node-primitives 22.0.0", "polkadot-node-subsystem", "polkadot-node-subsystem-util", - "polkadot-primitives", - "sc-network", - "schnellru", - "sp-application-crypto", - "sp-keystore", - "thiserror", - "tracing-gum", + "polkadot-primitives 21.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-network 0.53.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-application-crypto 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-keystore 0.44.1 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "thiserror 1.0.69", + "tracing-gum 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "polkadot-erasure-coding" -version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "22.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "parity-scale-codec", - "polkadot-node-primitives", - "polkadot-primitives", + "polkadot-node-primitives 22.0.0", + "polkadot-primitives 21.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "reed-solomon-novelpoly", - "sp-core", - "sp-trie", - "thiserror", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-trie 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "thiserror 1.0.69", ] [[package]] name = "polkadot-gossip-support" -version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "26.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "futures", "futures-timer", - "polkadot-node-network-protocol", + "polkadot-node-network-protocol 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "polkadot-node-subsystem", "polkadot-node-subsystem-util", - "polkadot-primitives", - "rand", - "rand_chacha", - "sc-network", - "sc-network-common", - "sp-application-crypto", - "sp-core", - "sp-crypto-hashing", - "sp-keystore", - "tracing-gum", + "polkadot-primitives 21.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "rand 0.8.5", + "rand_chacha 0.3.1", + "sc-network 0.53.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-application-crypto 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-keystore 0.44.1 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "tracing-gum 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "polkadot-network-bridge" -version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "26.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "always-assert", "async-trait", @@ -9786,617 +11172,606 @@ dependencies = [ "fatality", "futures", "parity-scale-codec", - "parking_lot 0.12.3", - "polkadot-node-metrics", - "polkadot-node-network-protocol", + "parking_lot 0.12.5", + "polkadot-node-metrics 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "polkadot-node-network-protocol 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "polkadot-node-subsystem", - "polkadot-overseer", - "polkadot-primitives", - "sc-network", - "sp-consensus", - "thiserror", - "tracing-gum", + "polkadot-overseer 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "polkadot-primitives 21.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-network 0.53.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "thiserror 1.0.69", + "tracing-gum 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "polkadot-node-collation-generation" -version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "26.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "futures", "parity-scale-codec", "polkadot-erasure-coding", - "polkadot-node-primitives", + "polkadot-node-primitives 22.0.0", "polkadot-node-subsystem", "polkadot-node-subsystem-util", - "polkadot-primitives", - "sp-core", - "sp-maybe-compressed-blob", - "thiserror", - "tracing-gum", + "polkadot-primitives 21.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "schnellru", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "thiserror 1.0.69", + "tracing-gum 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "polkadot-node-core-approval-voting" -version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "26.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "async-trait", "bitvec", - "derive_more", + "derive_more 0.99.20", "futures", "futures-timer", "itertools 0.11.0", - "kvdb", "merlin", "parity-scale-codec", - "polkadot-node-primitives", + "polkadot-node-primitives 22.0.0", "polkadot-node-subsystem", "polkadot-node-subsystem-util", - "polkadot-overseer", - "polkadot-primitives", - "rand", - "rand_chacha", - "rand_core", - "sc-keystore", + "polkadot-overseer 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "polkadot-primitives 21.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "rand 0.8.5", + "rand_chacha 0.3.1", + "rand_core 0.6.4", + "sc-keystore 38.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "schnellru", - "schnorrkel 0.11.4", - "sp-application-crypto", - "sp-consensus", - "sp-consensus-slots", - "sp-runtime", - "thiserror", - "tracing-gum", + "schnorrkel 0.11.5", + "sp-application-crypto 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus-slots 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "thiserror 1.0.69", + "tracing-gum 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "polkadot-node-core-approval-voting-parallel" -version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.9.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "async-trait", "futures", - "futures-timer", "itertools 0.11.0", "polkadot-approval-distribution", "polkadot-node-core-approval-voting", - "polkadot-node-jaeger", - "polkadot-node-metrics", - "polkadot-node-network-protocol", - "polkadot-node-primitives", + "polkadot-node-metrics 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "polkadot-node-network-protocol 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "polkadot-node-primitives 22.0.0", "polkadot-node-subsystem", "polkadot-node-subsystem-util", - "polkadot-overseer", - "polkadot-primitives", - "rand", - "rand_chacha", - "rand_core", - "sc-keystore", - "sp-application-crypto", - "sp-consensus", - "sp-consensus-slots", - "sp-runtime", - "thiserror", - "tracing-gum", + "polkadot-overseer 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "polkadot-primitives 21.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "rand 0.8.5", + "rand_core 0.6.4", + "sc-keystore 38.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "tracing-gum 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "polkadot-node-core-av-store" -version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "26.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "bitvec", "futures", "futures-timer", - "kvdb", "parity-scale-codec", "polkadot-erasure-coding", - "polkadot-node-jaeger", - "polkadot-node-primitives", + "polkadot-node-primitives 22.0.0", "polkadot-node-subsystem", "polkadot-node-subsystem-util", - "polkadot-overseer", - "polkadot-primitives", - "sp-consensus", - "thiserror", - "tracing-gum", + "polkadot-primitives 21.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "thiserror 1.0.69", + "tracing-gum 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "polkadot-node-core-backing" -version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "26.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "bitvec", "fatality", "futures", "polkadot-erasure-coding", - "polkadot-node-primitives", + "polkadot-node-primitives 22.0.0", "polkadot-node-subsystem", "polkadot-node-subsystem-util", - "polkadot-primitives", - "polkadot-statement-table", + "polkadot-parachain-primitives 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "polkadot-primitives 21.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "polkadot-statement-table 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "schnellru", - "sp-keystore", - "thiserror", - "tracing-gum", + "sp-keystore 0.44.1 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "thiserror 1.0.69", + "tracing-gum 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "polkadot-node-core-bitfield-signing" -version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "26.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "futures", "polkadot-node-subsystem", "polkadot-node-subsystem-util", - "polkadot-primitives", - "sp-keystore", - "thiserror", - "tracing-gum", + "polkadot-primitives 21.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-keystore 0.44.1 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "thiserror 1.0.69", + "tracing-gum 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "wasm-timer", ] [[package]] name = "polkadot-node-core-candidate-validation" -version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "26.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "async-trait", "futures", "futures-timer", "parity-scale-codec", "polkadot-node-core-pvf", - "polkadot-node-metrics", - "polkadot-node-primitives", + "polkadot-node-metrics 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "polkadot-node-primitives 22.0.0", "polkadot-node-subsystem", "polkadot-node-subsystem-util", - "polkadot-overseer", - "polkadot-parachain-primitives", - "polkadot-primitives", - "sp-application-crypto", - "sp-keystore", - "tracing-gum", + "polkadot-overseer 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "polkadot-parachain-primitives 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "polkadot-primitives 21.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-application-crypto 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-keystore 0.44.1 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "tracing-gum 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "polkadot-node-core-chain-api" -version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "26.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "futures", - "polkadot-node-metrics", + "polkadot-node-metrics 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "polkadot-node-subsystem", - "polkadot-node-subsystem-types", - "sc-client-api", - "sc-consensus-babe", - "tracing-gum", + "polkadot-node-subsystem-types 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-client-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-consensus-babe 0.53.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "tracing-gum 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "polkadot-node-core-chain-selection" -version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "26.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "futures", "futures-timer", - "kvdb", "parity-scale-codec", - "polkadot-node-primitives", + "polkadot-node-primitives 22.0.0", "polkadot-node-subsystem", "polkadot-node-subsystem-util", - "polkadot-primitives", - "thiserror", - "tracing-gum", + "polkadot-primitives 21.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "thiserror 1.0.69", + "tracing-gum 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "polkadot-node-core-dispute-coordinator" -version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "26.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "fatality", "futures", - "kvdb", "parity-scale-codec", - "polkadot-node-primitives", + "polkadot-node-primitives 22.0.0", "polkadot-node-subsystem", "polkadot-node-subsystem-util", - "polkadot-primitives", - "sc-keystore", + "polkadot-primitives 21.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-keystore 38.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "schnellru", - "thiserror", - "tracing-gum", + "thiserror 1.0.69", + "tracing-gum 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "polkadot-node-core-parachains-inherent" -version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "26.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "async-trait", "futures", "futures-timer", "polkadot-node-subsystem", - "polkadot-overseer", - "polkadot-primitives", - "sp-blockchain", - "sp-inherents", - "thiserror", - "tracing-gum", + "polkadot-overseer 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "polkadot-primitives 21.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-blockchain 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-inherents 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "thiserror 1.0.69", + "tracing-gum 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "polkadot-node-core-prospective-parachains" -version = "6.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "25.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "fatality", "futures", "polkadot-node-subsystem", "polkadot-node-subsystem-util", - "polkadot-primitives", - "thiserror", - "tracing-gum", + "polkadot-primitives 21.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "thiserror 1.0.69", + "tracing-gum 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "polkadot-node-core-provisioner" -version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "26.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "bitvec", "fatality", "futures", "futures-timer", - "polkadot-node-primitives", + "polkadot-node-primitives 22.0.0", "polkadot-node-subsystem", "polkadot-node-subsystem-util", - "polkadot-primitives", - "schnellru", - "thiserror", - "tracing-gum", + "polkadot-primitives 21.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "thiserror 1.0.69", + "tracing-gum 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "polkadot-node-core-pvf" -version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "26.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "always-assert", "array-bytes", - "blake3", - "cfg-if", "futures", "futures-timer", "parity-scale-codec", "pin-project", - "polkadot-core-primitives", "polkadot-node-core-pvf-common", - "polkadot-node-metrics", - "polkadot-node-primitives", + "polkadot-node-metrics 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "polkadot-node-primitives 22.0.0", "polkadot-node-subsystem", - "polkadot-parachain-primitives", - "polkadot-primitives", - "rand", + "polkadot-parachain-primitives 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "polkadot-primitives 21.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "rand 0.8.5", + "sc-tracing 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "slotmap", - "sp-core", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "strum 0.26.3", "tempfile", - "thiserror", + "thiserror 1.0.69", "tokio", - "tracing-gum", + "tracing-gum 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "polkadot-node-core-pvf-checker" -version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "26.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "futures", - "polkadot-node-primitives", "polkadot-node-subsystem", "polkadot-node-subsystem-util", - "polkadot-overseer", - "polkadot-primitives", - "sp-keystore", - "thiserror", - "tracing-gum", + "polkadot-primitives 21.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-keystore 0.44.1 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "tracing-gum 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "polkadot-node-core-pvf-common" -version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "22.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "cpu-time", "futures", "landlock", "libc", - "nix 0.28.0", - "parity-scale-codec", - "polkadot-parachain-primitives", - "polkadot-primitives", - "sc-executor", - "sc-executor-common", - "sc-executor-wasmtime", + "nix 0.29.0", + "parity-scale-codec", + "polkadot-node-primitives 22.0.0", + "polkadot-parachain-primitives 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "polkadot-primitives 21.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-executor 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-executor-common 0.41.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-executor-wasmtime 0.41.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "seccompiler", - "sp-core", - "sp-crypto-hashing", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "sp-io", - "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "thiserror", - "tracing-gum", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-externalities 0.30.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-tracing 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "thiserror 1.0.69", + "tracing-gum 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] -name = "polkadot-node-core-pvf-execute-worker" -version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" -dependencies = [ - "cfg-if", - "cpu-time", - "libc", - "nix 0.28.0", - "parity-scale-codec", - "polkadot-node-core-pvf-common", - "polkadot-node-primitives", - "polkadot-parachain-primitives", - "polkadot-primitives", - "sp-maybe-compressed-blob", - "tracing-gum", -] - -[[package]] -name = "polkadot-node-core-pvf-prepare-worker" -version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" -dependencies = [ - "blake3", - "cfg-if", - "libc", - "nix 0.28.0", - "parity-scale-codec", - "polkadot-node-core-pvf-common", - "polkadot-node-primitives", - "polkadot-primitives", - "rayon", - "sc-executor-common", - "sc-executor-wasmtime", - "sp-maybe-compressed-blob", - "staging-tracking-allocator", - "tikv-jemalloc-ctl", - "tikv-jemallocator", - "tracing-gum", -] - -[[package]] -name = "polkadot-node-core-runtime-api" -version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +name = "polkadot-node-core-runtime-api" +version = "26.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "futures", - "polkadot-node-metrics", + "polkadot-node-metrics 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "polkadot-node-subsystem", - "polkadot-node-subsystem-types", - "polkadot-primitives", + "polkadot-node-subsystem-types 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "polkadot-primitives 21.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "schnellru", - "sp-consensus-babe", - "tracing-gum", + "sp-consensus-babe 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "tracing-gum 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] -name = "polkadot-node-jaeger" -version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +name = "polkadot-node-metrics" +version = "26.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aeeb25ebe914da6be5c4fba0b71acb6bb877bed837e4626a0242fa5bd38a51bf" dependencies = [ - "log", - "mick-jaeger", - "parity-scale-codec", - "parking_lot 0.12.3", - "polkadot-node-primitives", - "polkadot-primitives", - "sc-network", - "sc-network-types", - "sp-core", - "thiserror", - "tokio", + "bs58", + "futures", + "futures-timer", + "parity-scale-codec", + "polkadot-primitives 21.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "prioritized-metered-channel", + "sc-cli 0.55.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-service 0.54.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-tracing 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "substrate-prometheus-endpoint 0.17.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "polkadot-node-metrics" -version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "26.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "bs58", "futures", "futures-timer", - "log", "parity-scale-codec", - "polkadot-primitives", + "polkadot-primitives 21.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "prioritized-metered-channel", - "sc-cli", - "sc-service", - "sc-tracing", - "substrate-prometheus-endpoint", - "tracing-gum", + "sc-cli 0.55.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-service 0.54.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-tracing 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "substrate-prometheus-endpoint 0.17.7 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", +] + +[[package]] +name = "polkadot-node-network-protocol" +version = "26.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b0f8ebf648d055d406079177d206c092fbe983b58d5392dbf478484b72fc51a3" +dependencies = [ + "async-channel 1.9.0", + "async-trait", + "bitvec", + "derive_more 0.99.20", + "fatality", + "futures", + "hex", + "parity-scale-codec", + "polkadot-node-primitives 22.1.0", + "polkadot-primitives 21.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.8.5", + "sc-authority-discovery 0.53.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-network 0.53.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-network-types 0.19.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-runtime 44.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "strum 0.26.3", + "thiserror 1.0.69", + "tracing-gum 22.0.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "polkadot-node-network-protocol" -version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "26.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "async-channel 1.9.0", "async-trait", "bitvec", - "derive_more", + "derive_more 0.99.20", "fatality", "futures", "hex", "parity-scale-codec", - "polkadot-node-jaeger", - "polkadot-node-primitives", - "polkadot-primitives", - "rand", - "sc-authority-discovery", - "sc-network", - "sc-network-types", - "sp-runtime", + "polkadot-node-primitives 22.0.0", + "polkadot-primitives 21.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "rand 0.8.5", + "sc-authority-discovery 0.53.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-network 0.53.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-network-types 0.19.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "strum 0.26.3", - "thiserror", - "tracing-gum", + "thiserror 1.0.69", + "tracing-gum 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", +] + +[[package]] +name = "polkadot-node-primitives" +version = "22.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" +dependencies = [ + "bitvec", + "bounded-vec", + "futures", + "futures-timer", + "parity-scale-codec", + "polkadot-parachain-primitives 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "polkadot-primitives 21.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-keystore 38.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "schnorrkel 0.11.5", + "serde", + "sp-application-crypto 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus-babe 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus-slots 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-keystore 0.44.1 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-maybe-compressed-blob 11.0.1 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "thiserror 1.0.69", + "zstd 0.12.4", ] [[package]] name = "polkadot-node-primitives" -version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "22.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9afe1374cdda3f23edb07926fb408ee7614bac3d0befffa682cd19f69df466b5" dependencies = [ "bitvec", "bounded-vec", "futures", "futures-timer", "parity-scale-codec", - "polkadot-parachain-primitives", - "polkadot-primitives", - "sc-keystore", - "schnorrkel 0.11.4", + "polkadot-parachain-primitives 19.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "polkadot-primitives 21.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-keystore 38.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "schnorrkel 0.11.5", "serde", - "sp-application-crypto", - "sp-consensus-babe", - "sp-consensus-slots", - "sp-core", - "sp-keystore", - "sp-maybe-compressed-blob", - "sp-runtime", - "thiserror", + "sp-application-crypto 43.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-consensus-babe 0.45.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-consensus-slots 0.45.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-keystore 0.44.1 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-maybe-compressed-blob 11.0.1 (registry+https://github.com/rust-lang/crates.io-index)", + "thiserror 1.0.69", "zstd 0.12.4", ] [[package]] name = "polkadot-node-subsystem" -version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "26.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "polkadot-node-jaeger", - "polkadot-node-subsystem-types", - "polkadot-overseer", + "polkadot-node-subsystem-types 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "polkadot-overseer 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "polkadot-node-subsystem-types" -version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "26.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f4020764c76591ef141486cb6ad14e11ecadd51558207387924402d048e9c55" dependencies = [ "async-trait", - "bitvec", - "derive_more", + "derive_more 0.99.20", "fatality", "futures", "orchestra", - "polkadot-node-jaeger", - "polkadot-node-network-protocol", - "polkadot-node-primitives", - "polkadot-primitives", - "polkadot-statement-table", - "sc-client-api", - "sc-network", - "sc-network-types", - "sc-transaction-pool-api", + "polkadot-node-network-protocol 26.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "polkadot-node-primitives 22.1.0", + "polkadot-primitives 21.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "polkadot-statement-table 22.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-client-api 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-network 0.53.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-network-types 0.19.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-transaction-pool-api 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec", - "sp-api", - "sp-authority-discovery", - "sp-blockchain", - "sp-consensus-babe", - "sp-runtime", - "substrate-prometheus-endpoint", - "thiserror", + "sp-api 39.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-authority-discovery 39.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-blockchain 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-consensus-babe 0.45.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-runtime 44.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "substrate-prometheus-endpoint 0.17.7 (registry+https://github.com/rust-lang/crates.io-index)", + "thiserror 1.0.69", ] [[package]] -name = "polkadot-node-subsystem-util" -version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +name = "polkadot-node-subsystem-types" +version = "26.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "async-trait", - "derive_more", + "derive_more 0.99.20", + "fatality", + "futures", + "orchestra", + "polkadot-node-network-protocol 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "polkadot-node-primitives 22.0.0", + "polkadot-primitives 21.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "polkadot-statement-table 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-client-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-network 0.53.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-network-types 0.19.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-transaction-pool-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "smallvec", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-authority-discovery 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-blockchain 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus-babe 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "substrate-prometheus-endpoint 0.17.7 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "thiserror 1.0.69", +] + +[[package]] +name = "polkadot-node-subsystem-util" +version = "26.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" +dependencies = [ "fatality", "futures", - "futures-channel", "itertools 0.11.0", "kvdb", "parity-db", "parity-scale-codec", - "parking_lot 0.12.3", - "pin-project", + "parking_lot 0.12.5", "polkadot-erasure-coding", - "polkadot-node-jaeger", - "polkadot-node-metrics", - "polkadot-node-network-protocol", - "polkadot-node-primitives", + "polkadot-node-metrics 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "polkadot-node-network-protocol 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "polkadot-node-primitives 22.0.0", "polkadot-node-subsystem", - "polkadot-node-subsystem-types", - "polkadot-overseer", - "polkadot-primitives", + "polkadot-node-subsystem-types 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "polkadot-overseer 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "polkadot-primitives 21.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "prioritized-metered-channel", - "rand", - "sc-client-api", + "rand 0.8.5", "schnellru", - "sp-application-crypto", - "sp-core", - "sp-keystore", - "thiserror", - "tracing-gum", -] - -[[package]] -name = "polkadot-overseer" -version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" -dependencies = [ - "async-trait", - "futures", - "futures-timer", - "orchestra", - "parking_lot 0.12.3", - "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", + "sp-application-crypto 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-keystore 0.44.1 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "thiserror 1.0.69", + "tracing-gum 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] -name = "polkadot-parachain-lib" -version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +name = "polkadot-omni-node-lib" +version = "0.10.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "async-trait", "clap", "color-print", + "cumulus-client-bootnodes", "cumulus-client-cli", "cumulus-client-collator", "cumulus-client-consensus-aura", "cumulus-client-consensus-common", "cumulus-client-consensus-proposer", "cumulus-client-consensus-relay-chain", - "cumulus-client-parachain-inherent", + "cumulus-client-parachain-inherent 0.20.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "cumulus-client-service", "cumulus-primitives-aura", - "cumulus-primitives-core", - "cumulus-relay-chain-interface", + "cumulus-primitives-core 0.21.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "cumulus-relay-chain-interface 0.26.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "docify", "frame-benchmarking-cli", - "frame-support", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "frame-system-rpc-runtime-api", - "frame-try-runtime", + "frame-try-runtime 0.49.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "futures", + "futures-timer", "jsonrpsee", "log", "pallet-transaction-payment", @@ -10405,129 +11780,234 @@ dependencies = [ "parachains-common", "parity-scale-codec", "polkadot-cli", - "polkadot-primitives", + "polkadot-primitives 21.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "sc-basic-authorship", - "sc-chain-spec", - "sc-cli", - "sc-client-api", - "sc-client-db", - "sc-consensus", - "sc-executor", - "sc-network", - "sc-rpc", - "sc-service", - "sc-sysinfo", - "sc-telemetry", - "sc-tracing", - "sc-transaction-pool", + "sc-chain-spec 46.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-cli 0.55.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-client-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-client-db 0.49.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-consensus 0.52.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-consensus-manual-seal", + "sc-executor 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-keystore 38.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-network 0.53.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-network-statement", + "sc-network-sync 0.52.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-offchain", + "sc-rpc 48.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-runtime-utilities", + "sc-service 0.54.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-statement-store", + "sc-sysinfo 45.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-telemetry 30.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-tracing 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-transaction-pool 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-transaction-pool-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "scale-info", "serde", "serde_json", - "sp-api", - "sp-block-builder", - "sp-consensus-aura", - "sp-core", - "sp-genesis-builder", - "sp-inherents", - "sp-keystore", - "sp-runtime", - "sp-session", - "sp-timestamp", - "sp-transaction-pool", - "sp-version", - "sp-weights", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-block-builder 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus-aura 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-genesis-builder 0.20.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-inherents 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-keystore 0.44.1 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-offchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-session 41.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-statement-store 23.0.0", + "sp-storage 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-timestamp 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-transaction-pool 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-version 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-weights 33.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "staging-chain-spec-builder", "substrate-frame-rpc-system", - "substrate-prometheus-endpoint", + "substrate-prometheus-endpoint 0.17.7 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "substrate-state-trie-migration-rpc", + "subxt-metadata", +] + +[[package]] +name = "polkadot-overseer" +version = "26.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eefbcdaaf4ece12650fed98e764813745bc348f684af48babaa6084b14615081" +dependencies = [ + "async-trait", + "futures", + "futures-timer", + "orchestra", + "polkadot-node-metrics 26.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "polkadot-node-network-protocol 26.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "polkadot-node-primitives 22.1.0", + "polkadot-node-subsystem-types 26.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "polkadot-primitives 21.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-client-api 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-core 38.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "tikv-jemalloc-ctl", + "tracing-gum 22.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "polkadot-overseer" +version = "26.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" +dependencies = [ + "async-trait", + "futures", + "futures-timer", + "orchestra", + "polkadot-node-metrics 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "polkadot-node-network-protocol 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "polkadot-node-primitives 22.0.0", + "polkadot-node-subsystem-types 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "polkadot-primitives 21.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-client-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "tikv-jemalloc-ctl", + "tracing-gum 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", +] + +[[package]] +name = "polkadot-parachain-primitives" +version = "19.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a5c2305f47829e84341a570be58b79faadf12317836ed87cda55f0d148b30052" +dependencies = [ + "array-bytes", + "bounded-collections 0.3.2", + "derive_more 0.99.20", + "parity-scale-codec", + "polkadot-core-primitives 20.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "scale-info", + "serde", + "sp-core 38.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-runtime 44.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-weights 33.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "polkadot-parachain-primitives" -version = "6.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "19.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" +dependencies = [ + "array-bytes", + "bounded-collections 0.3.2", + "derive_more 0.99.20", + "parity-scale-codec", + "polkadot-core-primitives 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "scale-info", + "serde", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-weights 33.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", +] + +[[package]] +name = "polkadot-primitives" +version = "21.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1aa26e15b638b6078c70e51f66b1fe857610e5a702cc9d43661652d432e9c31a" dependencies = [ - "bounded-collections", - "derive_more", + "bitvec", + "bounded-collections 0.3.2", + "hex-literal", + "log", "parity-scale-codec", - "polkadot-core-primitives", + "polkadot-core-primitives 20.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "polkadot-parachain-primitives 19.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "scale-info", "serde", - "sp-core", - "sp-runtime", - "sp-weights", + "sp-api 39.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-application-crypto 43.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-arithmetic 28.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-authority-discovery 39.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-consensus-slots 0.45.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-core 38.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-inherents 39.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-io 43.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-keystore 0.44.1 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-runtime 44.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-staking 41.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "thiserror 1.0.69", ] [[package]] name = "polkadot-primitives" -version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "21.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "bitvec", + "bounded-collections 0.3.2", "hex-literal", "log", "parity-scale-codec", - "polkadot-core-primitives", - "polkadot-parachain-primitives", + "polkadot-core-primitives 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "polkadot-parachain-primitives 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "scale-info", "serde", - "sp-api", - "sp-application-crypto", - "sp-arithmetic", - "sp-authority-discovery", - "sp-consensus-slots", - "sp-core", - "sp-inherents", - "sp-io", - "sp-keystore", - "sp-runtime", - "sp-staking", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-application-crypto 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-arithmetic 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-authority-discovery 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus-slots 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-inherents 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-keystore 0.44.1 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-staking 41.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "thiserror 1.0.69", ] [[package]] name = "polkadot-rpc" -version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "27.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "jsonrpsee", "mmr-rpc", "pallet-transaction-payment-rpc", - "polkadot-primitives", - "sc-chain-spec", - "sc-client-api", - "sc-consensus-babe", + "polkadot-primitives 21.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-chain-spec 46.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-client-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-consensus-babe 0.53.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "sc-consensus-babe-rpc", "sc-consensus-beefy", "sc-consensus-beefy-rpc", - "sc-consensus-epochs", "sc-consensus-grandpa", "sc-consensus-grandpa-rpc", - "sc-rpc", - "sc-rpc-spec-v2", + "sc-rpc 48.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "sc-sync-state-rpc", - "sc-transaction-pool-api", - "sp-api", - "sp-application-crypto", - "sp-block-builder", - "sp-blockchain", - "sp-consensus", - "sp-consensus-babe", + "sc-transaction-pool-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-application-crypto 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-block-builder 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-blockchain 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus-babe 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "sp-consensus-beefy", - "sp-keystore", - "sp-runtime", + "sp-keystore 0.44.1 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "substrate-frame-rpc-system", "substrate-state-trie-migration-rpc", ] [[package]] name = "polkadot-runtime-common" -version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "22.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "bitvec", "frame-benchmarking", "frame-election-provider-support", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "impl-trait-for-tuples", "libsecp256k1", "log", @@ -10547,22 +12027,22 @@ dependencies = [ "pallet-treasury", "pallet-vesting", "parity-scale-codec", - "polkadot-primitives", + "polkadot-primitives 21.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "polkadot-runtime-parachains", "rustc-hex", "scale-info", "serde", - "serde_derive", "slot-range-helper", - "sp-api", - "sp-core", - "sp-inherents", - "sp-io", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-inherents 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-keyring 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "sp-npos-elections", - "sp-runtime", - "sp-session", - "sp-staking", - "staging-xcm", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-session 41.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-staking 41.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "staging-xcm 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "staging-xcm-builder", "staging-xcm-executor", "static_assertions", @@ -10570,27 +12050,27 @@ dependencies = [ [[package]] name = "polkadot-runtime-metrics" -version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "23.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "bs58", "frame-benchmarking", "parity-scale-codec", - "polkadot-primitives", - "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", + "polkadot-primitives 21.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-tracing 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "polkadot-runtime-parachains" -version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "22.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "bitflags 1.3.2", "bitvec", - "derive_more", "frame-benchmarking", - "frame-support", - "frame-system", + "frame-election-provider-support", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "impl-trait-for-tuples", "log", "pallet-authority-discovery", @@ -10603,43 +12083,41 @@ dependencies = [ "pallet-session", "pallet-staking", "pallet-timestamp", - "pallet-vesting", "parity-scale-codec", - "polkadot-core-primitives", - "polkadot-parachain-primitives", - "polkadot-primitives", + "polkadot-core-primitives 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "polkadot-parachain-primitives 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "polkadot-primitives 21.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "polkadot-runtime-metrics", - "rand", - "rand_chacha", + "rand 0.8.5", + "rand_chacha 0.3.1", "scale-info", "serde", - "sp-api", - "sp-application-crypto", - "sp-arithmetic", - "sp-core", - "sp-inherents", - "sp-io", - "sp-keystore", - "sp-runtime", - "sp-session", - "sp-staking", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "staging-xcm", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-application-crypto 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-arithmetic 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-inherents 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-keystore 0.44.1 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-session 41.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-staking 41.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "staging-xcm 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "staging-xcm-executor", ] [[package]] name = "polkadot-sdk" -version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "2509.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "asset-test-utils", "assets-common", - "binary-merkle-tree", + "binary-merkle-tree 16.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "bp-header-chain", "bp-messages", "bp-parachains", - "bp-polkadot", "bp-polkadot-core", "bp-relayers", "bp-runtime", @@ -10649,39 +12127,26 @@ dependencies = [ "bridge-hub-common", "bridge-hub-test-utils", "bridge-runtime-common", - "cumulus-client-cli", - "cumulus-client-collator", - "cumulus-client-consensus-aura", - "cumulus-client-consensus-common", - "cumulus-client-consensus-proposer", - "cumulus-client-consensus-relay-chain", - "cumulus-client-network", - "cumulus-client-parachain-inherent", - "cumulus-client-pov-recovery", - "cumulus-client-service", "cumulus-pallet-aura-ext", "cumulus-pallet-dmp-queue", "cumulus-pallet-parachain-system", "cumulus-pallet-parachain-system-proc-macro", "cumulus-pallet-session-benchmarking", "cumulus-pallet-solo-to-para", + "cumulus-pallet-weight-reclaim", "cumulus-pallet-xcm", "cumulus-pallet-xcmp-queue", "cumulus-ping", "cumulus-primitives-aura", - "cumulus-primitives-core", - "cumulus-primitives-parachain-inherent", + "cumulus-primitives-core 0.21.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "cumulus-primitives-parachain-inherent 0.21.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "cumulus-primitives-proof-size-hostfunction", "cumulus-primitives-storage-weight-reclaim", "cumulus-primitives-timestamp", "cumulus-primitives-utility", - "cumulus-relay-chain-inprocess-interface", - "cumulus-relay-chain-interface", - "cumulus-relay-chain-minimal-node", - "cumulus-relay-chain-rpc-interface", - "cumulus-test-relay-sproof-builder", - "emulated-integration-tests-common", - "fork-tree", + "cumulus-test-relay-sproof-builder 0.22.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "ethereum-standards", + "fork-tree 13.0.1 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "frame-benchmarking", "frame-benchmarking-cli", "frame-benchmarking-pallet-pov", @@ -10689,15 +12154,15 @@ dependencies = [ "frame-election-provider-support", "frame-executive", "frame-metadata-hash-extension", - "frame-remote-externalities", - "frame-support", - "frame-support-procedural", - "frame-support-procedural-tools", - "frame-support-procedural-tools-derive", - "frame-system", + "frame-remote-externalities 0.54.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-support-procedural 35.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-support-procedural-tools 13.0.1 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-support-procedural-tools-derive 12.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "frame-system-benchmarking", "frame-system-rpc-runtime-api", - "frame-try-runtime", + "frame-try-runtime 0.49.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "generate-bags", "mmr-gadget", "mmr-rpc", @@ -10706,9 +12171,12 @@ dependencies = [ "pallet-asset-conversion-ops", "pallet-asset-conversion-tx-payment", "pallet-asset-rate", + "pallet-asset-rewards", "pallet-asset-tx-payment", "pallet-assets", "pallet-assets-freezer", + "pallet-assets-holder", + "pallet-assets-precompiles", "pallet-atomic-swap", "pallet-aura", "pallet-authority-discovery", @@ -10736,7 +12204,10 @@ dependencies = [ "pallet-core-fellowship", "pallet-delegated-staking", "pallet-democracy", + "pallet-derivatives", "pallet-dev-mode", + "pallet-dummy-dim", + "pallet-election-provider-multi-block", "pallet-election-provider-multi-phase", "pallet-election-provider-support-benchmarking", "pallet-elections-phragmen", @@ -10750,6 +12221,7 @@ dependencies = [ "pallet-lottery", "pallet-membership", "pallet-message-queue", + "pallet-meta-tx", "pallet-migrations", "pallet-mixnet", "pallet-mmr", @@ -10764,8 +12236,10 @@ dependencies = [ "pallet-nomination-pools-runtime-api", "pallet-offences", "pallet-offences-benchmarking", + "pallet-origin-restriction", "pallet-paged-list", "pallet-parameters", + "pallet-people", "pallet-preimage", "pallet-proxy", "pallet-ranked-collective", @@ -10773,8 +12247,6 @@ dependencies = [ "pallet-referenda", "pallet-remark", "pallet-revive", - "pallet-revive-fixtures", - "pallet-revive-mock-network", "pallet-revive-proc-macro", "pallet-revive-uapi", "pallet-root-offences", @@ -10788,6 +12260,11 @@ dependencies = [ "pallet-skip-feeless-payment", "pallet-society", "pallet-staking", + "pallet-staking-async", + "pallet-staking-async-ah-client", + "pallet-staking-async-rc-client", + "pallet-staking-async-reward-fn", + "pallet-staking-async-runtime-api", "pallet-staking-reward-curve", "pallet-staking-reward-fn", "pallet-staking-runtime-api", @@ -10804,6 +12281,7 @@ dependencies = [ "pallet-tx-pause", "pallet-uniques", "pallet-utility", + "pallet-verify-signature", "pallet-vesting", "pallet-whitelist", "pallet-xcm", @@ -10812,245 +12290,192 @@ dependencies = [ "pallet-xcm-bridge-hub-router", "parachains-common", "parachains-runtimes-test-utils", - "polkadot-approval-distribution", - "polkadot-availability-bitfield-distribution", - "polkadot-availability-distribution", - "polkadot-availability-recovery", "polkadot-cli", - "polkadot-collator-protocol", - "polkadot-core-primitives", - "polkadot-dispute-distribution", - "polkadot-erasure-coding", - "polkadot-gossip-support", - "polkadot-network-bridge", - "polkadot-node-collation-generation", - "polkadot-node-core-approval-voting", - "polkadot-node-core-approval-voting-parallel", - "polkadot-node-core-av-store", - "polkadot-node-core-backing", - "polkadot-node-core-bitfield-signing", - "polkadot-node-core-candidate-validation", - "polkadot-node-core-chain-api", - "polkadot-node-core-chain-selection", - "polkadot-node-core-dispute-coordinator", - "polkadot-node-core-parachains-inherent", - "polkadot-node-core-prospective-parachains", - "polkadot-node-core-provisioner", - "polkadot-node-core-pvf", - "polkadot-node-core-pvf-checker", - "polkadot-node-core-pvf-common", - "polkadot-node-core-pvf-execute-worker", - "polkadot-node-core-pvf-prepare-worker", - "polkadot-node-core-runtime-api", - "polkadot-node-jaeger", - "polkadot-node-metrics", - "polkadot-node-network-protocol", - "polkadot-node-primitives", - "polkadot-node-subsystem", - "polkadot-node-subsystem-types", - "polkadot-node-subsystem-util", - "polkadot-overseer", - "polkadot-parachain-lib", - "polkadot-parachain-primitives", - "polkadot-primitives", - "polkadot-rpc", + "polkadot-core-primitives 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "polkadot-omni-node-lib", + "polkadot-parachain-primitives 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "polkadot-primitives 21.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "polkadot-runtime-common", "polkadot-runtime-metrics", "polkadot-runtime-parachains", "polkadot-sdk-frame", "polkadot-service", - "polkadot-statement-distribution", - "polkadot-statement-table", - "sc-allocator", - "sc-authority-discovery", + "sc-allocator 34.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-authority-discovery 0.53.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "sc-basic-authorship", - "sc-block-builder", - "sc-chain-spec", - "sc-chain-spec-derive", - "sc-cli", - "sc-client-api", - "sc-client-db", - "sc-consensus", + "sc-block-builder 0.47.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-chain-spec 46.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-chain-spec-derive 12.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-cli 0.55.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-client-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-client-db 0.49.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-consensus 0.52.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "sc-consensus-aura", - "sc-consensus-babe", + "sc-consensus-babe 0.53.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "sc-consensus-babe-rpc", "sc-consensus-beefy", "sc-consensus-beefy-rpc", - "sc-consensus-epochs", + "sc-consensus-epochs 0.52.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "sc-consensus-grandpa", "sc-consensus-grandpa-rpc", "sc-consensus-manual-seal", "sc-consensus-pow", - "sc-consensus-slots", - "sc-executor", - "sc-executor-common", - "sc-executor-polkavm", - "sc-executor-wasmtime", - "sc-informant", - "sc-keystore", - "sc-mixnet", - "sc-network", - "sc-network-common", + "sc-consensus-slots 0.52.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-executor 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-executor-common 0.41.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-executor-polkavm 0.38.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-executor-wasmtime 0.41.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-informant 0.52.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-keystore 38.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-mixnet 0.23.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-network 0.53.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-network-common 0.51.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "sc-network-gossip", - "sc-network-light", + "sc-network-light 0.52.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "sc-network-statement", - "sc-network-sync", - "sc-network-transactions", - "sc-network-types", + "sc-network-sync 0.52.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-network-transactions 0.52.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-network-types 0.19.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "sc-offchain", "sc-proposer-metrics", - "sc-rpc", - "sc-rpc-api", - "sc-rpc-server", - "sc-rpc-spec-v2", - "sc-service", - "sc-state-db", + "sc-rpc 48.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-rpc-api 0.52.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-rpc-server 25.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-rpc-spec-v2 0.53.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-service 0.54.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-state-db 0.40.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "sc-statement-store", "sc-storage-monitor", "sc-sync-state-rpc", - "sc-sysinfo", - "sc-telemetry", - "sc-tracing", - "sc-tracing-proc-macro", - "sc-transaction-pool", - "sc-transaction-pool-api", - "sc-utils", + "sc-sysinfo 45.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-telemetry 30.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-tracing 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-tracing-proc-macro 11.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-transaction-pool 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-transaction-pool-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-utils 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "slot-range-helper", - "snowbridge-beacon-primitives", - "snowbridge-core", - "snowbridge-ethereum", - "snowbridge-outbound-queue-merkle-tree", - "snowbridge-outbound-queue-runtime-api", - "snowbridge-pallet-ethereum-client", - "snowbridge-pallet-ethereum-client-fixtures", - "snowbridge-pallet-inbound-queue", - "snowbridge-pallet-inbound-queue-fixtures", - "snowbridge-pallet-outbound-queue", - "snowbridge-pallet-system", - "snowbridge-router-primitives", - "snowbridge-runtime-common", - "snowbridge-runtime-test-common", - "snowbridge-system-runtime-api", - "sp-api", - "sp-api-proc-macro", - "sp-application-crypto", - "sp-arithmetic", - "sp-authority-discovery", - "sp-block-builder", - "sp-blockchain", - "sp-consensus", - "sp-consensus-aura", - "sp-consensus-babe", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-api-proc-macro 25.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-application-crypto 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-arithmetic 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-authority-discovery 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-block-builder 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-blockchain 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus-aura 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus-babe 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "sp-consensus-beefy", - "sp-consensus-grandpa", + "sp-consensus-grandpa 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "sp-consensus-pow", - "sp-consensus-slots", - "sp-core", + "sp-consensus-slots 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "sp-core-hashing", "sp-core-hashing-proc-macro", - "sp-crypto-ec-utils 0.10.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "sp-crypto-hashing", - "sp-crypto-hashing-proc-macro", - "sp-database", - "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "sp-genesis-builder", - "sp-inherents", - "sp-io", - "sp-keyring", - "sp-keystore", - "sp-maybe-compressed-blob", - "sp-metadata-ir", - "sp-mixnet", + "sp-crypto-ec-utils", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-crypto-hashing-proc-macro 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-database 10.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-externalities 0.30.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-genesis-builder 0.20.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-inherents 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-keyring 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-keystore 0.44.1 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-maybe-compressed-blob 11.0.1 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-metadata-ir 0.12.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-mixnet 0.17.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "sp-mmr-primitives", "sp-npos-elections", - "sp-offchain", - "sp-panic-handler", - "sp-rpc", - "sp-runtime", - "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "sp-runtime-interface-proc-macro 17.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "sp-session", - "sp-staking", - "sp-state-machine", - "sp-statement-store", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "sp-timestamp", - "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "sp-transaction-pool", - "sp-transaction-storage-proof", - "sp-trie", - "sp-version", - "sp-version-proc-macro", - "sp-wasm-interface 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "sp-weights", + "sp-offchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-panic-handler 13.0.2 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-rpc 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime-interface 32.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime-interface-proc-macro 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-session 41.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-staking 41.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-state-machine 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-statement-store 23.0.0", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-storage 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-timestamp 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-tracing 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-transaction-pool 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-transaction-storage-proof 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-trie 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-version 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-version-proc-macro 15.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-wasm-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-weights 33.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "staging-chain-spec-builder", "staging-node-inspect", "staging-parachain-info", "staging-tracking-allocator", - "staging-xcm", + "staging-xcm 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "staging-xcm-builder", "staging-xcm-executor", "subkey", - "substrate-bip39", + "substrate-bip39 0.6.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "substrate-build-script-utils", "substrate-frame-rpc-support", "substrate-frame-rpc-system", - "substrate-prometheus-endpoint", - "substrate-rpc-client", + "substrate-prometheus-endpoint 0.17.7 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "substrate-rpc-client 0.52.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "substrate-state-trie-migration-rpc", "substrate-wasm-builder", "testnet-parachains-constants", - "tracing-gum", - "tracing-gum-proc-macro", - "xcm-emulator", - "xcm-procedural", + "tracing-gum 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "tracing-gum-proc-macro 5.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "xcm-procedural 11.0.2 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "xcm-runtime-apis", - "xcm-simulator", ] [[package]] name = "polkadot-sdk-frame" -version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.12.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "docify", "frame-benchmarking", "frame-executive", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "frame-system-benchmarking", "frame-system-rpc-runtime-api", - "frame-try-runtime", + "frame-try-runtime 0.49.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "log", "parity-scale-codec", "scale-info", - "sp-api", - "sp-arithmetic", - "sp-block-builder", - "sp-consensus-aura", - "sp-consensus-grandpa", - "sp-core", - "sp-inherents", - "sp-io", - "sp-offchain", - "sp-runtime", - "sp-session", - "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "sp-transaction-pool", - "sp-version", + "serde", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-arithmetic 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-block-builder 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus-aura 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus-grandpa 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-genesis-builder 0.20.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-inherents 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-keyring 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-offchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-session 41.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-storage 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-transaction-pool 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-version 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "polkadot-service" -version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "28.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "async-trait", "frame-benchmarking", "frame-benchmarking-cli", - "frame-system", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "frame-system-rpc-runtime-api", "futures", "is_executable", @@ -11062,13 +12487,13 @@ dependencies = [ "pallet-transaction-payment-rpc-runtime-api", "parity-db", "parity-scale-codec", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "polkadot-approval-distribution", "polkadot-availability-bitfield-distribution", "polkadot-availability-distribution", "polkadot-availability-recovery", "polkadot-collator-protocol", - "polkadot-core-primitives", + "polkadot-core-primitives 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "polkadot-dispute-distribution", "polkadot-gossip-support", "polkadot-network-bridge", @@ -11088,298 +12513,292 @@ dependencies = [ "polkadot-node-core-pvf", "polkadot-node-core-pvf-checker", "polkadot-node-core-runtime-api", - "polkadot-node-network-protocol", - "polkadot-node-primitives", + "polkadot-node-network-protocol 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "polkadot-node-primitives 22.0.0", "polkadot-node-subsystem", - "polkadot-node-subsystem-types", + "polkadot-node-subsystem-types 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "polkadot-node-subsystem-util", - "polkadot-overseer", - "polkadot-primitives", + "polkadot-overseer 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "polkadot-primitives 21.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "polkadot-rpc", "polkadot-runtime-parachains", "polkadot-statement-distribution", "rococo-runtime", - "sc-authority-discovery", + "sc-authority-discovery 0.53.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "sc-basic-authorship", - "sc-chain-spec", - "sc-client-api", - "sc-consensus", - "sc-consensus-babe", + "sc-chain-spec 46.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-client-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-consensus 0.52.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-consensus-babe 0.53.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "sc-consensus-beefy", "sc-consensus-grandpa", - "sc-consensus-slots", - "sc-executor", - "sc-keystore", - "sc-network", - "sc-network-sync", + "sc-consensus-slots 0.52.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-executor 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-keystore 38.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-network 0.53.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-network-sync 0.52.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "sc-offchain", - "sc-service", + "sc-service 0.54.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "sc-sync-state-rpc", - "sc-sysinfo", - "sc-telemetry", - "sc-transaction-pool", - "sc-transaction-pool-api", + "sc-sysinfo 45.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-telemetry 30.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-transaction-pool 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-transaction-pool-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "serde", "serde_json", - "sp-api", - "sp-authority-discovery", - "sp-block-builder", - "sp-blockchain", - "sp-consensus", - "sp-consensus-babe", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-authority-discovery 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-block-builder 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-blockchain 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus-babe 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "sp-consensus-beefy", - "sp-consensus-grandpa", - "sp-core", - "sp-genesis-builder", - "sp-inherents", - "sp-io", - "sp-keyring", + "sp-consensus-grandpa 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-genesis-builder 0.20.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-inherents 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-keyring 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "sp-mmr-primitives", - "sp-offchain", - "sp-runtime", - "sp-session", - "sp-timestamp", - "sp-transaction-pool", - "sp-version", - "sp-weights", - "staging-xcm", - "substrate-prometheus-endpoint", - "thiserror", - "tracing-gum", + "sp-offchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-session 41.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-timestamp 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-transaction-pool 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-version 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-weights 33.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "staging-xcm 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "substrate-prometheus-endpoint 0.17.7 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "thiserror 1.0.69", + "tracing-gum 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "westend-runtime", "xcm-runtime-apis", ] [[package]] name = "polkadot-statement-distribution" -version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "26.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "arrayvec 0.7.6", "bitvec", "fatality", "futures", "futures-timer", - "indexmap 2.5.0", "parity-scale-codec", - "polkadot-node-network-protocol", - "polkadot-node-primitives", + "polkadot-node-network-protocol 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "polkadot-node-primitives 22.0.0", "polkadot-node-subsystem", "polkadot-node-subsystem-util", - "polkadot-primitives", - "sp-keystore", - "sp-staking", - "thiserror", - "tracing-gum", + "polkadot-primitives 21.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-keystore 0.44.1 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "thiserror 1.0.69", + "tracing-gum 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", +] + +[[package]] +name = "polkadot-statement-table" +version = "22.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a175bc397033739cc86b7b1af01490d87bd985b9029da7af30b4be97c6866c7f" +dependencies = [ + "parity-scale-codec", + "polkadot-primitives 21.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "tracing-gum 22.0.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "polkadot-statement-table" -version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "22.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "parity-scale-codec", - "polkadot-primitives", - "sp-core", - "tracing-gum", + "polkadot-primitives 21.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "tracing-gum 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "polkavm" -version = "0.9.3" +version = "0.26.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8a3693e5efdb2bf74e449cd25fd777a28bd7ed87e41f5d5da75eb31b4de48b94" +checksum = "fa028f713d0613f0f08b8b3367402cb859218854f6b96fcbe39a501862894d6f" dependencies = [ "libc", "log", - "polkavm-assembler 0.9.0", - "polkavm-common 0.9.0", - "polkavm-linux-raw 0.9.0", + "polkavm-assembler 0.26.0", + "polkavm-common 0.26.0", + "polkavm-linux-raw 0.26.0", ] [[package]] name = "polkavm" -version = "0.11.0" +version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1195fbc12f11645143a4f3974bf909d25c7f7efddcc6f4e57688d9a518c90bae" +checksum = "6ef5796e5aaa109df210fed7c6ff82e89c7bf94c28f6332d57bd0efb865fdc2a" dependencies = [ "libc", "log", - "polkavm-assembler 0.11.0", - "polkavm-common 0.11.0", - "polkavm-linux-raw 0.11.0", + "polkavm-assembler 0.27.0", + "polkavm-common 0.27.0", + "polkavm-linux-raw 0.27.0", ] [[package]] name = "polkavm-assembler" -version = "0.9.0" +version = "0.26.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1fa96d6d868243acc12de813dd48e756cbadcc8e13964c70d272753266deadc1" +checksum = "4859a29e1f4ad64610c4bc2bfc40bb9a535068a034933a5b56b5e7a0febf105a" dependencies = [ "log", ] [[package]] name = "polkavm-assembler" -version = "0.11.0" +version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f0b0399659fe7a5370c3e3464188888d29069cfa46d99631d19834a379c15826" +checksum = "70bf3be2911acc089dfe54a92bfec22002f4fbf423b8fa771d1f7e7227f0195f" dependencies = [ "log", ] [[package]] name = "polkavm-common" -version = "0.9.0" +version = "0.26.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1d9428a5cfcc85c5d7b9fc4b6a18c4b802d0173d768182a51cc7751640f08b92" +checksum = "49a5794b695626ba70d29e66e3f4f4835767452a6723f3a0bc20884b07088fe8" dependencies = [ "log", + "polkavm-assembler 0.26.0", ] [[package]] name = "polkavm-common" -version = "0.11.0" +version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "254b19b64ff9b57c06b32c0affed961cb9a32429b8d3e5cf2633cad7fbb3e270" +checksum = "a19805789e7bf778ac5855f6fe9350353f6a1697c2aab9bfb6fc7c831be54fad" dependencies = [ + "blake3", "log", - "polkavm-assembler 0.11.0", + "polkavm-assembler 0.27.0", ] [[package]] name = "polkavm-derive" -version = "0.9.1" +version = "0.26.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ae8c4bea6f3e11cd89bb18bcdddac10bd9a24015399bd1c485ad68a985a19606" +checksum = "95282a203ae1f6828a04ff334145c3f6dc718bba6d3959805d273358b45eab93" dependencies = [ - "polkavm-derive-impl-macro 0.9.0", + "polkavm-derive-impl-macro 0.26.0", ] [[package]] name = "polkavm-derive" -version = "0.11.0" +version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f565f0106fbb3598d64b8528d5cb966b6a87a8dd93fbcfe09fb6388ff2865711" +checksum = "4eea46a17d87cbf3c0f3f6156f6300f60cec67cf9eaca296c770e0873f8389d6" dependencies = [ - "polkavm-derive-impl-macro 0.11.0", + "polkavm-derive-impl-macro 0.27.0", ] [[package]] name = "polkavm-derive-impl" -version = "0.9.0" +version = "0.26.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c4fdfc49717fb9a196e74a5d28e0bc764eb394a2c803eb11133a31ac996c60c" +checksum = "6069dc7995cde6e612b868a02ce48b54397c6d2582bd1b97b63aabbe962cd779" dependencies = [ - "polkavm-common 0.9.0", + "polkavm-common 0.26.0", "proc-macro2", "quote", - "syn 2.0.79", + "syn 2.0.110", ] [[package]] name = "polkavm-derive-impl" -version = "0.11.0" +version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "314445fb5688b4769354087d92be2ac94c487e63ffe74a6fb7bb312e57f20827" +checksum = "8abdd1210d96b1dda9ac21199ec469448fd628cea102e2ff0e0df1667c4c3b5f" dependencies = [ - "polkavm-common 0.11.0", + "polkavm-common 0.27.0", "proc-macro2", "quote", - "syn 2.0.79", + "syn 2.0.110", ] [[package]] name = "polkavm-derive-impl-macro" -version = "0.9.0" +version = "0.26.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ba81f7b5faac81e528eb6158a6f3c9e0bb1008e0ffa19653bc8dea925ecb429" +checksum = "581d34cafec741dc5ffafbb341933c205b6457f3d76257a9d99fb56687219c91" dependencies = [ - "polkavm-derive-impl 0.9.0", - "syn 2.0.79", + "polkavm-derive-impl 0.26.0", + "syn 2.0.110", ] [[package]] name = "polkavm-derive-impl-macro" -version = "0.11.0" +version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1bf952e05bc5ce7d81293bae18cb44c271c78615b201d75e983cdcc40d5c6ef1" +checksum = "8a45173d70138aa1879892c50777ed0d8b0c8556f7678372f09fa1d89bbbddb4" dependencies = [ - "polkavm-derive-impl 0.11.0", - "syn 2.0.79", + "polkavm-derive-impl 0.27.0", + "syn 2.0.110", ] [[package]] name = "polkavm-linker" -version = "0.9.2" +version = "0.26.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c7be503e60cf56c0eb785f90aaba4b583b36bff00e93997d93fef97f9553c39" +checksum = "beb896023e5bd89bba40311797d8d42490fa4a1fd5256c74820753c5722d1e67" dependencies = [ - "gimli 0.28.1", + "dirs", + "gimli 0.31.1", "hashbrown 0.14.5", "log", - "object 0.32.2", - "polkavm-common 0.9.0", + "object 0.36.7", + "polkavm-common 0.26.0", "regalloc2 0.9.3", "rustc-demangle", ] [[package]] name = "polkavm-linker" -version = "0.11.0" +version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "535a2095a186ccde2cd2fa721d6370c495586d47714817565b2f6621d31164b3" +checksum = "99fe3704d21e96c5d1e6a1b1a43ac57f9dce110d3331fbf8299e9f57d5884066" dependencies = [ - "gimli 0.28.1", + "dirs", + "gimli 0.31.1", "hashbrown 0.14.5", "log", - "object 0.36.4", - "polkavm-common 0.11.0", + "object 0.36.7", + "polkavm-common 0.27.0", "regalloc2 0.9.3", "rustc-demangle", ] [[package]] name = "polkavm-linux-raw" -version = "0.9.0" +version = "0.26.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26e85d3456948e650dff0cfc85603915847faf893ed1e66b020bb82ef4557120" +checksum = "28919f542476f4158cc71e6c072b1051f38f4b514253594ac3ad80e3c0211fc8" [[package]] name = "polkavm-linux-raw" -version = "0.11.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3011697430dfcfe800d1d7c540ef69e3bdd66e9037cc38f01fee1c2e0908011e" - -[[package]] -name = "polling" -version = "2.8.0" +version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4b2d323e8ca7996b3e23126511a523f7e62924d93ecd5ae73b333815b0eb3dce" -dependencies = [ - "autocfg", - "bitflags 1.3.2", - "cfg-if", - "concurrent-queue", - "libc", - "log", - "pin-project-lite", - "windows-sys 0.48.0", -] +checksum = "061088785efd93e4367faf12f341bb356208c06bab43aa942d472068af80d1c4" [[package]] name = "polling" -version = "3.7.3" +version = "3.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cc2790cd301dec6cd3b7a025e4815cf825724a51c98dccfe6a3e55f05ffb6511" +checksum = "5d0e4f59085d47d8241c88ead0f274e8a0cb551f3625263c05eb8dd897c34218" dependencies = [ "cfg-if", "concurrent-queue", - "hermit-abi 0.4.0", + "hermit-abi", "pin-project-lite", - "rustix 0.38.37", - "tracing", - "windows-sys 0.59.0", + "rustix 1.1.2", + "windows-sys 0.61.2", ] [[package]] @@ -11407,44 +12826,60 @@ dependencies = [ [[package]] name = "portable-atomic" -version = "1.9.0" +version = "1.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cc9c68a3f6da06753e9335d63e27f6b9754dd1920d941135b7ea8224f141adb2" +checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483" [[package]] -name = "powerfmt" -version = "0.2.0" +name = "portable-atomic-util" +version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" +checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507" +dependencies = [ + "portable-atomic", +] [[package]] -name = "ppv-lite86" -version = "0.2.20" +name = "postcard" +version = "1.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04" +checksum = "6764c3b5dd454e283a30e6dfe78e9b31096d9e32036b5d1eaac7a6119ccb9a24" dependencies = [ - "zerocopy", + "cobs", + "embedded-io 0.4.0", + "embedded-io 0.6.1", + "serde", ] [[package]] -name = "predicates" -version = "2.1.5" +name = "potential_utf" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "59230a63c37f3e18569bdb90e4a89cbf5bf8b06fea0b84e65ea10cc4df47addd" +checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77" dependencies = [ - "difflib", - "float-cmp", - "itertools 0.10.5", - "normalize-line-endings", - "predicates-core", - "regex", + "zerovec", +] + +[[package]] +name = "powerfmt" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" + +[[package]] +name = "ppv-lite86" +version = "0.2.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" +dependencies = [ + "zerocopy", ] [[package]] name = "predicates" -version = "3.1.2" +version = "3.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7e9086cc7640c29a356d1a29fd134380bee9d8f79a17410aa76e7ad295f42c97" +checksum = "a5d19ee57562043d37e82899fade9a22ebab7be9cef5026b07fda9cdd4293573" dependencies = [ "anstyle", "difflib", @@ -11453,15 +12888,15 @@ dependencies = [ [[package]] name = "predicates-core" -version = "1.0.8" +version = "1.0.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ae8177bee8e75d6846599c6b9ff679ed51e882816914eec639944d7c9aa11931" +checksum = "727e462b119fe9c93fd0eb1429a5f7647394014cf3c04ab2c0350eeb09095ffa" [[package]] name = "predicates-tree" -version = "1.0.11" +version = "1.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "41b740d195ed3166cd147c8047ec98db0e22ec019eb8eeb76d343b795304fb13" +checksum = "72dd2d6d381dfb73a193c7fca536518d7caee39fc8503f74e7dc0be0531b425c" dependencies = [ "predicates-core", "termtree", @@ -11469,12 +12904,21 @@ dependencies = [ [[package]] name = "prettyplease" -version = "0.2.22" +version = "0.2.37" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "479cf940fbbb3426c32c5d5176f62ad57549a0bb84773423ba8be9d089f5faba" +checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b" dependencies = [ "proc-macro2", - "syn 2.0.79", + "syn 2.0.110", +] + +[[package]] +name = "primeorder" +version = "0.13.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6" +dependencies = [ + "elliptic-curve", ] [[package]] @@ -11484,12 +12928,23 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0b34d9fd68ae0b74a41b21c03c2f62847aa0ffea044eee893b4c140b37e244e2" dependencies = [ "fixed-hash", - "impl-codec", + "impl-codec 0.6.0", + "uint 0.9.5", +] + +[[package]] +name = "primitive-types" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d15600a7d856470b7d278b3fe0e311fe28c2526348549f8ef2ff7db3299c87f5" +dependencies = [ + "fixed-hash", + "impl-codec 0.7.1", "impl-num-traits", "impl-rlp", "impl-serde", "scale-info", - "uint", + "uint 0.10.0", ] [[package]] @@ -11500,11 +12955,11 @@ checksum = "a172e6cc603231f2cf004232eabcecccc0da53ba576ab286ef7baa0cfc7927ad" dependencies = [ "coarsetime", "crossbeam-queue", - "derive_more", + "derive_more 0.99.20", "futures", "futures-timer", "nanorand", - "thiserror", + "thiserror 1.0.69", "tracing", ] @@ -11514,17 +12969,17 @@ version = "1.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e17d47ce914bf4de440332250b0edd23ce48c005f59fab39d3335866b114f11a" dependencies = [ - "thiserror", + "thiserror 1.0.69", "toml 0.5.11", ] [[package]] name = "proc-macro-crate" -version = "3.2.0" +version = "3.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ecf48c7ca261d60b74ab1a7b20da18bede46776b2e55535cb958eb595c5fa7b" +checksum = "219cb19e96be00ab2e37d6e299658a0cfa83e52429179969b0f0121b4ac46983" dependencies = [ - "toml_edit", + "toml_edit 0.23.7", ] [[package]] @@ -11552,32 +13007,43 @@ 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.79", +] + +[[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.110", ] [[package]] name = "proc-macro-warning" -version = "1.0.2" +version = "1.84.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "834da187cfe638ae8abb0203f0b33e5ccdb02a28e7199f2f47b3e2754f50edca" +checksum = "75eea531cfcd120e0851a3f8aed42c4841f78c889eefafd96339c72677ae42c3" dependencies = [ "proc-macro2", "quote", - "syn 2.0.79", + "syn 2.0.110", ] [[package]] name = "proc-macro2" -version = "1.0.86" +version = "1.0.103" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77" +checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8" dependencies = [ "unicode-ident", ] @@ -11592,19 +13058,19 @@ dependencies = [ "fnv", "lazy_static", "memchr", - "parking_lot 0.12.3", - "thiserror", + "parking_lot 0.12.5", + "thiserror 1.0.69", ] [[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", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "prometheus-client-derive-encode", ] @@ -11616,24 +13082,23 @@ checksum = "440f724eba9f6996b75d63681b0a92b06947f1457076d503a4d2e2c8f56442b8" dependencies = [ "proc-macro2", "quote", - "syn 2.0.79", + "syn 2.0.110", ] [[package]] name = "proptest" -version = "1.5.0" +version = "1.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b4c2511913b88df1637da85cc8d96ec8e43a3f8bb8ccb71ee1ac240d6f3df58d" +checksum = "bee689443a2bd0a16ab0348b52ee43e3b2d1b1f931c8aa5c9f8de4c86fbe8c40" dependencies = [ "bit-set", "bit-vec", - "bitflags 2.6.0", - "lazy_static", + "bitflags 2.10.0", "num-traits", - "rand", - "rand_chacha", + "rand 0.9.2", + "rand_chacha 0.9.0", "rand_xorshift", - "regex-syntax 0.8.5", + "regex-syntax", "rusty-fork", "tempfile", "unarray", @@ -11651,53 +13116,31 @@ dependencies = [ [[package]] name = "prost" -version = "0.13.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7b0487d90e047de87f984913713b85c601c05609aad5b0df4b4573fbf69aa13f" -dependencies = [ - "bytes", - "prost-derive 0.13.3", -] - -[[package]] -name = "prost-build" -version = "0.12.6" +version = "0.13.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22505a5c94da8e3b7c2996394d1c933236c4d743e81a410bcca4e6989fc066a4" +checksum = "2796faa41db3ec313a31f7624d9286acf277b52de526150b7e69f3debf891ee5" dependencies = [ "bytes", - "heck 0.5.0", - "itertools 0.12.1", - "log", - "multimap", - "once_cell", - "petgraph", - "prettyplease", - "prost 0.12.6", - "prost-types 0.12.6", - "regex", - "syn 2.0.79", - "tempfile", + "prost-derive 0.13.5", ] [[package]] name = "prost-build" -version = "0.13.3" +version = "0.13.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c1318b19085f08681016926435853bbf7858f9c082d0999b80550ff5d9abe15" +checksum = "be769465445e8c1474e9c5dac2018218498557af32d9ed057325ec9a41ae81bf" dependencies = [ - "bytes", "heck 0.5.0", - "itertools 0.13.0", + "itertools 0.14.0", "log", "multimap", "once_cell", - "petgraph", + "petgraph 0.7.1", "prettyplease", - "prost 0.13.3", - "prost-types 0.13.3", + "prost 0.13.5", + "prost-types", "regex", - "syn 2.0.79", + "syn 2.0.110", "tempfile", ] @@ -11711,54 +13154,59 @@ dependencies = [ "itertools 0.12.1", "proc-macro2", "quote", - "syn 2.0.79", + "syn 2.0.110", ] [[package]] name = "prost-derive" -version = "0.13.3" +version = "0.13.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e9552f850d5f0964a4e4d0bf306459ac29323ddfbae05e35a7c0d35cb0803cc5" +checksum = "8a56d757972c98b346a9b766e3f02746cde6dd1cd1d1d563472929fdd74bec4d" dependencies = [ "anyhow", - "itertools 0.13.0", + "itertools 0.14.0", "proc-macro2", "quote", - "syn 2.0.79", + "syn 2.0.110", ] [[package]] name = "prost-types" -version = "0.12.6" +version = "0.13.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9091c90b0a32608e984ff2fa4091273cbdd755d54935c51d520887f4a1dbd5b0" +checksum = "52c2c1bf36ddb1a1c396b3601a3cec27c2462e45f07c386894ec3ccf5332bd16" dependencies = [ - "prost 0.12.6", + "prost 0.13.5", ] [[package]] -name = "prost-types" -version = "0.13.3" +name = "pulley-interpreter" +version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4759aa0d3a6232fb8dbdb97b61de2c20047c68aca932c7ed76da9d788508d670" +checksum = "b89c4319786b16c1a6a38ee04788d32c669b61ba4b69da2162c868c18be99c1b" dependencies = [ - "prost 0.13.3", + "cranelift-bitset", + "log", + "pulley-macros", + "wasmtime-internal-math", ] [[package]] -name = "psm" -version = "0.1.23" +name = "pulley-macros" +version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aa37f80ca58604976033fae9515a8a2989fc13797d953f7c04fb8fa36a11f205" +checksum = "938543690519c20c3a480d20a8efcc8e69abeb44093ab1df4e7c1f81f26c677a" dependencies = [ - "cc", + "proc-macro2", + "quote", + "syn 2.0.110", ] [[package]] name = "quanta" -version = "0.12.3" +version = "0.12.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e5167a477619228a0b284fac2674e3c388cba90631d7b7de620e6f1fcd08da5" +checksum = "f3ab5a9d756f0d97bdc89019bd2e4ea098cf9cde50ee7564dde6b81ccc8f06c7" dependencies = [ "crossbeam-utils", "libc", @@ -11786,74 +13234,88 @@ 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", - "unsigned-varint 0.7.2", + "thiserror 1.0.69", + "unsigned-varint 0.8.0", ] [[package]] name = "quinn" -version = "0.10.2" +version = "0.11.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8cc2c5017e4b43d5995dcea317bc46c1e09404c0a9664d2908f7f02dfe943d75" +checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20" 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", + "rustc-hash 2.1.1", + "rustls", + "socket2 0.6.1", + "thiserror 2.0.17", "tokio", "tracing", + "web-time", ] [[package]] name = "quinn-proto" -version = "0.10.6" +version = "0.11.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "141bf7dfde2fbc246bfd3fe12f2455aa24b0fbd9af535d8c86c7bd1381ff2b1a" +checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31" dependencies = [ "bytes", - "rand", - "ring 0.16.20", - "rustc-hash 1.1.0", - "rustls 0.21.12", + "getrandom 0.3.4", + "lru-slab", + "rand 0.9.2", + "ring 0.17.14", + "rustc-hash 2.1.1", + "rustls", + "rustls-pki-types", "slab", - "thiserror", + "thiserror 2.0.17", "tinyvec", "tracing", + "web-time", ] [[package]] name = "quinn-udp" -version = "0.4.1" +version = "0.5.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "055b4e778e8feb9f93c4e439f71dc2156ef13360b432b799e179a8c4cdf0b1d7" +checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd" dependencies = [ - "bytes", + "cfg_aliases 0.2.1", "libc", - "socket2 0.5.7", + "once_cell", + "socket2 0.6.1", "tracing", - "windows-sys 0.48.0", + "windows-sys 0.60.2", ] [[package]] name = "quote" -version = "1.0.37" +version = "1.0.42" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af" +checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f" dependencies = [ "proc-macro2", ] +[[package]] +name = "r-efi" +version = "5.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" + [[package]] name = "radium" version = "0.7.0" @@ -11867,8 +13329,19 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" dependencies = [ "libc", - "rand_chacha", - "rand_core", + "rand_chacha 0.3.1", + "rand_core 0.6.4", +] + +[[package]] +name = "rand" +version = "0.9.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1" +dependencies = [ + "rand_chacha 0.9.0", + "rand_core 0.9.3", + "serde", ] [[package]] @@ -11878,7 +13351,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" dependencies = [ "ppv-lite86", - "rand_core", + "rand_core 0.6.4", +] + +[[package]] +name = "rand_chacha" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" +dependencies = [ + "ppv-lite86", + "rand_core 0.9.3", ] [[package]] @@ -11887,7 +13370,17 @@ version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" dependencies = [ - "getrandom", + "getrandom 0.2.16", +] + +[[package]] +name = "rand_core" +version = "0.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38" +dependencies = [ + "getrandom 0.3.4", + "serde", ] [[package]] @@ -11897,7 +13390,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31" dependencies = [ "num-traits", - "rand", + "rand 0.8.5", ] [[package]] @@ -11906,25 +13399,25 @@ version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "59cad018caf63deb318e5a4586d99a24424a364f40f1e5778c29aca23f4fc73e" dependencies = [ - "rand_core", + "rand_core 0.6.4", ] [[package]] name = "rand_xorshift" -version = "0.3.0" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d25bf25ec5ae4a3f1b92f929810509a2f53d7dca2f50b794ff57e3face536c8f" +checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a" dependencies = [ - "rand_core", + "rand_core 0.9.3", ] [[package]] name = "raw-cpuid" -version = "11.1.0" +version = "11.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cb9ee317cfe3fbd54b36a511efc1edd42e216903c9cd575e686dd68a2ba90d8d" +checksum = "498cd0dc59d73224351ee52a95fee0f1a617a2eae0e7d9d720cc622c73a54186" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.10.0", ] [[package]] @@ -11935,9 +13428,9 @@ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3" [[package]] name = "rayon" -version = "1.10.0" +version = "1.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa" +checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f" dependencies = [ "either", "rayon-core", @@ -11945,9 +13438,9 @@ dependencies = [ [[package]] name = "rayon-core" -version = "1.12.1" +version = "1.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2" +checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91" dependencies = [ "crossbeam-deque", "crossbeam-utils", @@ -11955,9 +13448,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", @@ -11976,11 +13469,11 @@ dependencies = [ [[package]] name = "redox_syscall" -version = "0.5.7" +version = "0.5.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9b6dfecf2c74bce2466cabf93f6664d6998a69eb21e39f4207930065b27b771f" +checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.10.0", ] [[package]] @@ -11989,9 +13482,9 @@ version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43" dependencies = [ - "getrandom", + "getrandom 0.2.16", "libredox", - "thiserror", + "thiserror 1.0.69", ] [[package]] @@ -12000,203 +13493,376 @@ version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "87413ebb313323d431e85d0afc5a68222aaed972843537cbfe5f061cf1b4bcab" dependencies = [ - "derive_more", + "derive_more 0.99.20", "fs-err", "static_init", - "thiserror", + "thiserror 1.0.69", ] [[package]] name = "ref-cast" -version = "1.0.23" +version = "1.0.25" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ccf0a6f84d5f1d581da8b41b47ec8600871962f2a528115b542b362d4b744931" +checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d" dependencies = [ "ref-cast-impl", ] [[package]] name = "ref-cast-impl" -version = "1.0.23" +version = "1.0.25" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bcc303e793d3734489387d205e9b186fac9c6cfacedd98cbb2e8a5943595f3e6" +checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da" dependencies = [ "proc-macro2", "quote", - "syn 2.0.79", + "syn 2.0.110", ] [[package]] name = "regalloc2" -version = "0.6.1" +version = "0.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "80535183cae11b149d618fbd3c37e38d7cda589d82d7769e196ca9a9042d7621" +checksum = "ad156d539c879b7a24a363a2016d77961786e71f48f2e2fc8302a92abd2429a6" dependencies = [ - "fxhash", + "hashbrown 0.13.2", "log", + "rustc-hash 1.1.0", "slice-group-by", "smallvec", ] [[package]] name = "regalloc2" -version = "0.9.3" +version = "0.12.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ad156d539c879b7a24a363a2016d77961786e71f48f2e2fc8302a92abd2429a6" +checksum = "5216b1837de2149f8bc8e6d5f88a9326b63b8c836ed58ce4a0a29ec736a59734" dependencies = [ - "hashbrown 0.13.2", + "allocator-api2", + "bumpalo", + "hashbrown 0.15.5", "log", - "rustc-hash 1.1.0", - "slice-group-by", + "rustc-hash 2.1.1", "smallvec", ] [[package]] name = "regex" -version = "1.11.0" +version = "1.12.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38200e5ee88914975b69f657f0801b6f6dccafd44fd9326302a4aaeecfacb1d8" +checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4" dependencies = [ "aho-corasick", "memchr", - "regex-automata 0.4.8", - "regex-syntax 0.8.5", + "regex-automata", + "regex-syntax", ] [[package]] name = "regex-automata" -version = "0.1.10" +version = "0.4.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" +checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c" dependencies = [ - "regex-syntax 0.6.29", + "aho-corasick", + "memchr", + "regex-syntax", ] [[package]] -name = "regex-automata" -version = "0.4.8" +name = "regex-syntax" +version = "0.8.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58" + +[[package]] +name = "resolv-conf" +version = "0.7.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6b3789b30bd25ba102de4beabd95d21ac45b69b1be7d14522bab988c526d6799" + +[[package]] +name = "revm" +version = "27.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3" +checksum = "5e6bf82101a1ad8a2b637363a37aef27f88b4efc8a6e24c72bf5f64923dc5532" dependencies = [ - "aho-corasick", - "memchr", - "regex-syntax 0.8.5", + "revm-bytecode", + "revm-context", + "revm-context-interface", + "revm-database", + "revm-database-interface", + "revm-handler", + "revm-inspector", + "revm-interpreter", + "revm-precompile", + "revm-primitives", + "revm-state", ] [[package]] -name = "regex-syntax" -version = "0.6.29" +name = "revm-bytecode" +version = "6.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" +checksum = "66c52031b73cae95d84cd1b07725808b5fd1500da3e5e24574a3b2dc13d9f16d" +dependencies = [ + "bitvec", + "phf", + "revm-primitives", + "serde", +] [[package]] -name = "regex-syntax" -version = "0.8.5" +name = "revm-context" +version = "8.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" +checksum = "9cd508416a35a4d8a9feaf5ccd06ac6d6661cd31ee2dc0252f9f7316455d71f9" +dependencies = [ + "cfg-if", + "derive-where", + "revm-bytecode", + "revm-context-interface", + "revm-database-interface", + "revm-primitives", + "revm-state", + "serde", +] [[package]] -name = "resolv-conf" -version = "0.7.0" +name = "revm-context-interface" +version = "9.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "52e44394d2086d010551b14b53b1f24e31647570cd1deb0379e2c21b329aba00" +checksum = "dc90302642d21c8f93e0876e201f3c5f7913c4fcb66fb465b0fd7b707dfe1c79" dependencies = [ - "hostname", - "quick-error", + "alloy-eip2930", + "alloy-eip7702", + "auto_impl", + "either", + "revm-database-interface", + "revm-primitives", + "revm-state", + "serde", ] [[package]] -name = "rfc6979" -version = "0.4.0" +name = "revm-database" +version = "7.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2" +checksum = "39a276ed142b4718dcf64bc9624f474373ed82ef20611025045c3fb23edbef9c" dependencies = [ - "hmac 0.12.1", - "subtle 2.6.1", + "alloy-eips", + "revm-bytecode", + "revm-database-interface", + "revm-primitives", + "revm-state", + "serde", ] [[package]] -name = "ring" -version = "0.1.0" -source = "git+https://github.com/w3f/ring-proof?rev=665f5f5#665f5f51af5734c7b6d90b985dd6861d4c5b4752" +name = "revm-database-interface" +version = "7.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8c523c77e74eeedbac5d6f7c092e3851dbe9c7fec6f418b85992bd79229db361" dependencies = [ - "ark-ec", - "ark-ff 0.4.2", - "ark-poly", - "ark-serialize 0.4.2", - "ark-std 0.4.0", - "arrayvec 0.7.6", - "blake2 0.10.6", - "common", - "fflonk", - "merlin", + "auto_impl", + "either", + "revm-primitives", + "revm-state", + "serde", ] [[package]] -name = "ring" -version = "0.16.20" +name = "revm-handler" +version = "8.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc" +checksum = "1529c8050e663be64010e80ec92bf480315d21b1f2dbf65540028653a621b27d" dependencies = [ - "cc", - "libc", - "once_cell", - "spin 0.5.2", - "untrusted 0.7.1", - "web-sys", - "winapi", + "auto_impl", + "derive-where", + "revm-bytecode", + "revm-context", + "revm-context-interface", + "revm-database-interface", + "revm-interpreter", + "revm-precompile", + "revm-primitives", + "revm-state", + "serde", ] [[package]] -name = "ring" -version = "0.17.8" +name = "revm-inspector" +version = "8.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d" +checksum = "f78db140e332489094ef314eaeb0bd1849d6d01172c113ab0eb6ea8ab9372926" dependencies = [ - "cc", - "cfg-if", - "getrandom", - "libc", - "spin 0.9.8", - "untrusted 0.9.0", - "windows-sys 0.52.0", + "auto_impl", + "either", + "revm-context", + "revm-database-interface", + "revm-handler", + "revm-interpreter", + "revm-primitives", + "revm-state", + "serde", + "serde_json", ] [[package]] -name = "rlp" -version = "0.5.2" +name = "revm-interpreter" +version = "24.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb919243f34364b6bd2fc10ef797edbfa75f33c252e7998527479c6d6b47e1ec" +checksum = "ff9d7d9d71e8a33740b277b602165b6e3d25fff091ba3d7b5a8d373bf55f28a7" dependencies = [ - "bytes", - "rustc-hex", + "revm-bytecode", + "revm-context-interface", + "revm-primitives", + "serde", ] [[package]] -name = "rocksdb" -version = "0.21.0" +name = "revm-precompile" +version = "25.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb6f170a4041d50a0ce04b0d2e14916d6ca863ea2e422689a5b694395d299ffe" +checksum = "4cee3f336b83621294b4cfe84d817e3eef6f3d0fce00951973364cc7f860424d" dependencies = [ - "libc", - "librocksdb-sys", + "ark-bls12-381 0.5.0", + "ark-bn254", + "ark-ec 0.5.0", + "ark-ff 0.5.0", + "ark-serialize 0.5.0", + "arrayref", + "aurora-engine-modexp", + "c-kzg", + "cfg-if", + "k256", + "libsecp256k1", + "once_cell", + "p256", + "revm-primitives", + "ripemd", + "rug", + "secp256k1 0.31.1", + "sha2 0.10.9", ] [[package]] -name = "rococo-runtime" -version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +name = "revm-primitives" +version = "20.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5aa29d9da06fe03b249b6419b33968ecdf92ad6428e2f012dc57bcd619b5d94e" dependencies = [ - "binary-merkle-tree", - "bitvec", - "frame-benchmarking", - "frame-executive", - "frame-metadata-hash-extension", - "frame-support", - "frame-system", - "frame-system-benchmarking", + "alloy-primitives", + "num_enum", + "once_cell", + "serde", +] + +[[package]] +name = "revm-state" +version = "7.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1f64fbacb86008394aaebd3454f9643b7d5a782bd251135e17c5b33da592d84d" +dependencies = [ + "bitflags 2.10.0", + "revm-bytecode", + "revm-primitives", + "serde", +] + +[[package]] +name = "rfc6979" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2" +dependencies = [ + "hmac 0.12.1", + "subtle 2.6.1", +] + +[[package]] +name = "ring" +version = "0.16.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc" +dependencies = [ + "cc", + "libc", + "once_cell", + "spin 0.5.2", + "untrusted 0.7.1", + "web-sys", + "winapi", +] + +[[package]] +name = "ring" +version = "0.17.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" +dependencies = [ + "cc", + "cfg-if", + "getrandom 0.2.16", + "libc", + "untrusted 0.9.0", + "windows-sys 0.52.0", +] + +[[package]] +name = "ripemd" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bd124222d17ad93a644ed9d011a40f4fb64aa54275c08cc216524a9ea82fb09f" +dependencies = [ + "digest 0.10.7", +] + +[[package]] +name = "rlp" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bb919243f34364b6bd2fc10ef797edbfa75f33c252e7998527479c6d6b47e1ec" +dependencies = [ + "bytes", + "rustc-hex", +] + +[[package]] +name = "rlp" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fa24e92bb2a83198bb76d661a71df9f7076b8c420b8696e4d3d97d50d94479e3" +dependencies = [ + "bytes", + "rustc-hex", +] + +[[package]] +name = "rocksdb" +version = "0.21.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bb6f170a4041d50a0ce04b0d2e14916d6ca863ea2e422689a5b694395d299ffe" +dependencies = [ + "libc", + "librocksdb-sys", +] + +[[package]] +name = "rococo-runtime" +version = "27.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" +dependencies = [ + "binary-merkle-tree 16.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "bitvec", + "frame-benchmarking", + "frame-executive", + "frame-metadata-hash-extension", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system-benchmarking", "frame-system-rpc-runtime-api", - "frame-try-runtime", + "frame-try-runtime 0.49.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "hex-literal", "log", "pallet-asset-rate", @@ -12208,15 +13874,14 @@ dependencies = [ "pallet-beefy-mmr", "pallet-bounties", "pallet-child-bounties", - "pallet-collective", "pallet-conviction-voting", "pallet-democracy", "pallet-elections-phragmen", "pallet-grandpa", "pallet-identity", "pallet-indices", - "pallet-membership", "pallet-message-queue", + "pallet-migrations", "pallet-mmr", "pallet-multisig", "pallet-nis", @@ -12245,8 +13910,8 @@ dependencies = [ "pallet-xcm", "pallet-xcm-benchmarks", "parity-scale-codec", - "polkadot-parachain-primitives", - "polkadot-primitives", + "polkadot-parachain-primitives 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "polkadot-primitives 21.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "polkadot-runtime-common", "polkadot-runtime-parachains", "rococo-runtime-constants", @@ -12254,47 +13919,46 @@ dependencies = [ "serde", "serde_derive", "serde_json", - "smallvec", - "sp-api", - "sp-arithmetic", - "sp-authority-discovery", - "sp-block-builder", - "sp-consensus-babe", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-arithmetic 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-authority-discovery 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-block-builder 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus-babe 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "sp-consensus-beefy", - "sp-consensus-grandpa", - "sp-core", - "sp-genesis-builder", - "sp-inherents", - "sp-io", + "sp-consensus-grandpa 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-genesis-builder 0.20.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-inherents 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-keyring 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "sp-mmr-primitives", - "sp-offchain", - "sp-runtime", - "sp-session", - "sp-staking", - "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "sp-transaction-pool", - "sp-version", - "staging-xcm", + "sp-offchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-session 41.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-staking 41.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-storage 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-transaction-pool 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-version 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "staging-xcm 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "staging-xcm-builder", "staging-xcm-executor", - "static_assertions", "substrate-wasm-builder", "xcm-runtime-apis", ] [[package]] name = "rococo-runtime-constants" -version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "23.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "frame-support", - "polkadot-primitives", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "polkadot-primitives 21.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "polkadot-runtime-common", "smallvec", - "sp-core", - "sp-runtime", - "sp-weights", - "staging-xcm", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-weights 33.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "staging-xcm 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "staging-xcm-builder", ] @@ -12306,60 +13970,79 @@ checksum = "afab94fb28594581f62d981211a9a4d53cc8130bbcbbb89a0440d9b8e81a7746" [[package]] name = "rpassword" -version = "7.3.1" +version = "7.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "80472be3c897911d0137b2d2b9055faf6eeac5b14e324073d83bc17b191d7e3f" +checksum = "66d4c8b64f049c6721ec8ccec37ddfc3d641c4a7fca57e8f2a89de509c73df39" dependencies = [ "libc", "rtoolbox", - "windows-sys 0.48.0", + "windows-sys 0.59.0", ] [[package]] name = "rtnetlink" -version = "0.10.1" +version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "322c53fd76a18698f1c27381d58091de3a043d356aa5bd0d510608b565f469a0" +checksum = "7a552eb82d19f38c3beed3f786bd23aa434ceb9ac43ab44419ca6d67a7e186c0" dependencies = [ "futures", "log", + "netlink-packet-core", "netlink-packet-route", + "netlink-packet-utils", "netlink-proto", - "nix 0.24.3", - "thiserror", + "netlink-sys", + "nix 0.26.4", + "thiserror 1.0.69", "tokio", ] [[package]] name = "rtoolbox" -version = "0.0.2" +version = "0.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c247d24e63230cdb56463ae328478bd5eac8b8faa8c69461a77e8e323afac90e" +checksum = "a7cc970b249fbe527d6e02e0a227762c9108b2f49d81094fe357ffc6d14d7f6f" dependencies = [ "libc", - "windows-sys 0.48.0", + "windows-sys 0.52.0", +] + +[[package]] +name = "rug" +version = "1.28.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "58ad2e973fe3c3214251a840a621812a4f40468da814b1a3d6947d433c2af11f" +dependencies = [ + "az", + "gmp-mpfr-sys", + "libc", + "libm", ] [[package]] name = "ruint" -version = "1.12.3" +version = "1.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2c3cc4c2511671f327125da14133d0c5c5d137f006a1017a16f557bc85b16286" +checksum = "a68df0380e5c9d20ce49534f292a36a7514ae21350726efe1865bdb1fa91d278" dependencies = [ "alloy-rlp", "ark-ff 0.3.0", "ark-ff 0.4.2", + "ark-ff 0.5.0", "bytes", - "fastrlp", + "fastrlp 0.3.1", + "fastrlp 0.4.0", "num-bigint", + "num-integer", "num-traits", "parity-scale-codec", - "primitive-types", + "primitive-types 0.12.2", "proptest", - "rand", - "rlp", + "rand 0.8.5", + "rand 0.9.2", + "rlp 0.5.2", "ruint-macro", - "serde", + "serde_core", "valuable", "zeroize", ] @@ -12372,9 +14055,9 @@ checksum = "48fd7bd8a6377e15ad9d42a8ec25371b94ddc67abe7c8b9127bec79bebaaae18" [[package]] name = "rustc-demangle" -version = "0.1.24" +version = "0.1.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f" +checksum = "56f7d92ca342cea22a06f2121d944b4fd82af56988c270852495420f961d4ace" [[package]] name = "rustc-hash" @@ -12384,9 +14067,9 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" [[package]] name = "rustc-hash" -version = "2.0.0" +version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "583034fd73374156e66797ed8e5b0d5690409c9226b22d87cb7f19821c05d152" +checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d" [[package]] name = "rustc-hex" @@ -12418,7 +14101,7 @@ version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" dependencies = [ - "semver 1.0.23", + "semver 1.0.27", ] [[package]] @@ -12432,151 +14115,86 @@ dependencies = [ [[package]] name = "rustix" -version = "0.36.17" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "305efbd14fde4139eb501df5f136994bb520b033fa9fbdce287507dc23b8c7ed" -dependencies = [ - "bitflags 1.3.2", - "errno", - "io-lifetimes", - "libc", - "linux-raw-sys 0.1.4", - "windows-sys 0.45.0", -] - -[[package]] -name = "rustix" -version = "0.37.27" +version = "0.38.44" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fea8ca367a3a01fe35e6943c400addf443c0f57670e6ec51196f71a4b8762dd2" +checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154" dependencies = [ - "bitflags 1.3.2", + "bitflags 2.10.0", "errno", - "io-lifetimes", "libc", - "linux-raw-sys 0.3.8", - "windows-sys 0.48.0", + "linux-raw-sys 0.4.15", + "windows-sys 0.59.0", ] [[package]] name = "rustix" -version = "0.38.37" +version = "1.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8acb788b847c24f28525660c4d7758620a7210875711f79e7f663cc152726811" +checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.10.0", "errno", "libc", - "linux-raw-sys 0.4.14", - "windows-sys 0.52.0", -] - -[[package]] -name = "rustls" -version = "0.20.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b80e3dec595989ea8510028f30c408a4630db12c9cbb8de34203b89d6577e99" -dependencies = [ - "ring 0.16.20", - "sct", - "webpki", + "linux-raw-sys 0.11.0", + "windows-sys 0.61.2", ] [[package]] name = "rustls" -version = "0.21.12" +version = "0.23.35" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e" -dependencies = [ - "log", - "ring 0.17.8", - "rustls-webpki 0.101.7", - "sct", -] - -[[package]] -name = "rustls" -version = "0.23.13" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f2dabaac7466917e566adb06783a81ca48944c6898a1b08b9374106dd671f4c8" +checksum = "533f54bc6a7d4f647e46ad909549eda97bf5afc1585190ef692b4286b198bd8f" dependencies = [ "log", "once_cell", - "ring 0.17.8", + "ring 0.17.14", "rustls-pki-types", - "rustls-webpki 0.102.8", + "rustls-webpki 0.103.8", "subtle 2.6.1", "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", -] - -[[package]] -name = "rustls-native-certs" -version = "0.7.3" +version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e5bfb394eeed242e909609f56089eecfe5fda225042e8b171791b9c95f5931e5" +checksum = "9980d917ebb0c0536119ba501e90834767bffc3d60641457fd84a1f3fd337923" dependencies = [ "openssl-probe", - "rustls-pemfile 2.2.0", "rustls-pki-types", "schannel", "security-framework", ] [[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" +name = "rustls-pki-types" +version = "1.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50" +checksum = "94182ad936a0c91c324cd46c6511b9510ed16af436d7b5bab34beab0afd55f7a" dependencies = [ - "rustls-pki-types", + "web-time", + "zeroize", ] -[[package]] -name = "rustls-pki-types" -version = "1.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0e696e35370c65c9c541198af4543ccd580cf17fc25d8e05c5a242b202488c55" - [[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", + "core-foundation 0.10.1", "core-foundation-sys", "jni", "log", "once_cell", - "rustls 0.23.13", - "rustls-native-certs 0.7.3", + "rustls", + "rustls-native-certs", "rustls-platform-verifier-android", - "rustls-webpki 0.102.8", + "rustls-webpki 0.103.8", "security-framework", "security-framework-sys", - "webpki-roots 0.26.6", - "winapi", + "webpki-root-certs 0.26.11", + "windows-sys 0.59.0", ] [[package]] @@ -12591,32 +14209,32 @@ version = "0.101.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765" dependencies = [ - "ring 0.17.8", + "ring 0.17.14", "untrusted 0.9.0", ] [[package]] name = "rustls-webpki" -version = "0.102.8" +version = "0.103.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9" +checksum = "2ffdfa2f5286e2247234e03f680868ac2815974dc39e00ea15adc445d0aafe52" dependencies = [ - "ring 0.17.8", + "ring 0.17.14", "rustls-pki-types", "untrusted 0.9.0", ] [[package]] name = "rustversion" -version = "1.0.17" +version = "1.0.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "955d28af4278de8121b7ebeb796b6a45735dc01436d898801014aced2773a3d6" +checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d" [[package]] name = "rusty-fork" -version = "0.3.0" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cb3dcc6e454c328bb824492db107ab7c0ae8fcffe4ad210136ef014458c1bc4f" +checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2" dependencies = [ "fnv", "quick-error", @@ -12626,13 +14244,12 @@ dependencies = [ [[package]] name = "ruzstd" -version = "0.4.0" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ac3ffab8f9715a0d455df4bbb9d21e91135aab3cd3ca187af0cd0c3c3f868fdc" +checksum = "5174a470eeb535a721ae9fdd6e291c2411a906b96592182d05217591d5c5cf7b" dependencies = [ "byteorder", - "thiserror-core", - "twox-hash", + "derive_more 0.99.20", ] [[package]] @@ -12648,9 +14265,9 @@ dependencies = [ [[package]] name = "ryu" -version = "1.0.18" +version = "1.0.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" +checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" [[package]] name = "safe-mix" @@ -12663,13 +14280,22 @@ dependencies = [ [[package]] name = "safe_arch" -version = "0.7.2" +version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c3460605018fdc9612bce72735cba0d27efbcd9904780d44c7e3a9948f96148a" +checksum = "96b02de82ddbe1b636e6170c21be622223aea188ef2e139be0a5b219ec215323" 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" @@ -12681,125 +14307,269 @@ dependencies = [ [[package]] name = "sc-allocator" -version = "23.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "34.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "01733879c581defda6f49ff4076033c675d7127bfab6fd0bd0e6cf10696d0564" +dependencies = [ + "log", + "sp-core 38.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-wasm-interface 24.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "thiserror 1.0.69", +] + +[[package]] +name = "sc-allocator" +version = "34.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "log", - "sp-core", - "sp-wasm-interface 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "thiserror", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-wasm-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "thiserror 1.0.69", ] [[package]] name = "sc-authority-discovery" -version = "0.34.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.53.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c52dbd69664a2dfa7388faa4cf566dee3041bffe7fbea032f6117236806174d" dependencies = [ "async-trait", "futures", "futures-timer", "ip_network", - "libp2p", "linked_hash_set", "log", - "multihash 0.19.1", "parity-scale-codec", "prost 0.12.6", - "prost-build 0.12.6", - "rand", - "sc-client-api", - "sc-network", - "sc-network-types", - "sp-api", - "sp-authority-discovery", - "sp-blockchain", - "sp-core", - "sp-keystore", - "sp-runtime", - "substrate-prometheus-endpoint", - "thiserror", + "prost-build", + "rand 0.8.5", + "sc-client-api 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-network 0.53.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-network-types 0.19.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-service 0.54.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde", + "serde_json", + "sp-api 39.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-authority-discovery 39.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-blockchain 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-core 38.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-keystore 0.44.1 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-runtime 44.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "substrate-prometheus-endpoint 0.17.7 (registry+https://github.com/rust-lang/crates.io-index)", + "thiserror 1.0.69", + "tokio", ] [[package]] -name = "sc-basic-authorship" -version = "0.34.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +name = "sc-authority-discovery" +version = "0.53.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ + "async-trait", "futures", "futures-timer", + "ip_network", + "linked_hash_set", + "log", + "parity-scale-codec", + "prost 0.12.6", + "prost-build", + "rand 0.8.5", + "sc-client-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-network 0.53.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-network-types 0.19.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-service 0.54.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "serde", + "serde_json", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-authority-discovery 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-blockchain 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-keystore 0.44.1 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "substrate-prometheus-endpoint 0.17.7 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "thiserror 1.0.69", + "tokio", +] + +[[package]] +name = "sc-basic-authorship" +version = "0.52.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" +dependencies = [ + "futures", "log", "parity-scale-codec", - "sc-block-builder", + "sc-block-builder 0.47.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "sc-proposer-metrics", - "sc-telemetry", - "sc-transaction-pool-api", - "sp-api", - "sp-blockchain", - "sp-consensus", - "sp-core", - "sp-inherents", - "sp-runtime", - "substrate-prometheus-endpoint", + "sc-telemetry 30.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-transaction-pool-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-blockchain 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-inherents 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-trie 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "substrate-prometheus-endpoint 0.17.7 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", +] + +[[package]] +name = "sc-block-builder" +version = "0.47.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4d81a79f28855011b168fb61a3c500eb859a4a3a4cff5e5a644c2b88c7d328ae" +dependencies = [ + "parity-scale-codec", + "sp-api 39.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-block-builder 39.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-blockchain 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-core 38.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-inherents 39.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-runtime 44.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-trie 41.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "sc-block-builder" -version = "0.33.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.47.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "parity-scale-codec", - "sp-api", - "sp-block-builder", - "sp-blockchain", - "sp-core", - "sp-inherents", - "sp-runtime", - "sp-trie", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-block-builder 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-blockchain 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-inherents 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-trie 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "sc-chain-spec" -version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "46.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5962282c6d40861610814dac5159a99a5b4251d89269bb4e828ff766956f1833" +dependencies = [ + "array-bytes", + "docify", + "memmap2 0.9.9", + "parity-scale-codec", + "sc-chain-spec-derive 12.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-client-api 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-executor 0.45.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-network 0.53.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-telemetry 30.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde", + "serde_json", + "sp-blockchain 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-core 38.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-crypto-hashing 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-genesis-builder 0.20.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-io 43.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-runtime 44.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-state-machine 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-tracing 19.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "sc-chain-spec" +version = "46.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "array-bytes", "clap", "docify", - "log", - "memmap2 0.9.5", + "memmap2 0.9.9", "parity-scale-codec", - "sc-chain-spec-derive", - "sc-client-api", - "sc-executor", - "sc-network", - "sc-telemetry", + "sc-chain-spec-derive 12.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-client-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-executor 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-network 0.53.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-telemetry 30.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "serde", "serde_json", - "sp-blockchain", - "sp-core", - "sp-crypto-hashing", - "sp-genesis-builder", - "sp-io", - "sp-runtime", - "sp-state-machine", - "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", + "sp-blockchain 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-genesis-builder 0.20.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-state-machine 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-tracing 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "sc-chain-spec-derive" -version = "11.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "12.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b18cef11d2c69703e0d7c3528202ef4ed1cd2b47a6f063e9e17cad8255b1fa94" dependencies = [ - "proc-macro-crate 3.2.0", + "proc-macro-crate 3.4.0", "proc-macro2", "quote", - "syn 2.0.79", + "syn 2.0.110", ] [[package]] -name = "sc-cli" -version = "0.36.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +name = "sc-chain-spec-derive" +version = "12.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" +dependencies = [ + "proc-macro-crate 3.4.0", + "proc-macro2", + "quote", + "syn 2.0.110", +] + +[[package]] +name = "sc-cli" +version = "0.55.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f17d07f65d6f5839ce9c33a4f4545b3de0e596d1406a76271b0a5acda3db9a2d" +dependencies = [ + "array-bytes", + "chrono", + "clap", + "fdlimit", + "futures", + "itertools 0.11.0", + "libp2p-identity", + "log", + "names", + "parity-bip39", + "parity-scale-codec", + "rand 0.8.5", + "regex", + "rpassword", + "sc-client-api 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-client-db 0.49.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-keystore 38.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-mixnet 0.23.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-network 0.53.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-service 0.54.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-telemetry 30.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-tracing 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-transaction-pool 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-utils 20.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde", + "serde_json", + "sp-blockchain 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-core 38.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-keyring 44.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-keystore 0.44.1 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-panic-handler 13.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-runtime 44.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-version 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "thiserror 1.0.69", + "tokio", +] + +[[package]] +name = "sc-cli" +version = "0.55.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "array-bytes", "chrono", @@ -12812,62 +14582,118 @@ dependencies = [ "names", "parity-bip39", "parity-scale-codec", - "rand", + "rand 0.8.5", "regex", "rpassword", - "sc-client-api", - "sc-client-db", - "sc-keystore", - "sc-mixnet", - "sc-network", - "sc-service", - "sc-telemetry", - "sc-tracing", - "sc-utils", + "sc-client-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-client-db 0.49.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-keystore 38.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-mixnet 0.23.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-network 0.53.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-service 0.54.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-telemetry 30.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-tracing 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-transaction-pool 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-utils 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "serde", "serde_json", - "sp-blockchain", - "sp-core", - "sp-keyring", - "sp-keystore", - "sp-panic-handler", - "sp-runtime", - "sp-version", - "thiserror", + "sp-blockchain 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-keyring 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-keystore 0.44.1 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-panic-handler 13.0.2 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-version 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "thiserror 1.0.69", "tokio", ] [[package]] name = "sc-client-api" -version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "42.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6de05f4f496f2261981b7d293ff4f5ba804bdfa924bf0cd1b48252a8a7051913" +dependencies = [ + "fnv", + "futures", + "log", + "parity-scale-codec", + "parking_lot 0.12.5", + "sc-executor 0.45.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-transaction-pool-api 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-utils 20.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-api 39.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-blockchain 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-consensus 0.45.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-core 38.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-database 10.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-externalities 0.30.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-runtime 44.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-state-machine 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-storage 22.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-trie 41.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "substrate-prometheus-endpoint 0.17.7 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "sc-client-api" +version = "42.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "fnv", "futures", "log", "parity-scale-codec", - "parking_lot 0.12.3", - "sc-executor", - "sc-transaction-pool-api", - "sc-utils", - "sp-api", - "sp-blockchain", - "sp-consensus", - "sp-core", - "sp-database", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "sp-runtime", - "sp-state-machine", - "sp-statement-store", - "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "sp-trie", - "substrate-prometheus-endpoint", + "parking_lot 0.12.5", + "sc-executor 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-transaction-pool-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-utils 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-blockchain 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-database 10.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-externalities 0.30.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-state-machine 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-storage 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-trie 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "substrate-prometheus-endpoint 0.17.7 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "sc-client-db" -version = "0.35.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.49.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "78148f4eea0ef5d4ded572863412b65342545dfc3db0df658918025d7233165c" +dependencies = [ + "hash-db", + "kvdb", + "kvdb-memorydb", + "kvdb-rocksdb", + "linked-hash-map", + "log", + "parity-db", + "parity-scale-codec", + "parking_lot 0.12.5", + "sc-client-api 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-state-db 0.40.0 (registry+https://github.com/rust-lang/crates.io-index)", + "schnellru", + "sp-arithmetic 28.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-blockchain 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-core 38.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-database 10.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-runtime 44.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-state-machine 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-trie 41.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "substrate-prometheus-endpoint 0.17.7 (registry+https://github.com/rust-lang/crates.io-index)", + "sysinfo", +] + +[[package]] +name = "sc-client-db" +version = "0.49.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "hash-db", "kvdb", @@ -12877,267 +14703,345 @@ dependencies = [ "log", "parity-db", "parity-scale-codec", - "parking_lot 0.12.3", - "sc-client-api", - "sc-state-db", + "parking_lot 0.12.5", + "sc-client-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-state-db 0.40.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "schnellru", - "sp-arithmetic", - "sp-blockchain", - "sp-core", - "sp-database", - "sp-runtime", - "sp-state-machine", - "sp-trie", + "sp-arithmetic 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-blockchain 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-database 10.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-state-machine 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-trie 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "substrate-prometheus-endpoint 0.17.7 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sysinfo", +] + +[[package]] +name = "sc-consensus" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "470708846c4eb8cc85dd3ef7f2e918415dc29e0b0ec542aad704e732f4ff781f" +dependencies = [ + "async-trait", + "futures", + "log", + "mockall", + "parking_lot 0.12.5", + "sc-client-api 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-network-types 0.19.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-utils 20.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde", + "sp-blockchain 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-consensus 0.45.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-core 38.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-runtime 44.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-state-machine 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", + "substrate-prometheus-endpoint 0.17.7 (registry+https://github.com/rust-lang/crates.io-index)", + "thiserror 1.0.69", ] [[package]] name = "sc-consensus" -version = "0.33.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.52.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "async-trait", "futures", "log", - "mockall 0.11.4", - "parking_lot 0.12.3", - "sc-client-api", - "sc-network-types", - "sc-utils", + "mockall", + "parking_lot 0.12.5", + "sc-client-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-network-types 0.19.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-utils 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "serde", - "sp-api", - "sp-blockchain", - "sp-consensus", - "sp-core", - "sp-runtime", - "sp-state-machine", - "substrate-prometheus-endpoint", - "thiserror", + "sp-blockchain 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-state-machine 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "substrate-prometheus-endpoint 0.17.7 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "thiserror 1.0.69", ] [[package]] name = "sc-consensus-aura" -version = "0.34.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.53.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "async-trait", + "fork-tree 13.0.1 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "futures", "log", "parity-scale-codec", - "sc-block-builder", - "sc-client-api", - "sc-consensus", - "sc-consensus-slots", - "sc-telemetry", - "sp-api", - "sp-application-crypto", - "sp-block-builder", - "sp-blockchain", - "sp-consensus", - "sp-consensus-aura", - "sp-consensus-slots", - "sp-core", - "sp-inherents", - "sp-keystore", - "sp-runtime", - "substrate-prometheus-endpoint", - "thiserror", + "parking_lot 0.12.5", + "sc-block-builder 0.47.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-client-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-consensus 0.52.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-consensus-slots 0.52.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-telemetry 30.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-application-crypto 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-block-builder 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-blockchain 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus-aura 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus-slots 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-inherents 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-keystore 0.44.1 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "substrate-prometheus-endpoint 0.17.7 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "thiserror 1.0.69", ] [[package]] name = "sc-consensus-babe" -version = "0.34.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.53.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8d29de4dc7a0488d30c5cfe0ab08de840b120a61445def27f4e5a7a6b4ebe1e3" +dependencies = [ + "async-trait", + "fork-tree 13.0.1 (registry+https://github.com/rust-lang/crates.io-index)", + "futures", + "log", + "num-bigint", + "num-rational", + "num-traits", + "parity-scale-codec", + "parking_lot 0.12.5", + "sc-client-api 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-consensus 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-consensus-epochs 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-consensus-slots 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-telemetry 30.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-transaction-pool-api 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-api 39.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-application-crypto 43.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-block-builder 39.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-blockchain 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-consensus 0.45.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-consensus-babe 0.45.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-consensus-slots 0.45.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-core 38.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-crypto-hashing 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-inherents 39.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-keystore 0.44.1 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-runtime 44.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-timestamp 39.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "substrate-prometheus-endpoint 0.17.7 (registry+https://github.com/rust-lang/crates.io-index)", + "thiserror 1.0.69", +] + +[[package]] +name = "sc-consensus-babe" +version = "0.53.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "async-trait", - "fork-tree", + "fork-tree 13.0.1 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "futures", "log", "num-bigint", "num-rational", "num-traits", "parity-scale-codec", - "parking_lot 0.12.3", - "sc-client-api", - "sc-consensus", - "sc-consensus-epochs", - "sc-consensus-slots", - "sc-telemetry", - "sc-transaction-pool-api", - "sp-api", - "sp-application-crypto", - "sp-block-builder", - "sp-blockchain", - "sp-consensus", - "sp-consensus-babe", - "sp-consensus-slots", - "sp-core", - "sp-crypto-hashing", - "sp-inherents", - "sp-keystore", - "sp-runtime", - "substrate-prometheus-endpoint", - "thiserror", + "parking_lot 0.12.5", + "sc-client-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-consensus 0.52.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-consensus-epochs 0.52.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-consensus-slots 0.52.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-telemetry 30.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-transaction-pool-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-application-crypto 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-block-builder 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-blockchain 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus-babe 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus-slots 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-inherents 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-keystore 0.44.1 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-timestamp 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "substrate-prometheus-endpoint 0.17.7 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "thiserror 1.0.69", ] [[package]] name = "sc-consensus-babe-rpc" -version = "0.34.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.53.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "futures", "jsonrpsee", - "sc-consensus-babe", - "sc-consensus-epochs", - "sc-rpc-api", + "sc-consensus-babe 0.53.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-consensus-epochs 0.52.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-rpc-api 0.52.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "serde", - "sp-api", - "sp-application-crypto", - "sp-blockchain", - "sp-consensus", - "sp-consensus-babe", - "sp-core", - "sp-keystore", - "sp-runtime", - "thiserror", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-application-crypto 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-blockchain 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus-babe 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-keystore 0.44.1 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "thiserror 1.0.69", ] [[package]] name = "sc-consensus-beefy" -version = "13.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "32.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "array-bytes", "async-channel 1.9.0", "async-trait", - "fnv", "futures", "log", "parity-scale-codec", - "parking_lot 0.12.3", - "sc-client-api", - "sc-consensus", - "sc-network", + "parking_lot 0.12.5", + "sc-client-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-consensus 0.52.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-network 0.53.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "sc-network-gossip", - "sc-network-sync", - "sc-network-types", - "sc-utils", - "sp-api", - "sp-application-crypto", - "sp-arithmetic", - "sp-blockchain", - "sp-consensus", + "sc-network-sync 0.52.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-network-types 0.19.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-utils 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-application-crypto 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-arithmetic 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-blockchain 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "sp-consensus-beefy", - "sp-core", - "sp-crypto-hashing", - "sp-keystore", - "sp-runtime", - "substrate-prometheus-endpoint", - "thiserror", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-keystore 0.44.1 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "substrate-prometheus-endpoint 0.17.7 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "thiserror 1.0.69", "tokio", "wasm-timer", ] [[package]] name = "sc-consensus-beefy-rpc" -version = "13.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "32.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "futures", "jsonrpsee", "log", "parity-scale-codec", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "sc-consensus-beefy", - "sc-rpc", + "sc-rpc 48.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "serde", - "sp-application-crypto", + "sp-application-crypto 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "sp-consensus-beefy", - "sp-core", - "sp-runtime", - "thiserror", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "thiserror 1.0.69", +] + +[[package]] +name = "sc-consensus-epochs" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8861e4ec476860e73fc3cf09d012bb438de981309a6a4c55c8b7e82c793e6e6e" +dependencies = [ + "fork-tree 13.0.1 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec", + "sc-client-api 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-consensus 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-blockchain 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-runtime 44.0.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "sc-consensus-epochs" -version = "0.33.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.52.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "fork-tree", + "fork-tree 13.0.1 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "parity-scale-codec", - "sc-client-api", - "sc-consensus", - "sp-blockchain", - "sp-runtime", + "sc-client-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-consensus 0.52.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-blockchain 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "sc-consensus-grandpa" -version = "0.19.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.38.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "ahash 0.8.11", + "ahash", "array-bytes", "async-trait", "dyn-clone", "finality-grandpa", - "fork-tree", + "fork-tree 13.0.1 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "futures", "futures-timer", "log", "parity-scale-codec", - "parking_lot 0.12.3", - "rand", - "sc-block-builder", - "sc-chain-spec", - "sc-client-api", - "sc-consensus", - "sc-network", - "sc-network-common", + "parking_lot 0.12.5", + "rand 0.8.5", + "sc-block-builder 0.47.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-chain-spec 46.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-client-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-consensus 0.52.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-network 0.53.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-network-common 0.51.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "sc-network-gossip", - "sc-network-sync", - "sc-network-types", - "sc-telemetry", - "sc-transaction-pool-api", - "sc-utils", + "sc-network-sync 0.52.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-network-types 0.19.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-telemetry 30.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-transaction-pool-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-utils 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "serde_json", - "sp-api", - "sp-application-crypto", - "sp-arithmetic", - "sp-blockchain", - "sp-consensus", - "sp-consensus-grandpa", - "sp-core", - "sp-crypto-hashing", - "sp-keystore", - "sp-runtime", - "substrate-prometheus-endpoint", - "thiserror", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-application-crypto 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-arithmetic 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-blockchain 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus-grandpa 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-keystore 0.44.1 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "substrate-prometheus-endpoint 0.17.7 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "thiserror 1.0.69", ] [[package]] name = "sc-consensus-grandpa-rpc" -version = "0.19.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.38.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "finality-grandpa", "futures", "jsonrpsee", "log", "parity-scale-codec", - "sc-client-api", + "sc-client-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "sc-consensus-grandpa", - "sc-rpc", + "sc-rpc 48.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "serde", - "sp-blockchain", - "sp-core", - "sp-runtime", - "thiserror", + "sp-blockchain 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "thiserror 1.0.69", ] [[package]] name = "sc-consensus-manual-seal" -version = "0.35.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.54.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "assert_matches", "async-trait", @@ -13146,177 +15050,326 @@ dependencies = [ "jsonrpsee", "log", "parity-scale-codec", - "sc-client-api", - "sc-consensus", + "sc-client-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-consensus 0.52.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "sc-consensus-aura", - "sc-consensus-babe", - "sc-consensus-epochs", - "sc-transaction-pool", - "sc-transaction-pool-api", + "sc-consensus-babe 0.53.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-consensus-epochs 0.52.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-transaction-pool 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-transaction-pool-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "serde", - "sp-api", - "sp-blockchain", - "sp-consensus", - "sp-consensus-aura", - "sp-consensus-babe", - "sp-consensus-slots", - "sp-core", - "sp-inherents", - "sp-keystore", - "sp-runtime", - "sp-timestamp", - "substrate-prometheus-endpoint", - "thiserror", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-blockchain 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus-aura 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus-babe 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus-slots 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-inherents 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-keystore 0.44.1 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-timestamp 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "substrate-prometheus-endpoint 0.17.7 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "thiserror 1.0.69", ] [[package]] name = "sc-consensus-pow" -version = "0.33.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.52.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "async-trait", "futures", "futures-timer", "log", "parity-scale-codec", - "parking_lot 0.12.3", - "sc-client-api", - "sc-consensus", - "sp-api", - "sp-block-builder", - "sp-blockchain", - "sp-consensus", + "parking_lot 0.12.5", + "sc-client-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-consensus 0.52.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-block-builder 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-blockchain 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "sp-consensus-pow", - "sp-core", - "sp-inherents", - "sp-runtime", - "substrate-prometheus-endpoint", - "thiserror", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-inherents 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "substrate-prometheus-endpoint 0.17.7 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "thiserror 1.0.69", +] + +[[package]] +name = "sc-consensus-slots" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "680d3718ab107dcfe743aa50464ed206a6a2a55013636c271bb31be5990792fa" +dependencies = [ + "async-trait", + "futures", + "futures-timer", + "log", + "parity-scale-codec", + "sc-client-api 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-consensus 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-telemetry 30.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-arithmetic 28.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-blockchain 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-consensus 0.45.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-consensus-slots 0.45.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-core 38.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-inherents 39.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-runtime 44.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-state-machine 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "sc-consensus-slots" -version = "0.33.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.52.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "async-trait", "futures", "futures-timer", "log", "parity-scale-codec", - "sc-client-api", - "sc-consensus", - "sc-telemetry", - "sp-arithmetic", - "sp-blockchain", - "sp-consensus", - "sp-consensus-slots", - "sp-core", - "sp-inherents", - "sp-runtime", - "sp-state-machine", + "sc-client-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-consensus 0.52.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-telemetry 30.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-arithmetic 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-blockchain 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus-slots 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-inherents 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-state-machine 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", +] + +[[package]] +name = "sc-executor" +version = "0.45.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f90511c3ab41be12af1ce88753de8993e0b8a5fc0453c0f48069ace06eb4a99d" +dependencies = [ + "parity-scale-codec", + "parking_lot 0.12.5", + "sc-executor-common 0.41.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-executor-polkavm 0.38.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-executor-wasmtime 0.41.0 (registry+https://github.com/rust-lang/crates.io-index)", + "schnellru", + "sp-api 39.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-core 38.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-externalities 0.30.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-io 43.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-panic-handler 13.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-runtime-interface 32.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-trie 41.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-version 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-wasm-interface 24.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "tracing", ] [[package]] name = "sc-executor" -version = "0.32.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.45.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "parity-scale-codec", - "parking_lot 0.12.3", - "sc-executor-common", - "sc-executor-polkavm", - "sc-executor-wasmtime", + "parking_lot 0.12.5", + "sc-executor-common 0.41.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-executor-polkavm 0.38.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-executor-wasmtime 0.41.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "schnellru", - "sp-api", - "sp-core", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "sp-io", - "sp-panic-handler", - "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "sp-trie", - "sp-version", - "sp-wasm-interface 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-externalities 0.30.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-panic-handler 13.0.2 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime-interface 32.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-trie 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-version 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-wasm-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "tracing", ] [[package]] name = "sc-executor-common" -version = "0.29.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.41.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d81bc77ad5df120ef1ffab877d71539aae878e916c0946a067e8d6b0508a7ea5" dependencies = [ - "polkavm 0.9.3", - "sc-allocator", - "sp-maybe-compressed-blob", - "sp-wasm-interface 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "thiserror", + "polkavm 0.26.0", + "sc-allocator 34.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-maybe-compressed-blob 11.0.1 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-wasm-interface 24.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "thiserror 1.0.69", + "wasm-instrument", +] + +[[package]] +name = "sc-executor-common" +version = "0.41.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" +dependencies = [ + "polkavm 0.26.0", + "sc-allocator 34.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-maybe-compressed-blob 11.0.1 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-wasm-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "thiserror 1.0.69", "wasm-instrument", ] [[package]] name = "sc-executor-polkavm" -version = "0.29.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.38.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8976f310f09818f42ec389e727c91c0a75a8c363a29e3ac97d56492d83fc144f" +dependencies = [ + "log", + "polkavm 0.26.0", + "sc-executor-common 0.41.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-wasm-interface 24.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "sc-executor-polkavm" +version = "0.38.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "log", - "polkavm 0.9.3", - "sc-executor-common", - "sp-wasm-interface 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", + "polkavm 0.26.0", + "sc-executor-common 0.41.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-wasm-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "sc-executor-wasmtime" -version = "0.29.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.41.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0f8f9b2a912f0cb435d2b8e33d67010e494b07f5c6e497d8756a8c21abad199e" +dependencies = [ + "anyhow", + "log", + "parking_lot 0.12.5", + "rustix 1.1.2", + "sc-allocator 34.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-executor-common 0.41.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-runtime-interface 32.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-wasm-interface 24.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "wasmtime", +] + +[[package]] +name = "sc-executor-wasmtime" +version = "0.41.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "anyhow", - "cfg-if", - "libc", "log", - "parking_lot 0.12.3", - "rustix 0.36.17", - "sc-allocator", - "sc-executor-common", - "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "sp-wasm-interface 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", + "parking_lot 0.12.5", + "rustix 1.1.2", + "sc-allocator 34.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-executor-common 0.41.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime-interface 32.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-wasm-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "wasmtime", ] [[package]] name = "sc-informant" -version = "0.33.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ddbcae1d832fedd0f864a3e250ba6e83dc3c8875b2526d7267fe436361e6396" +dependencies = [ + "console", + "futures", + "futures-timer", + "log", + "sc-client-api 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-network 0.53.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-network-sync 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-blockchain 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-runtime 44.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "sc-informant" +version = "0.52.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "console", "futures", "futures-timer", "log", - "sc-client-api", - "sc-network", - "sc-network-common", - "sc-network-sync", - "sp-blockchain", - "sp-runtime", + "sc-client-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-network 0.53.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-network-sync 0.52.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-blockchain 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "sc-keystore" -version = "25.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "38.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "15f2ffb3040ccd2254e07fac22d4f698b174ae59d663a731ecfe8abee6491325" +dependencies = [ + "array-bytes", + "parking_lot 0.12.5", + "serde_json", + "sp-application-crypto 43.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-core 38.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-keystore 0.44.1 (registry+https://github.com/rust-lang/crates.io-index)", + "thiserror 1.0.69", +] + +[[package]] +name = "sc-keystore" +version = "38.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "array-bytes", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "serde_json", - "sp-application-crypto", - "sp-core", - "sp-keystore", - "thiserror", + "sp-application-crypto 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-keystore 0.44.1 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "thiserror 1.0.69", ] [[package]] name = "sc-mixnet" -version = "0.4.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.23.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1b586e93203557123bb7136233aecec5311e5b4e2246743d819cda19056007bc" +dependencies = [ + "array-bytes", + "arrayvec 0.7.6", + "blake2 0.10.6", + "bytes", + "futures", + "futures-timer", + "log", + "mixnet", + "parity-scale-codec", + "parking_lot 0.12.5", + "sc-client-api 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-network 0.53.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-network-types 0.19.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-transaction-pool-api 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-api 39.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-consensus 0.45.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-core 38.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-keystore 0.44.1 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-mixnet 0.17.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-runtime 44.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "thiserror 1.0.69", +] + +[[package]] +name = "sc-mixnet" +version = "0.23.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "array-bytes", "arrayvec 0.7.6", @@ -13326,31 +15379,31 @@ dependencies = [ "futures-timer", "log", "mixnet", - "multiaddr 0.18.2", "parity-scale-codec", - "parking_lot 0.12.3", - "sc-client-api", - "sc-network", - "sc-network-types", - "sc-transaction-pool-api", - "sp-api", - "sp-consensus", - "sp-core", - "sp-keystore", - "sp-mixnet", - "sp-runtime", - "thiserror", + "parking_lot 0.12.5", + "sc-client-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-network 0.53.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-network-types 0.19.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-transaction-pool-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-keystore 0.44.1 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-mixnet 0.17.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "thiserror 1.0.69", ] [[package]] name = "sc-network" -version = "0.34.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.53.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cc739c9acba911caecaae0a299650491fe6a837ab14d216a1f6c1987dfb6ef28" dependencies = [ "array-bytes", "async-channel 1.9.0", "async-trait", - "asynchronous-codec", + "asynchronous-codec 0.6.2", "bytes", "cid 0.9.0", "either", @@ -13362,29 +15415,28 @@ dependencies = [ "linked_hash_set", "litep2p", "log", - "mockall 0.11.4", - "once_cell", + "mockall", "parity-scale-codec", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "partial_sort", "pin-project", "prost 0.12.6", - "prost-build 0.12.6", - "rand", - "sc-client-api", - "sc-network-common", - "sc-network-types", - "sc-utils", + "prost-build", + "rand 0.8.5", + "sc-client-api 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-network-common 0.51.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-network-types 0.19.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-utils 20.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "schnellru", "serde", "serde_json", "smallvec", - "sp-arithmetic", - "sp-blockchain", - "sp-core", - "sp-runtime", - "substrate-prometheus-endpoint", - "thiserror", + "sp-arithmetic 28.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-blockchain 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-core 38.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-runtime 44.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "substrate-prometheus-endpoint 0.17.7 (registry+https://github.com/rust-lang/crates.io-index)", + "thiserror 1.0.69", "tokio", "tokio-stream", "unsigned-varint 0.7.2", @@ -13394,46 +15446,100 @@ dependencies = [ ] [[package]] -name = "sc-network-common" -version = "0.33.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +name = "sc-network" +version = "0.53.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ + "array-bytes", + "async-channel 1.9.0", "async-trait", - "bitflags 1.3.2", + "asynchronous-codec 0.6.2", + "bytes", + "cid 0.9.0", + "either", + "fnv", "futures", - "libp2p-identity", + "futures-timer", + "ip_network", + "libp2p", + "linked_hash_set", + "litep2p", + "log", + "mockall", + "parity-scale-codec", + "parking_lot 0.12.5", + "partial_sort", + "pin-project", + "prost 0.12.6", + "prost-build", + "rand 0.8.5", + "sc-client-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-network-common 0.51.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-network-types 0.19.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-utils 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "schnellru", + "serde", + "serde_json", + "smallvec", + "sp-arithmetic 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-blockchain 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "substrate-prometheus-endpoint 0.17.7 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "thiserror 1.0.69", + "tokio", + "tokio-stream", + "unsigned-varint 0.7.2", + "void", + "wasm-timer", + "zeroize", +] + +[[package]] +name = "sc-network-common" +version = "0.51.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7419cbc4a107ec4f430b263408db1527f2ce5fd6ed136c279f22057d3d202965" +dependencies = [ + "bitflags 1.3.2", + "parity-scale-codec", + "sp-runtime 44.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "sc-network-common" +version = "0.51.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" +dependencies = [ + "bitflags 1.3.2", "parity-scale-codec", - "prost-build 0.12.6", - "sc-consensus", - "sc-network-types", - "sp-consensus", - "sp-consensus-grandpa", - "sp-runtime", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "sc-network-gossip" -version = "0.34.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.53.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "ahash 0.8.11", + "ahash", "futures", "futures-timer", "log", - "sc-network", - "sc-network-common", - "sc-network-sync", - "sc-network-types", + "sc-network 0.53.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-network-common 0.51.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-network-sync 0.52.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-network-types 0.19.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "schnellru", - "sp-runtime", - "substrate-prometheus-endpoint", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "substrate-prometheus-endpoint 0.17.7 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "tracing", ] [[package]] name = "sc-network-light" -version = "0.33.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4d27e1754a93d142ea2964fbea592a2d1d2dc376c9912b5c8e654f8996e2ba50" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -13441,222 +15547,403 @@ dependencies = [ "log", "parity-scale-codec", "prost 0.12.6", - "prost-build 0.12.6", - "sc-client-api", - "sc-network", - "sc-network-types", - "sp-blockchain", - "sp-core", - "sp-runtime", - "thiserror", + "prost-build", + "sc-client-api 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-network 0.53.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-network-types 0.19.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-blockchain 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-core 38.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-runtime 44.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "thiserror 1.0.69", ] [[package]] -name = "sc-network-statement" -version = "0.16.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +name = "sc-network-light" +version = "0.52.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "array-bytes", "async-channel 1.9.0", "futures", "log", "parity-scale-codec", - "sc-network", - "sc-network-common", - "sc-network-sync", - "sc-network-types", - "sp-consensus", - "sp-runtime", - "sp-statement-store", - "substrate-prometheus-endpoint", + "prost 0.12.6", + "prost-build", + "sc-client-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-network 0.53.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-network-types 0.19.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-blockchain 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "thiserror 1.0.69", ] [[package]] -name = "sc-network-sync" -version = "0.33.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +name = "sc-network-statement" +version = "0.35.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "array-bytes", "async-channel 1.9.0", - "async-trait", - "fork-tree", "futures", - "futures-timer", "log", - "mockall 0.11.4", "parity-scale-codec", - "prost 0.12.6", - "prost-build 0.12.6", - "sc-client-api", - "sc-consensus", - "sc-network", - "sc-network-common", - "sc-network-types", - "sc-utils", - "schnellru", - "smallvec", - "sp-arithmetic", - "sp-blockchain", - "sp-consensus", - "sp-consensus-grandpa", - "sp-core", - "sp-runtime", - "substrate-prometheus-endpoint", - "thiserror", - "tokio", - "tokio-stream", + "sc-network 0.53.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-network-common 0.51.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-network-sync 0.52.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-network-types 0.19.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-statement-store 23.0.0", + "substrate-prometheus-endpoint 0.17.7 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", +] + +[[package]] +name = "sc-network-sync" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d12343c442cff18f6d85a22a0ca66844f0b740ca96f534966e3546c7f85b51d0" +dependencies = [ + "array-bytes", + "async-channel 1.9.0", + "async-trait", + "fork-tree 13.0.1 (registry+https://github.com/rust-lang/crates.io-index)", + "futures", + "log", + "mockall", + "parity-scale-codec", + "prost 0.12.6", + "prost-build", + "sc-client-api 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-consensus 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-network 0.53.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-network-common 0.51.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-network-types 0.19.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-utils 20.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "schnellru", + "smallvec", + "sp-arithmetic 28.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-blockchain 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-consensus 0.45.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-consensus-grandpa 26.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-core 38.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-runtime 44.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "substrate-prometheus-endpoint 0.17.7 (registry+https://github.com/rust-lang/crates.io-index)", + "thiserror 1.0.69", + "tokio", + "tokio-stream", +] + +[[package]] +name = "sc-network-sync" +version = "0.52.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" +dependencies = [ + "array-bytes", + "async-channel 1.9.0", + "async-trait", + "fork-tree 13.0.1 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "futures", + "log", + "mockall", + "parity-scale-codec", + "prost 0.12.6", + "prost-build", + "sc-client-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-consensus 0.52.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-network 0.53.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-network-common 0.51.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-network-types 0.19.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-utils 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "schnellru", + "smallvec", + "sp-arithmetic 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-blockchain 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus-grandpa 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "substrate-prometheus-endpoint 0.17.7 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "thiserror 1.0.69", + "tokio", + "tokio-stream", +] + +[[package]] +name = "sc-network-transactions" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "79e23417e2afff59fb960df9b2ac50b18f62e30dafe3764cadd4bff587b5c043" +dependencies = [ + "array-bytes", + "futures", + "log", + "parity-scale-codec", + "sc-network 0.53.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-network-common 0.51.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-network-sync 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-network-types 0.19.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-utils 20.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-consensus 0.45.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-runtime 44.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "substrate-prometheus-endpoint 0.17.7 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "sc-network-transactions" -version = "0.33.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.52.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "array-bytes", "futures", "log", "parity-scale-codec", - "sc-network", - "sc-network-common", - "sc-network-sync", - "sc-network-types", - "sc-utils", - "sp-consensus", - "sp-runtime", - "substrate-prometheus-endpoint", + "sc-network 0.53.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-network-common 0.51.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-network-sync 0.52.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-network-types 0.19.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-utils 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "substrate-prometheus-endpoint 0.17.7 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "sc-network-types" -version = "0.10.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.19.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "79011e96426caf5240631af9c4d0f841a752ee2be606d782406745e76b1123dd" dependencies = [ "bs58", + "bytes", "ed25519-dalek", "libp2p-identity", + "libp2p-kad", "litep2p", "log", "multiaddr 0.18.2", - "multihash 0.19.1", - "rand", - "thiserror", + "multihash 0.19.3", + "rand 0.8.5", + "serde", + "serde_with", + "thiserror 1.0.69", + "zeroize", +] + +[[package]] +name = "sc-network-types" +version = "0.19.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" +dependencies = [ + "bs58", + "bytes", + "ed25519-dalek", + "libp2p-identity", + "libp2p-kad", + "litep2p", + "log", + "multiaddr 0.18.2", + "multihash 0.19.3", + "rand 0.8.5", + "serde", + "serde_with", + "thiserror 1.0.69", "zeroize", ] [[package]] name = "sc-offchain" -version = "29.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "48.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "array-bytes", "bytes", "fnv", "futures", "futures-timer", - "hyper 0.14.30", - "hyper-rustls 0.24.2", - "log", + "http-body-util", + "hyper 1.7.0", + "hyper-rustls", + "hyper-util", "num_cpus", "once_cell", "parity-scale-codec", - "parking_lot 0.12.3", - "rand", - "sc-client-api", - "sc-network", - "sc-network-common", - "sc-network-types", - "sc-transaction-pool-api", - "sc-utils", - "sp-api", - "sp-core", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "sp-keystore", - "sp-offchain", - "sp-runtime", + "parking_lot 0.12.5", + "rand 0.8.5", + "rustls", + "sc-client-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-network 0.53.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-network-types 0.19.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-transaction-pool-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-utils 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-externalities 0.30.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-keystore 0.44.1 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-offchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "threadpool", "tracing", ] [[package]] name = "sc-proposer-metrics" -version = "0.17.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.20.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "log", - "substrate-prometheus-endpoint", + "substrate-prometheus-endpoint 0.17.7 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "sc-rpc" -version = "29.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "48.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cabe7a8a3d041631a384f2d1a7c813d8ccd0690a292ac4fc6faad04d3b67418b" dependencies = [ "futures", "jsonrpsee", "log", "parity-scale-codec", - "parking_lot 0.12.3", - "sc-block-builder", - "sc-chain-spec", - "sc-client-api", - "sc-mixnet", - "sc-rpc-api", - "sc-tracing", - "sc-transaction-pool-api", - "sc-utils", + "parking_lot 0.12.5", + "sc-block-builder 0.47.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-chain-spec 46.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-client-api 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-mixnet 0.23.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-rpc-api 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-tracing 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-transaction-pool-api 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-utils 20.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json", - "sp-api", - "sp-blockchain", - "sp-core", - "sp-keystore", - "sp-offchain", - "sp-rpc", - "sp-runtime", - "sp-session", - "sp-statement-store", - "sp-version", + "sp-api 39.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-blockchain 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-core 38.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-keystore 0.44.1 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-offchain 39.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-rpc 36.0.1 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-runtime 44.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-session 41.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-statement-store 23.1.0", + "sp-version 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio", +] + +[[package]] +name = "sc-rpc" +version = "48.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" +dependencies = [ + "futures", + "jsonrpsee", + "log", + "parity-scale-codec", + "parking_lot 0.12.5", + "sc-block-builder 0.47.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-chain-spec 46.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-client-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-mixnet 0.23.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-rpc-api 0.52.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-tracing 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-transaction-pool-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-utils 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "serde_json", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-blockchain 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-keystore 0.44.1 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-offchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-rpc 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-session 41.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-statement-store 23.0.0", + "sp-version 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "tokio", ] [[package]] name = "sc-rpc-api" -version = "0.33.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0167058bbfc5d591c4ce3a1c21163850f68211aa4bebe6c2a37af5103f02a5e1" dependencies = [ "jsonrpsee", "parity-scale-codec", - "sc-chain-spec", - "sc-mixnet", - "sc-transaction-pool-api", + "sc-chain-spec 46.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-mixnet 0.23.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-transaction-pool-api 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "scale-info", "serde", "serde_json", - "sp-core", - "sp-rpc", - "sp-runtime", - "sp-version", - "thiserror", + "sp-core 38.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-rpc 36.0.1 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-runtime 44.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-version 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "thiserror 1.0.69", +] + +[[package]] +name = "sc-rpc-api" +version = "0.52.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" +dependencies = [ + "jsonrpsee", + "parity-scale-codec", + "sc-chain-spec 46.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-mixnet 0.23.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-transaction-pool-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "scale-info", + "serde", + "serde_json", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-rpc 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-version 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "thiserror 1.0.69", ] [[package]] name = "sc-rpc-server" -version = "11.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "25.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "af85bde600ef65741a53538d6e3ec3b8cfd00b0d50506d010db1cfe47fd3b964" dependencies = [ "dyn-clone", "forwarded-header-value", "futures", "governor", - "http 1.1.0", + "http 1.3.1", "http-body-util", - "hyper 1.4.1", + "hyper 1.7.0", "ip_network", "jsonrpsee", "log", - "sc-rpc-api", + "sc-rpc-api 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde", "serde_json", - "substrate-prometheus-endpoint", + "substrate-prometheus-endpoint 0.17.7 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio", + "tower", + "tower-http", +] + +[[package]] +name = "sc-rpc-server" +version = "25.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" +dependencies = [ + "dyn-clone", + "forwarded-header-value", + "futures", + "governor", + "http 1.3.1", + "http-body-util", + "hyper 1.7.0", + "ip_network", + "jsonrpsee", + "log", + "sc-rpc-api 0.52.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "serde", + "serde_json", + "substrate-prometheus-endpoint 0.17.7 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "tokio", "tower", "tower-http", @@ -13664,40 +15951,155 @@ dependencies = [ [[package]] name = "sc-rpc-spec-v2" -version = "0.34.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.53.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "31f56b08ce10f63bf318ccc184e981adee1b9b36e5c2f29fed9e450213f9851a" dependencies = [ "array-bytes", "futures", "futures-util", "hex", + "itertools 0.11.0", "jsonrpsee", "log", "parity-scale-codec", - "parking_lot 0.12.3", - "rand", - "sc-chain-spec", - "sc-client-api", - "sc-rpc", - "sc-transaction-pool-api", - "sc-utils", + "parking_lot 0.12.5", + "rand 0.8.5", + "sc-chain-spec 46.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-client-api 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-rpc 48.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-transaction-pool-api 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "schnellru", "serde", - "sp-api", - "sp-blockchain", - "sp-core", - "sp-rpc", - "sp-runtime", - "sp-version", - "thiserror", + "sp-api 39.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-blockchain 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-core 38.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-rpc 36.0.1 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-runtime 44.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-version 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "substrate-prometheus-endpoint 0.17.7 (registry+https://github.com/rust-lang/crates.io-index)", + "thiserror 1.0.69", "tokio", "tokio-stream", ] +[[package]] +name = "sc-rpc-spec-v2" +version = "0.53.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" +dependencies = [ + "array-bytes", + "futures", + "futures-util", + "hex", + "itertools 0.11.0", + "jsonrpsee", + "log", + "parity-scale-codec", + "parking_lot 0.12.5", + "rand 0.8.5", + "sc-chain-spec 46.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-client-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-rpc 48.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-transaction-pool-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "schnellru", + "serde", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-blockchain 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-rpc 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-version 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "substrate-prometheus-endpoint 0.17.7 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "thiserror 1.0.69", + "tokio", + "tokio-stream", +] + +[[package]] +name = "sc-runtime-utilities" +version = "0.5.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" +dependencies = [ + "parity-scale-codec", + "sc-executor 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-executor-common 0.41.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-state-machine 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-wasm-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "thiserror 1.0.69", +] + [[package]] name = "sc-service" -version = "0.35.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.54.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0636b527a7bf0ffdb55f0369897a8fccb320c9586f25097774cb0be0b86ee24e" +dependencies = [ + "async-trait", + "directories", + "exit-future", + "futures", + "futures-timer", + "jsonrpsee", + "log", + "parity-scale-codec", + "parking_lot 0.12.5", + "pin-project", + "rand 0.8.5", + "sc-chain-spec 46.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-client-api 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-client-db 0.49.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-consensus 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-executor 0.45.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-informant 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-keystore 38.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-network 0.53.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-network-common 0.51.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-network-light 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-network-sync 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-network-transactions 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-network-types 0.19.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-rpc 48.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-rpc-server 25.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-rpc-spec-v2 0.53.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-sysinfo 45.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-telemetry 30.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-tracing 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-transaction-pool 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-transaction-pool-api 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-utils 20.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "schnellru", + "serde", + "serde_json", + "sp-api 39.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-blockchain 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-consensus 0.45.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-core 38.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-externalities 0.30.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-keystore 0.44.1 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-runtime 44.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-session 41.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-state-machine 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-storage 22.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-transaction-pool 39.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-transaction-storage-proof 39.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-trie 41.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-version 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "static_init", + "substrate-prometheus-endpoint 0.17.7 (registry+https://github.com/rust-lang/crates.io-index)", + "tempfile", + "thiserror 1.0.69", + "tokio", + "tracing", + "tracing-futures", +] + +[[package]] +name = "sc-service" +version = "0.54.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "async-trait", "directories", @@ -13707,52 +16109,52 @@ dependencies = [ "jsonrpsee", "log", "parity-scale-codec", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "pin-project", - "rand", - "sc-chain-spec", - "sc-client-api", - "sc-client-db", - "sc-consensus", - "sc-executor", - "sc-informant", - "sc-keystore", - "sc-network", - "sc-network-common", - "sc-network-light", - "sc-network-sync", - "sc-network-transactions", - "sc-network-types", - "sc-rpc", - "sc-rpc-server", - "sc-rpc-spec-v2", - "sc-sysinfo", - "sc-telemetry", - "sc-tracing", - "sc-transaction-pool", - "sc-transaction-pool-api", - "sc-utils", + "rand 0.8.5", + "sc-chain-spec 46.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-client-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-client-db 0.49.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-consensus 0.52.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-executor 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-informant 0.52.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-keystore 38.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-network 0.53.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-network-common 0.51.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-network-light 0.52.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-network-sync 0.52.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-network-transactions 0.52.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-network-types 0.19.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-rpc 48.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-rpc-server 25.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-rpc-spec-v2 0.53.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-sysinfo 45.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-telemetry 30.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-tracing 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-transaction-pool 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-transaction-pool-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-utils 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "schnellru", "serde", "serde_json", - "sp-api", - "sp-blockchain", - "sp-consensus", - "sp-core", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "sp-keystore", - "sp-runtime", - "sp-session", - "sp-state-machine", - "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "sp-transaction-pool", - "sp-transaction-storage-proof", - "sp-trie", - "sp-version", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-blockchain 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-externalities 0.30.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-keystore 0.44.1 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-session 41.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-state-machine 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-storage 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-transaction-pool 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-transaction-storage-proof 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-trie 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-version 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "static_init", - "substrate-prometheus-endpoint", + "substrate-prometheus-endpoint 0.17.7 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "tempfile", - "thiserror", + "thiserror 1.0.69", "tokio", "tracing", "tracing-futures", @@ -13760,111 +16162,163 @@ dependencies = [ [[package]] name = "sc-state-db" -version = "0.30.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.40.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "34f19abd85a7a55412f17e7a3da319e42816532c2a07eb94abcec0232a896edf" +dependencies = [ + "log", + "parity-scale-codec", + "parking_lot 0.12.5", + "sp-core 38.1.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "sc-state-db" +version = "0.40.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "log", "parity-scale-codec", - "parking_lot 0.12.3", - "sp-core", + "parking_lot 0.12.5", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "sc-statement-store" -version = "10.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "24.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "log", "parity-db", - "parking_lot 0.12.3", - "sc-client-api", - "sc-keystore", - "sp-api", - "sp-blockchain", - "sp-core", - "sp-runtime", - "sp-statement-store", - "substrate-prometheus-endpoint", + "parking_lot 0.12.5", + "sc-client-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-keystore 38.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-blockchain 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-statement-store 23.0.0", + "substrate-prometheus-endpoint 0.17.7 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "tokio", ] [[package]] name = "sc-storage-monitor" -version = "0.16.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.26.1" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "clap", "fs4", "log", - "sp-core", - "thiserror", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "thiserror 1.0.69", "tokio", ] [[package]] name = "sc-sync-state-rpc" -version = "0.34.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.53.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "jsonrpsee", "parity-scale-codec", - "sc-chain-spec", - "sc-client-api", - "sc-consensus-babe", - "sc-consensus-epochs", + "sc-chain-spec 46.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-client-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-consensus-babe 0.53.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-consensus-epochs 0.52.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "sc-consensus-grandpa", "serde", "serde_json", - "sp-blockchain", - "sp-runtime", - "thiserror", + "sp-blockchain 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "thiserror 1.0.69", ] [[package]] name = "sc-sysinfo" -version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "45.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dd60cbd7c08795abcb5ad7a4c1e66ec4a806b46e0694050ad7795ba820e704b8" dependencies = [ - "derive_more", + "derive_more 0.99.20", "futures", "libc", "log", - "rand", + "rand 0.8.5", "rand_pcg", "regex", - "sc-telemetry", + "sc-telemetry 30.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde", "serde_json", - "sp-core", - "sp-crypto-hashing", - "sp-io", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", + "sp-core 38.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-crypto-hashing 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-io 43.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "sc-sysinfo" +version = "45.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" +dependencies = [ + "derive_more 0.99.20", + "futures", + "libc", + "log", + "rand 0.8.5", + "rand_pcg", + "regex", + "sc-telemetry 30.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "serde", + "serde_json", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "sc-telemetry" -version = "15.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "30.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "661460d41cb14de3d8ad638bc34f9179eb2dd65791ccf71fa6dc0c572ad8100b" dependencies = [ "chrono", "futures", "libp2p", "log", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "pin-project", - "rand", - "sc-network", - "sc-utils", + "rand 0.8.5", + "sc-utils 20.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde", "serde_json", - "thiserror", + "thiserror 1.0.69", + "wasm-timer", +] + +[[package]] +name = "sc-telemetry" +version = "30.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" +dependencies = [ + "chrono", + "futures", + "libp2p", + "log", + "parking_lot 0.12.5", + "pin-project", + "rand 0.8.5", + "sc-utils 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "serde", + "serde_json", + "thiserror 1.0.69", "wasm-timer", ] [[package]] name = "sc-tracing" -version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "42.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0213a776a0bba6a836639859dfe67b4f64571fe282ee9e791072a578ebc7064b" dependencies = [ "chrono", "console", @@ -13872,100 +16326,277 @@ dependencies = [ "libc", "log", "parity-scale-codec", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "rustc-hash 1.1.0", - "sc-client-api", - "sc-tracing-proc-macro", + "sc-client-api 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-tracing-proc-macro 11.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde", - "sp-api", - "sp-blockchain", - "sp-core", - "sp-rpc", - "sp-runtime", - "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "thiserror", + "sp-api 39.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-blockchain 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-core 38.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-rpc 36.0.1 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-runtime 44.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-tracing 19.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "thiserror 1.0.69", "tracing", "tracing-log", - "tracing-subscriber", + "tracing-subscriber 0.3.20", +] + +[[package]] +name = "sc-tracing" +version = "42.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" +dependencies = [ + "chrono", + "console", + "is-terminal", + "libc", + "log", + "parity-scale-codec", + "parking_lot 0.12.5", + "rustc-hash 1.1.0", + "sc-client-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-tracing-proc-macro 11.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "serde", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-blockchain 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-rpc 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-tracing 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "thiserror 1.0.69", + "tracing", + "tracing-log", + "tracing-subscriber 0.3.20", ] [[package]] name = "sc-tracing-proc-macro" -version = "11.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "11.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fb090b3a15c077b029619476b682ba8a31f391ee3f0b2c5f3f24366f53f6c538" +dependencies = [ + "proc-macro-crate 3.4.0", + "proc-macro2", + "quote", + "syn 2.0.110", +] + +[[package]] +name = "sc-tracing-proc-macro" +version = "11.1.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "proc-macro-crate 3.2.0", + "proc-macro-crate 3.4.0", "proc-macro2", "quote", - "syn 2.0.79", + "syn 2.0.110", ] [[package]] name = "sc-transaction-pool" -version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "42.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "43e4dece9047f64d67107a293360f8dd31ea8517c8b92481be3b39f3a087fca2" dependencies = [ "async-trait", "futures", "futures-timer", + "indexmap 2.12.0", + "itertools 0.11.0", "linked-hash-map", + "parity-scale-codec", + "parking_lot 0.12.5", + "sc-client-api 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-transaction-pool-api 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-utils 20.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde", + "sp-api 39.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-blockchain 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-core 38.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-crypto-hashing 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-runtime 44.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-tracing 19.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-transaction-pool 39.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "substrate-prometheus-endpoint 0.17.7 (registry+https://github.com/rust-lang/crates.io-index)", + "thiserror 1.0.69", + "tokio", + "tokio-stream", + "tracing", +] + +[[package]] +name = "sc-transaction-pool" +version = "42.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" +dependencies = [ + "async-trait", + "futures", + "futures-timer", + "indexmap 2.12.0", + "itertools 0.11.0", + "linked-hash-map", + "parity-scale-codec", + "parking_lot 0.12.5", + "sc-client-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-transaction-pool-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-utils 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "serde", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-blockchain 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-tracing 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-transaction-pool 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "substrate-prometheus-endpoint 0.17.7 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "thiserror 1.0.69", + "tokio", + "tokio-stream", + "tracing", +] + +[[package]] +name = "sc-transaction-pool-api" +version = "42.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7a04c8e6a886fd4563be1cfe487af2f11280ea797298b8d831e1ee5a273cc17d" +dependencies = [ + "async-trait", + "futures", + "indexmap 2.12.0", "log", "parity-scale-codec", - "parking_lot 0.12.3", - "sc-client-api", - "sc-transaction-pool-api", - "sc-utils", "serde", - "sp-api", - "sp-blockchain", - "sp-core", - "sp-crypto-hashing", - "sp-runtime", - "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "sp-transaction-pool", - "substrate-prometheus-endpoint", - "thiserror", + "sp-blockchain 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-core 38.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-runtime 44.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "thiserror 1.0.69", ] [[package]] name = "sc-transaction-pool-api" -version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "42.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "async-trait", "futures", + "indexmap 2.12.0", "log", "parity-scale-codec", "serde", - "sp-blockchain", - "sp-core", - "sp-runtime", - "thiserror", + "sp-blockchain 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "thiserror 1.0.69", ] [[package]] name = "sc-utils" -version = "14.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "20.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d58dbfbc4408b0d210a6b7099c07caf02001e6975f62e316ea5b5c1f5c2108f4" +dependencies = [ + "async-channel 1.9.0", + "futures", + "futures-timer", + "log", + "parking_lot 0.12.5", + "prometheus", + "sp-arithmetic 28.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "sc-utils" +version = "20.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "async-channel 1.9.0", "futures", "futures-timer", "log", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "prometheus", - "sp-arithmetic", + "sp-arithmetic 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", +] + +[[package]] +name = "scale-bits" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "27243ab0d2d6235072b017839c5f0cd1a3b1ce45c0f7a715363b0c7d36c76c94" +dependencies = [ + "parity-scale-codec", + "scale-info", + "scale-type-resolver", + "serde", +] + +[[package]] +name = "scale-decode" +version = "0.16.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4d78196772d25b90a98046794ce0fe2588b39ebdfbdc1e45b4c6c85dd43bebad" +dependencies = [ + "parity-scale-codec", + "primitive-types 0.13.1", + "scale-bits", + "scale-decode-derive", + "scale-type-resolver", + "smallvec", + "thiserror 2.0.17", +] + +[[package]] +name = "scale-decode-derive" +version = "0.16.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2f4b54a1211260718b92832b661025d1f1a4b6930fbadd6908e00edd265fa5f7" +dependencies = [ + "darling 0.20.11", + "proc-macro2", + "quote", + "syn 2.0.110", +] + +[[package]] +name = "scale-encode" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "64901733157f9d25ef86843bd783eda439fac7efb0ad5a615d12d2cf3a29464b" +dependencies = [ + "parity-scale-codec", + "primitive-types 0.13.1", + "scale-bits", + "scale-encode-derive", + "scale-type-resolver", + "smallvec", + "thiserror 2.0.17", +] + +[[package]] +name = "scale-encode-derive" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "78a3993a13b4eafa89350604672c8757b7ea84c7c5947d4b3691e3169c96379b" +dependencies = [ + "darling 0.20.11", + "proc-macro-crate 3.4.0", + "proc-macro2", + "quote", + "syn 2.0.110", ] [[package]] name = "scale-info" -version = "2.11.3" +version = "2.11.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eca070c12893629e2cc820a9761bedf6ce1dcddc9852984d1dc734b8bd9bd024" +checksum = "346a3b32eba2640d17a9cb5927056b08f3de90f65b72fe09402c2ad07d684d0b" dependencies = [ "bitvec", "cfg-if", - "derive_more", + "derive_more 1.0.0", "parity-scale-codec", "scale-info-derive", "serde", @@ -13973,32 +16604,98 @@ dependencies = [ [[package]] name = "scale-info-derive" -version = "2.11.3" +version = "2.11.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2d35494501194174bda522a32605929eefc9ecf7e0a326c26db1fdd85881eb62" +checksum = "c6630024bf739e2179b91fb424b28898baf819414262c5d376677dbff1fe7ebf" dependencies = [ - "proc-macro-crate 3.2.0", + "proc-macro-crate 3.4.0", "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.110", +] + +[[package]] +name = "scale-type-resolver" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f0cded6518aa0bd6c1be2b88ac81bf7044992f0f154bfbabd5ad34f43512abcb" +dependencies = [ + "scale-info", + "smallvec", +] + +[[package]] +name = "scale-typegen" +version = "0.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "05c61b6b706a3eaad63b506ab50a1d2319f817ae01cf753adcc3f055f9f0fcd6" +dependencies = [ + "proc-macro2", + "quote", + "scale-info", + "syn 2.0.110", + "thiserror 2.0.17", +] + +[[package]] +name = "scale-value" +version = "0.18.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "884aab179aba344c67ddcd1d7dd8e3f8fee202f2e570d97ec34ec8688442a5b3" +dependencies = [ + "base58", + "blake2 0.10.6", + "either", + "parity-scale-codec", + "scale-bits", + "scale-decode", + "scale-encode", + "scale-type-resolver", + "serde", + "thiserror 2.0.17", + "yap", ] [[package]] name = "schannel" -version = "0.1.24" +version = "0.1.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e9aaafd5a2b6e3d657ff009d82fbd630b6bd54dd4eb06f21693925cdf80f9b8b" +checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1" dependencies = [ - "windows-sys 0.59.0", + "windows-sys 0.61.2", +] + +[[package]] +name = "schemars" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f" +dependencies = [ + "dyn-clone", + "ref-cast", + "serde", + "serde_json", +] + +[[package]] +name = "schemars" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9558e172d4e8533736ba97870c4b2cd63f84b382a3d6eb063da41b91cce17289" +dependencies = [ + "dyn-clone", + "ref-cast", + "serde", + "serde_json", ] [[package]] name = "schnellru" -version = "0.2.3" +version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c9a8ef13a93c54d20580de1e5c413e624e53121d42fc7e2c11d10ef7f8b02367" +checksum = "356285bbf17bea63d9e52e96bd18f039672ac92b55b8cb997d6162a2a37d1649" dependencies = [ - "ahash 0.8.11", + "ahash", "cfg-if", "hashbrown 0.13.2", ] @@ -14013,7 +16710,8 @@ dependencies = [ "arrayvec 0.7.6", "curve25519-dalek-ng", "merlin", - "rand_core", + "rand_core 0.6.4", + "serde_bytes", "sha2 0.9.9", "subtle-ng", "zeroize", @@ -14021,9 +16719,9 @@ dependencies = [ [[package]] name = "schnorrkel" -version = "0.11.4" +version = "0.11.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8de18f6d8ba0aad7045f5feae07ec29899c1112584a38509a84ad7b04451eaa0" +checksum = "6e9fcb6c2e176e86ec703e22560d99d65a5ee9056ae45a08e13e84ebf796296f" dependencies = [ "aead", "arrayref", @@ -14031,9 +16729,9 @@ dependencies = [ "curve25519-dalek", "getrandom_or_panic", "merlin", - "rand_core", + "rand_core 0.6.4", "serde_bytes", - "sha2 0.10.8", + "sha2 0.10.9", "subtle 2.6.1", "zeroize", ] @@ -14046,58 +16744,118 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" [[package]] name = "scratch" -version = "1.0.7" +version = "1.0.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d68f2ec51b097e4c1a75b681a8bec621909b5e91f15bb7b840c4f2f7b01148b2" + +[[package]] +name = "scrypt" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0516a385866c09368f0b5bcd1caff3366aace790fcd46e2bb032697bb172fd1f" +dependencies = [ + "password-hash", + "pbkdf2", + "salsa20", + "sha2 0.10.9", +] + +[[package]] +name = "sec1" +version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a3cf7c11c38cb994f3d40e8a8cde3bbd1f72a435e4c49e85d6553d8312306152" +checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc" +dependencies = [ + "base16ct", + "der", + "generic-array 0.14.9", + "pkcs8", + "serdect", + "subtle 2.6.1", + "zeroize", +] + +[[package]] +name = "seccompiler" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "345a3e4dddf721a478089d4697b83c6c0a8f5bf16086f6c13397e4534eb6e2e5" +dependencies = [ + "libc", +] + +[[package]] +name = "secp256k1" +version = "0.27.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "25996b82292a7a57ed3508f052cfff8640d38d32018784acd714758b43da9c8f" +dependencies = [ + "secp256k1-sys 0.8.2", +] + +[[package]] +name = "secp256k1" +version = "0.28.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d24b59d129cdadea20aea4fb2352fa053712e5d713eee47d700cd4b2bc002f10" +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 = "sct" -version = "0.7.1" +name = "secp256k1" +version = "0.31.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414" +checksum = "2c3c81b43dc2d8877c216a3fccf76677ee1ebccd429566d3e67447290d0c42b2" dependencies = [ - "ring 0.17.8", - "untrusted 0.9.0", + "bitcoin_hashes 0.14.0", + "rand 0.9.2", + "secp256k1-sys 0.11.0", ] [[package]] -name = "sec1" -version = "0.7.3" +name = "secp256k1-sys" +version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc" +checksum = "4473013577ec77b4ee3668179ef1186df3146e2cf2d927bd200974c6fe60fd99" dependencies = [ - "base16ct", - "der", - "generic-array 0.14.7", - "pkcs8", - "serdect", - "subtle 2.6.1", - "zeroize", + "cc", ] [[package]] -name = "seccompiler" -version = "0.4.0" +name = "secp256k1-sys" +version = "0.9.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "345a3e4dddf721a478089d4697b83c6c0a8f5bf16086f6c13397e4534eb6e2e5" +checksum = "e5d1746aae42c19d583c3c1a8c646bfad910498e2051c551a7f2e3c0c9fbb7eb" dependencies = [ - "libc", + "cc", ] [[package]] -name = "secp256k1" -version = "0.28.2" +name = "secp256k1-sys" +version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d24b59d129cdadea20aea4fb2352fa053712e5d713eee47d700cd4b2bc002f10" +checksum = "d4387882333d3aa8cb20530a17c69a3752e97837832f34f6dccc760e715001d9" dependencies = [ - "secp256k1-sys", + "cc", ] [[package]] name = "secp256k1-sys" -version = "0.9.2" +version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e5d1746aae42c19d583c3c1a8c646bfad910498e2051c551a7f2e3c0c9fbb7eb" +checksum = "dcb913707158fadaf0d8702c2db0e857de66eb003ccfdda5924b5f5ac98efb38" dependencies = [ "cc", ] @@ -14111,25 +16869,33 @@ 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" +version = "3.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02" +checksum = "b3297343eaf830f66ede390ea39da1d462b6b0c1b000f420d0a83f898bbbe6ef" dependencies = [ - "bitflags 2.6.0", - "core-foundation", + "bitflags 2.10.0", + "core-foundation 0.10.1", "core-foundation-sys", "libc", - "num-bigint", "security-framework-sys", ] [[package]] name = "security-framework-sys" -version = "2.12.0" +version = "2.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ea4a292869320c0272d7bc55a5a6aafaff59b4f63404a003887b679a2e05b4b6" +checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0" dependencies = [ "core-foundation-sys", "libc", @@ -14159,16 +16925,17 @@ version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f301af10236f6df4160f7c3f04eec6dbc70ace82d23326abad5edee88801c6b6" dependencies = [ - "semver-parser 0.10.2", + "semver-parser 0.10.3", ] [[package]] name = "semver" -version = "1.0.23" +version = "1.0.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b" +checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2" dependencies = [ "serde", + "serde_core", ] [[package]] @@ -14179,99 +16946,115 @@ checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" [[package]] name = "semver-parser" -version = "0.10.2" +version = "0.10.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "00b0bef5b7f9e0df16536d3961cfb6e84331c065b4066afb39768d0e319411f7" +checksum = "9900206b54a3527fdc7b8a938bffd94a568bac4f4aa8113b209df75a09c0dec2" dependencies = [ "pest", ] -[[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.210" +version = "1.0.228" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c8e3592472072e6e22e0a54d5904d9febf8508f65fb8552499a1abc7d1078c3a" +checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" dependencies = [ + "serde_core", "serde_derive", ] [[package]] -name = "serde-big-array" -version = "0.3.3" +name = "serde_bytes" +version = "0.11.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd31f59f6fe2b0c055371bb2f16d7f0aa7d8881676c04a55b1596d1a17cd10a4" +checksum = "a5d440709e79d88e51ac01c4b72fc6cb7314017bb7da9eeff678aa94c10e3ea8" dependencies = [ "serde", + "serde_core", ] [[package]] -name = "serde_bytes" -version = "0.11.15" +name = "serde_core" +version = "1.0.228" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "387cc504cb06bb40a96c8e04e951fe01854cf6bc921053c954e4a606d9675c6a" +checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" dependencies = [ - "serde", + "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.210" +version = "1.0.228" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "243902eda00fad750862fc144cea25caca5e20d615af0a81bee94ca738f1df1f" +checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" dependencies = [ "proc-macro2", "quote", - "syn 2.0.79", + "syn 2.0.110", ] [[package]] name = "serde_json" -version = "1.0.128" +version = "1.0.145" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6ff5456707a1de34e7e37f2a6fd3d3f808c318259cbd01ab6377795054b483d8" +checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c" dependencies = [ + "indexmap 2.12.0", "itoa", "memchr", "ryu", "serde", + "serde_core", ] [[package]] name = "serde_spanned" -version = "0.6.8" +version = "0.6.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "87607cb1398ed59d48732e575a4c28a7a8ebf2454b964fe3f224f2afc07909e1" +checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3" dependencies = [ "serde", ] [[package]] -name = "serdect" -version = "0.2.0" +name = "serde_with" +version = "3.15.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a84f14a19e9a014bb9f4512488d9829a68e04ecabffb0f9904cd1ace94598177" +checksum = "aa66c845eee442168b2c8134fec70ac50dc20e760769c8ba0ad1319ca1959b04" dependencies = [ - "base16ct", - "serde", + "base64", + "chrono", + "hex", + "indexmap 1.9.3", + "indexmap 2.12.0", + "schemars 0.9.0", + "schemars 1.1.0", + "serde_core", + "serde_json", + "serde_with_macros", + "time", ] [[package]] -name = "sha-1" -version = "0.9.8" +name = "serde_with_macros" +version = "3.15.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "99cd6713db3cf16b6c84e06321e049a9b9f699826e16096d23bbcc44d15d51a6" +checksum = "b91a903660542fced4e99881aa481bdbaec1634568ee02e0b8bd57c64cb38955" dependencies = [ - "block-buffer 0.9.0", - "cfg-if", - "cpufeatures", - "digest 0.9.0", - "opaque-debug 0.3.1", + "darling 0.21.3", + "proc-macro2", + "quote", + "syn 2.0.110", +] + +[[package]] +name = "serdect" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a84f14a19e9a014bb9f4512488d9829a68e04ecabffb0f9904cd1ace94598177" +dependencies = [ + "base16ct", + "serde", ] [[package]] @@ -14300,9 +17083,9 @@ dependencies = [ [[package]] name = "sha2" -version = "0.10.8" +version = "0.10.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8" +checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" dependencies = [ "cfg-if", "cpufeatures", @@ -14319,6 +17102,16 @@ dependencies = [ "keccak", ] +[[package]] +name = "sha3-asm" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c28efc5e327c837aa837c59eae585fc250715ef939ac32881bcc11677cd02d46" +dependencies = [ + "cc", + "cfg-if", +] + [[package]] name = "sharded-slab" version = "0.1.7" @@ -14336,9 +17129,9 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" [[package]] name = "signal-hook-registry" -version = "1.4.2" +version = "1.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1" +checksum = "b2a4719bff48cee6b39d12c020eeb490953ad2443b7055bd0b21fca26bd8c28b" dependencies = [ "libc", ] @@ -14350,14 +17143,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de" dependencies = [ "digest 0.10.7", - "rand_core", + "rand_core 0.6.4", ] [[package]] name = "simba" -version = "0.8.1" +version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "061507c94fc6ab4ba1c9a0305018408e312e17c041eb63bef8aa726fa33aceae" +checksum = "c99284beb21666094ba2b75bbceda012e610f5479dfcc2d6e2426f53197ffd95" dependencies = [ "approx", "num-complex", @@ -14368,9 +17161,9 @@ dependencies = [ [[package]] name = "similar" -version = "2.6.0" +version = "2.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1de1d4f81173b03af4c0cbed3c898f6bff5b870e4a7f5d6f4057d62a7a4b686e" +checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa" dependencies = [ "bstr", "unicode-segmentation", @@ -14378,9 +17171,9 @@ dependencies = [ [[package]] name = "similar-asserts" -version = "1.6.0" +version = "1.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cfe85670573cd6f0fa97940f26e7e6601213c3b0555246c24234131f88c5709e" +checksum = "b5b441962c817e33508847a22bd82f03a30cff43642dc2fae8b050566121eb9a" dependencies = [ "console", "similar", @@ -14388,11 +17181,11 @@ dependencies = [ [[package]] name = "simple-dns" -version = "0.7.1" +version = "0.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4c80e565e7dcc4f1ef247e2f395550d4cf7d777746d5988e7e4e3156b71077fc" +checksum = "dee851d0e5e7af3721faea1843e8015e820a234f81fda3dea9247e15bac9a86a" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.10.0", ] [[package]] @@ -14407,14 +17200,17 @@ version = "0.3.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" +[[package]] +name = "siphasher" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d" + [[package]] name = "slab" -version = "0.4.9" +version = "0.4.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" -dependencies = [ - "autocfg", -] +checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589" [[package]] name = "slice-group-by" @@ -14424,13 +17220,13 @@ checksum = "826167069c09b99d56f31e9ae5c99049e932a98c9dc2dac47645b08dbbf76ba7" [[package]] name = "slot-range-helper" -version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "20.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "enumn", "parity-scale-codec", "paste", - "sp-runtime", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] @@ -14444,56 +17240,59 @@ dependencies = [ [[package]] name = "smallvec" -version = "1.13.2" +version = "1.15.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" +checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" +dependencies = [ + "serde", +] [[package]] name = "smol" -version = "1.3.0" +version = "2.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "13f2b548cd8447f8de0fdf1c592929f70f4fc7039a05e47404b0d096ec6987a1" +checksum = "a33bd3e260892199c3ccfc487c88b2da2265080acb316cd920da72fdfd7c599f" dependencies = [ - "async-channel 1.9.0", + "async-channel 2.5.0", "async-executor", "async-fs", - "async-io 1.13.0", - "async-lock 2.8.0", + "async-io", + "async-lock", "async-net", "async-process", "blocking", - "futures-lite 1.13.0", + "futures-lite", ] [[package]] name = "smoldot" -version = "0.11.0" +version = "0.18.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c0bb30cf57b7b5f6109ce17c3164445e2d6f270af2cb48f6e4d31c2967c9a9f5" +checksum = "966e72d77a3b2171bb7461d0cb91f43670c63558c62d7cf42809cae6c8b6b818" dependencies = [ "arrayvec 0.7.6", - "async-lock 2.8.0", + "async-lock", "atomic-take", - "base64 0.21.7", + "base64", "bip39", "blake2-rfc", "bs58", "chacha20", "crossbeam-queue", - "derive_more", + "derive_more 0.99.20", "ed25519-zebra", "either", - "event-listener 2.5.3", + "event-listener 5.4.1", "fnv", - "futures-lite 1.13.0", + "futures-lite", "futures-util", "hashbrown 0.14.5", "hex", "hmac 0.12.1", - "itertools 0.11.0", + "itertools 0.13.0", + "libm", "libsecp256k1", "merlin", - "no-std-net", "nom", "num-bigint", "num-rational", @@ -14501,54 +17300,54 @@ dependencies = [ "pbkdf2", "pin-project", "poly1305", - "rand", - "rand_chacha", + "rand 0.8.5", + "rand_chacha 0.3.1", "ruzstd", - "schnorrkel 0.10.2", + "schnorrkel 0.11.5", "serde", "serde_json", - "sha2 0.10.8", + "sha2 0.10.9", "sha3", - "siphasher", + "siphasher 1.0.1", "slab", "smallvec", - "soketto 0.7.1", + "soketto", "twox-hash", - "wasmi 0.31.2", + "wasmi", "x25519-dalek", "zeroize", ] [[package]] name = "smoldot-light" -version = "0.9.0" +version = "0.16.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "256b5bad1d6b49045e95fe87492ce73d5af81545d8b4d8318a872d2007024c33" +checksum = "2a33b06891f687909632ce6a4e3fd7677b24df930365af3d0bcb078310129f3f" dependencies = [ - "async-channel 1.9.0", - "async-lock 2.8.0", - "base64 0.21.7", + "async-channel 2.5.0", + "async-lock", + "base64", "blake2-rfc", - "derive_more", + "bs58", + "derive_more 0.99.20", "either", - "event-listener 2.5.3", + "event-listener 5.4.1", "fnv", "futures-channel", - "futures-lite 1.13.0", + "futures-lite", "futures-util", "hashbrown 0.14.5", "hex", - "itertools 0.11.0", + "itertools 0.13.0", "log", - "lru 0.11.1", - "no-std-net", - "parking_lot 0.12.3", + "lru", + "parking_lot 0.12.5", "pin-project", - "rand", - "rand_chacha", + "rand 0.8.5", + "rand_chacha 0.3.1", "serde", "serde_json", - "siphasher", + "siphasher 1.0.1", "slab", "smol", "smoldot", @@ -14571,425 +17370,177 @@ dependencies = [ "blake2 0.10.6", "chacha20poly1305", "curve25519-dalek", - "rand_core", - "ring 0.17.8", - "rustc_version 0.4.1", - "sha2 0.10.8", - "subtle 2.6.1", -] - -[[package]] -name = "snowbridge-amcl" -version = "1.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "460a9ed63cdf03c1b9847e8a12a5f5ba19c4efd5869e4a737e05be25d7c427e5" -dependencies = [ - "parity-scale-codec", - "scale-info", -] - -[[package]] -name = "snowbridge-beacon-primitives" -version = "0.2.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" -dependencies = [ - "byte-slice-cast", - "frame-support", - "hex", - "parity-scale-codec", - "rlp", - "scale-info", - "serde", - "snowbridge-ethereum", - "snowbridge-milagro-bls", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "ssz_rs", - "ssz_rs_derive", -] - -[[package]] -name = "snowbridge-core" -version = "0.2.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" -dependencies = [ - "ethabi-decode", - "frame-support", - "frame-system", - "hex-literal", - "parity-scale-codec", - "polkadot-parachain-primitives", - "scale-info", - "serde", - "snowbridge-beacon-primitives", - "sp-arithmetic", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "staging-xcm", - "staging-xcm-builder", -] - -[[package]] -name = "snowbridge-ethereum" -version = "0.3.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" -dependencies = [ - "ethabi-decode", - "ethbloom", - "ethereum-types", - "hex-literal", - "parity-bytes", - "parity-scale-codec", - "rlp", - "scale-info", - "serde", - "serde-big-array", - "sp-io", - "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", -] - -[[package]] -name = "snowbridge-milagro-bls" -version = "1.5.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "026aa8638f690a53e3f7676024b9e913b1cab0111d1b7b92669d40a188f9d7e6" -dependencies = [ - "hex", - "lazy_static", - "parity-scale-codec", - "rand", - "scale-info", - "snowbridge-amcl", - "zeroize", -] - -[[package]] -name = "snowbridge-outbound-queue-merkle-tree" -version = "0.3.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" -dependencies = [ - "parity-scale-codec", - "scale-info", - "sp-core", - "sp-runtime", -] - -[[package]] -name = "snowbridge-outbound-queue-runtime-api" -version = "0.2.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" -dependencies = [ - "frame-support", - "parity-scale-codec", - "snowbridge-core", - "snowbridge-outbound-queue-merkle-tree", - "sp-api", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", -] - -[[package]] -name = "snowbridge-pallet-ethereum-client" -version = "0.2.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" -dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", - "log", - "pallet-timestamp", - "parity-scale-codec", - "scale-info", - "serde", - "snowbridge-beacon-primitives", - "snowbridge-core", - "snowbridge-ethereum", - "snowbridge-pallet-ethereum-client-fixtures", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "static_assertions", -] - -[[package]] -name = "snowbridge-pallet-ethereum-client-fixtures" -version = "0.9.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" -dependencies = [ - "hex-literal", - "snowbridge-beacon-primitives", - "snowbridge-core", - "sp-core", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", -] - -[[package]] -name = "snowbridge-pallet-inbound-queue" -version = "0.2.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" -dependencies = [ - "alloy-primitives", - "alloy-sol-types", - "frame-benchmarking", - "frame-support", - "frame-system", - "log", - "pallet-balances", - "parity-scale-codec", - "scale-info", - "serde", - "snowbridge-beacon-primitives", - "snowbridge-core", - "snowbridge-pallet-inbound-queue-fixtures", - "snowbridge-router-primitives", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "staging-xcm", - "staging-xcm-executor", -] - -[[package]] -name = "snowbridge-pallet-inbound-queue-fixtures" -version = "0.10.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" -dependencies = [ - "hex-literal", - "snowbridge-beacon-primitives", - "snowbridge-core", - "sp-core", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", -] - -[[package]] -name = "snowbridge-pallet-outbound-queue" -version = "0.2.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" -dependencies = [ - "bridge-hub-common", - "ethabi-decode", - "frame-benchmarking", - "frame-support", - "frame-system", - "parity-scale-codec", - "scale-info", - "serde", - "snowbridge-core", - "snowbridge-outbound-queue-merkle-tree", - "sp-arithmetic", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", -] - -[[package]] -name = "snowbridge-pallet-system" -version = "0.2.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" -dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", - "log", - "parity-scale-codec", - "scale-info", - "snowbridge-core", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "staging-xcm", - "staging-xcm-executor", + "rand_core 0.6.4", + "ring 0.17.14", + "rustc_version 0.4.1", + "sha2 0.10.9", + "subtle 2.6.1", ] [[package]] -name = "snowbridge-router-primitives" -version = "0.9.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +name = "snowbridge-core" +version = "0.16.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "frame-support", + "bp-relayers", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "hex-literal", "log", "parity-scale-codec", + "polkadot-parachain-primitives 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "scale-info", - "snowbridge-core", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "staging-xcm", - "staging-xcm-executor", -] - -[[package]] -name = "snowbridge-runtime-common" -version = "0.2.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" -dependencies = [ - "frame-support", - "log", - "parity-scale-codec", - "snowbridge-core", - "sp-arithmetic", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "staging-xcm", + "serde", + "sp-arithmetic 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "staging-xcm 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "staging-xcm-builder", "staging-xcm-executor", ] -[[package]] -name = "snowbridge-runtime-test-common" -version = "0.2.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" -dependencies = [ - "cumulus-pallet-parachain-system", - "frame-support", - "frame-system", - "pallet-balances", - "pallet-collator-selection", - "pallet-message-queue", - "pallet-session", - "pallet-timestamp", - "pallet-utility", - "pallet-xcm", - "parachains-runtimes-test-utils", - "parity-scale-codec", - "snowbridge-core", - "snowbridge-pallet-ethereum-client", - "snowbridge-pallet-ethereum-client-fixtures", - "snowbridge-pallet-outbound-queue", - "snowbridge-pallet-system", - "sp-core", - "sp-io", - "sp-keyring", - "sp-runtime", - "staging-parachain-info", - "staging-xcm", - "staging-xcm-executor", -] - -[[package]] -name = "snowbridge-system-runtime-api" -version = "0.2.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" -dependencies = [ - "parity-scale-codec", - "snowbridge-core", - "sp-api", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "staging-xcm", -] - [[package]] name = "socket2" -version = "0.4.10" +version = "0.5.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d" +checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678" dependencies = [ "libc", - "winapi", + "windows-sys 0.52.0", ] [[package]] name = "socket2" -version = "0.5.7" +version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c" +checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881" dependencies = [ "libc", - "windows-sys 0.52.0", + "windows-sys 0.60.2", ] [[package]] name = "soketto" -version = "0.7.1" +version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "41d1c5305e39e09653383c2c7244f2f78b3bcae37cf50c64cb4789c9f5096ec2" +checksum = "2e859df029d160cb88608f5d7df7fb4753fd20fdfb4de5644f3d8b8440841721" dependencies = [ - "base64 0.13.1", + "base64", "bytes", "futures", + "http 1.3.1", "httparse", "log", - "rand", - "sha-1", + "rand 0.8.5", + "sha1", ] [[package]] -name = "soketto" -version = "0.8.0" +name = "sp-api" +version = "39.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "37468c595637c10857701c990f93a40ce0e357cedb0953d1c26c8d8027f9bb53" +checksum = "2cc9635cc2a860eff0b2d8b05ba217085c8292f41793f9cadfd931dc54976c00" dependencies = [ - "base64 0.22.1", - "bytes", - "futures", - "http 1.1.0", - "httparse", + "docify", + "hash-db", "log", - "rand", - "sha1", + "parity-scale-codec", + "scale-info", + "sp-api-proc-macro 25.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-core 38.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-externalities 0.30.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-metadata-ir 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-runtime 44.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-runtime-interface 32.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-state-machine 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-trie 41.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-version 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "thiserror 1.0.69", ] [[package]] name = "sp-api" -version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "39.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "docify", "hash-db", "log", "parity-scale-codec", "scale-info", - "sp-api-proc-macro", - "sp-core", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "sp-metadata-ir", - "sp-runtime", - "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "sp-state-machine", - "sp-trie", - "sp-version", - "thiserror", + "sp-api-proc-macro 25.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-externalities 0.30.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-metadata-ir 0.12.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime-interface 32.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-state-machine 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-trie 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-version 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "thiserror 1.0.69", ] [[package]] name = "sp-api-proc-macro" -version = "15.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "25.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7d832cd107113d389340dc80a632330fe7ed7d20f3db50aeeb6abe40e23b6f4e" +dependencies = [ + "Inflector", + "blake2 0.10.6", + "expander", + "proc-macro-crate 3.4.0", + "proc-macro2", + "quote", + "syn 2.0.110", +] + +[[package]] +name = "sp-api-proc-macro" +version = "25.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "Inflector", "blake2 0.10.6", "expander", - "proc-macro-crate 3.2.0", + "proc-macro-crate 3.4.0", "proc-macro2", "quote", - "syn 2.0.79", + "syn 2.0.110", ] [[package]] name = "sp-application-crypto" -version = "30.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "43.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6067f30cf3fb9270471cf24a65d73b33330f32573abab2d97196f83fc076de0" +dependencies = [ + "parity-scale-codec", + "scale-info", + "serde", + "sp-core 38.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-io 43.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "sp-application-crypto" +version = "43.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-io", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "sp-arithmetic" -version = "23.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "28.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c5f4755af7cc57f4a2a830e134b403fc832caa5d93dacb970ffc7ac717f38c40" dependencies = [ "docify", "integer-sqrt", @@ -15001,184 +17552,305 @@ dependencies = [ ] [[package]] -name = "sp-ark-bls12-381" -version = "0.4.2" -source = "git+https://github.com/paritytech/arkworks-substrate#caa2eed74beb885dd07c7db5f916f2281dad818f" +name = "sp-arithmetic" +version = "28.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "ark-bls12-381-ext", - "sp-crypto-ec-utils 0.10.0 (git+https://github.com/paritytech/polkadot-sdk)", + "docify", + "integer-sqrt", + "num-traits", + "parity-scale-codec", + "scale-info", + "serde", + "static_assertions", ] [[package]] -name = "sp-ark-ed-on-bls12-381-bandersnatch" -version = "0.4.2" -source = "git+https://github.com/paritytech/arkworks-substrate#caa2eed74beb885dd07c7db5f916f2281dad818f" +name = "sp-authority-discovery" +version = "39.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "371762212dd2ecf361913297bbc93f291bb2a020b9c483dcd1a220eb5410c324" dependencies = [ - "ark-ed-on-bls12-381-bandersnatch-ext", - "sp-crypto-ec-utils 0.10.0 (git+https://github.com/paritytech/polkadot-sdk)", + "parity-scale-codec", + "scale-info", + "sp-api 39.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-application-crypto 43.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-runtime 44.0.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "sp-authority-discovery" -version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "39.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "parity-scale-codec", "scale-info", - "sp-api", - "sp-application-crypto", - "sp-runtime", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-application-crypto 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "sp-block-builder" -version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "39.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aed5a2780e211f8b1faac53679238e527847d345120dd9acf8e506a39505957a" +dependencies = [ + "sp-api 39.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-inherents 39.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-runtime 44.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "sp-block-builder" +version = "39.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "sp-api", - "sp-inherents", - "sp-runtime", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-inherents 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "sp-blockchain" -version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "42.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "082c634447671551ea1cb8f1182d1b8a7109f7316a044b974ad9e663935f56c8" +dependencies = [ + "futures", + "parity-scale-codec", + "parking_lot 0.12.5", + "schnellru", + "sp-api 39.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-consensus 0.45.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-core 38.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-database 10.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-runtime 44.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-state-machine 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", + "thiserror 1.0.69", + "tracing", +] + +[[package]] +name = "sp-blockchain" +version = "42.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "futures", "parity-scale-codec", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "schnellru", - "sp-api", - "sp-consensus", - "sp-core", - "sp-database", - "sp-runtime", - "sp-state-machine", - "thiserror", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-database 10.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-state-machine 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "thiserror 1.0.69", "tracing", ] [[package]] name = "sp-consensus" -version = "0.32.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.45.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3cdbfa4f10a4c0aac84f9fa3327386988aea983c503b9ec7f0bd8aa8c34c3f01" +dependencies = [ + "async-trait", + "futures", + "log", + "sp-inherents 39.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-runtime 44.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-state-machine 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", + "thiserror 1.0.69", +] + +[[package]] +name = "sp-consensus" +version = "0.45.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "async-trait", "futures", "log", - "sp-core", - "sp-inherents", - "sp-runtime", - "sp-state-machine", - "thiserror", + "sp-inherents 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-state-machine 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "thiserror 1.0.69", +] + +[[package]] +name = "sp-consensus-aura" +version = "0.45.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e81acacf9cd02e4a797d67d9f1c52c3efb742aa2a9fa8d3a82e7e6eda07df28d" +dependencies = [ + "async-trait", + "parity-scale-codec", + "scale-info", + "sp-api 39.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-application-crypto 43.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-consensus-slots 0.45.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-inherents 39.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-runtime 44.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-timestamp 39.0.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "sp-consensus-aura" -version = "0.32.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.45.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" +dependencies = [ + "async-trait", + "parity-scale-codec", + "scale-info", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-application-crypto 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus-slots 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-inherents 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-timestamp 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", +] + +[[package]] +name = "sp-consensus-babe" +version = "0.45.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0436df503f3f56fb348d7af5f173da3887b2ab823ca2344077341cc53b778977" dependencies = [ "async-trait", "parity-scale-codec", "scale-info", - "sp-api", - "sp-application-crypto", - "sp-consensus-slots", - "sp-inherents", - "sp-runtime", - "sp-timestamp", + "serde", + "sp-api 39.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-application-crypto 43.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-consensus-slots 0.45.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-core 38.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-inherents 39.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-runtime 44.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-timestamp 39.0.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "sp-consensus-babe" -version = "0.32.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.45.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "async-trait", "parity-scale-codec", "scale-info", "serde", - "sp-api", - "sp-application-crypto", - "sp-consensus-slots", - "sp-core", - "sp-inherents", - "sp-runtime", - "sp-timestamp", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-application-crypto 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus-slots 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-inherents 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-timestamp 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "sp-consensus-beefy" -version = "13.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "27.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-api", - "sp-application-crypto", - "sp-core", - "sp-crypto-hashing", - "sp-io", - "sp-keystore", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-application-crypto 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-keystore 0.44.1 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "sp-mmr-primitives", - "sp-runtime", - "sp-weights", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-weights 33.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "strum 0.26.3", ] [[package]] name = "sp-consensus-grandpa" -version = "13.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "26.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "98c710358587b555bbbc04c970093458f9c7b2361a7690deb49aa954237d1a33" +dependencies = [ + "finality-grandpa", + "log", + "parity-scale-codec", + "scale-info", + "serde", + "sp-api 39.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-application-crypto 43.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-core 38.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-keystore 0.44.1 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-runtime 44.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "sp-consensus-grandpa" +version = "26.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "finality-grandpa", "log", "parity-scale-codec", "scale-info", "serde", - "sp-api", - "sp-application-crypto", - "sp-core", - "sp-keystore", - "sp-runtime", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-application-crypto 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-keystore 0.44.1 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "sp-consensus-pow" -version = "0.32.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.45.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" +dependencies = [ + "parity-scale-codec", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", +] + +[[package]] +name = "sp-consensus-slots" +version = "0.45.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "749ef013265af2514d36f68098913655b9ee1ca8b36ff8b03a0f1feed2c82387" dependencies = [ "parity-scale-codec", - "sp-api", - "sp-core", - "sp-runtime", + "scale-info", + "serde", + "sp-timestamp 39.0.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "sp-consensus-slots" -version = "0.32.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.45.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-timestamp", + "sp-timestamp 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "sp-core" -version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "38.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "707602208776d0e19d4269bb3f68c5306cacbdfabbb2e4d8d499af7b907bb0a3" dependencies = [ + "ark-vrf", "array-bytes", - "bandersnatch_vrfs", "bitflags 1.3.2", "blake2 0.10.6", - "bounded-collections", + "bounded-collections 0.3.2", "bs58", - "dyn-clonable", + "dyn-clone", "ed25519-zebra", "futures", "hash-db", @@ -15191,24 +17863,71 @@ dependencies = [ "merlin", "parity-bip39", "parity-scale-codec", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "paste", - "primitive-types", - "rand", + "primitive-types 0.13.1", + "rand 0.8.5", "scale-info", - "schnorrkel 0.11.4", - "secp256k1", - "secrecy", + "schnorrkel 0.11.5", + "secp256k1 0.28.2", + "secrecy 0.8.0", "serde", - "sp-crypto-hashing", - "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", + "sha2 0.10.9", + "sp-crypto-hashing 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-debug-derive 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-externalities 0.30.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-storage 22.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "ss58-registry", - "substrate-bip39", - "thiserror", + "substrate-bip39 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "thiserror 1.0.69", + "tracing", + "w3f-bls", + "zeroize", +] + +[[package]] +name = "sp-core" +version = "38.1.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" +dependencies = [ + "ark-vrf", + "array-bytes", + "bitflags 1.3.2", + "blake2 0.10.6", + "bounded-collections 0.3.2", + "bs58", + "dyn-clone", + "ed25519-zebra", + "futures", + "hash-db", + "hash256-std-hasher", + "impl-serde", + "itertools 0.11.0", + "k256", + "libsecp256k1", + "log", + "merlin", + "parity-bip39", + "parity-scale-codec", + "parking_lot 0.12.5", + "paste", + "primitive-types 0.13.1", + "rand 0.8.5", + "scale-info", + "schnorrkel 0.11.5", + "secp256k1 0.28.2", + "secrecy 0.8.0", + "serde", + "sha2 0.10.9", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-externalities 0.30.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-storage 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "ss58-registry", + "substrate-bip39 0.6.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "thiserror 1.0.69", "tracing", "w3f-bls", "zeroize", @@ -15216,161 +17935,232 @@ dependencies = [ [[package]] name = "sp-core-hashing" -version = "15.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "16.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "sp-crypto-hashing", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "sp-core-hashing-proc-macro" -version = "15.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "16.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "sp-crypto-hashing-proc-macro", + "sp-crypto-hashing-proc-macro 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "sp-crypto-ec-utils" -version = "0.10.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.18.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "ark-bls12-377", "ark-bls12-377-ext", - "ark-bls12-381", + "ark-bls12-381 0.4.0", "ark-bls12-381-ext", "ark-bw6-761", "ark-bw6-761-ext", - "ark-ec", + "ark-ec 0.4.2", "ark-ed-on-bls12-377", "ark-ed-on-bls12-377-ext", - "ark-ed-on-bls12-381-bandersnatch", + "ark-ed-on-bls12-381-bandersnatch 0.4.0", "ark-ed-on-bls12-381-bandersnatch-ext", - "ark-scale", - "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", + "ark-scale 0.0.12", + "sp-runtime-interface 32.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] -name = "sp-crypto-ec-utils" -version = "0.10.0" -source = "git+https://github.com/paritytech/polkadot-sdk#1617852a2f1caec796f2b218aecae2facaeacad6" +name = "sp-crypto-hashing" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bc9927a7f81334ed5b8a98a4a978c81324d12bd9713ec76b5c68fd410174c5eb" dependencies = [ - "ark-bls12-377", - "ark-bls12-377-ext", - "ark-bls12-381", - "ark-bls12-381-ext", - "ark-bw6-761", - "ark-bw6-761-ext", - "ark-ec", - "ark-ed-on-bls12-377", - "ark-ed-on-bls12-377-ext", - "ark-ed-on-bls12-381-bandersnatch", - "ark-ed-on-bls12-381-bandersnatch-ext", - "ark-scale", - "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk)", + "blake2b_simd", + "byteorder", + "digest 0.10.7", + "sha2 0.10.9", + "sha3", + "twox-hash", ] [[package]] name = "sp-crypto-hashing" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" +dependencies = [ + "blake2b_simd", + "byteorder", + "digest 0.10.7", + "sha2 0.10.9", + "sha3", + "twox-hash", +] + +[[package]] +name = "sp-crypto-hashing-proc-macro" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b85d0f1f1e44bd8617eb2a48203ee854981229e3e79e6f468c7175d5fd37489b" dependencies = [ - "blake2b_simd", - "byteorder", - "digest 0.10.7", - "sha2 0.10.8", - "sha3", - "twox-hash", + "quote", + "sp-crypto-hashing 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 2.0.110", ] [[package]] name = "sp-crypto-hashing-proc-macro" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "quote", - "sp-crypto-hashing", - "syn 2.0.79", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "syn 2.0.110", +] + +[[package]] +name = "sp-database" +version = "10.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "722cbecdbf5b94578137dbd07feb51e95f7de221be0c1ff4dcfe0bb4cd986929" +dependencies = [ + "kvdb", + "parking_lot 0.12.5", ] [[package]] name = "sp-database" version = "10.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "kvdb", - "parking_lot 0.12.3", + "parking_lot 0.12.5", ] [[package]] name = "sp-debug-derive" version = "14.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "48d09fa0a5f7299fb81ee25ae3853d26200f7a348148aed6de76be905c007dbe" dependencies = [ "proc-macro2", "quote", - "syn 2.0.79", + "syn 2.0.110", ] [[package]] name = "sp-debug-derive" version = "14.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk#1617852a2f1caec796f2b218aecae2facaeacad6" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "proc-macro2", "quote", - "syn 2.0.79", + "syn 2.0.110", ] [[package]] name = "sp-externalities" -version = "0.25.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.30.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "30cbf059dce180a8bf8b6c8b08b6290fa3d1c7f069a60f1df038ab5dd5fc0ba6" dependencies = [ "environmental", "parity-scale-codec", - "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", + "sp-storage 22.0.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "sp-externalities" -version = "0.25.0" -source = "git+https://github.com/paritytech/polkadot-sdk#1617852a2f1caec796f2b218aecae2facaeacad6" +version = "0.30.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "environmental", "parity-scale-codec", - "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk)", + "sp-storage 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "sp-genesis-builder" -version = "0.8.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.20.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "04f929edd118b6332b016e0e5a3eb962b8568b14eee024f818685f8ea5f80d53" +dependencies = [ + "parity-scale-codec", + "scale-info", + "serde_json", + "sp-api 39.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-runtime 44.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "sp-genesis-builder" +version = "0.20.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "parity-scale-codec", "scale-info", "serde_json", - "sp-api", - "sp-runtime", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "sp-inherents" -version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "39.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2522693c705c1245ef8dbdbcf09d7cc6b139f0184d5e0a46856c546666b494d7" +dependencies = [ + "async-trait", + "impl-trait-for-tuples", + "parity-scale-codec", + "scale-info", + "sp-runtime 44.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "thiserror 1.0.69", +] + +[[package]] +name = "sp-inherents" +version = "39.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "async-trait", "impl-trait-for-tuples", "parity-scale-codec", "scale-info", - "sp-runtime", - "thiserror", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "thiserror 1.0.69", ] [[package]] name = "sp-io" -version = "30.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "43.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cf2059e3b338c0174e8dc9e144cc7e612165ca4c960c3a23c6c99c29ef34768f" +dependencies = [ + "bytes", + "docify", + "ed25519-dalek", + "libsecp256k1", + "log", + "parity-scale-codec", + "polkavm-derive 0.26.0", + "rustversion", + "secp256k1 0.28.2", + "sp-core 38.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-crypto-hashing 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-externalities 0.30.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-keystore 0.44.1 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-runtime-interface 32.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-state-machine 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-tracing 19.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-trie 41.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "tracing", + "tracing-core", +] + +[[package]] +name = "sp-io" +version = "43.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "bytes", "docify", @@ -15378,116 +18168,193 @@ dependencies = [ "libsecp256k1", "log", "parity-scale-codec", - "polkavm-derive 0.9.1", + "polkavm-derive 0.26.0", "rustversion", - "secp256k1", - "sp-core", - "sp-crypto-hashing", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "sp-keystore", - "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "sp-state-machine", - "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "sp-trie", + "secp256k1 0.28.2", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-externalities 0.30.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-keystore 0.44.1 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime-interface 32.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-state-machine 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-tracing 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-trie 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "tracing", "tracing-core", ] [[package]] name = "sp-keyring" -version = "31.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "44.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f7cc9d55214634477506144bdc32039d490d9f5ca15997403e7a7613539ddebd" +dependencies = [ + "sp-core 38.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-runtime 44.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "strum 0.26.3", +] + +[[package]] +name = "sp-keyring" +version = "44.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "sp-core", - "sp-runtime", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "strum 0.26.3", ] [[package]] name = "sp-keystore" -version = "0.34.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.44.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a5c0b829014afc22e992be2c198f2677592db43267fc218e9f3207dbbfb6fbb" +dependencies = [ + "parity-scale-codec", + "parking_lot 0.12.5", + "sp-core 38.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-externalities 0.30.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "sp-keystore" +version = "0.44.1" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "parity-scale-codec", - "parking_lot 0.12.3", - "sp-core", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", + "parking_lot 0.12.5", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-externalities 0.30.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "sp-maybe-compressed-blob" -version = "11.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "11.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c9d204064a17660455603ae152b02fc7ea4cfff2d14796f6483d7a35c4cca336" +dependencies = [ + "thiserror 1.0.69", + "zstd 0.12.4", +] + +[[package]] +name = "sp-maybe-compressed-blob" +version = "11.0.1" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "thiserror", + "thiserror 1.0.69", "zstd 0.12.4", ] [[package]] name = "sp-metadata-ir" -version = "0.6.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1464c9e76f97c80a8dbccfe3f9fd4be0f25d0cc372efcf8fdf8791619b0998b9" +dependencies = [ + "frame-metadata 23.0.0", + "parity-scale-codec", + "scale-info", +] + +[[package]] +name = "sp-metadata-ir" +version = "0.12.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "frame-metadata", + "frame-metadata 23.0.0", "parity-scale-codec", "scale-info", ] [[package]] name = "sp-mixnet" -version = "0.4.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a9747afd7025801232758df5a693393ede420523de73295e0f23501052e804c2" +dependencies = [ + "parity-scale-codec", + "scale-info", + "sp-api 39.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-application-crypto 43.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "sp-mixnet" +version = "0.17.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "parity-scale-codec", "scale-info", - "sp-api", - "sp-application-crypto", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-application-crypto 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "sp-mmr-primitives" -version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "39.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "log", "parity-scale-codec", "polkadot-ckb-merkle-mountain-range", "scale-info", "serde", - "sp-api", - "sp-core", - "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "sp-runtime", - "thiserror", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "thiserror 1.0.69", ] [[package]] name = "sp-npos-elections" -version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "39.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-arithmetic", - "sp-core", - "sp-runtime", + "sp-arithmetic 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "sp-offchain" -version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "39.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "69dd826d2ae5e64b6bef5f670e620ddd52eb3f762a4f1a16a984c23d6113e470" +dependencies = [ + "sp-api 39.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-core 38.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-runtime 44.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "sp-offchain" +version = "39.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "sp-api", - "sp-core", - "sp-runtime", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "sp-panic-handler" -version = "13.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "13.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c8b52e69a577cbfdea62bfaf16f59eb884422ce98f78b5cd8d9bf668776bced1" +dependencies = [ + "backtrace", + "regex", +] + +[[package]] +name = "sp-panic-handler" +version = "13.0.2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "backtrace", "regex", @@ -15495,20 +18362,61 @@ dependencies = [ [[package]] name = "sp-rpc" -version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "36.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "71516b7b2b70b94b028cb66e5ac4ec20424c1b66363a939c65b5c5f6759723f7" +dependencies = [ + "rustc-hash 1.1.0", + "serde", + "sp-core 38.1.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "sp-rpc" +version = "36.0.1" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "rustc-hash 1.1.0", "serde", - "sp-core", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", +] + +[[package]] +name = "sp-runtime" +version = "44.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ee57bb77e94c26306501426ac82aca401bb80ee2279ecdba148f68e76cf58247" +dependencies = [ + "binary-merkle-tree 16.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "docify", + "either", + "hash256-std-hasher", + "impl-trait-for-tuples", + "log", + "num-traits", + "parity-scale-codec", + "paste", + "rand 0.8.5", + "scale-info", + "serde", + "simple-mermaid", + "sp-application-crypto 43.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-arithmetic 28.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-core 38.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-io 43.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-trie 41.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-weights 33.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "tracing", + "tuplex", ] [[package]] name = "sp-runtime" -version = "31.0.1" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "44.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "binary-merkle-tree", + "binary-merkle-tree 16.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "docify", "either", "hash256-std-hasher", @@ -15517,263 +18425,411 @@ dependencies = [ "num-traits", "parity-scale-codec", "paste", - "rand", + "rand 0.8.5", "scale-info", "serde", "simple-mermaid", - "sp-application-crypto", - "sp-arithmetic", - "sp-core", - "sp-io", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "sp-trie", - "sp-weights", + "sp-application-crypto 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-arithmetic 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-trie 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-weights 33.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "tracing", + "tuplex", ] [[package]] name = "sp-runtime-interface" -version = "24.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "32.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "efdc2bc2adbfb9b4396ae07c7d94db20414d2351608e29e1f44e4f643b387c70" dependencies = [ "bytes", "impl-trait-for-tuples", "parity-scale-codec", - "polkavm-derive 0.9.1", - "primitive-types", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "sp-runtime-interface-proc-macro 17.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "sp-wasm-interface 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", + "polkavm-derive 0.26.0", + "sp-externalities 0.30.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-runtime-interface-proc-macro 20.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-storage 22.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-tracing 19.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-wasm-interface 24.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "static_assertions", ] [[package]] name = "sp-runtime-interface" -version = "24.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk#1617852a2f1caec796f2b218aecae2facaeacad6" +version = "32.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "bytes", "impl-trait-for-tuples", "parity-scale-codec", - "polkavm-derive 0.9.1", - "primitive-types", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk)", - "sp-runtime-interface-proc-macro 17.0.0 (git+https://github.com/paritytech/polkadot-sdk)", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk)", - "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk)", - "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk)", - "sp-wasm-interface 20.0.0 (git+https://github.com/paritytech/polkadot-sdk)", + "polkavm-derive 0.26.0", + "sp-externalities 0.30.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime-interface-proc-macro 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-storage 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-tracing 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-wasm-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "static_assertions", ] [[package]] name = "sp-runtime-interface-proc-macro" -version = "17.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "20.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "04178084ae654b3924934a56943ee73e3562db4d277e948393561b08c3b5b5fe" dependencies = [ "Inflector", "expander", - "proc-macro-crate 3.2.0", + "proc-macro-crate 3.4.0", "proc-macro2", "quote", - "syn 2.0.79", + "syn 2.0.110", ] [[package]] name = "sp-runtime-interface-proc-macro" -version = "17.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk#1617852a2f1caec796f2b218aecae2facaeacad6" +version = "20.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "Inflector", "expander", - "proc-macro-crate 3.2.0", + "proc-macro-crate 3.4.0", "proc-macro2", "quote", - "syn 2.0.79", + "syn 2.0.110", ] [[package]] name = "sp-session" -version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "41.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "327e2a7cf952f6ed6ca86d3fe9ab71561d30a358a83129afe60efc9bd2720ab0" +dependencies = [ + "parity-scale-codec", + "scale-info", + "sp-api 39.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-core 38.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-keystore 0.44.1 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-runtime 44.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-staking 41.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "sp-session" +version = "41.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "parity-scale-codec", "scale-info", - "sp-api", - "sp-core", - "sp-keystore", - "sp-runtime", - "sp-staking", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-keystore 0.44.1 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-staking 41.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "sp-staking" -version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "41.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4c3a442232a0bf3c0db2d0e2b0048bb5fa2ed06606cbdc018ca59d5af7294b5d" +dependencies = [ + "impl-trait-for-tuples", + "parity-scale-codec", + "scale-info", + "serde", + "sp-core 38.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-runtime 44.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "sp-staking" +version = "41.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-runtime", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "sp-state-machine" -version = "0.35.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "042677239cca40eb6a0d70e0b220f5693516f59853c2d678de471a79652cd16e" +dependencies = [ + "hash-db", + "log", + "parity-scale-codec", + "parking_lot 0.12.5", + "rand 0.8.5", + "smallvec", + "sp-core 38.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-externalities 0.30.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-panic-handler 13.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-trie 41.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "thiserror 1.0.69", + "tracing", + "trie-db", +] + +[[package]] +name = "sp-state-machine" +version = "0.48.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "hash-db", "log", "parity-scale-codec", - "parking_lot 0.12.3", - "rand", + "parking_lot 0.12.5", + "rand 0.8.5", "smallvec", - "sp-core", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "sp-panic-handler", - "sp-trie", - "thiserror", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-externalities 0.30.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-panic-handler 13.0.2 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-trie 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "thiserror 1.0.69", "tracing", "trie-db", ] [[package]] name = "sp-statement-store" -version = "10.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "23.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" +dependencies = [ + "aes-gcm", + "curve25519-dalek", + "ed25519-dalek", + "hkdf", + "parity-scale-codec", + "rand 0.8.5", + "scale-info", + "sha2 0.10.9", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-application-crypto 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-externalities 0.30.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime-interface 32.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "thiserror 1.0.69", + "x25519-dalek", +] + +[[package]] +name = "sp-statement-store" +version = "23.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a6b24c088e145bb5fb2402cab10e747df8b2b7a5d83c90f52138d45eda27071c" dependencies = [ "aes-gcm", "curve25519-dalek", "ed25519-dalek", "hkdf", "parity-scale-codec", - "rand", + "rand 0.8.5", "scale-info", - "sha2 0.10.8", - "sp-api", - "sp-application-crypto", - "sp-core", - "sp-crypto-hashing", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "sp-runtime", - "sp-runtime-interface 24.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "thiserror", + "sha2 0.10.9", + "sp-api 39.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-application-crypto 43.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-core 38.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-crypto-hashing 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-externalities 0.30.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-runtime 44.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-runtime-interface 32.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "thiserror 1.0.69", "x25519-dalek", ] [[package]] name = "sp-std" version = "14.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "12f8ee986414b0a9ad741776762f4083cd3a5128449b982a3919c4df36874834" [[package]] name = "sp-std" version = "14.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk#1617852a2f1caec796f2b218aecae2facaeacad6" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" [[package]] name = "sp-storage" -version = "19.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "22.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ee3b70ca340e41cde9d2e069d354508a6e37a6573d66f7cc38f11549002f64ec" dependencies = [ "impl-serde", "parity-scale-codec", "ref-cast", "serde", - "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", + "sp-debug-derive 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "sp-storage" -version = "19.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk#1617852a2f1caec796f2b218aecae2facaeacad6" +version = "22.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "impl-serde", "parity-scale-codec", "ref-cast", "serde", - "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk)", + "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "sp-timestamp" -version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "39.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "074a33fe8fc3b6dc53c8b3b879c68efb070aa6aea3a2cb04b714da347643494c" +dependencies = [ + "async-trait", + "parity-scale-codec", + "sp-inherents 39.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-runtime 44.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "thiserror 1.0.69", +] + +[[package]] +name = "sp-timestamp" +version = "39.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "async-trait", "parity-scale-codec", - "sp-inherents", - "sp-runtime", - "thiserror", + "sp-inherents 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "thiserror 1.0.69", ] [[package]] name = "sp-tracing" -version = "16.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "19.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f2c7372456c39cc81e15befe54d0caab8378f2b30fd34d1bcb5f0f56631c6b6e" dependencies = [ "parity-scale-codec", + "regex", "tracing", "tracing-core", - "tracing-subscriber", + "tracing-subscriber 0.3.20", ] [[package]] name = "sp-tracing" -version = "16.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk#1617852a2f1caec796f2b218aecae2facaeacad6" +version = "19.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "parity-scale-codec", + "regex", "tracing", "tracing-core", - "tracing-subscriber", + "tracing-subscriber 0.3.20", ] [[package]] name = "sp-transaction-pool" -version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "39.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d2a9a006d5a5ffcc779148acabfa27dbedb3c93909e8592f2ec8c98e3a6745fe" +dependencies = [ + "sp-api 39.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-runtime 44.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "sp-transaction-pool" +version = "39.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "sp-api", - "sp-runtime", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "sp-transaction-storage-proof" -version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "39.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "80b88ace2d83259b5fc2251db6092d903ebad8ccf37720234b6373ab82ee013e" +dependencies = [ + "async-trait", + "parity-scale-codec", + "scale-info", + "sp-core 38.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-inherents 39.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-runtime 44.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-trie 41.1.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "sp-transaction-storage-proof" +version = "39.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" +dependencies = [ + "async-trait", + "parity-scale-codec", + "scale-info", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-inherents 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-trie 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", +] + +[[package]] +name = "sp-trie" +version = "41.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bd2a05942903900c23aaa5fded094fa8186523e646ae8874bff3fce74985d0e5" dependencies = [ - "async-trait", + "ahash", + "foldhash 0.1.5", + "hash-db", + "hashbrown 0.15.5", + "memory-db", + "nohash-hasher", "parity-scale-codec", + "parking_lot 0.12.5", + "rand 0.8.5", "scale-info", - "sp-core", - "sp-inherents", - "sp-runtime", - "sp-trie", + "schnellru", + "sp-core 38.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-externalities 0.30.0 (registry+https://github.com/rust-lang/crates.io-index)", + "substrate-prometheus-endpoint 0.17.7 (registry+https://github.com/rust-lang/crates.io-index)", + "thiserror 1.0.69", + "tracing", + "trie-db", + "trie-root", ] [[package]] name = "sp-trie" -version = "29.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "41.1.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "ahash 0.8.11", + "ahash", + "foldhash 0.1.5", "hash-db", + "hashbrown 0.15.5", "memory-db", "nohash-hasher", "parity-scale-codec", - "parking_lot 0.12.3", - "rand", + "parking_lot 0.12.5", + "rand 0.8.5", "scale-info", "schnellru", - "sp-core", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "thiserror", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-externalities 0.30.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "substrate-prometheus-endpoint 0.17.7 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "thiserror 1.0.69", "tracing", "trie-db", "trie-root", @@ -15781,37 +18837,69 @@ dependencies = [ [[package]] name = "sp-version" -version = "29.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "42.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "633ea19da3ec057d449af667099072daa4e99900984f304b96f4c2ee15aeecc7" +dependencies = [ + "impl-serde", + "parity-scale-codec", + "parity-wasm", + "scale-info", + "serde", + "sp-crypto-hashing-proc-macro 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-runtime 44.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-version-proc-macro 15.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "thiserror 1.0.69", +] + +[[package]] +name = "sp-version" +version = "42.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "impl-serde", "parity-scale-codec", "parity-wasm", "scale-info", "serde", - "sp-crypto-hashing-proc-macro", - "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "sp-version-proc-macro", - "thiserror", + "sp-crypto-hashing-proc-macro 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-version-proc-macro 15.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "thiserror 1.0.69", ] [[package]] name = "sp-version-proc-macro" -version = "13.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "15.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "54cabc8279e835cd9c608d70cb00e693bddec94fe8478e9f3104dad1da5f93ca" +dependencies = [ + "parity-scale-codec", + "proc-macro-warning", + "proc-macro2", + "quote", + "syn 2.0.110", +] + +[[package]] +name = "sp-version-proc-macro" +version = "15.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "parity-scale-codec", - "proc-macro-warning 1.0.2", + "proc-macro-warning", "proc-macro2", "quote", - "syn 2.0.79", + "syn 2.0.110", ] [[package]] name = "sp-wasm-interface" -version = "20.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "24.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dd177d0658f3df0492f28bd39d665133a7868db5aa66c8642c949b6265430719" dependencies = [ "anyhow", "impl-trait-for-tuples", @@ -15822,27 +18910,43 @@ dependencies = [ [[package]] name = "sp-wasm-interface" -version = "20.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk#1617852a2f1caec796f2b218aecae2facaeacad6" +version = "24.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "anyhow", "impl-trait-for-tuples", "log", "parity-scale-codec", + "wasmtime", ] [[package]] name = "sp-weights" -version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "33.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "beb3f1b1373a0926b44ddabfa55a608ea78c20ee356f35575c031db2f0202545" +dependencies = [ + "bounded-collections 0.3.2", + "parity-scale-codec", + "scale-info", + "serde", + "smallvec", + "sp-arithmetic 28.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-debug-derive 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "sp-weights" +version = "33.1.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "bounded-collections", + "bounded-collections 0.3.2", "parity-scale-codec", "scale-info", "serde", "smallvec", - "sp-arithmetic", - "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", + "sp-arithmetic 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] @@ -15889,9 +18993,9 @@ dependencies = [ [[package]] name = "ss58-registry" -version = "1.50.0" +version = "1.51.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "43fce22ed1df64d04b262351c8f9d5c6da4f76f79f25ad15529792f893fad25d" +checksum = "19409f13998e55816d1c728395af0b52ec066206341d939e22e7766df9b494b8" dependencies = [ "Inflector", "num-format", @@ -15902,52 +19006,29 @@ dependencies = [ "unicode-xid", ] -[[package]] -name = "ssz_rs" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "057291e5631f280978fa9c8009390663ca4613359fc1318e36a8c24c392f6d1f" -dependencies = [ - "bitvec", - "num-bigint", - "sha2 0.9.9", - "ssz_rs_derive", -] - -[[package]] -name = "ssz_rs_derive" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f07d54c4d01a1713eb363b55ba51595da15f6f1211435b71466460da022aa140" -dependencies = [ - "proc-macro2", - "quote", - "syn 1.0.109", -] - [[package]] name = "stable_deref_trait" -version = "1.2.0" +version = "1.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" +checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596" [[package]] name = "staging-chain-spec-builder" -version = "1.6.1" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "14.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "clap", - "log", - "sc-chain-spec", + "docify", + "sc-chain-spec 46.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "serde", "serde_json", - "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", + "sp-tracing 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "staging-node-cli" -version = "3.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "3.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "array-bytes", "clap", @@ -15960,106 +19041,133 @@ dependencies = [ "node-rpc", "parity-scale-codec", "polkadot-sdk", - "rand", + "rand 0.8.5", "serde", "serde_json", "staging-node-inspect", + "subxt-signer", ] [[package]] name = "staging-node-inspect" -version = "0.12.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.31.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "clap", "parity-scale-codec", - "sc-cli", - "sc-client-api", - "sc-service", - "sp-blockchain", - "sp-core", - "sp-io", - "sp-runtime", - "sp-statement-store", - "thiserror", + "sc-cli 0.55.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-client-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-service 0.54.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-blockchain 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-statement-store 23.0.0", + "thiserror 1.0.69", ] [[package]] name = "staging-parachain-info" -version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.23.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "cumulus-primitives-core", - "frame-support", - "frame-system", + "cumulus-primitives-core 0.21.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "parity-scale-codec", "scale-info", - "sp-runtime", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "staging-tracking-allocator" version = "2.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" [[package]] name = "staging-xcm" -version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "19.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "02f8432288dfe5fff10ef690afa6c075e79831b64d58ed3e980d4b972c5416f6" dependencies = [ "array-bytes", - "bounded-collections", - "derivative", + "bounded-collections 0.3.2", + "derive-where", "environmental", + "frame-support 43.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "hex-literal", + "impl-trait-for-tuples", + "parity-scale-codec", + "scale-info", + "serde", + "sp-runtime 44.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-weights 33.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "tracing", + "xcm-procedural 11.0.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "staging-xcm" +version = "19.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" +dependencies = [ + "array-bytes", + "bounded-collections 0.3.2", + "derive-where", + "environmental", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "hex-literal", "impl-trait-for-tuples", - "log", "parity-scale-codec", "scale-info", "serde", - "sp-runtime", - "sp-weights", - "xcm-procedural", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-weights 33.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "tracing", + "xcm-procedural 11.0.2 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "staging-xcm-builder" -version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "23.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "frame-support", - "frame-system", + "environmental", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "impl-trait-for-tuples", - "log", "pallet-asset-conversion", "pallet-transaction-payment", "parity-scale-codec", - "polkadot-parachain-primitives", + "polkadot-parachain-primitives 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "scale-info", - "sp-arithmetic", - "sp-io", - "sp-runtime", - "sp-weights", - "staging-xcm", + "sp-arithmetic 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-weights 33.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "staging-xcm 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "staging-xcm-executor", + "tracing", ] [[package]] name = "staging-xcm-executor" -version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "22.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "environmental", "frame-benchmarking", - "frame-support", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "impl-trait-for-tuples", "parity-scale-codec", "scale-info", - "sp-arithmetic", - "sp-core", - "sp-io", - "sp-runtime", - "sp-weights", - "staging-xcm", + "sp-arithmetic 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-weights 33.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "staging-xcm 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "tracing", ] @@ -16071,26 +19179,26 @@ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" [[package]] name = "static_init" -version = "1.0.3" +version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8a2a1c578e98c1c16fc3b8ec1328f7659a500737d7a0c6d625e73e830ff9c1f6" +checksum = "8bae1df58c5fea7502e8e352ec26b5579f6178e1fdb311e088580c980dee25ed" dependencies = [ "bitflags 1.3.2", - "cfg_aliases", + "cfg_aliases 0.2.1", "libc", - "parking_lot 0.11.2", - "parking_lot_core 0.8.6", + "parking_lot 0.12.5", + "parking_lot_core 0.9.12", "static_init_macro", "winapi", ] [[package]] name = "static_init_macro" -version = "1.0.2" +version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "70a2595fc3aa78f2d0e45dd425b22282dd863273761cc77780914b2cf3003acf" +checksum = "1389c88ddd739ec6d3f8f83343764a0e944cd23cfbf126a9796a714b0b6edd6f" dependencies = [ - "cfg_aliases", + "cfg_aliases 0.1.1", "memchr", "proc-macro2", "quote", @@ -16155,70 +19263,97 @@ dependencies = [ "proc-macro2", "quote", "rustversion", - "syn 2.0.79", + "syn 2.0.110", ] [[package]] name = "subkey" -version = "9.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "28.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "clap", - "sc-cli", + "sc-cli 0.55.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", +] + +[[package]] +name = "substrate-bip39" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ca58ffd742f693dc13d69bdbb2e642ae239e0053f6aab3b104252892f856700a" +dependencies = [ + "hmac 0.12.1", + "pbkdf2", + "schnorrkel 0.11.5", + "sha2 0.10.9", + "zeroize", ] [[package]] name = "substrate-bip39" -version = "0.4.7" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.6.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "hmac 0.12.1", "pbkdf2", - "schnorrkel 0.11.4", - "sha2 0.10.8", + "schnorrkel 0.11.5", + "sha2 0.10.9", "zeroize", ] +[[package]] +name = "substrate-bn" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72b5bbfa79abbae15dd642ea8176a21a635ff3c00059961d1ea27ad04e5b441c" +dependencies = [ + "byteorder", + "crunchy", + "lazy_static", + "rand 0.8.5", + "rustc-hex", +] + [[package]] name = "substrate-build-script-utils" version = "11.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" [[package]] name = "substrate-cli-test-utils" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "assert_cmd", "futures", - "nix 0.28.0", + "nix 0.29.0", "node-primitives", "regex", - "sc-cli", - "sc-service", - "sp-rpc", + "sc-cli 0.55.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-service 0.54.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-rpc 36.0.1 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "staging-node-cli", - "substrate-rpc-client", + "substrate-rpc-client 0.52.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "tokio", ] [[package]] name = "substrate-frame-rpc-support" -version = "29.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "48.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "frame-support", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "jsonrpsee", "parity-scale-codec", - "sc-rpc-api", + "sc-rpc-api 0.52.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "scale-info", "serde", - "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", + "sp-storage 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "substrate-frame-rpc-system" -version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "47.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "docify", "frame-system-rpc-runtime-api", @@ -16226,97 +19361,320 @@ dependencies = [ "jsonrpsee", "log", "parity-scale-codec", - "sc-rpc-api", - "sc-transaction-pool-api", - "sp-api", - "sp-block-builder", - "sp-blockchain", - "sp-core", - "sp-runtime", + "sc-rpc-api 0.52.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-transaction-pool-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-block-builder 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-blockchain 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", ] [[package]] name = "substrate-prometheus-endpoint" -version = "0.17.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.17.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d23e4bc8e910a312820d589047ab683928b761242dbe31dee081fbdb37cbe0be" +dependencies = [ + "http-body-util", + "hyper 1.7.0", + "hyper-util", + "log", + "prometheus", + "thiserror 1.0.69", + "tokio", +] + +[[package]] +name = "substrate-prometheus-endpoint" +version = "0.17.7" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "http-body-util", - "hyper 1.4.1", + "hyper 1.7.0", "hyper-util", "log", "prometheus", - "thiserror", + "thiserror 1.0.69", "tokio", ] [[package]] name = "substrate-rpc-client" -version = "0.33.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "173b73dc44d8d68d00d2be12bfda31b2f9bbdddf14e4bd733af9f827e253b735" +dependencies = [ + "async-trait", + "jsonrpsee", + "log", + "sc-rpc-api 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde", + "sp-runtime 44.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "substrate-rpc-client" +version = "0.52.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "async-trait", "jsonrpsee", "log", - "sc-rpc-api", + "sc-rpc-api 0.52.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "serde", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", +] + +[[package]] +name = "substrate-state-trie-migration-rpc" +version = "46.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" +dependencies = [ + "jsonrpsee", + "parity-scale-codec", + "sc-client-api 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sc-rpc-api 0.52.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "serde", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-state-machine 0.48.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-trie 41.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "trie-db", +] + +[[package]] +name = "substrate-wasm-builder" +version = "29.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" +dependencies = [ + "build-helper", + "cargo_metadata", + "console", + "filetime", + "jobserver", + "parity-wasm", + "polkavm-linker 0.26.0", + "shlex", + "sp-maybe-compressed-blob 11.0.1 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "strum 0.26.3", + "tempfile", + "toml 0.8.23", + "walkdir", + "wasm-opt", +] + +[[package]] +name = "subtle" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2d67a5a62ba6e01cb2192ff309324cb4875d0c451d55fe2319433abe7a05a8ee" + +[[package]] +name = "subtle" +version = "2.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" + +[[package]] +name = "subtle-ng" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "734676eb262c623cec13c3155096e08d1f8f29adce39ba17948b18dad1e54142" + +[[package]] +name = "subxt" +version = "0.41.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "03459d84546def5e1d0d22b162754609f18e031522b0319b53306f5829de9c09" +dependencies = [ + "async-trait", + "derive-where", + "either", + "frame-metadata 20.0.0", + "futures", + "hex", + "parity-scale-codec", + "primitive-types 0.13.1", + "scale-bits", + "scale-decode", + "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", + "subxt-rpcs", + "thiserror 2.0.17", + "tokio", + "tokio-util", + "tracing", + "url", + "web-time", +] + +[[package]] +name = "subxt-codegen" +version = "0.41.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "324c52c09919fec8c22a4b572a466878322e99fe14a9e3d50d6c3700a226ec25" +dependencies = [ + "heck 0.5.0", + "parity-scale-codec", + "proc-macro2", + "quote", + "scale-info", + "scale-typegen", + "subxt-metadata", + "syn 2.0.110", + "thiserror 2.0.17", +] + +[[package]] +name = "subxt-core" +version = "0.41.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "66ef00be9d64885ec94e478a58e4e39d222024b20013ae7df4fc6ece545391aa" +dependencies = [ + "base58", + "blake2 0.10.6", + "derive-where", + "frame-decode", + "frame-metadata 20.0.0", + "hashbrown 0.14.5", + "hex", + "impl-serde", + "keccak-hash", + "parity-scale-codec", + "primitive-types 0.13.1", + "scale-bits", + "scale-decode", + "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", + "thiserror 2.0.17", + "tracing", +] + +[[package]] +name = "subxt-lightclient" +version = "0.41.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ce07c2515b2e63b85ec3043fe4461b287af0615d4832c2fe6e81ba780b906bc0" +dependencies = [ + "futures", + "futures-util", "serde", - "sp-runtime", + "serde_json", + "smoldot-light", + "thiserror 2.0.17", + "tokio", + "tokio-stream", + "tracing", ] [[package]] -name = "substrate-state-trie-migration-rpc" -version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +name = "subxt-macro" +version = "0.41.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7c2c8da275a620dd676381d72395dfea91f0a6cd849665b4f1d0919371850701" dependencies = [ - "jsonrpsee", + "darling 0.20.11", "parity-scale-codec", - "sc-client-api", - "sc-rpc-api", - "serde", - "sp-core", - "sp-runtime", - "sp-state-machine", - "sp-trie", - "trie-db", + "proc-macro-error2", + "quote", + "scale-typegen", + "subxt-codegen", + "subxt-utils-fetchmetadata", + "syn 2.0.110", ] [[package]] -name = "substrate-wasm-builder" -version = "17.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +name = "subxt-metadata" +version = "0.41.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fff4591673600c4388e21305788282414d26c791b4dee21b7cb0b19c10076f98" dependencies = [ - "build-helper", - "cargo_metadata", - "console", - "filetime", - "jobserver", - "parity-wasm", - "polkavm-linker 0.9.2", - "shlex", - "sp-maybe-compressed-blob", - "strum 0.26.3", - "tempfile", - "toml 0.8.19", - "walkdir", - "wasm-opt", + "frame-decode", + "frame-metadata 20.0.0", + "hashbrown 0.14.5", + "parity-scale-codec", + "scale-info", + "sp-crypto-hashing 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "thiserror 2.0.17", ] [[package]] -name = "subtle" -version = "1.0.0" +name = "subxt-rpcs" +version = "0.41.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2d67a5a62ba6e01cb2192ff309324cb4875d0c451d55fe2319433abe7a05a8ee" +checksum = "4ba7494d250d65dc3439365ac5e8e0fbb9c3992e6e84b7aa01d69e082249b8b8" +dependencies = [ + "derive-where", + "frame-metadata 20.0.0", + "futures", + "hex", + "impl-serde", + "jsonrpsee", + "parity-scale-codec", + "primitive-types 0.13.1", + "serde", + "serde_json", + "subxt-core", + "subxt-lightclient", + "thiserror 2.0.17", + "tracing", + "url", +] [[package]] -name = "subtle" -version = "2.6.1" +name = "subxt-signer" +version = "0.41.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" +checksum = "4a2370298a210ed1df26152db7209a85e0ed8cfbce035309c3b37f7b61755377" +dependencies = [ + "base64", + "bip32", + "bip39", + "cfg-if", + "crypto_secretbox", + "hex", + "hmac 0.12.1", + "keccak-hash", + "parity-scale-codec", + "pbkdf2", + "regex", + "schnorrkel 0.11.5", + "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", + "thiserror 2.0.17", + "zeroize", +] [[package]] -name = "subtle-ng" -version = "2.5.0" +name = "subxt-utils-fetchmetadata" +version = "0.41.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "734676eb262c623cec13c3155096e08d1f8f29adce39ba17948b18dad1e54142" +checksum = "fc868b55fe2303788dc7703457af390111940c3da4714b510983284501780ed5" +dependencies = [ + "hex", + "parity-scale-codec", + "thiserror 2.0.17", +] [[package]] name = "syn" @@ -16331,9 +19689,9 @@ dependencies = [ [[package]] name = "syn" -version = "2.0.79" +version = "2.0.110" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "89132cd0bf050864e1d38dc3bbc07a0eb8e7530af26344d3d2bbbef83499f590" +checksum = "a99801b5bd34ede4cf3fc688c5919368fea4e4814a4664359503e6015b280aea" dependencies = [ "proc-macro2", "quote", @@ -16342,14 +19700,14 @@ dependencies = [ [[package]] name = "syn-solidity" -version = "0.4.2" +version = "1.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "86b837ef12ab88835251726eb12237655e61ec8dc8a280085d1961cdc3dfd047" +checksum = "ff790eb176cc81bb8936aed0f7b9f14fc4670069a2d371b3e3b0ecce908b2cb3" dependencies = [ "paste", "proc-macro2", "quote", - "syn 2.0.79", + "syn 2.0.110", ] [[package]] @@ -16366,36 +19724,57 @@ dependencies = [ [[package]] name = "synstructure" -version = "0.13.1" +version = "0.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971" +checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" dependencies = [ "proc-macro2", "quote", - "syn 2.0.79", + "syn 2.0.110", +] + +[[package]] +name = "sysinfo" +version = "0.30.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0a5b4ddaee55fb2bea2bf0e5000747e5f5c0de765e5a5ff87f4cd106439f4bb3" +dependencies = [ + "cfg-if", + "core-foundation-sys", + "libc", + "ntapi", + "once_cell", + "rayon", + "windows 0.52.0", ] [[package]] name = "system-configuration" -version = "0.5.1" +version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7" +checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b" dependencies = [ - "bitflags 1.3.2", - "core-foundation", + "bitflags 2.10.0", + "core-foundation 0.9.4", "system-configuration-sys", ] [[package]] name = "system-configuration-sys" -version = "0.5.0" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9" +checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4" dependencies = [ "core-foundation-sys", "libc", ] +[[package]] +name = "tagptr" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7b2093cf4c8eb1e67749a6762251bc9cd836b6fc171623bd0a9d324d37af2417" + [[package]] name = "tap" version = "1.0.1" @@ -16404,21 +19783,21 @@ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" [[package]] name = "target-lexicon" -version = "0.12.16" +version = "0.13.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1" +checksum = "df7f62577c25e07834649fc3b39fafdc597c0a3527dc1c60129201ccfcbaa50c" [[package]] name = "tempfile" -version = "3.13.0" +version = "3.23.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f0f2c9fc62d0beef6951ccffd757e241266a2c833136efbe35af6cd2567dca5b" +checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16" dependencies = [ - "cfg-if", - "fastrand 2.1.1", + "fastrand", + "getrandom 0.3.4", "once_cell", - "rustix 0.38.37", - "windows-sys 0.59.0", + "rustix 1.1.2", + "windows-sys 0.61.2", ] [[package]] @@ -16432,73 +19811,73 @@ dependencies = [ [[package]] name = "terminal_size" -version = "0.3.0" +version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "21bebf2b7c9e0a515f6e0f8c51dc0f8e4696391e6f1ff30379559f8365fb0df7" +checksum = "60b8cb979cb11c32ce1603f8137b22262a9d131aaa5c37b5678025f22b8becd0" dependencies = [ - "rustix 0.38.37", - "windows-sys 0.48.0", + "rustix 1.1.2", + "windows-sys 0.60.2", ] [[package]] name = "termtree" -version = "0.4.1" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76" +checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683" [[package]] name = "testnet-parachains-constants" -version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "16.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "cumulus-primitives-core", - "frame-support", - "polkadot-core-primitives", + "cumulus-primitives-core 0.21.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "polkadot-core-primitives 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "rococo-runtime-constants", "smallvec", - "sp-runtime", - "staging-xcm", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "staging-xcm 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "westend-runtime-constants", ] [[package]] name = "thiserror" -version = "1.0.64" +version = "1.0.69" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d50af8abc119fb8bb6dbabcfa89656f46f84aa0ac7688088608076ad2b459a84" +checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" dependencies = [ - "thiserror-impl", + "thiserror-impl 1.0.69", ] [[package]] -name = "thiserror-core" -version = "1.0.50" +name = "thiserror" +version = "2.0.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c001ee18b7e5e3f62cbf58c7fe220119e68d902bb7443179c0c8aef30090e999" +checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8" dependencies = [ - "thiserror-core-impl", + "thiserror-impl 2.0.17", ] [[package]] -name = "thiserror-core-impl" -version = "1.0.50" +name = "thiserror-impl" +version = "1.0.69" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e4c60d69f36615a077cc7663b9cb8e42275722d23e58a7fa3d2c7f2915d09d04" +checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" dependencies = [ "proc-macro2", "quote", - "syn 2.0.79", + "syn 2.0.110", ] [[package]] name = "thiserror-impl" -version = "1.0.64" +version = "2.0.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08904e7672f5eb876eaaf87e0ce17857500934f4981c4a0ab2b4aa98baac7fc3" +checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913" dependencies = [ "proc-macro2", "quote", - "syn 2.0.79", + "syn 2.0.110", ] [[package]] @@ -16509,12 +19888,11 @@ checksum = "3bf63baf9f5039dadc247375c29eb13706706cfde997d0330d05aa63a77d8820" [[package]] name = "thread_local" -version = "1.1.8" +version = "1.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c" +checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185" dependencies = [ "cfg-if", - "once_cell", ] [[package]] @@ -16526,19 +19904,6 @@ dependencies = [ "num_cpus", ] -[[package]] -name = "thrift" -version = "0.15.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b82ca8f46f95b3ce96081fe3dd89160fdea970c254bb72925255d1b62aae692e" -dependencies = [ - "byteorder", - "integer-encoding", - "log", - "ordered-float", - "threadpool", -] - [[package]] name = "tikv-jemalloc-ctl" version = "0.5.4" @@ -16560,21 +19925,11 @@ dependencies = [ "libc", ] -[[package]] -name = "tikv-jemallocator" -version = "0.5.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "965fe0c26be5c56c94e38ba547249074803efd52adfb66de62107d95aab3eaca" -dependencies = [ - "libc", - "tikv-jemalloc-sys", -] - [[package]] name = "time" -version = "0.3.36" +version = "0.3.44" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885" +checksum = "91e7d9e3bb61134e77bde20dd4825b97c010155709965fedf0f49bb138e52a9d" dependencies = [ "deranged", "itoa", @@ -16587,15 +19942,15 @@ dependencies = [ [[package]] name = "time-core" -version = "0.1.2" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" +checksum = "40868e7c1d2f0b8d73e4a8c7f0ff63af4f6d19be117e90bd73eb1d62cf831c6b" [[package]] name = "time-macros" -version = "0.2.18" +version = "0.2.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf" +checksum = "30cfb0125f12d9c277f35663a0a33f8c30190f4e4574868a330595412d34ebf3" dependencies = [ "num-conv", "time-core", @@ -16610,11 +19965,21 @@ dependencies = [ "crunchy", ] +[[package]] +name = "tinystr" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869" +dependencies = [ + "displaydoc", + "zerovec", +] + [[package]] name = "tinyvec" -version = "1.8.0" +version = "1.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938" +checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa" dependencies = [ "tinyvec_macros", ] @@ -16627,31 +19992,30 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.40.0" +version = "1.48.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2b070231665d27ad9ec9b8df639893f46727666c6767db40317fbe920a5d998" +checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408" dependencies = [ - "backtrace", "bytes", "libc", "mio", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "pin-project-lite", "signal-hook-registry", - "socket2 0.5.7", + "socket2 0.6.1", "tokio-macros", - "windows-sys 0.52.0", + "windows-sys 0.61.2", ] [[package]] name = "tokio-macros" -version = "2.4.0" +version = "2.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752" +checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5" dependencies = [ "proc-macro2", "quote", - "syn 2.0.79", + "syn 2.0.110", ] [[package]] @@ -16661,36 +20025,25 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7f57eb36ecbe0fc510036adff84824dd3c24bb781e21bfa67b69d556aa85214f" dependencies = [ "pin-project", - "rand", - "tokio", -] - -[[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", + "rand 0.8.5", "tokio", ] [[package]] name = "tokio-rustls" -version = "0.26.0" +version = "0.26.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c7bc40d0e5a97695bb96e27995cd3a08538541b0a846f65bba7a359f36700d4" +checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61" dependencies = [ - "rustls 0.23.13", - "rustls-pki-types", + "rustls", "tokio", ] [[package]] name = "tokio-stream" -version = "0.1.16" +version = "0.1.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4f4e6ce100d0eb49a2734f8c0812bcd324cf357d21810932c5df6b96ef2b86f1" +checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047" dependencies = [ "futures-core", "pin-project-lite", @@ -16700,24 +20053,25 @@ dependencies = [ [[package]] name = "tokio-tungstenite" -version = "0.20.1" +version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "212d5dcb2a1ce06d81107c3d0ffa3121fe974b73f068c8282cb1c32328113b6c" +checksum = "489a59b6730eda1b0171fcfda8b121f4bee2b35cba8645ca35c5f7ba3eb736c1" dependencies = [ "futures-util", "log", - "rustls 0.21.12", - "rustls-native-certs 0.6.3", + "rustls", + "rustls-native-certs", + "rustls-pki-types", "tokio", - "tokio-rustls 0.24.1", + "tokio-rustls", "tungstenite", ] [[package]] name = "tokio-util" -version = "0.7.12" +version = "0.7.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61e7c3654c13bcd040d4a03abee2c75b1d14a37b423cf5a813ceae1cc903ec6a" +checksum = "2efa149fe76073d6e8fd97ef4f4eca7b67f599660115591483572e406e165594" dependencies = [ "bytes", "futures-core", @@ -16738,38 +20092,75 @@ dependencies = [ [[package]] name = "toml" -version = "0.8.19" +version = "0.8.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1ed1f98e3fdc28d6d910e6737ae6ab1a93bf1985935a1193e68f93eeb68d24e" +checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362" dependencies = [ "serde", "serde_spanned", - "toml_datetime", - "toml_edit", + "toml_datetime 0.6.11", + "toml_edit 0.22.27", ] [[package]] name = "toml_datetime" -version = "0.6.8" +version = "0.6.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41" +checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c" dependencies = [ "serde", ] +[[package]] +name = "toml_datetime" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f2cdb639ebbc97961c51720f858597f7f24c4fc295327923af55b74c3c724533" +dependencies = [ + "serde_core", +] + [[package]] name = "toml_edit" -version = "0.22.22" +version = "0.22.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ae48d6208a266e853d946088ed816055e556cc6028c5e8e2b84d9fa5dd7c7f5" +checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a" dependencies = [ - "indexmap 2.5.0", + "indexmap 2.12.0", "serde", "serde_spanned", - "toml_datetime", + "toml_datetime 0.6.11", + "toml_write", + "winnow", +] + +[[package]] +name = "toml_edit" +version = "0.23.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6485ef6d0d9b5d0ec17244ff7eb05310113c3f316f2d14200d4de56b3cb98f8d" +dependencies = [ + "indexmap 2.12.0", + "toml_datetime 0.7.3", + "toml_parser", + "winnow", +] + +[[package]] +name = "toml_parser" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c0cbe268d35bdb4bb5a56a2de88d0ad0eb70af5384a99d648cd4b3d04039800e" +dependencies = [ "winnow", ] +[[package]] +name = "toml_write" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801" + [[package]] name = "tower" version = "0.4.13" @@ -16791,9 +20182,9 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1e9cd434a998747dd2c4276bc96ee2e0c7a2eadf3cae88e52be55a05fa9053f5" dependencies = [ - "bitflags 2.6.0", + "bitflags 2.10.0", "bytes", - "http 1.1.0", + "http 1.3.1", "http-body 1.0.1", "http-body-util", "pin-project-lite", @@ -16815,9 +20206,9 @@ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" [[package]] name = "tracing" -version = "0.1.40" +version = "0.1.41" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" +checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0" dependencies = [ "log", "pin-project-lite", @@ -16827,20 +20218,20 @@ dependencies = [ [[package]] name = "tracing-attributes" -version = "0.1.27" +version = "0.1.30" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" +checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903" dependencies = [ "proc-macro2", "quote", - "syn 2.0.79", + "syn 2.0.110", ] [[package]] name = "tracing-core" -version = "0.1.32" +version = "0.1.34" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" +checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678" dependencies = [ "once_cell", "valuable", @@ -16858,25 +20249,50 @@ dependencies = [ [[package]] name = "tracing-gum" -version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "22.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e5c8835791739189b61630f730343bf7330a48ef01b3b49be0968342e77569b3" +dependencies = [ + "coarsetime", + "polkadot-primitives 21.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "tracing", + "tracing-gum-proc-macro 5.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "tracing-gum" +version = "22.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "coarsetime", - "polkadot-primitives", + "polkadot-primitives 21.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "tracing", - "tracing-gum-proc-macro", + "tracing-gum-proc-macro 5.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", +] + +[[package]] +name = "tracing-gum-proc-macro" +version = "5.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0f074568687ffdfd0adb6005aa8d1d96840197f2c159f80471285f08694cf0ce" +dependencies = [ + "expander", + "proc-macro-crate 3.4.0", + "proc-macro2", + "quote", + "syn 2.0.110", ] [[package]] name = "tracing-gum-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "expander", - "proc-macro-crate 3.2.0", + "proc-macro-crate 3.4.0", "proc-macro2", "quote", - "syn 2.0.79", + "syn 2.0.110", ] [[package]] @@ -16892,15 +20308,24 @@ dependencies = [ [[package]] name = "tracing-subscriber" -version = "0.3.18" +version = "0.2.25" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0e0d2eaa99c3c2e41547cfa109e910a68ea03823cccad4a0525dcbc9b01e8c71" +dependencies = [ + "tracing-core", +] + +[[package]] +name = "tracing-subscriber" +version = "0.3.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b" +checksum = "2054a14f5307d601f88daf0553e1cbf472acc4f2c51afab632431cdcd72124d5" dependencies = [ "matchers", "nu-ansi-term", "once_cell", - "parking_lot 0.12.3", - "regex", + "parking_lot 0.12.5", + "regex-automata", "sharded-slab", "smallvec", "thread_local", @@ -16911,96 +20336,24 @@ dependencies = [ ] [[package]] -name = "trie-db" -version = "0.29.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c992b4f40c234a074d48a757efeabb1a6be88af84c0c23f7ca158950cb0ae7f" -dependencies = [ - "hash-db", - "log", - "rustc-hex", - "smallvec", -] - -[[package]] -name = "trie-root" -version = "0.18.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d4ed310ef5ab98f5fa467900ed906cb9232dd5376597e00fd4cba2a449d06c0b" -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", - "smallvec", - "socket2 0.4.10", - "thiserror", - "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", - "smallvec", - "thiserror", - "tinyvec", - "tokio", - "tracing", - "url", -] - -[[package]] -name = "trust-dns-resolver" -version = "0.23.2" +name = "trie-db" +version = "0.30.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "10a3e6c3aff1718b3c73e395d1f35202ba2ffa847c6a62eea0db8fb4cfe30be6" +checksum = "6c0670ab45a6b7002c7df369fee950a27cf29ae0474343fd3a15aa15f691e7a6" dependencies = [ - "cfg-if", - "futures-util", - "ipconfig", - "lru-cache", - "once_cell", - "parking_lot 0.12.3", - "rand", - "resolv-conf", + "hash-db", + "log", + "rustc-hex", "smallvec", - "thiserror", - "tokio", - "tracing", - "trust-dns-proto 0.23.2", +] + +[[package]] +name = "trie-root" +version = "0.18.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d4ed310ef5ab98f5fa467900ed906cb9232dd5376597e00fd4cba2a449d06c0b" +dependencies = [ + "hash-db", ] [[package]] @@ -17014,14 +20367,14 @@ name = "try-runtime-cli" version = "0.8.0" dependencies = [ "clap", - "env_logger 0.11.5", - "frame-support", - "parity-scale-codec", - "sp-core", - "sp-io", - "sp-runtime", - "sp-state-machine", - "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", + "env_logger", + "frame-support 43.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parity-scale-codec", + "sp-core 38.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-io 43.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-runtime 44.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-state-machine 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-storage 22.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "tokio", "try-runtime-core", ] @@ -17035,49 +20388,49 @@ dependencies = [ "async-trait", "bytesize", "clap", - "cumulus-client-parachain-inherent", - "cumulus-primitives-core", - "cumulus-primitives-parachain-inherent", - "frame-remote-externalities", - "frame-support", - "frame-system", - "frame-try-runtime", + "cumulus-client-parachain-inherent 0.20.0 (registry+https://github.com/rust-lang/crates.io-index)", + "cumulus-primitives-core 0.21.0 (registry+https://github.com/rust-lang/crates.io-index)", + "cumulus-primitives-parachain-inherent 0.21.0 (registry+https://github.com/rust-lang/crates.io-index)", + "frame-remote-externalities 0.54.0 (registry+https://github.com/rust-lang/crates.io-index)", + "frame-support 43.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "frame-system 43.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "frame-try-runtime 0.49.0 (registry+https://github.com/rust-lang/crates.io-index)", "hex", "itertools 0.13.0", "log", "paris", "parity-scale-codec", - "polkadot-primitives", + "polkadot-primitives 21.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "regex", - "sc-cli", - "sc-executor", - "sc-service", + "sc-cli 0.55.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-executor 0.45.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sc-service 0.54.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde", "serde_json", "similar-asserts", - "sp-api", - "sp-consensus-aura", - "sp-consensus-babe", - "sp-core", - "sp-externalities 0.25.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "sp-inherents", - "sp-io", - "sp-keystore", - "sp-rpc", - "sp-runtime", - "sp-state-machine", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "sp-timestamp", - "sp-transaction-storage-proof", - "sp-version", - "sp-weights", + "sp-api 39.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-consensus-aura 0.45.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-consensus-babe 0.45.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-core 38.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-externalities 0.30.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-inherents 39.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-io 43.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-keystore 0.44.1 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-rpc 36.0.1 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-runtime 44.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-state-machine 0.48.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-timestamp 39.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-transaction-storage-proof 39.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-version 42.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-weights 33.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "strum 0.26.3", "strum_macros 0.26.4", "substrate-cli-test-utils", - "substrate-rpc-client", + "substrate-rpc-client 0.52.0 (registry+https://github.com/rust-lang/crates.io-index)", "tempfile", "tokio", - "zstd 0.13.2", + "zstd 0.13.3", ] [[package]] @@ -17088,20 +20441,20 @@ checksum = "f4f195fd851901624eee5a58c4bb2b4f06399148fcd0ed336e6f1cb60a9881df" [[package]] name = "tungstenite" -version = "0.20.1" +version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9e3dac10fd62eaf6617d3a904ae222845979aec67c615d1c842b4002c7666fb9" +checksum = "eadc29d668c91fcc564941132e17b28a7ceb2f3ebf0b9dae3e03fd7a6748eb0d" dependencies = [ - "byteorder", "bytes", "data-encoding", - "http 0.2.12", + "http 1.3.1", "httparse", "log", - "rand", - "rustls 0.21.12", + "rand 0.9.2", + "rustls", + "rustls-pki-types", "sha1", - "thiserror", + "thiserror 2.0.17", "url", "utf-8", ] @@ -17120,15 +20473,15 @@ checksum = "97fee6b57c6a41524a810daee9286c02d7752c4253064d0b05472833a438f675" dependencies = [ "cfg-if", "digest 0.10.7", - "rand", + "rand 0.8.5", "static_assertions", ] [[package]] name = "typenum" -version = "1.17.0" +version = "1.19.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" +checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb" [[package]] name = "ucd-trie" @@ -17149,22 +20502,28 @@ dependencies = [ ] [[package]] -name = "unarray" -version = "0.1.4" +name = "uint" +version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94" +checksum = "909988d098b2f738727b161a106cfc7cab00c539c2687a8836f8e565976fb53e" +dependencies = [ + "byteorder", + "crunchy", + "hex", + "static_assertions", +] [[package]] -name = "unicode-bidi" -version = "0.3.15" +name = "unarray" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75" +checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94" [[package]] name = "unicode-ident" -version = "1.0.13" +version = "1.0.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe" +checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5" [[package]] name = "unicode-normalization" @@ -17183,9 +20542,9 @@ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493" [[package]] name = "unicode-width" -version = "0.1.14" +version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af" +checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254" [[package]] name = "unicode-xid" @@ -17209,7 +20568,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", @@ -17239,13 +20598,14 @@ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" [[package]] name = "url" -version = "2.5.2" +version = "2.5.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c" +checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b" dependencies = [ "form_urlencoded", - "idna 0.5.0", + "idna", "percent-encoding", + "serde", ] [[package]] @@ -17254,17 +20614,34 @@ version = "0.7.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" +[[package]] +name = "utf8_iter" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" + [[package]] name = "utf8parse" version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" +[[package]] +name = "uuid" +version = "1.18.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2f87b8aa10b915a06587d0dec516c282ff295b475d94abf425d62b57710070a2" +dependencies = [ + "getrandom 0.3.4", + "js-sys", + "wasm-bindgen", +] + [[package]] name = "valuable" -version = "0.1.0" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" +checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65" [[package]] name = "vcpkg" @@ -17272,6 +20649,22 @@ version = "0.2.15" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" +[[package]] +name = "verifiable" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "225eaa083192400abfe78838e3089c539a361e0dd9b6884f61b5c6237676ec01" +dependencies = [ + "ark-scale 0.0.13", + "ark-serialize 0.5.0", + "ark-vrf", + "bounded-collections 0.1.9", + "derive-where", + "parity-scale-codec", + "scale-info", + "schnorrkel 0.10.2", +] + [[package]] name = "version_check" version = "0.9.5" @@ -17286,42 +20679,83 @@ checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d" [[package]] name = "w3f-bls" -version = "0.1.4" +version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c5da5fa2c6afa2c9158eaa7cd9aee249765eb32b5fb0c63ad8b9e79336a47ec" +checksum = "e6bfb937b3d12077654a9e43e32a4e9c20177dd9fea0f3aba673e7840bb54f32" dependencies = [ "ark-bls12-377", - "ark-bls12-381", - "ark-ec", + "ark-bls12-381 0.4.0", + "ark-ec 0.4.2", "ark-ff 0.4.2", "ark-serialize 0.4.2", - "ark-serialize-derive", + "ark-serialize-derive 0.4.2", "arrayref", - "constcat", "digest 0.10.7", - "rand", - "rand_chacha", - "rand_core", - "sha2 0.10.8", + "rand 0.8.5", + "rand_chacha 0.3.1", + "rand_core 0.6.4", + "sha2 0.10.9", "sha3", - "thiserror", "zeroize", ] [[package]] -name = "wait-timeout" -version = "0.2.0" +name = "w3f-pcs" +version = "0.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6" +checksum = "fbe7a8d5c914b69392ab3b267f679a2e546fe29afaddce47981772ac71bd02e1" dependencies = [ - "libc", + "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", + "rayon", ] [[package]] -name = "waker-fn" -version = "1.2.0" +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", + "rayon", + "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", + "rayon", + "w3f-pcs", + "w3f-plonk-common", +] + +[[package]] +name = "wait-timeout" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "317211a0dc0ceedd78fb2ca9a44aed3d7b9b26f81870d485c07122b4350673b7" +checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11" +dependencies = [ + "libc", +] [[package]] name = "walkdir" @@ -17344,9 +20778,18 @@ dependencies = [ [[package]] name = "wasi" -version = "0.11.0+wasi-snapshot-preview1" +version = "0.11.1+wasi-snapshot-preview1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" +checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" + +[[package]] +name = "wasip2" +version = "1.0.1+wasi-0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7" +dependencies = [ + "wit-bindgen", +] [[package]] name = "wasix" @@ -17359,47 +20802,35 @@ dependencies = [ [[package]] name = "wasm-bindgen" -version = "0.2.93" +version = "0.2.105" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a82edfc16a6c469f5f44dc7b571814045d60404b55a0ee849f9bcfa2e63dd9b5" +checksum = "da95793dfc411fbbd93f5be7715b0578ec61fe87cb1a42b12eb625caa5c5ea60" dependencies = [ "cfg-if", "once_cell", + "rustversion", "wasm-bindgen-macro", -] - -[[package]] -name = "wasm-bindgen-backend" -version = "0.2.93" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9de396da306523044d3302746f1208fa71d7532227f15e347e2d93e4145dd77b" -dependencies = [ - "bumpalo", - "log", - "once_cell", - "proc-macro2", - "quote", - "syn 2.0.79", "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-futures" -version = "0.4.43" +version = "0.4.55" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61e9300f63a621e96ed275155c108eb6f843b6a26d053f122ab69724559dc8ed" +checksum = "551f88106c6d5e7ccc7cd9a16f312dd3b5d36ea8b4954304657d5dfba115d4a0" dependencies = [ "cfg-if", "js-sys", + "once_cell", "wasm-bindgen", "web-sys", ] [[package]] name = "wasm-bindgen-macro" -version = "0.2.93" +version = "0.2.105" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "585c4c91a46b072c92e908d99cb1dcdf95c5218eeb6f3bf1efa991ee7a68cccf" +checksum = "04264334509e04a7bf8690f2384ef5265f05143a4bff3889ab7a3269adab59c2" dependencies = [ "quote", "wasm-bindgen-macro-support", @@ -17407,22 +20838,35 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro-support" -version = "0.2.93" +version = "0.2.105" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "afc340c74d9005395cf9dd098506f7f44e38f2b4a21c6aaacf9a105ea5e1e836" +checksum = "420bc339d9f322e562942d52e115d57e950d12d88983a14c79b86859ee6c7ebc" dependencies = [ + "bumpalo", "proc-macro2", "quote", - "syn 2.0.79", - "wasm-bindgen-backend", + "syn 2.0.110", "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-shared" -version = "0.2.93" +version = "0.2.105" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "76f218a38c84bcb33c25ec7059b07847d465ce0e0a76b995e134a45adcb6af76" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "wasm-encoder" +version = "0.235.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c62a0a307cb4a311d3a07867860911ca130c3494e8c2719593806c08bc5d0484" +checksum = "b3bc393c395cb621367ff02d854179882b9a351b4e0c93d1397e6090b53a5c2a" +dependencies = [ + "leb128fmt", + "wasmparser", +] [[package]] name = "wasm-instrument" @@ -17444,7 +20888,7 @@ dependencies = [ "strum 0.24.1", "strum_macros 0.24.3", "tempfile", - "thiserror", + "thiserror 1.0.69", "wasm-opt-cxx-sys", "wasm-opt-sys", ] @@ -17488,19 +20932,6 @@ dependencies = [ "web-sys", ] -[[package]] -name = "wasmi" -version = "0.31.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "77a8281d1d660cdf54c76a3efa9ddd0c270cada1383a995db3ccb43d166456c7" -dependencies = [ - "smallvec", - "spin 0.9.8", - "wasmi_arena", - "wasmi_core 0.13.0", - "wasmparser-nostd", -] - [[package]] name = "wasmi" version = "0.32.3" @@ -17514,39 +20945,21 @@ dependencies = [ "smallvec", "spin 0.9.8", "wasmi_collections", - "wasmi_core 0.32.3", + "wasmi_core", "wasmparser-nostd", ] -[[package]] -name = "wasmi_arena" -version = "0.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "104a7f73be44570cac297b3035d76b169d6599637631cf37a1703326a0727073" - [[package]] name = "wasmi_collections" version = "0.32.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9c128c039340ffd50d4195c3f8ce31aac357f06804cfc494c8b9508d4b30dca4" dependencies = [ - "ahash 0.8.11", + "ahash", "hashbrown 0.14.5", "string-interner", ] -[[package]] -name = "wasmi_core" -version = "0.13.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dcf1a7db34bff95b85c261002720c00c3a6168256dcb93041d3fa2054d19856a" -dependencies = [ - "downcast-rs", - "libm", - "num-traits", - "paste", -] - [[package]] name = "wasmi_core" version = "0.32.3" @@ -17561,12 +20974,15 @@ dependencies = [ [[package]] name = "wasmparser" -version = "0.102.0" +version = "0.235.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "48134de3d7598219ab9eaf6b91b15d8e50d31da76b8519fe4ecfcec2cf35104b" +checksum = "161296c618fa2d63f6ed5fffd1112937e803cb9ec71b32b01a76321555660917" dependencies = [ - "indexmap 1.9.3", - "url", + "bitflags 2.10.0", + "hashbrown 0.15.5", + "indexmap 2.12.0", + "semver 1.0.27", + "serde", ] [[package]] @@ -17578,219 +20994,262 @@ dependencies = [ "indexmap-nostd", ] +[[package]] +name = "wasmprinter" +version = "0.235.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "75aa8e9076de6b9544e6dab4badada518cca0bf4966d35b131bbd057aed8fa0a" +dependencies = [ + "anyhow", + "termcolor", + "wasmparser", +] + [[package]] name = "wasmtime" -version = "8.0.1" +version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f907fdead3153cb9bfb7a93bbd5b62629472dc06dee83605358c64c52ed3dda9" +checksum = "b6fe976922a16af3b0d67172c473d1fd4f1aa5d0af9c8ba6538c741f3af686f4" dependencies = [ + "addr2line 0.24.2", "anyhow", - "bincode", + "bitflags 2.10.0", + "bumpalo", + "cc", "cfg-if", - "indexmap 1.9.3", + "gimli 0.31.1", + "hashbrown 0.15.5", + "indexmap 2.12.0", "libc", "log", - "object 0.30.4", + "mach2", + "memfd", + "object 0.36.7", "once_cell", - "paste", - "psm", + "postcard", + "pulley-interpreter", "rayon", + "rustix 1.1.2", "serde", + "serde_derive", + "smallvec", "target-lexicon", "wasmparser", - "wasmtime-cache", - "wasmtime-cranelift", "wasmtime-environ", - "wasmtime-jit", - "wasmtime-runtime", - "windows-sys 0.45.0", + "wasmtime-internal-asm-macros", + "wasmtime-internal-cache", + "wasmtime-internal-cranelift", + "wasmtime-internal-fiber", + "wasmtime-internal-jit-icache-coherence", + "wasmtime-internal-math", + "wasmtime-internal-slab", + "wasmtime-internal-unwinder", + "wasmtime-internal-versioned-export-macros", + "wasmtime-internal-winch", + "windows-sys 0.59.0", +] + +[[package]] +name = "wasmtime-environ" +version = "35.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "44b6264a78d806924abbc76bbc75eac24976bc83bdfb938e5074ae551242436f" +dependencies = [ + "anyhow", + "cpp_demangle", + "cranelift-bitset", + "cranelift-entity", + "gimli 0.31.1", + "indexmap 2.12.0", + "log", + "object 0.36.7", + "postcard", + "rustc-demangle", + "serde", + "serde_derive", + "smallvec", + "target-lexicon", + "wasm-encoder", + "wasmparser", + "wasmprinter", ] [[package]] -name = "wasmtime-asm-macros" -version = "8.0.1" +name = "wasmtime-internal-asm-macros" +version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d3b9daa7c14cd4fa3edbf69de994408d5f4b7b0959ac13fa69d465f6597f810d" +checksum = "6775a9b516559716e5710e95a8014ca0adcc81e5bf4d3ad7899d89ae40094d1a" dependencies = [ "cfg-if", ] [[package]] -name = "wasmtime-cache" -version = "8.0.1" +name = "wasmtime-internal-cache" +version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c86437fa68626fe896e5afc69234bb2b5894949083586535f200385adfd71213" +checksum = "138e33ad4bd120f3b1c77d6d0dcdce0de8239555495befcda89393a40ba5e324" dependencies = [ "anyhow", - "base64 0.21.7", - "bincode", + "base64", "directories-next", - "file-per-thread-logger", "log", - "rustix 0.36.17", + "postcard", + "rustix 1.1.2", "serde", - "sha2 0.10.8", - "toml 0.5.11", - "windows-sys 0.45.0", - "zstd 0.11.2+zstd.1.5.2", + "serde_derive", + "sha2 0.10.9", + "toml 0.8.23", + "windows-sys 0.59.0", + "zstd 0.13.3", ] [[package]] -name = "wasmtime-cranelift" -version = "8.0.1" +name = "wasmtime-internal-cranelift" +version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b1cefde0cce8cb700b1b21b6298a3837dba46521affd7b8c38a9ee2c869eee04" +checksum = "7ec9ad7565e6a8de7cb95484e230ff689db74a4a085219e0da0cbd637a29c01c" dependencies = [ "anyhow", + "cfg-if", "cranelift-codegen", + "cranelift-control", "cranelift-entity", "cranelift-frontend", "cranelift-native", - "cranelift-wasm", - "gimli 0.27.3", + "gimli 0.31.1", + "itertools 0.14.0", "log", - "object 0.30.4", + "object 0.36.7", + "pulley-interpreter", + "smallvec", "target-lexicon", - "thiserror", + "thiserror 2.0.17", "wasmparser", - "wasmtime-cranelift-shared", "wasmtime-environ", + "wasmtime-internal-math", + "wasmtime-internal-versioned-export-macros", ] [[package]] -name = "wasmtime-cranelift-shared" -version = "8.0.1" +name = "wasmtime-internal-fiber" +version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd041e382ef5aea1b9fc78442394f1a4f6d676ce457e7076ca4cb3f397882f8b" +checksum = "8b636ff8b220ebaf29dfe3b23770e4b2bad317b9683e3bf7345e162387385b39" dependencies = [ "anyhow", - "cranelift-codegen", - "cranelift-native", - "gimli 0.27.3", - "object 0.30.4", - "target-lexicon", - "wasmtime-environ", + "cc", + "cfg-if", + "libc", + "rustix 1.1.2", + "wasmtime-internal-asm-macros", + "wasmtime-internal-versioned-export-macros", + "windows-sys 0.59.0", ] [[package]] -name = "wasmtime-environ" -version = "8.0.1" +name = "wasmtime-internal-jit-icache-coherence" +version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a990198cee4197423045235bf89d3359e69bd2ea031005f4c2d901125955c949" +checksum = "4417e06b7f80baff87d9770852c757a39b8d7f11d78b2620ca992b8725f16f50" dependencies = [ "anyhow", - "cranelift-entity", - "gimli 0.27.3", - "indexmap 1.9.3", - "log", - "object 0.30.4", - "serde", - "target-lexicon", - "thiserror", - "wasmparser", - "wasmtime-types", + "cfg-if", + "libc", + "windows-sys 0.59.0", ] [[package]] -name = "wasmtime-jit" -version = "8.0.1" +name = "wasmtime-internal-math" +version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0de48df552cfca1c9b750002d3e07b45772dd033b0b206d5c0968496abf31244" +checksum = "7710d5c4ecdaa772927fd11e5dc30a9a62d1fc8fe933e11ad5576ad596ab6612" dependencies = [ - "addr2line 0.19.0", - "anyhow", - "bincode", - "cfg-if", - "cpp_demangle", - "gimli 0.27.3", - "log", - "object 0.30.4", - "rustc-demangle", - "serde", - "target-lexicon", - "wasmtime-environ", - "wasmtime-jit-debug", - "wasmtime-jit-icache-coherence", - "wasmtime-runtime", - "windows-sys 0.45.0", + "libm", ] [[package]] -name = "wasmtime-jit-debug" -version = "8.0.1" +name = "wasmtime-internal-slab" +version = "35.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6ab22fabe1eed27ab01fd47cd89deacf43ad222ed7fd169ba6f4dd1fbddc53b" + +[[package]] +name = "wasmtime-internal-unwinder" +version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e0554b84c15a27d76281d06838aed94e13a77d7bf604bbbaf548aa20eb93846" +checksum = "307708f302f5dcf19c1bbbfb3d9f2cbc837dd18088a7988747b043a46ba38ecc" dependencies = [ - "object 0.30.4", - "once_cell", - "rustix 0.36.17", + "anyhow", + "cfg-if", + "cranelift-codegen", + "log", + "object 0.36.7", ] [[package]] -name = "wasmtime-jit-icache-coherence" -version = "8.0.1" +name = "wasmtime-internal-versioned-export-macros" +version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aecae978b13f7f67efb23bd827373ace4578f2137ec110bbf6a4a7cde4121bbd" +checksum = "342b0466f92b7217a4de9e114175fedee1907028567d2548bcd42f71a8b5b016" dependencies = [ - "cfg-if", - "libc", - "windows-sys 0.45.0", + "proc-macro2", + "quote", + "syn 2.0.110", ] [[package]] -name = "wasmtime-runtime" -version = "8.0.1" +name = "wasmtime-internal-winch" +version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "658cf6f325232b6760e202e5255d823da5e348fdea827eff0a2a22319000b441" +checksum = "2012e7384c25b91aab2f1b6a1e1cbab9d0f199bbea06cc873597a3f047f05730" dependencies = [ "anyhow", - "cc", - "cfg-if", - "indexmap 1.9.3", - "libc", - "log", - "mach", - "memfd", - "memoffset", - "paste", - "rand", - "rustix 0.36.17", - "wasmtime-asm-macros", + "cranelift-codegen", + "gimli 0.31.1", + "object 0.36.7", + "target-lexicon", + "wasmparser", "wasmtime-environ", - "wasmtime-jit-debug", - "windows-sys 0.45.0", + "wasmtime-internal-cranelift", + "winch-codegen", ] [[package]] -name = "wasmtime-types" -version = "8.0.1" +name = "web-sys" +version = "0.3.82" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4f6fffd2a1011887d57f07654dd112791e872e3ff4a2e626aee8059ee17f06f" +checksum = "3a1f95c0d03a47f4ae1f7a64643a6bb97465d9b740f0fa8f90ea33915c99a9a1" dependencies = [ - "cranelift-entity", - "serde", - "thiserror", - "wasmparser", + "js-sys", + "wasm-bindgen", ] [[package]] -name = "web-sys" -version = "0.3.70" +name = "web-time" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26fdeaafd9bd129f65e7c031593c24d62186301e0c72c8978fa1678be7d532c0" +checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" dependencies = [ "js-sys", "wasm-bindgen", ] [[package]] -name = "webpki" -version = "0.22.4" +name = "webpki-root-certs" +version = "0.26.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ed63aea5ce73d0ff405984102c42de94fc55a6b75765d621c65262469b3c9b53" +checksum = "75c7f0ef91146ebfb530314f5f1d24528d7f0767efbfd31dce919275413e393e" dependencies = [ - "ring 0.17.8", - "untrusted 0.9.0", + "webpki-root-certs 1.0.4", +] + +[[package]] +name = "webpki-root-certs" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ee3e3b5f5e80bc89f30ce8d0343bf4e5f12341c51f3e26cbeecbc7c85443e85b" +dependencies = [ + "rustls-pki-types", ] [[package]] @@ -17799,31 +21258,22 @@ version = "0.25.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1" -[[package]] -name = "webpki-roots" -version = "0.26.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "841c67bff177718f1d4dfefde8d8f0e78f9b6589319ba88312f567fc5841a958" -dependencies = [ - "rustls-pki-types", -] - [[package]] name = "westend-runtime" -version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "27.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "binary-merkle-tree", + "binary-merkle-tree 16.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "bitvec", "frame-benchmarking", "frame-election-provider-support", "frame-executive", "frame-metadata-hash-extension", - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "frame-system-benchmarking", "frame-system-rpc-runtime-api", - "frame-try-runtime", + "frame-try-runtime 0.49.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "hex-literal", "log", "pallet-asset-rate", @@ -17834,19 +21284,17 @@ dependencies = [ "pallet-balances", "pallet-beefy", "pallet-beefy-mmr", - "pallet-collective", "pallet-conviction-voting", "pallet-delegated-staking", - "pallet-democracy", "pallet-election-provider-multi-phase", "pallet-election-provider-support-benchmarking", - "pallet-elections-phragmen", "pallet-fast-unstake", "pallet-grandpa", "pallet-identity", "pallet-indices", - "pallet-membership", "pallet-message-queue", + "pallet-meta-tx", + "pallet-migrations", "pallet-mmr", "pallet-multisig", "pallet-nomination-pools", @@ -17859,56 +21307,58 @@ dependencies = [ "pallet-proxy", "pallet-recovery", "pallet-referenda", + "pallet-root-offences", "pallet-root-testing", "pallet-scheduler", "pallet-session", "pallet-session-benchmarking", - "pallet-society", "pallet-staking", + "pallet-staking-async-ah-client", + "pallet-staking-async-rc-client", "pallet-staking-runtime-api", - "pallet-state-trie-migration", "pallet-sudo", "pallet-timestamp", "pallet-transaction-payment", "pallet-transaction-payment-rpc-runtime-api", "pallet-treasury", "pallet-utility", + "pallet-verify-signature", "pallet-vesting", "pallet-whitelist", "pallet-xcm", "pallet-xcm-benchmarks", "parity-scale-codec", - "polkadot-parachain-primitives", - "polkadot-primitives", + "polkadot-parachain-primitives 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "polkadot-primitives 21.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "polkadot-runtime-common", "polkadot-runtime-parachains", "scale-info", "serde", "serde_derive", "serde_json", - "smallvec", - "sp-api", - "sp-application-crypto", - "sp-arithmetic", - "sp-authority-discovery", - "sp-block-builder", - "sp-consensus-babe", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-application-crypto 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-arithmetic 28.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-authority-discovery 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-block-builder 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-consensus-babe 0.45.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "sp-consensus-beefy", - "sp-consensus-grandpa", - "sp-core", - "sp-genesis-builder", - "sp-inherents", - "sp-io", + "sp-consensus-grandpa 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-genesis-builder 0.20.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-inherents 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-keyring 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "sp-mmr-primitives", "sp-npos-elections", - "sp-offchain", - "sp-runtime", - "sp-session", - "sp-staking", - "sp-storage 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "sp-transaction-pool", - "sp-version", - "staging-xcm", + "sp-offchain 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-session 41.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-staking 41.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-storage 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-transaction-pool 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-version 42.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "staging-xcm 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "staging-xcm-builder", "staging-xcm-executor", "substrate-wasm-builder", @@ -17918,25 +21368,25 @@ dependencies = [ [[package]] name = "westend-runtime-constants" -version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "23.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "frame-support", - "polkadot-primitives", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "polkadot-primitives 21.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "polkadot-runtime-common", "smallvec", - "sp-core", - "sp-runtime", - "sp-weights", - "staging-xcm", + "sp-core 38.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-weights 33.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "staging-xcm 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "staging-xcm-builder", ] [[package]] name = "wide" -version = "0.7.28" +version = "0.7.33" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b828f995bf1e9622031f8009f8481a85406ce1f4d4588ff746d872043e855690" +checksum = "0ce5da8ecb62bcd8ec8b7ea19f69a51275e91299be594ea5cc6ef7819e16cd03" dependencies = [ "bytemuck", "safe_arch", @@ -17944,9 +21394,9 @@ dependencies = [ [[package]] name = "widestring" -version = "1.1.0" +version = "1.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7219d36b6eac893fa81e84ebe06485e7dcbb616177469b142df14f1f4deb1311" +checksum = "72069c3113ab32ab29e5584db3c6ec55d416895e60715417b5b883a357c3e471" [[package]] name = "winapi" @@ -17966,11 +21416,11 @@ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" [[package]] name = "winapi-util" -version = "0.1.9" +version = "0.1.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb" +checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22" dependencies = [ - "windows-sys 0.59.0", + "windows-sys 0.61.2", ] [[package]] @@ -17979,23 +21429,44 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" +[[package]] +name = "winch-codegen" +version = "35.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "839a334ef7c62d8368dbd427e767a6fbb1ba08cc12ecce19cbb666c10613b585" +dependencies = [ + "anyhow", + "cranelift-assembler-x64", + "cranelift-codegen", + "gimli 0.31.1", + "regalloc2 0.12.2", + "smallvec", + "target-lexicon", + "thiserror 2.0.17", + "wasmparser", + "wasmtime-environ", + "wasmtime-internal-cranelift", + "wasmtime-internal-math", +] + [[package]] name = "windows" -version = "0.51.1" +version = "0.52.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ca229916c5ee38c2f2bc1e9d8f04df975b4bd93f9955dc69fabb5d91270045c9" +checksum = "e48a53791691ab099e5e2ad123536d0fff50652600abaf43bbf952894110d0be" dependencies = [ - "windows-core 0.51.1", - "windows-targets 0.48.5", + "windows-core 0.52.0", + "windows-targets 0.52.6", ] [[package]] -name = "windows-core" -version = "0.51.1" +name = "windows" +version = "0.53.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f1f8cf84f35d2db49a46868f947758c7a1138116f7fac3bc844f43ade1292e64" +checksum = "efc5cf48f83140dcaab716eeaea345f9e93d0018fb81162753a3f76c3397b538" dependencies = [ - "windows-targets 0.48.5", + "windows-core 0.53.0", + "windows-targets 0.52.6", ] [[package]] @@ -18007,6 +21478,84 @@ dependencies = [ "windows-targets 0.52.6", ] +[[package]] +name = "windows-core" +version = "0.53.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9dcc5b895a6377f1ab9fa55acedab1fd5ac0db66ad1e6c7f47e28a22e446a5dd" +dependencies = [ + "windows-result 0.1.2", + "windows-targets 0.52.6", +] + +[[package]] +name = "windows-core" +version = "0.62.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb" +dependencies = [ + "windows-implement", + "windows-interface", + "windows-link", + "windows-result 0.4.1", + "windows-strings", +] + +[[package]] +name = "windows-implement" +version = "0.60.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.110", +] + +[[package]] +name = "windows-interface" +version = "0.59.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.110", +] + +[[package]] +name = "windows-link" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" + +[[package]] +name = "windows-result" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5e383302e8ec8515204254685643de10811af0ed97ea37210dc26fb0032647f8" +dependencies = [ + "windows-targets 0.52.6", +] + +[[package]] +name = "windows-result" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5" +dependencies = [ + "windows-link", +] + +[[package]] +name = "windows-strings" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091" +dependencies = [ + "windows-link", +] + [[package]] name = "windows-sys" version = "0.45.0" @@ -18043,6 +21592,24 @@ dependencies = [ "windows-targets 0.52.6", ] +[[package]] +name = "windows-sys" +version = "0.60.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" +dependencies = [ + "windows-targets 0.53.5", +] + +[[package]] +name = "windows-sys" +version = "0.61.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" +dependencies = [ + "windows-link", +] + [[package]] name = "windows-targets" version = "0.42.2" @@ -18082,13 +21649,30 @@ dependencies = [ "windows_aarch64_gnullvm 0.52.6", "windows_aarch64_msvc 0.52.6", "windows_i686_gnu 0.52.6", - "windows_i686_gnullvm", + "windows_i686_gnullvm 0.52.6", "windows_i686_msvc 0.52.6", "windows_x86_64_gnu 0.52.6", "windows_x86_64_gnullvm 0.52.6", "windows_x86_64_msvc 0.52.6", ] +[[package]] +name = "windows-targets" +version = "0.53.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3" +dependencies = [ + "windows-link", + "windows_aarch64_gnullvm 0.53.1", + "windows_aarch64_msvc 0.53.1", + "windows_i686_gnu 0.53.1", + "windows_i686_gnullvm 0.53.1", + "windows_i686_msvc 0.53.1", + "windows_x86_64_gnu 0.53.1", + "windows_x86_64_gnullvm 0.53.1", + "windows_x86_64_msvc 0.53.1", +] + [[package]] name = "windows_aarch64_gnullvm" version = "0.42.2" @@ -18107,6 +21691,12 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53" + [[package]] name = "windows_aarch64_msvc" version = "0.42.2" @@ -18125,6 +21715,12 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" +[[package]] +name = "windows_aarch64_msvc" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006" + [[package]] name = "windows_i686_gnu" version = "0.42.2" @@ -18143,12 +21739,24 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" +[[package]] +name = "windows_i686_gnu" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3" + [[package]] name = "windows_i686_gnullvm" version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" +[[package]] +name = "windows_i686_gnullvm" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c" + [[package]] name = "windows_i686_msvc" version = "0.42.2" @@ -18167,6 +21775,12 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" +[[package]] +name = "windows_i686_msvc" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2" + [[package]] name = "windows_x86_64_gnu" version = "0.42.2" @@ -18185,6 +21799,12 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" +[[package]] +name = "windows_x86_64_gnu" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499" + [[package]] name = "windows_x86_64_gnullvm" version = "0.42.2" @@ -18203,6 +21823,12 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1" + [[package]] name = "windows_x86_64_msvc" version = "0.42.2" @@ -18221,11 +21847,17 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" +[[package]] +name = "windows_x86_64_msvc" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650" + [[package]] name = "winnow" -version = "0.6.20" +version = "0.7.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "36c1fec1a2bb5866f07c25f68c26e565c4c200aebb96d7e55710c19d3e8ac49b" +checksum = "21a0236b59786fed61e2a80582dd500fe61f18b5dca67a4a067d0bc9039339cf" dependencies = [ "memchr", ] @@ -18240,6 +21872,18 @@ dependencies = [ "windows-sys 0.48.0", ] +[[package]] +name = "wit-bindgen" +version = "0.46.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59" + +[[package]] +name = "writeable" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9" + [[package]] name = "wyz" version = "0.5.1" @@ -18256,131 +21900,108 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c7e468321c81fb07fa7f4c636c3972b9100f0346e5b6a9f2bd0603a52f7ed277" dependencies = [ "curve25519-dalek", - "rand_core", + "rand_core 0.6.4", "serde", "zeroize", ] [[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", + "thiserror 1.0.69", "time", ] [[package]] name = "x509-parser" -version = "0.16.0" +version = "0.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fcbc162f30700d6f3f82a24bf7cc62ffe7caea42c0b2cba8bf7f3ae50cf51f69" +checksum = "4569f339c0c402346d4a75a9e39cf8dad310e287eef1ff56d4c68e5067f53460" dependencies = [ - "asn1-rs 0.6.2", + "asn1-rs 0.7.1", "data-encoding", - "der-parser 9.0.0", + "der-parser 10.0.0", "lazy_static", "nom", - "oid-registry 0.7.1", + "oid-registry 0.8.1", "rusticata-macros", - "thiserror", + "thiserror 2.0.17", "time", ] [[package]] -name = "xcm-emulator" -version = "0.5.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +name = "xcm-procedural" +version = "11.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9d3d21c65cbf847ae0b1a8e6411b614d269d3108c6c649b039bffcf225e89aa4" dependencies = [ - "array-bytes", - "cumulus-pallet-parachain-system", - "cumulus-pallet-xcmp-queue", - "cumulus-primitives-core", - "cumulus-primitives-parachain-inherent", - "cumulus-test-relay-sproof-builder", - "frame-support", - "frame-system", - "impl-trait-for-tuples", - "log", - "pallet-balances", - "pallet-message-queue", - "parachains-common", - "parity-scale-codec", - "paste", - "polkadot-parachain-primitives", - "polkadot-primitives", - "polkadot-runtime-parachains", - "sp-arithmetic", - "sp-core", - "sp-crypto-hashing", - "sp-io", - "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "sp-tracing 16.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "staging-xcm", - "staging-xcm-executor", + "Inflector", + "proc-macro2", + "quote", + "syn 2.0.110", ] [[package]] name = "xcm-procedural" -version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "11.0.2" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ "Inflector", "proc-macro2", "quote", - "syn 2.0.79", + "syn 2.0.110", ] [[package]] name = "xcm-runtime-apis" -version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "0.10.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "frame-support", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "parity-scale-codec", "scale-info", - "sp-api", - "sp-weights", - "staging-xcm", + "sp-api 39.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-weights 33.1.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "staging-xcm 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "staging-xcm-executor", ] [[package]] name = "xcm-simulator" -version = "7.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163#8279d1046cca51a317dec15df5a9b29240545163" +version = "23.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771#09c511c3dc97961c8c2bdf7836d3ae02dd672771" dependencies = [ - "frame-support", - "frame-system", + "frame-support 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "frame-system 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "parity-scale-codec", "paste", - "polkadot-core-primitives", - "polkadot-parachain-primitives", - "polkadot-primitives", + "polkadot-core-primitives 20.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "polkadot-parachain-primitives 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "polkadot-primitives 21.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "polkadot-runtime-parachains", "scale-info", - "sp-io", - "sp-runtime", - "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=8279d1046cca51a317dec15df5a9b29240545163)", - "staging-xcm", + "sp-io 43.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "sp-runtime 44.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", + "staging-xcm 19.0.0 (git+https://github.com/paritytech/polkadot-sdk?rev=09c511c3dc97961c8c2bdf7836d3ae02dd672771)", "staging-xcm-builder", "staging-xcm-executor", ] [[package]] name = "xml-rs" -version = "0.8.22" +version = "0.8.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af4e2e2f7cba5a093896c1e150fbfe177d1883e7448200efb81d40b9d339ef26" +checksum = "3ae8337f8a065cfc972643663ea4279e04e7256de865aa66fe25cec5fb912d3f" [[package]] name = "xmltree" @@ -18400,12 +22021,34 @@ dependencies = [ "futures", "log", "nohash-hasher", - "parking_lot 0.12.3", + "parking_lot 0.12.5", + "pin-project", + "rand 0.8.5", + "static_assertions", +] + +[[package]] +name = "yamux" +version = "0.13.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "deab71f2e20691b4728b349c6cee8fc7223880fa67b6b4f92225ec32225447e5" +dependencies = [ + "futures", + "log", + "nohash-hasher", + "parking_lot 0.12.5", "pin-project", - "rand", + "rand 0.9.2", "static_assertions", + "web-time", ] +[[package]] +name = "yap" +version = "0.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bfe269e7b803a5e8e20cbd97860e136529cd83bf2c9c6d37b142467e7e1f051f" + [[package]] name = "yasna" version = "0.5.2" @@ -18415,32 +22058,75 @@ dependencies = [ "time", ] +[[package]] +name = "yoke" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954" +dependencies = [ + "stable_deref_trait", + "yoke-derive", + "zerofrom", +] + +[[package]] +name = "yoke-derive" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.110", + "synstructure 0.13.2", +] + [[package]] name = "zerocopy" -version = "0.7.35" +version = "0.8.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0" +checksum = "0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c" dependencies = [ - "byteorder", "zerocopy-derive", ] [[package]] name = "zerocopy-derive" -version = "0.7.35" +version = "0.8.27" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.110", +] + +[[package]] +name = "zerofrom" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5" +dependencies = [ + "zerofrom-derive", +] + +[[package]] +name = "zerofrom-derive" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" +checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" dependencies = [ "proc-macro2", "quote", - "syn 2.0.79", + "syn 2.0.110", + "synstructure 0.13.2", ] [[package]] name = "zeroize" -version = "1.8.1" +version = "1.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde" +checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0" dependencies = [ "zeroize_derive", ] @@ -18453,44 +22139,58 @@ checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69" dependencies = [ "proc-macro2", "quote", - "syn 2.0.79", + "syn 2.0.110", ] [[package]] -name = "zstd" -version = "0.11.2+zstd.1.5.2" +name = "zerotrie" +version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4" +checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851" dependencies = [ - "zstd-safe 5.0.2+zstd.1.5.2", + "displaydoc", + "yoke", + "zerofrom", ] [[package]] -name = "zstd" -version = "0.12.4" +name = "zerovec" +version = "0.11.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1a27595e173641171fc74a1232b7b1c7a7cb6e18222c11e9dfb9888fa424c53c" +checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002" dependencies = [ - "zstd-safe 6.0.6", + "yoke", + "zerofrom", + "zerovec-derive", +] + +[[package]] +name = "zerovec-derive" +version = "0.11.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.110", ] [[package]] name = "zstd" -version = "0.13.2" +version = "0.12.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fcf2b778a664581e31e389454a7072dab1647606d44f7feea22cd5abb9c9f3f9" +checksum = "1a27595e173641171fc74a1232b7b1c7a7cb6e18222c11e9dfb9888fa424c53c" dependencies = [ - "zstd-safe 7.2.1", + "zstd-safe 6.0.6", ] [[package]] -name = "zstd-safe" -version = "5.0.2+zstd.1.5.2" +name = "zstd" +version = "0.13.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db" +checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a" dependencies = [ - "libc", - "zstd-sys", + "zstd-safe 7.2.4", ] [[package]] @@ -18505,18 +22205,18 @@ dependencies = [ [[package]] name = "zstd-safe" -version = "7.2.1" +version = "7.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "54a3ab4db68cea366acc5c897c7b4d4d1b8994a9cd6e6f841f8964566a419059" +checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d" dependencies = [ "zstd-sys", ] [[package]] name = "zstd-sys" -version = "2.0.13+zstd.1.5.6" +version = "2.0.16+zstd.1.5.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38ff0f21cfee8f97d94cef41359e0c89aa6113028ab0291aa8ca0038995a95aa" +checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748" dependencies = [ "cc", "pkg-config", From ce7c011c5638667ffc71b7ed7f9b1067db671cd5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexandre=20Bald=C3=A9?= Date: Mon, 24 Nov 2025 12:53:04 +0000 Subject: [PATCH 4/8] Remove `--tmp` from spawned test node `--dev` implies it. --- core/tests/create_snapshot.rs | 6 +++++- core/tests/execute_block.rs | 6 +++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/core/tests/create_snapshot.rs b/core/tests/create_snapshot.rs index 6c88c350a06..b08f28689d5 100644 --- a/core/tests/create_snapshot.rs +++ b/core/tests/create_snapshot.rs @@ -42,7 +42,11 @@ async fn create_snapshot_works() { match common::start_node_inline(vec![ "--no-hardware-benchmarks", "--dev", + "--tmp", format!("--rpc-port={}", port).as_str(), + "--no-telemetry", + "--no-prometheus", + "--rpc-max-response-size=1000", // Allow large RPC responses for snapshot creation ]) { Ok(_) => {} Err(e) => { @@ -51,7 +55,7 @@ async fn create_snapshot_works() { } }); // Wait some time to ensure the node is warmed up. - std::thread::sleep(Duration::from_secs(90)); + std::thread::sleep(Duration::from_secs(180)); // Run the command with tokio let temp_dir = tempfile::Builder::new() diff --git a/core/tests/execute_block.rs b/core/tests/execute_block.rs index 3d5243c3c6f..1778f09771f 100644 --- a/core/tests/execute_block.rs +++ b/core/tests/execute_block.rs @@ -33,7 +33,11 @@ async fn execute_block_works() { match common::start_node_inline(vec![ "--no-hardware-benchmarks", "--dev", + "--tmp", format!("--rpc-port={}", port).as_str(), + "--no-telemetry", + "--no-prometheus", + "--rpc-max-response-size=1000", // Allow large RPC responses ]) { Ok(_) => {} Err(e) => { @@ -42,7 +46,7 @@ async fn execute_block_works() { } }); // Wait some time to ensure the node is warmed up. - std::thread::sleep(Duration::from_secs(90)); + std::thread::sleep(Duration::from_secs(180)); // Test passing --at common::run_with_timeout(Duration::from_secs(60), async move { From 01ea2989ff6664c22fdd9a26e68185e1c23de12b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexandre=20Bald=C3=A9?= Date: Mon, 24 Nov 2025 12:53:42 +0000 Subject: [PATCH 5/8] Add `--rpc-max-response-size` to spawned test node ... in `follow_chain.rs` test, and also increase waiting time for node's warm-up. --- core/tests/follow_chain.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/core/tests/follow_chain.rs b/core/tests/follow_chain.rs index 677c5a1e75d..a416c82cb23 100644 --- a/core/tests/follow_chain.rs +++ b/core/tests/follow_chain.rs @@ -35,6 +35,9 @@ async fn follow_chain_works() { "--no-hardware-benchmarks", "--dev", format!("--rpc-port={}", port).as_str(), + "--no-telemetry", + "--no-prometheus", + "--rpc-max-response-size=1000", // Allow large RPC responses for snapshot creation ]) { Ok(_) => {} Err(e) => { @@ -43,7 +46,7 @@ async fn follow_chain_works() { } }); // Wait some time to ensure the node is warmed up. - std::thread::sleep(Duration::from_secs(90)); + std::thread::sleep(Duration::from_secs(180)); common::run_with_timeout(Duration::from_secs(60), async move { fn start_follow(ws_url: &str) -> tokio::process::Child { From 873bdea05a7147c1450a782414fea72652bd8789 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexandre=20Bald=C3=A9?= Date: Mon, 24 Nov 2025 16:25:20 +0000 Subject: [PATCH 6/8] Bump timeout in runtime upgrade (RU) test --- core/tests/on_runtime_upgrade.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/tests/on_runtime_upgrade.rs b/core/tests/on_runtime_upgrade.rs index 537d948b04a..a57d1a009d0 100644 --- a/core/tests/on_runtime_upgrade.rs +++ b/core/tests/on_runtime_upgrade.rs @@ -40,7 +40,7 @@ mod on_runtime_upgrade { } async fn run_test(config: TestConfig, expected_success: bool) { - common::run_with_timeout(Duration::from_secs(300), async move { + common::run_with_timeout(Duration::from_secs(360), async move { let child = on_runtime_upgrade(&config); let out = child.wait_with_output().await.unwrap(); if expected_success { From 6ef43e4160b54b278e437b6db9b4938f14f78503 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexandre=20Bald=C3=A9?= Date: Mon, 24 Nov 2025 21:46:33 +0000 Subject: [PATCH 7/8] Increase timeout in runtime upgrade (RU) test --- core/tests/on_runtime_upgrade.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/tests/on_runtime_upgrade.rs b/core/tests/on_runtime_upgrade.rs index a57d1a009d0..10ea172f1b2 100644 --- a/core/tests/on_runtime_upgrade.rs +++ b/core/tests/on_runtime_upgrade.rs @@ -40,7 +40,7 @@ mod on_runtime_upgrade { } async fn run_test(config: TestConfig, expected_success: bool) { - common::run_with_timeout(Duration::from_secs(360), async move { + common::run_with_timeout(Duration::from_secs(480), async move { let child = on_runtime_upgrade(&config); let out = child.wait_with_output().await.unwrap(); if expected_success { From 215bbf1f6cb43921bafaf9c9cf1879511e944473 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexandre=20Bald=C3=A9?= Date: Tue, 25 Nov 2025 20:15:31 +0000 Subject: [PATCH 8/8] Increase timeout for on-runtime-upgrade test --- core/tests/on_runtime_upgrade.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/tests/on_runtime_upgrade.rs b/core/tests/on_runtime_upgrade.rs index 10ea172f1b2..5f6f2c0a212 100644 --- a/core/tests/on_runtime_upgrade.rs +++ b/core/tests/on_runtime_upgrade.rs @@ -40,7 +40,7 @@ mod on_runtime_upgrade { } async fn run_test(config: TestConfig, expected_success: bool) { - common::run_with_timeout(Duration::from_secs(480), async move { + common::run_with_timeout(Duration::from_secs(600), async move { let child = on_runtime_upgrade(&config); let out = child.wait_with_output().await.unwrap(); if expected_success {