diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 222d4954a..2ff51511d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -109,8 +109,9 @@ jobs: strategy: matrix: features: + - "westend,devnet" - "westend,testnet" - - "paseo,testnet" + - "westend,mainnet" steps: - uses: actions/checkout@v4 @@ -162,7 +163,7 @@ jobs: uses: taiki-e/install-action@cargo-llvm-cov - name: Generate code coverage - run: cargo llvm-cov --all-features --workspace --exclude integration-tests --lib --bins --codecov --output-path codecov.json + run: cargo llvm-cov --all-features --workspace --exclude integration-tests --exclude pop-api-integration-tests --lib --bins --codecov --output-path codecov.json - name: Upload to codecov.io uses: codecov/codecov-action@v4 diff --git a/Cargo.lock b/Cargo.lock index f4e20733e..78f9f2c4f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -23,18 +23,18 @@ dependencies = [ [[package]] name = "addr2line" -version = "0.22.0" +version = "0.24.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e4503c46a5c0c7844e948c9a4d6acd9f50cccb4de1c48eb9e291ea17470c678" +checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1" dependencies = [ - "gimli 0.29.0", + "gimli 0.31.1", ] [[package]] -name = "adler" -version = "1.0.2" +name = "adler2" +version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" +checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627" [[package]] name = "aead" @@ -68,7 +68,7 @@ dependencies = [ "cipher 0.4.4", "ctr", "ghash", - "subtle 2.5.0", + "subtle 2.6.1", ] [[package]] @@ -106,9 +106,9 @@ dependencies = [ [[package]] name = "allocator-api2" -version = "0.2.18" +version = "0.2.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c6cb57a04249c6480766f7f7cef5467412af1490f8d1e243141daddada3264f" +checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923" [[package]] name = "always-assert" @@ -131,20 +131,11 @@ dependencies = [ "libc", ] -[[package]] -name = "ansi_term" -version = "0.12.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" -dependencies = [ - "winapi", -] - [[package]] name = "anstream" -version = "0.6.14" +version = "0.6.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "418c75fa768af9c03be99d17643f93f79bbba589895012a80e3452a19ddda15b" +checksum = "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b" dependencies = [ "anstyle", "anstyle-parse", @@ -157,43 +148,43 @@ dependencies = [ [[package]] name = "anstyle" -version = "1.0.7" +version = "1.0.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "038dfcf04a5feb68e9c60b21c9625a54c2c0616e79b72b0fd87075a056ae1d1b" +checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9" [[package]] name = "anstyle-parse" -version = "0.2.4" +version = "0.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c03a11a9034d92058ceb6ee011ce58af4a9bf61491aa7e1e59ecd24bd40d22d4" +checksum = "3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9" dependencies = [ "utf8parse", ] [[package]] name = "anstyle-query" -version = "1.1.0" +version = "1.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ad186efb764318d35165f1758e7dcef3b10628e26d41a44bc5550652e6804391" +checksum = "79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c" dependencies = [ - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] name = "anstyle-wincon" -version = "3.0.3" +version = "3.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61a38449feb7068f52bb06c12759005cf459ee52bb4adc1d5a7c4322d716fb19" +checksum = "2109dbce0e72be3ec00bed26e6a7479ca384ad226efdd66db8fa2e3a38c83125" dependencies = [ "anstyle", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] name = "anyhow" -version = "1.0.86" +version = "1.0.94" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da" +checksum = "c1fd03a028ef38ba2276dce7e33fcd6369c158a1bca17946c4b1b701891c1ff7" [[package]] name = "approx" @@ -215,7 +206,16 @@ dependencies = [ "proc-macro-error", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", +] + +[[package]] +name = "arbitrary" +version = "1.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dde20b3d026af13f561bdd0f15edf01fc734f0dafcedbaf42bba506a9517f223" +dependencies = [ + "derive_arbitrary", ] [[package]] @@ -361,9 +361,9 @@ checksum = "3d62b7694a562cdf5a74227903507c56ab2cc8bdd1f781ed5cb4cf9c9f810bfc" [[package]] name = "arrayref" -version = "0.3.7" +version = "0.3.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6b4930d2cb77ce62f89ee5d5289b4ac049559b1c45539271f5ed4fdc7db34545" +checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb" [[package]] name = "arrayvec" @@ -376,9 +376,9 @@ dependencies = [ [[package]] name = "arrayvec" -version = "0.7.4" +version = "0.7.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711" +checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" [[package]] name = "asn1-rs" @@ -392,7 +392,7 @@ dependencies = [ "nom", "num-traits", "rusticata-macros", - "thiserror", + "thiserror 1.0.69", "time", ] @@ -408,7 +408,7 @@ dependencies = [ "nom", "num-traits", "rusticata-macros", - "thiserror", + "thiserror 1.0.69", "time", ] @@ -432,7 +432,7 @@ checksum = "965c2d33e53cb6b267e148a4cb0760bc01f4904c1cd4bb4002a085bb016d1490" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", "synstructure 0.13.1", ] @@ -455,7 +455,7 @@ checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -467,203 +467,204 @@ checksum = "9b34d609dfbaf33d6889b2b7106d3ca345eacad44200913df5ba02bfd31d2ba9" [[package]] name = "asset-hub-paseo-runtime" version = "1.0.0" -source = "git+https://github.com/paseo-network/runtimes/?tag=v1.3.3#871469acf97f0f233d0d50ebf80b414305a5c055" +source = "git+https://github.com/paseo-network/runtimes?tag=v1.3.4#313b81aa2b2cb076b4f99c9b2bea040a8bcf709f" dependencies = [ - "assets-common", + "assets-common 0.15.0", "bp-asset-hub-paseo", "bp-bridge-hub-kusama", "bp-bridge-hub-paseo", "bp-bridge-hub-polkadot", "collectives-polkadot-runtime-constants", - "cumulus-pallet-aura-ext", - "cumulus-pallet-parachain-system", - "cumulus-pallet-session-benchmarking", - "cumulus-pallet-xcm", - "cumulus-pallet-xcmp-queue", - "cumulus-primitives-aura", - "cumulus-primitives-core", - "cumulus-primitives-utility", - "frame-benchmarking", - "frame-executive", - "frame-metadata-hash-extension", - "frame-support", - "frame-system", - "frame-system-benchmarking", - "frame-system-rpc-runtime-api", - "frame-try-runtime", - "hex-literal 0.4.1", - "log", - "pallet-asset-conversion", - "pallet-asset-conversion-tx-payment", - "pallet-assets", - "pallet-aura", - "pallet-authorship", - "pallet-balances", - "pallet-collator-selection", - "pallet-message-queue", - "pallet-multisig", + "cumulus-pallet-aura-ext 0.15.0", + "cumulus-pallet-parachain-system 0.15.0", + "cumulus-pallet-session-benchmarking 17.0.0", + "cumulus-pallet-xcm 0.15.0", + "cumulus-pallet-xcmp-queue 0.15.0", + "cumulus-primitives-aura 0.14.0", + "cumulus-primitives-core 0.14.0", + "cumulus-primitives-utility 0.15.0", + "frame-benchmarking 36.0.0", + "frame-executive 36.0.0", + "frame-metadata-hash-extension 0.4.0", + "frame-support 36.0.1", + "frame-system 36.1.0", + "frame-system-benchmarking 36.0.0", + "frame-system-rpc-runtime-api 33.0.0", + "frame-try-runtime 0.42.0", + "hex-literal", + "log", + "pallet-asset-conversion 18.0.0", + "pallet-asset-conversion-tx-payment 18.0.0", + "pallet-assets 37.0.0", + "pallet-aura 35.0.0", + "pallet-authorship 36.0.0", + "pallet-balances 37.0.0", + "pallet-collator-selection 17.0.0", + "pallet-message-queue 39.0.2", + "pallet-multisig 36.0.0", "pallet-nfts 30.0.0", - "pallet-nfts-runtime-api", - "pallet-proxy", - "pallet-session", - "pallet-sudo", - "pallet-timestamp", - "pallet-transaction-payment", - "pallet-transaction-payment-rpc-runtime-api", - "pallet-uniques", - "pallet-utility", - "pallet-vesting", - "pallet-xcm", - "pallet-xcm-benchmarks", - "pallet-xcm-bridge-hub-router", - "parachains-common", + "pallet-nfts-runtime-api 22.0.0", + "pallet-proxy 36.0.0", + "pallet-session 36.0.0", + "pallet-sudo 36.0.0", + "pallet-timestamp 35.0.0", + "pallet-transaction-payment 36.0.0", + "pallet-transaction-payment-rpc-runtime-api 36.0.0", + "pallet-uniques 36.0.0", + "pallet-utility 36.0.0", + "pallet-vesting 36.0.0", + "pallet-xcm 15.0.0", + "pallet-xcm-benchmarks 15.0.0", + "pallet-xcm-bridge-hub-router 0.13.0", + "parachains-common 15.0.0", "parity-scale-codec", "paseo-runtime-constants", - "polkadot-core-primitives", - "polkadot-parachain-primitives", - "polkadot-runtime-common", - "primitive-types", + "polkadot-core-primitives 14.0.0", + "polkadot-parachain-primitives 13.0.0", + "polkadot-runtime-common 15.0.0", + "primitive-types 0.12.2", "scale-info", "serde_json", - "snowbridge-router-primitives", - "sp-api", - "sp-block-builder", - "sp-consensus-aura", - "sp-core", - "sp-debug-derive", - "sp-genesis-builder", - "sp-inherents", - "sp-io", - "sp-offchain", - "sp-runtime", - "sp-session", - "sp-std", - "sp-storage", - "sp-transaction-pool", - "sp-version", - "sp-weights", - "staging-parachain-info", - "staging-xcm 14.1.0", - "staging-xcm-builder", - "staging-xcm-executor", - "substrate-wasm-builder", - "system-parachains-constants 1.0.0 (git+https://github.com/paseo-network/runtimes/?tag=v1.3.3)", - "xcm-runtime-apis", + "snowbridge-router-primitives 0.14.0", + "sp-api 33.0.0", + "sp-block-builder 33.0.0", + "sp-consensus-aura 0.39.0", + "sp-core 34.0.0", + "sp-debug-derive 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-genesis-builder 0.14.0", + "sp-inherents 33.0.0", + "sp-io 37.0.0", + "sp-offchain 33.0.0", + "sp-runtime 38.0.1", + "sp-session 34.0.0", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-storage 21.0.0", + "sp-transaction-pool 33.0.0", + "sp-version 36.0.0", + "sp-weights 31.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "staging-parachain-info 0.15.0", + "staging-xcm 14.0.3", + "staging-xcm-builder 15.0.0", + "staging-xcm-executor 15.0.0", + "substrate-wasm-builder 23.0.0", + "system-parachains-constants 1.0.0 (git+https://github.com/paseo-network/runtimes?tag=v1.3.4)", + "xcm-runtime-apis 0.2.0", ] [[package]] name = "asset-hub-westend-runtime" -version = "0.23.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "09947ff9d035d5524a6b210e676ca932c58a262d3331f5cb871dde20a82548b4" +version = "0.27.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ - "assets-common", + "assets-common 0.19.0", "bp-asset-hub-rococo", "bp-asset-hub-westend", "bp-bridge-hub-rococo", "bp-bridge-hub-westend", - "cumulus-pallet-aura-ext", - "cumulus-pallet-parachain-system", - "cumulus-pallet-session-benchmarking", - "cumulus-pallet-xcm", - "cumulus-pallet-xcmp-queue", - "cumulus-primitives-aura", - "cumulus-primitives-core", + "cumulus-pallet-aura-ext 0.18.0", + "cumulus-pallet-parachain-system 0.18.0", + "cumulus-pallet-session-benchmarking 20.0.0", + "cumulus-pallet-xcm 0.18.0", + "cumulus-pallet-xcmp-queue 0.18.0", + "cumulus-primitives-aura 0.16.0", + "cumulus-primitives-core 0.17.0", "cumulus-primitives-storage-weight-reclaim", - "cumulus-primitives-utility", - "frame-benchmarking", - "frame-executive", - "frame-metadata-hash-extension", - "frame-support", - "frame-system", - "frame-system-benchmarking", - "frame-system-rpc-runtime-api", - "frame-try-runtime", - "hex-literal 0.4.1", - "log", - "pallet-asset-conversion", + "cumulus-primitives-utility 0.18.0", + "frame-benchmarking 39.0.0", + "frame-executive 39.0.0", + "frame-metadata-hash-extension 0.7.0", + "frame-support 39.0.0", + "frame-system 39.0.0", + "frame-system-benchmarking 39.0.0", + "frame-system-rpc-runtime-api 35.0.0", + "frame-try-runtime 0.45.0", + "hex-literal", + "log", + "pallet-asset-conversion 21.0.0", "pallet-asset-conversion-ops", - "pallet-asset-conversion-tx-payment", - "pallet-assets", + "pallet-asset-conversion-tx-payment 21.0.0", + "pallet-assets 41.0.0", "pallet-assets-freezer", - "pallet-aura", - "pallet-authorship", - "pallet-balances", - "pallet-collator-selection", - "pallet-message-queue", - "pallet-multisig", + "pallet-aura 38.0.0", + "pallet-authorship 39.0.0", + "pallet-balances 40.0.0", + "pallet-collator-selection 20.0.0", + "pallet-message-queue 42.0.0", + "pallet-multisig 39.0.0", "pallet-nft-fractionalization", - "pallet-nfts 30.0.0", - "pallet-nfts-runtime-api", - "pallet-proxy", - "pallet-session", - "pallet-state-trie-migration", - "pallet-timestamp", - "pallet-transaction-payment", - "pallet-transaction-payment-rpc-runtime-api", - "pallet-uniques", - "pallet-utility", - "pallet-xcm", - "pallet-xcm-benchmarks", - "pallet-xcm-bridge-hub-router", - "parachains-common", - "parity-scale-codec", - "polkadot-parachain-primitives", - "polkadot-runtime-common", - "primitive-types", - "scale-info", - "sp-api", - "sp-block-builder", - "sp-consensus-aura", - "sp-core", - "sp-genesis-builder", - "sp-inherents", - "sp-offchain", - "sp-runtime", - "sp-session", - "sp-std", - "sp-storage", - "sp-transaction-pool", - "sp-version", - "staging-parachain-info", - "staging-xcm 14.1.0", - "staging-xcm-builder", - "staging-xcm-executor", - "substrate-wasm-builder", + "pallet-nfts 33.0.0", + "pallet-nfts-runtime-api 25.0.0", + "pallet-proxy 39.0.0", + "pallet-revive", + "pallet-session 39.0.0", + "pallet-state-trie-migration 42.0.0", + "pallet-timestamp 38.0.0", + "pallet-transaction-payment 39.0.0", + "pallet-transaction-payment-rpc-runtime-api 39.0.0", + "pallet-uniques 39.0.0", + "pallet-utility 39.0.0", + "pallet-xcm 18.0.0", + "pallet-xcm-benchmarks 18.0.0", + "pallet-xcm-bridge-hub-router 0.16.0", + "parachains-common 19.0.0", + "parity-scale-codec", + "polkadot-parachain-primitives 15.0.0", + "polkadot-runtime-common 18.0.0", + "primitive-types 0.13.1", + "scale-info", + "serde_json", + "snowbridge-router-primitives 0.18.0", + "sp-api 35.0.0", + "sp-block-builder 35.0.0", + "sp-consensus-aura 0.41.0", + "sp-core 35.0.0", + "sp-genesis-builder 0.16.0", + "sp-inherents 35.0.0", + "sp-keyring 40.0.0", + "sp-offchain 35.0.0", + "sp-runtime 40.0.0", + "sp-session 37.0.0", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-storage 22.0.0", + "sp-transaction-pool 35.0.0", + "sp-version 38.0.0", + "staging-parachain-info 0.18.0", + "staging-xcm 15.0.1", + "staging-xcm-builder 18.0.0", + "staging-xcm-executor 18.0.0", + "substrate-wasm-builder 25.0.0", "testnet-parachains-constants", "westend-runtime-constants", - "xcm-runtime-apis", + "xcm-runtime-apis 0.5.0", ] [[package]] name = "asset-test-utils" -version = "15.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ccc232efa79f7f180856e9bc8535dbb2d813b62418cda7bf154a713adb9ea36" -dependencies = [ - "cumulus-pallet-parachain-system", - "cumulus-pallet-xcmp-queue", - "cumulus-primitives-core", - "frame-support", - "frame-system", - "pallet-assets", - "pallet-balances", - "pallet-collator-selection", - "pallet-session", - "pallet-timestamp", - "pallet-xcm", - "pallet-xcm-bridge-hub-router", - "parachains-common", +version = "21.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "cumulus-pallet-parachain-system 0.18.0", + "cumulus-pallet-xcmp-queue 0.18.0", + "cumulus-primitives-core 0.17.0", + "frame-support 39.0.0", + "frame-system 39.0.0", + "pallet-assets 41.0.0", + "pallet-balances 40.0.0", + "pallet-collator-selection 20.0.0", + "pallet-session 39.0.0", + "pallet-timestamp 38.0.0", + "pallet-xcm 18.0.0", + "pallet-xcm-bridge-hub-router 0.16.0", + "parachains-common 19.0.0", "parachains-runtimes-test-utils", "parity-scale-codec", - "sp-io", - "sp-runtime", - "sp-std", - "staging-parachain-info", - "staging-xcm 14.1.0", - "staging-xcm-builder", - "staging-xcm-executor", - "substrate-wasm-builder", + "sp-io 39.0.0", + "sp-runtime 40.0.0", + "staging-parachain-info 0.18.0", + "staging-xcm 15.0.1", + "staging-xcm-builder 18.0.0", + "staging-xcm-executor 18.0.0", + "substrate-wasm-builder 25.0.0", ] [[package]] @@ -672,22 +673,45 @@ version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d4e2360c96927aa33b3fef7190eabf2aa4129fe3505c11dfa860ada0f27fd1b1" dependencies = [ - "cumulus-primitives-core", - "frame-support", + "cumulus-primitives-core 0.14.0", + "frame-support 36.0.1", + "impl-trait-for-tuples", + "log", + "pallet-asset-conversion 18.0.0", + "pallet-xcm 15.0.0", + "parachains-common 15.0.0", + "parity-scale-codec", + "scale-info", + "sp-api 33.0.0", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "staging-xcm 14.0.3", + "staging-xcm-builder 15.0.0", + "staging-xcm-executor 15.0.0", + "substrate-wasm-builder 23.0.0", +] + +[[package]] +name = "assets-common" +version = "0.19.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "cumulus-primitives-core 0.17.0", + "frame-support 39.0.0", "impl-trait-for-tuples", "log", - "pallet-asset-conversion", - "pallet-xcm", - "parachains-common", + "pallet-asset-conversion 21.0.0", + "pallet-assets 41.0.0", + "pallet-xcm 18.0.0", + "parachains-common 19.0.0", "parity-scale-codec", "scale-info", - "sp-api", - "sp-runtime", - "sp-std", - "staging-xcm 14.1.0", - "staging-xcm-builder", - "staging-xcm-executor", - "substrate-wasm-builder", + "sp-api 35.0.0", + "sp-runtime 40.0.0", + "staging-xcm 15.0.1", + "staging-xcm-builder 18.0.0", + "staging-xcm-executor 18.0.0", + "substrate-wasm-builder 25.0.0", ] [[package]] @@ -715,14 +739,14 @@ dependencies = [ [[package]] name = "async-executor" -version = "1.12.0" +version = "1.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c8828ec6e544c02b0d6691d21ed9f9218d0384a82542855073c2a3f58304aaf0" +checksum = "30ca9a001c1e8ba5149f91a74362376cc6bc5b919d92d988668657bd570bdcec" dependencies = [ "async-task", "concurrent-queue", - "fastrand 2.1.0", - "futures-lite 2.3.0", + "fastrand 2.3.0", + "futures-lite 2.5.0", "slab", ] @@ -738,6 +762,17 @@ dependencies = [ "futures-lite 1.13.0", ] +[[package]] +name = "async-fs" +version = "2.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ebcd09b382f40fcd159c2d695175b2ae620ffa5f3bd6f664131efff4e8b9e04a" +dependencies = [ + "async-lock 3.4.0", + "blocking", + "futures-lite 2.5.0", +] + [[package]] name = "async-io" version = "1.13.0" @@ -760,21 +795,21 @@ dependencies = [ [[package]] name = "async-io" -version = "2.3.3" +version = "2.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0d6baa8f0178795da0e71bc42c9e5d13261aac7ee549853162e66a241ba17964" +checksum = "43a2b323ccce0a1d90b449fd71f2a06ca7faa7c54c2751f06c9bd851fc061059" dependencies = [ "async-lock 3.4.0", "cfg-if", "concurrent-queue", "futures-io", - "futures-lite 2.3.0", + "futures-lite 2.5.0", "parking", - "polling 3.7.2", - "rustix 0.38.34", + "polling 3.7.4", + "rustix 0.38.42", "slab", "tracing", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] @@ -808,6 +843,17 @@ dependencies = [ "futures-lite 1.13.0", ] +[[package]] +name = "async-net" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b948000fad4873c1c9339d60f2623323a0cfd3816e5181033c6a5cb68b2accf7" +dependencies = [ + "async-io 2.4.0", + "blocking", + "futures-lite 2.5.0", +] + [[package]] name = "async-process" version = "1.8.1" @@ -821,26 +867,45 @@ dependencies = [ "cfg-if", "event-listener 3.1.0", "futures-lite 1.13.0", - "rustix 0.38.34", + "rustix 0.38.42", "windows-sys 0.48.0", ] +[[package]] +name = "async-process" +version = "2.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "63255f1dc2381611000436537bbedfe83183faa303a5a0edaf191edef06526bb" +dependencies = [ + "async-channel 2.3.1", + "async-io 2.4.0", + "async-lock 3.4.0", + "async-signal", + "async-task", + "blocking", + "cfg-if", + "event-listener 5.3.1", + "futures-lite 2.5.0", + "rustix 0.38.42", + "tracing", +] + [[package]] name = "async-signal" -version = "0.2.8" +version = "0.2.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "794f185324c2f00e771cd9f1ae8b5ac68be2ca7abb129a87afd6e86d228bc54d" +checksum = "637e00349800c0bdf8bfc21ebbc0b6524abea702b0da4168ac00d070d0c0b9f3" dependencies = [ - "async-io 2.3.3", + "async-io 2.4.0", "async-lock 3.4.0", "atomic-waker", "cfg-if", "futures-core", "futures-io", - "rustix 0.38.34", + "rustix 0.38.42", "signal-hook-registry", "slab", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] @@ -851,13 +916,13 @@ checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de" [[package]] name = "async-trait" -version = "0.1.80" +version = "0.1.83" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c6fa2087f2753a7da8cc1c0dbfcf89579dd57458e36769de5ac750b4671737ca" +checksum = "721cae7de5c34fbb2acd27e21e6d2cf7b886dce0c27388d46c4e6c47ea4318dd" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -898,23 +963,23 @@ dependencies = [ [[package]] name = "autocfg" -version = "1.3.0" +version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0" +checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26" [[package]] name = "backtrace" -version = "0.3.73" +version = "0.3.74" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5cc23269a4f8976d0a4d2e7109211a419fe30e8d88d677cd60b6bc79c5732e0a" +checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a" dependencies = [ - "addr2line 0.22.0", - "cc", + "addr2line 0.24.2", "cfg-if", "libc", "miniz_oxide", - "object 0.36.4", + "object 0.36.5", "rustc-demangle", + "windows-targets 0.52.6", ] [[package]] @@ -929,6 +994,12 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf" +[[package]] +name = "base58" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6107fe1be6682a68940da878d9e9f5e90ca5745b3dec9fd1bb393c8777d4f581" + [[package]] name = "base64" version = "0.13.1" @@ -964,12 +1035,22 @@ dependencies = [ [[package]] name = "binary-merkle-tree" -version = "15.0.0" +version = "15.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4b5c0fd4282c30c05647e1052d71bf1a0c8067ab1e9a8fc6d0c292dce0ecb237" +checksum = "336bf780dd7526a9a4bc1521720b25c1994dc132cccd59553431923fa4d1a693" +dependencies = [ + "hash-db", + "log", +] + +[[package]] +name = "binary-merkle-tree" +version = "16.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "hash-db", "log", + "parity-scale-codec", ] [[package]] @@ -993,22 +1074,40 @@ dependencies = [ "lazy_static", "lazycell", "peeking_take_while", - "prettyplease 0.2.20", + "prettyplease", "proc-macro2", "quote", "regex", - "rustc-hash", + "rustc-hash 1.1.0", "shlex", - "syn 2.0.96", + "syn 2.0.90", +] + +[[package]] +name = "bip32" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aa13fae8b6255872fd86f7faf4b41168661d7d78609f7bfe6771b85c6739a15b" +dependencies = [ + "bs58", + "hmac 0.12.1", + "k256", + "rand_core", + "ripemd", + "sha2 0.10.8", + "subtle 2.6.1", + "zeroize", ] [[package]] name = "bip39" -version = "2.0.0" +version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "93f2635620bf0b9d4576eb7bb9a38a55df78bd1205d26fa994b25911a69f212f" +checksum = "33415e24172c1b7d6066f6d999545375ab8e1d95421d6784bdfff9496f292387" dependencies = [ - "bitcoin_hashes 0.11.0", + "bitcoin_hashes", + "serde", + "unicode-normalization", ] [[package]] @@ -1017,12 +1116,6 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9425c3bf7089c983facbae04de54513cce73b41c7f9ff8c845b54e7bc64ebbfb" -[[package]] -name = "bitcoin_hashes" -version = "0.11.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "90064b8dee6815a6470d60bad07bbbaee885c0e12d04177138fa3291a01b7bc4" - [[package]] name = "bitcoin_hashes" version = "0.13.0" @@ -1041,9 +1134,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" [[package]] name = "bitflags" -version = "2.5.0" +version = "2.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1" +checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" [[package]] name = "bitvec" @@ -1096,8 +1189,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "23285ad32269793932e830392f2fe2f83e26488fd3ec778883a93c8323735780" dependencies = [ "arrayref", - "arrayvec 0.7.4", - "constant_time_eq 0.3.0", + "arrayvec 0.7.6", + "constant_time_eq 0.3.1", ] [[package]] @@ -1107,21 +1200,21 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "94230421e395b9920d23df13ea5d77a20e1725331f90fbbf6df6040b33f756ae" dependencies = [ "arrayref", - "arrayvec 0.7.4", - "constant_time_eq 0.3.0", + "arrayvec 0.7.6", + "constant_time_eq 0.3.1", ] [[package]] name = "blake3" -version = "1.5.1" +version = "1.5.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "30cca6d3674597c30ddf2c587bf8d9d65c9a84d2326d941cc79c9842dfe0ef52" +checksum = "b8ee0c1824c4dea5b5f81736aff91bae041d2c07ee1192bec91054e10e3e601e" dependencies = [ "arrayref", - "arrayvec 0.7.4", + "arrayvec 0.7.6", "cc", "cfg-if", - "constant_time_eq 0.3.0", + "constant_time_eq 0.3.1", ] [[package]] @@ -1151,15 +1244,15 @@ dependencies = [ "async-channel 2.3.1", "async-task", "futures-io", - "futures-lite 2.3.0", + "futures-lite 2.5.0", "piper", ] [[package]] name = "bollard" -version = "0.16.1" +version = "0.18.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0aed08d3adb6ebe0eff737115056652670ae290f177759aac19c30456135f94c" +checksum = "97ccca1260af6a459d75994ad5acc1651bcabcbdbc41467cc9786519ab854c30" dependencies = [ "base64 0.22.1", "bollard-stubs", @@ -1167,12 +1260,12 @@ dependencies = [ "futures-core", "futures-util", "hex", - "http 1.1.0", + "http 1.2.0", "http-body-util", - "hyper 1.4.1", + "hyper 1.5.2", "hyper-named-pipe", "hyper-util", - "hyperlocal-next", + "hyperlocal", "log", "pin-project-lite", "serde", @@ -1180,7 +1273,7 @@ dependencies = [ "serde_json", "serde_repr", "serde_urlencoded", - "thiserror", + "thiserror 2.0.8", "tokio", "tokio-util", "tower-service", @@ -1190,9 +1283,9 @@ dependencies = [ [[package]] name = "bollard-stubs" -version = "1.44.0-rc.2" +version = "1.47.1-rc.27.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "709d9aa1c37abb89d40f19f5d0ad6f0d88cb1581264e571c9350fc5bb89cf1c5" +checksum = "3f179cfbddb6e77a5472703d4b30436bff32929c0aa8a9008ecf23d1d3cdd0da" dependencies = [ "serde", "serde_repr", @@ -1201,9 +1294,9 @@ dependencies = [ [[package]] name = "bounded-collections" -version = "0.2.0" +version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d32385ecb91a31bddaf908e8dcf4a15aef1bcd3913cc03ebfad02ff6d568abc1" +checksum = "3d077619e9c237a5d1875166f5e8033e8f6bff0c96f8caf81e1c2d7738c431bf" dependencies = [ "log", "parity-scale-codec", @@ -1217,45 +1310,47 @@ 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-asset-hub-paseo" version = "1.0.0" -source = "git+https://github.com/paseo-network/runtimes/?tag=v1.3.3#871469acf97f0f233d0d50ebf80b414305a5c055" +source = "git+https://github.com/paseo-network/runtimes?tag=v1.3.4#313b81aa2b2cb076b4f99c9b2bea040a8bcf709f" dependencies = [ - "bp-xcm-bridge-hub-router", - "frame-support", + "bp-xcm-bridge-hub-router 0.13.0", + "frame-support 36.0.1", "parity-scale-codec", "scale-info", - "sp-std", - "staging-xcm 14.1.0", - "system-parachains-constants 1.0.0 (git+https://github.com/paseo-network/runtimes/?tag=v1.3.3)", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "staging-xcm 14.0.3", + "system-parachains-constants 1.0.0 (git+https://github.com/paseo-network/runtimes?tag=v1.3.4)", ] [[package]] name = "bp-asset-hub-rococo" -version = "0.12.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f44a24eebc53fdb071a4111bc3a8727be57b8a5f368a809f0dd142bd7dc374c" +version = "0.15.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ - "bp-xcm-bridge-hub-router", - "frame-support", + "bp-xcm-bridge-hub-router 0.15.0", + "frame-support 39.0.0", "parity-scale-codec", "scale-info", + "sp-core 35.0.0", + "staging-xcm 15.0.1", ] [[package]] name = "bp-asset-hub-westend" -version = "0.11.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af585d00509b3723819189c34410a2ed332fe6c2cc5c7876f64f79818c346f13" +version = "0.14.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ - "bp-xcm-bridge-hub-router", - "frame-support", + "bp-xcm-bridge-hub-router 0.15.0", + "frame-support 39.0.0", "parity-scale-codec", "scale-info", + "sp-core 35.0.0", + "staging-xcm 15.0.1", ] [[package]] @@ -1264,101 +1359,118 @@ version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d48cca10dce1c6d2914e48594f13add2da4a5b7c3ed54fd0fa324054dfb8569a" dependencies = [ - "bp-messages", - "bp-polkadot-core", - "bp-runtime", - "frame-support", - "frame-system", - "polkadot-primitives", - "sp-api", - "sp-std", + "bp-messages 0.15.0", + "bp-polkadot-core 0.15.0", + "bp-runtime 0.15.0", + "frame-support 36.0.1", + "frame-system 36.1.0", + "polkadot-primitives 14.0.0", + "sp-api 33.0.0", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "bp-bridge-hub-cumulus" +version = "0.19.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "bp-messages 0.19.0", + "bp-polkadot-core 0.19.0", + "bp-runtime 0.19.0", + "frame-support 39.0.0", + "frame-system 39.0.0", + "polkadot-primitives 17.0.0", + "sp-api 35.0.0", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", ] [[package]] name = "bp-bridge-hub-kusama" version = "1.0.0" -source = "git+https://github.com/polkadot-fellows/runtimes?tag=v1.3.3#55bd514d60311b67cb11400a545cb64ce7a87c0e" +source = "git+https://github.com/polkadot-fellows/runtimes?tag=v1.3.4#3b18d942c766c7f358da50608b44edbe218284a4" dependencies = [ - "bp-bridge-hub-cumulus", - "bp-messages", - "bp-runtime", - "frame-support", + "bp-bridge-hub-cumulus 0.15.0", + "bp-messages 0.15.0", + "bp-runtime 0.15.0", + "frame-support 36.0.1", "kusama-runtime-constants", "polkadot-runtime-constants", - "sp-api", - "sp-runtime", - "sp-std", - "system-parachains-constants 1.0.0 (git+https://github.com/polkadot-fellows/runtimes?tag=v1.3.3)", + "sp-api 33.0.0", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "system-parachains-constants 1.0.0 (git+https://github.com/polkadot-fellows/runtimes?tag=v1.3.4)", ] [[package]] name = "bp-bridge-hub-paseo" version = "1.0.0" -source = "git+https://github.com/paseo-network/runtimes/?tag=v1.3.3#871469acf97f0f233d0d50ebf80b414305a5c055" +source = "git+https://github.com/paseo-network/runtimes?tag=v1.3.4#313b81aa2b2cb076b4f99c9b2bea040a8bcf709f" dependencies = [ - "bp-bridge-hub-cumulus", - "bp-messages", + "bp-bridge-hub-cumulus 0.15.0", + "bp-messages 0.15.0", "bp-polkadot-bulletin", - "bp-runtime", - "frame-support", + "bp-runtime 0.15.0", + "frame-support 36.0.1", "kusama-runtime-constants", "paseo-runtime-constants", - "snowbridge-core", - "sp-api", - "sp-runtime", - "sp-std", - "staging-xcm 14.1.0", - "system-parachains-constants 1.0.0 (git+https://github.com/paseo-network/runtimes/?tag=v1.3.3)", + "snowbridge-core 0.8.0", + "sp-api 33.0.0", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "staging-xcm 14.0.3", + "system-parachains-constants 1.0.0 (git+https://github.com/paseo-network/runtimes?tag=v1.3.4)", ] [[package]] name = "bp-bridge-hub-polkadot" version = "1.0.0" -source = "git+https://github.com/polkadot-fellows/runtimes?tag=v1.3.3#55bd514d60311b67cb11400a545cb64ce7a87c0e" +source = "git+https://github.com/polkadot-fellows/runtimes?tag=v1.3.4#3b18d942c766c7f358da50608b44edbe218284a4" dependencies = [ - "bp-bridge-hub-cumulus", - "bp-messages", + "bp-bridge-hub-cumulus 0.15.0", + "bp-messages 0.15.0", "bp-polkadot-bulletin", - "bp-runtime", - "frame-support", + "bp-runtime 0.15.0", + "frame-support 36.0.1", "kusama-runtime-constants", "polkadot-runtime-constants", - "snowbridge-core", - "sp-api", - "sp-runtime", - "sp-std", - "staging-xcm 14.1.0", - "system-parachains-constants 1.0.0 (git+https://github.com/polkadot-fellows/runtimes?tag=v1.3.3)", + "snowbridge-core 0.8.0", + "sp-api 33.0.0", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "staging-xcm 14.0.3", + "system-parachains-constants 1.0.0 (git+https://github.com/polkadot-fellows/runtimes?tag=v1.3.4)", ] [[package]] name = "bp-bridge-hub-rococo" -version = "0.15.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f89228837ee3b9673a8bc0b6c2eab73b85e2f466cb100ace0f779f733bddb56c" +version = "0.19.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ - "bp-bridge-hub-cumulus", - "bp-messages", - "bp-runtime", - "frame-support", - "sp-api", - "sp-runtime", - "sp-std", + "bp-bridge-hub-cumulus 0.19.0", + "bp-messages 0.19.0", + "bp-runtime 0.19.0", + "bp-xcm-bridge-hub", + "frame-support 39.0.0", + "parity-scale-codec", + "sp-api 35.0.0", + "sp-runtime 40.0.0", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", ] [[package]] name = "bp-bridge-hub-westend" -version = "0.11.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9b32c6051deb0f147081ebc5bf1d0d327cbfbc8e8af6d14c9f336167122c9cf5" +version = "0.15.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ - "bp-bridge-hub-cumulus", - "bp-messages", - "bp-runtime", - "frame-support", - "sp-api", - "sp-runtime", - "sp-std", + "bp-bridge-hub-cumulus 0.19.0", + "bp-messages 0.19.0", + "bp-runtime 0.19.0", + "bp-xcm-bridge-hub", + "frame-support 39.0.0", + "parity-scale-codec", + "sp-api 35.0.0", + "sp-runtime 40.0.0", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", ] [[package]] @@ -1367,16 +1479,33 @@ version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "57cac4b71008e46d43e346476ed1be85cf7b505efacee17dad84d687344bf1b1" dependencies = [ - "bp-runtime", + "bp-runtime 0.15.0", + "finality-grandpa", + "frame-support 36.0.1", + "parity-scale-codec", + "scale-info", + "serde", + "sp-consensus-grandpa 20.0.0", + "sp-core 34.0.0", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "bp-header-chain" +version = "0.19.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "bp-runtime 0.19.0", "finality-grandpa", - "frame-support", + "frame-support 39.0.0", "parity-scale-codec", "scale-info", "serde", - "sp-consensus-grandpa", - "sp-core", - "sp-runtime", - "sp-std", + "sp-consensus-grandpa 22.0.0", + "sp-core 35.0.0", + "sp-runtime 40.0.0", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", ] [[package]] @@ -1385,32 +1514,47 @@ version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f97eec00a98efeb052ac9fc9676d9fccf5acd19e3b18530f3d72af1a1faf21ec" dependencies = [ - "bp-header-chain", - "bp-runtime", - "frame-support", + "bp-header-chain 0.15.0", + "bp-runtime 0.15.0", + "frame-support 36.0.1", + "parity-scale-codec", + "scale-info", + "serde", + "sp-core 34.0.0", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "bp-messages" +version = "0.19.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "bp-header-chain 0.19.0", + "bp-runtime 0.19.0", + "frame-support 39.0.0", "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-std", + "sp-core 35.0.0", + "sp-io 39.0.0", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", ] [[package]] name = "bp-parachains" -version = "0.15.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "60c0bde723a5daf39f4f02816483c9ac049818990b06858dff751736636a4ea2" +version = "0.19.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ - "bp-header-chain", - "bp-polkadot-core", - "bp-runtime", - "frame-support", + "bp-header-chain 0.19.0", + "bp-polkadot-core 0.19.0", + "bp-runtime 0.19.0", + "frame-support 39.0.0", "impl-trait-for-tuples", "parity-scale-codec", "scale-info", - "sp-core", - "sp-runtime", - "sp-std", + "sp-core 35.0.0", + "sp-runtime 40.0.0", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", ] [[package]] @@ -1419,17 +1563,17 @@ version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dfb5b3cd885b40b52bf96e52ffbec92d0c435f7303fc11374ccfcfa5bebfbc4f" dependencies = [ - "bp-header-chain", - "bp-messages", - "bp-polkadot-core", - "bp-runtime", - "frame-support", - "frame-system", + "bp-header-chain 0.15.0", + "bp-messages 0.15.0", + "bp-polkadot-core 0.15.0", + "bp-runtime 0.15.0", + "frame-support 36.0.1", + "frame-system 36.1.0", "parity-scale-codec", "scale-info", - "sp-api", - "sp-runtime", - "sp-std", + "sp-api 33.0.0", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1438,32 +1582,52 @@ version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6ef2272823ecfee580c00f6542dfcab3ec7abdb00857af853429736847c3a2d9" dependencies = [ - "bp-messages", - "bp-runtime", - "frame-support", - "frame-system", + "bp-messages 0.15.0", + "bp-runtime 0.15.0", + "frame-support 36.0.1", + "frame-system 36.1.0", "parity-scale-codec", "parity-util-mem", "scale-info", "serde", - "sp-core", - "sp-runtime", - "sp-std", + "sp-core 34.0.0", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "bp-polkadot-core" +version = "0.19.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "bp-messages 0.19.0", + "bp-runtime 0.19.0", + "frame-support 39.0.0", + "frame-system 39.0.0", + "parity-scale-codec", + "scale-info", + "serde", + "sp-core 35.0.0", + "sp-runtime 40.0.0", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", ] [[package]] name = "bp-relayers" -version = "0.15.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a589f5bb70baa4377a798823be752042aa6c220d51afc559716667e29b0203d" +version = "0.19.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ - "bp-messages", - "bp-runtime", - "frame-support", + "bp-header-chain 0.19.0", + "bp-messages 0.19.0", + "bp-parachains", + "bp-runtime 0.19.0", + "frame-support 39.0.0", + "frame-system 39.0.0", + "pallet-utility 39.0.0", "parity-scale-codec", "scale-info", - "sp-runtime", - "sp-std", + "sp-runtime 40.0.0", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", ] [[package]] @@ -1472,8 +1636,31 @@ version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "904644c23b437dde65741f3148067624ed0b4d8360f68adf9e92273aeb970814" dependencies = [ - "frame-support", - "frame-system", + "frame-support 36.0.1", + "frame-system 36.1.0", + "hash-db", + "impl-trait-for-tuples", + "log", + "num-traits", + "parity-scale-codec", + "scale-info", + "serde", + "sp-core 34.0.0", + "sp-io 37.0.0", + "sp-runtime 38.0.1", + "sp-state-machine 0.42.0", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-trie 36.0.0", + "trie-db", +] + +[[package]] +name = "bp-runtime" +version = "0.19.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "frame-support 39.0.0", + "frame-system 39.0.0", "hash-db", "impl-trait-for-tuples", "log", @@ -1481,43 +1668,50 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-runtime", - "sp-state-machine", - "sp-std", - "sp-trie", + "sp-core 35.0.0", + "sp-io 39.0.0", + "sp-runtime 40.0.0", + "sp-state-machine 0.44.0", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-trie 38.0.0", "trie-db", ] [[package]] name = "bp-test-utils" -version = "0.15.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "85062410c8f85ba074f04d843c59f39c7fcb64b83f2ece5bd4379f8c34a4bf15" +version = "0.19.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ - "bp-header-chain", + "bp-header-chain 0.19.0", "bp-parachains", - "bp-polkadot-core", - "bp-runtime", + "bp-polkadot-core 0.19.0", + "bp-runtime 0.19.0", "ed25519-dalek", "finality-grandpa", "parity-scale-codec", - "sp-application-crypto", - "sp-consensus-grandpa", - "sp-core", - "sp-runtime", - "sp-std", - "sp-trie", + "sp-application-crypto 39.0.0", + "sp-consensus-grandpa 22.0.0", + "sp-core 35.0.0", + "sp-runtime 40.0.0", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-trie 38.0.0", ] [[package]] name = "bp-xcm-bridge-hub" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "192804908f1d3b7bfad12abce448fb3b7ec8dda765cac4a8d811fa75557e528f" +version = "0.5.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ - "sp-std", + "bp-messages 0.19.0", + "bp-runtime 0.19.0", + "frame-support 39.0.0", + "parity-scale-codec", + "scale-info", + "serde", + "sp-core 35.0.0", + "sp-io 39.0.0", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "staging-xcm 15.0.1", ] [[package]] @@ -1528,59 +1722,61 @@ checksum = "b7dae4d1ec894ee920195dd39070b279ef3c1d4d078c3fcf7336c93a1d502a9d" dependencies = [ "parity-scale-codec", "scale-info", - "sp-core", - "sp-runtime", + "sp-core 34.0.0", + "sp-runtime 38.0.1", ] [[package]] -name = "bridge-runtime-common" +name = "bp-xcm-bridge-hub-router" version = "0.15.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "639591635551f94b6e310852430b669495bd99cfd2af20b00a00f6cc7169e70d" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "parity-scale-codec", + "scale-info", + "sp-core 35.0.0", + "sp-runtime 40.0.0", + "staging-xcm 15.0.1", +] + +[[package]] +name = "bridge-runtime-common" +version = "0.19.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ - "bp-header-chain", - "bp-messages", + "bp-header-chain 0.19.0", + "bp-messages 0.19.0", "bp-parachains", - "bp-polkadot-core", + "bp-polkadot-core 0.19.0", "bp-relayers", - "bp-runtime", + "bp-runtime 0.19.0", "bp-xcm-bridge-hub", - "bp-xcm-bridge-hub-router", - "frame-support", - "frame-system", - "hash-db", + "frame-support 39.0.0", + "frame-system 39.0.0", "log", "pallet-bridge-grandpa", "pallet-bridge-messages", "pallet-bridge-parachains", "pallet-bridge-relayers", - "pallet-transaction-payment", - "pallet-utility", - "parity-scale-codec", - "scale-info", - "sp-api", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", - "sp-trie", - "staging-xcm 14.1.0", - "staging-xcm-builder", + "pallet-transaction-payment 39.0.0", + "pallet-utility 39.0.0", + "parity-scale-codec", + "scale-info", + "sp-io 39.0.0", + "sp-runtime 40.0.0", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-trie 38.0.0", + "sp-weights 31.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "staging-xcm 15.0.1", "tuplex", ] -[[package]] -name = "bs58" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "771fe0050b883fcc3ea2359b1a96bcfbc090b7116eae7c3c512c7a083fdf23d3" - [[package]] name = "bs58" version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bf88ba1141d185c399bee5288d850d63b8369520c1eafc32a0430b5b6c287bf4" dependencies = [ + "sha2 0.10.8", "tinyvec", ] @@ -1613,9 +1809,9 @@ checksum = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7" [[package]] name = "bytemuck" -version = "1.16.0" +version = "1.20.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "78834c15cb5d5efe3452d58b1e8ba890dd62d21907f867f383358198e56ebca5" +checksum = "8b37c88a63ffd85d15b406896cc343916d7cf57838a847b3a6f2ca5d39a5695a" [[package]] name = "byteorder" @@ -1625,9 +1821,9 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" [[package]] name = "bytes" -version = "1.6.0" +version = "1.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9" +checksum = "325918d6fe32f23b19878fe4b34794ae41fc19ddbe53b10571a4874d44ffd39b" [[package]] name = "bzip2-sys" @@ -1652,18 +1848,18 @@ dependencies = [ [[package]] name = "camino" -version = "1.1.7" +version = "1.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e0ec6b951b160caa93cc0c7b209e5a3bff7aae9062213451ac99493cd844c239" +checksum = "8b96ec4966b5813e2c0507c1f86115c8c5abaadc3980879c3424042a02fd1ad3" dependencies = [ "serde", ] [[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", ] @@ -1676,35 +1872,35 @@ checksum = "eee4243f1f26fc7a42710e7439c149e2b10b05472f88090acce52632f231a73a" dependencies = [ "camino", "cargo-platform", - "semver 1.0.23", + "semver 1.0.24", "serde", "serde_json", - "thiserror", + "thiserror 1.0.69", ] [[package]] name = "cargo_metadata" -version = "0.18.1" +version = "0.19.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2d886547e41f740c616ae73108f6eb70afe6d940c7bc697cb30f13daec073037" +checksum = "8769706aad5d996120af43197bf46ef6ad0fda35216b4505f926a365a232d924" dependencies = [ "camino", "cargo-platform", - "semver 1.0.23", + "semver 1.0.24", "serde", "serde_json", - "thiserror", + "thiserror 2.0.8", ] [[package]] name = "cc" -version = "1.0.99" +version = "1.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "96c51067fd44124faa7f870b4b1c969379ad32b2ba805aa959430ceaa384f695" +checksum = "9157bbaa6b165880c27a4293a474c91cdcf265cc68cc829bf10be0964a391caf" dependencies = [ "jobserver", "libc", - "once_cell", + "shlex", ] [[package]] @@ -1743,6 +1939,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" @@ -1779,9 +1981,9 @@ dependencies = [ [[package]] name = "chrono" -version = "0.4.38" +version = "0.4.39" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401" +checksum = "7e36cc9d416881d2e24f9a963be5fb1cd90966419ac844274161d10488b3e825" dependencies = [ "android-tzdata", "iana-time-zone", @@ -1838,15 +2040,6 @@ dependencies = [ "zeroize", ] -[[package]] -name = "ckb-merkle-mountain-range" -version = "0.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56ccb671c5921be8a84686e6212ca184cb1d7c51cadcdbfcbd1cc3f042f5dfb8" -dependencies = [ - "cfg-if", -] - [[package]] name = "clang-sys" version = "1.8.1" @@ -1860,9 +2053,9 @@ dependencies = [ [[package]] name = "clap" -version = "4.5.7" +version = "4.5.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5db83dced34638ad474f39f250d7fea9598bdd239eaced1bdf45d597da0f433f" +checksum = "3135e7ec2ef7b10c6ed8950f0f792ed96ee093fa088608f1c76e569722700c84" dependencies = [ "clap_builder", "clap_derive", @@ -1870,9 +2063,9 @@ dependencies = [ [[package]] name = "clap_builder" -version = "4.5.7" +version = "4.5.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f7e204572485eb3fbf28f871612191521df159bc3e15a9f5064c66dba3a8c05f" +checksum = "30582fc632330df2bd26877bde0c1f4470d57c582bbc070376afcd04d8cb4838" dependencies = [ "anstream", "anstyle", @@ -1883,27 +2076,27 @@ dependencies = [ [[package]] name = "clap_derive" -version = "4.5.5" +version = "4.5.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c780290ccf4fb26629baa7a1081e68ced113f1d3ec302fa5948f1c381ebf06c6" +checksum = "4ac6a0c7b1a9e9a5186361f67dfa1b88213572f427fb9ab038efb2bd8c582dab" dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] name = "clap_lex" -version = "0.7.1" +version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4b82cf0babdbd58558212896d1a4272303a57bdb245c2bf1147185fb45640e70" +checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6" [[package]] name = "coarsetime" -version = "0.1.34" +version = "0.1.35" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "13b3839cf01bb7960114be3ccf2340f541b6d0c81f8690b007b2b39f750f7e5d" +checksum = "4252bf230cb600c19826a575b31c8c9c84c6f11acfab6dfcad2e941b10b6f8e2" dependencies = [ "libc", "wasix", @@ -1917,49 +2110,49 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e" dependencies = [ "termcolor", - "unicode-width", + "unicode-width 0.1.14", ] [[package]] name = "collectives-polkadot-runtime-constants" version = "1.0.0" -source = "git+https://github.com/polkadot-fellows/runtimes?tag=v1.3.3#55bd514d60311b67cb11400a545cb64ce7a87c0e" +source = "git+https://github.com/polkadot-fellows/runtimes?tag=v1.3.4#3b18d942c766c7f358da50608b44edbe218284a4" [[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.96", + "syn 2.0.90", ] [[package]] name = "colorchoice" -version = "1.0.1" +version = "1.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b6a852b24ab71dffc585bcb46eaf7959d175cb865a7152e35b348d1b2960422" +checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990" [[package]] name = "colored" -version = "2.1.0" +version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cbf2150cce219b664a8a70df7a1f933836724b503f8a413af9365b4dcc4d90b8" +checksum = "117725a109d387c937a1533ce01b450cbde6b88abceea8473c4d7a85853cda3c" dependencies = [ "lazy_static", - "windows-sys 0.48.0", + "windows-sys 0.59.0", ] [[package]] @@ -1974,13 +2167,13 @@ dependencies = [ [[package]] name = "comfy-table" -version = "7.1.1" +version = "7.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b34115915337defe99b2aff5c2ce6771e5fbc4079f4b506301f5cf394c8452f7" +checksum = "24f165e7b643266ea80cb858aed492ad9280e3e05ce24d4a99d7d7b889b6a4d9" dependencies = [ - "strum 0.26.2", + "strum 0.26.3", "strum_macros 0.26.4", - "unicode-width", + "unicode-width 0.2.0", ] [[package]] @@ -2000,15 +2193,28 @@ dependencies = [ [[package]] name = "console" -version = "0.15.8" +version = "0.15.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0e1f83fc076bd6dd27517eacdf25fef6c4dfe5f1d7448bafaaf3a26f13b5e4eb" +checksum = "ea3c6ecd8059b57859df5c69830340ed3c41d30e3da0c1cbed90a96ac853041b" dependencies = [ "encode_unicode", - "lazy_static", "libc", - "unicode-width", - "windows-sys 0.52.0", + "once_cell", + "unicode-width 0.2.0", + "windows-sys 0.59.0", +] + +[[package]] +name = "const-hex" +version = "1.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4b0485bab839b018a8f1723fc5391819fea5f8f0f32288ef8a735fd096b6160c" +dependencies = [ + "cfg-if", + "cpufeatures", + "hex", + "proptest", + "serde", ] [[package]] @@ -2065,9 +2271,9 @@ checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc" [[package]] name = "constant_time_eq" -version = "0.3.0" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f7144d30dcf0fafbce74250a3963025d8d52177934239851c917d29f1df280c2" +checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6" [[package]] name = "constcat" @@ -2077,14 +2283,14 @@ checksum = "cd7e35aee659887cbfb97aaf227ac12cad1a9d7c71e55ff3376839ed4e282d08" [[package]] name = "contract-build" -version = "4.1.1" +version = "5.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d30f629d8cb26692c4e5f4155e8ab37649f1b2fd0abab64a4c1b3c95c9bcf3df" +checksum = "b014fa89030235ecd8bdeb061ec97df326281b484f89ad3e17a79f08759c2f52" dependencies = [ "anyhow", "blake2 0.10.6", "bollard", - "cargo_metadata 0.18.1", + "cargo_metadata 0.19.1", "clap", "colored", "contract-metadata", @@ -2092,38 +2298,39 @@ dependencies = [ "duct", "heck 0.5.0", "hex", - "impl-serde", + "impl-serde 0.5.0", "parity-scale-codec", - "parity-wasm", "regex", "rustc_version", - "semver 1.0.23", + "semver 1.0.24", "serde", "serde_json", - "strum 0.26.2", + "strum 0.26.3", "tempfile", "term_size", "tokio", "tokio-stream", - "toml 0.8.14", + "toml 0.8.19", "tracing", "url", "uzers", "walkdir", + "wasm-encoder", "wasm-opt", - "which 6.0.3", + "wasmparser 0.220.0", + "which", "zip", ] [[package]] name = "contract-metadata" -version = "4.1.1" +version = "5.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dd54ed69476dc2076d6ebda17351babe1c2f33751170877f66719e8129078d3a" +checksum = "83ae8bcb5f7c5ea033d05fa0bbffa4e762a5b69c0ce96e4188fb15385a01998b" dependencies = [ "anyhow", - "impl-serde", - "semver 1.0.23", + "impl-serde 0.5.0", + "semver 1.0.24", "serde", "serde_json", "url", @@ -2145,11 +2352,21 @@ dependencies = [ "libc", ] +[[package]] +name = "core-foundation" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b55271e5c8c478ad3f38ad24ef34923091e0548492a266d19b3c0b4d82574c63" +dependencies = [ + "core-foundation-sys", + "libc", +] + [[package]] name = "core-foundation-sys" -version = "0.8.6" +version = "0.8.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f" +checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" [[package]] name = "core2" @@ -2181,9 +2398,9 @@ dependencies = [ [[package]] name = "cpufeatures" -version = "0.2.12" +version = "0.2.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504" +checksum = "16b80225097f2e5ae4e7179dd2266824648f3e2f49d9134d584b76389d31c4c3" dependencies = [ "libc", ] @@ -2282,25 +2499,10 @@ dependencies = [ "itertools 0.10.5", "log", "smallvec", - "wasmparser", + "wasmparser 0.102.0", "wasmtime-types", ] -[[package]] -name = "crc" -version = "3.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "69e6e4d7b33a94f0991c26729976b10ebde1d34c3ee82408fb536164fa10d636" -dependencies = [ - "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" @@ -2312,9 +2514,9 @@ dependencies = [ [[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", @@ -2331,30 +2533,30 @@ 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 = "crossterm" -version = "0.27.0" +version = "0.28.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f476fe445d41c9e991fd07515a6f463074b782242ccf4a5b7b1d1012e70824df" +checksum = "829d955a0bb380ef178a640b91779e3987da38c9aea133b20614cfed8cdea9c6" dependencies = [ - "bitflags 2.5.0", + "bitflags 2.6.0", "crossterm_winapi", - "libc", "mio", "parking_lot 0.12.3", + "rustix 0.38.42", "signal-hook", "signal-hook-mio", "winapi", @@ -2383,7 +2585,7 @@ checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76" dependencies = [ "generic-array 0.14.7", "rand_core", - "subtle 2.5.0", + "subtle 2.6.1", "zeroize", ] @@ -2415,7 +2617,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b584a330336237c1eecd3e94266efb216c56ed91225d634cb2991c5f3fd1aeab" dependencies = [ "generic-array 0.14.7", - "subtle 2.5.0", + "subtle 2.6.1", ] [[package]] @@ -2429,9 +2631,8 @@ dependencies = [ [[package]] name = "cumulus-client-cli" -version = "0.15.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b64901f2fde878bec8f4c3949b5e5ee6fb5de45dd19b45d9fcd6a23a859fd0cc" +version = "0.20.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "clap", "parity-scale-codec", @@ -2440,131 +2641,129 @@ dependencies = [ "sc-client-api", "sc-service", "sp-blockchain", - "sp-core", - "sp-runtime", + "sp-core 35.0.0", + "sp-runtime 40.0.0", "url", ] [[package]] name = "cumulus-client-collator" -version = "0.15.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2311f438161902135ff57db8a81ed3c701e33fd4bccbcc72e785f1efc73e1df3" +version = "0.20.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "cumulus-client-consensus-common", "cumulus-client-network", - "cumulus-primitives-core", + "cumulus-primitives-core 0.17.0", "futures", "parity-scale-codec", "parking_lot 0.12.3", "polkadot-node-primitives", "polkadot-node-subsystem", "polkadot-overseer", - "polkadot-primitives", + "polkadot-primitives 17.0.0", "sc-client-api", - "sp-api", + "sp-api 35.0.0", "sp-consensus", - "sp-core", - "sp-runtime", + "sp-core 35.0.0", + "sp-runtime 40.0.0", "tracing", ] [[package]] name = "cumulus-client-consensus-aura" -version = "0.15.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "76c45052da56eb1631e177812f47c9426cb2617a5bfcc4c76a746e6a4c660df2" +version = "0.20.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "async-trait", "cumulus-client-collator", "cumulus-client-consensus-common", "cumulus-client-consensus-proposer", "cumulus-client-parachain-inherent", - "cumulus-primitives-aura", - "cumulus-primitives-core", + "cumulus-primitives-aura 0.16.0", + "cumulus-primitives-core 0.17.0", "cumulus-relay-chain-interface", "futures", "parity-scale-codec", "parking_lot 0.12.3", "polkadot-node-primitives", "polkadot-node-subsystem", + "polkadot-node-subsystem-util", "polkadot-overseer", - "polkadot-primitives", + "polkadot-primitives 17.0.0", "sc-client-api", "sc-consensus", "sc-consensus-aura", "sc-consensus-babe", "sc-consensus-slots", "sc-telemetry", + "sc-utils", "schnellru", - "sp-api", - "sp-application-crypto", - "sp-block-builder", + "sp-api 35.0.0", + "sp-application-crypto 39.0.0", + "sp-block-builder 35.0.0", "sp-blockchain", "sp-consensus", - "sp-consensus-aura", - "sp-core", - "sp-inherents", - "sp-keystore", - "sp-runtime", - "sp-state-machine", - "sp-timestamp", + "sp-consensus-aura 0.41.0", + "sp-core 35.0.0", + "sp-inherents 35.0.0", + "sp-keystore 0.41.0", + "sp-runtime 40.0.0", + "sp-state-machine 0.44.0", + "sp-timestamp 35.0.0", "substrate-prometheus-endpoint", + "tokio", "tracing", ] [[package]] name = "cumulus-client-consensus-common" -version = "0.15.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "83b4de5c24c4304b509dffccb95218f22c2ef619a91aee85a3d9523b63347be2" +version = "0.20.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "async-trait", "cumulus-client-pov-recovery", - "cumulus-primitives-core", + "cumulus-primitives-core 0.17.0", "cumulus-relay-chain-interface", "dyn-clone", "futures", "log", "parity-scale-codec", - "polkadot-primitives", + "polkadot-primitives 17.0.0", "sc-client-api", "sc-consensus", "sc-consensus-babe", "schnellru", "sp-blockchain", "sp-consensus", - "sp-consensus-slots", - "sp-core", - "sp-runtime", - "sp-timestamp", - "sp-trie", - "sp-version", + "sp-consensus-slots 0.41.0", + "sp-core 35.0.0", + "sp-runtime 40.0.0", + "sp-timestamp 35.0.0", + "sp-trie 38.0.0", + "sp-version 38.0.0", "substrate-prometheus-endpoint", "tracing", ] [[package]] name = "cumulus-client-consensus-proposer" -version = "0.14.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56e980b3e5c05415eaa4ac07f398bc8e74666811f3112f19a654ccb3a948018e" +version = "0.17.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "anyhow", "async-trait", - "cumulus-primitives-parachain-inherent", + "cumulus-primitives-parachain-inherent 0.17.0", "sp-consensus", - "sp-inherents", - "sp-runtime", - "sp-state-machine", - "thiserror", + "sp-inherents 35.0.0", + "sp-runtime 40.0.0", + "sp-state-machine 0.44.0", + "thiserror 1.0.69", ] [[package]] name = "cumulus-client-network" -version = "0.15.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ed8d6844af4dbb35a925d493331b631f4ccd3b15568643e92afbf0ee7f4b22e3" +version = "0.20.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "async-trait", "cumulus-relay-chain-interface", @@ -2574,52 +2773,48 @@ dependencies = [ "parking_lot 0.12.3", "polkadot-node-primitives", "polkadot-node-subsystem", - "polkadot-parachain-primitives", - "polkadot-primitives", + "polkadot-parachain-primitives 15.0.0", + "polkadot-primitives 17.0.0", "sc-client-api", - "sp-api", + "sp-api 35.0.0", "sp-blockchain", "sp-consensus", - "sp-core", - "sp-runtime", - "sp-state-machine", - "sp-version", + "sp-core 35.0.0", + "sp-runtime 40.0.0", + "sp-state-machine 0.44.0", + "sp-version 38.0.0", "tracing", ] [[package]] name = "cumulus-client-parachain-inherent" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e99367f72d7bce6d8996eb397d265290e4a982fbbc4b0fd7659e57a2ad5b6b7b" +version = "0.14.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "async-trait", - "cumulus-primitives-core", - "cumulus-primitives-parachain-inherent", + "cumulus-primitives-core 0.17.0", + "cumulus-primitives-parachain-inherent 0.17.0", "cumulus-relay-chain-interface", "cumulus-test-relay-sproof-builder", "parity-scale-codec", "sc-client-api", - "scale-info", - "sp-api", - "sp-crypto-hashing", - "sp-inherents", - "sp-runtime", - "sp-state-machine", - "sp-std", - "sp-storage", - "sp-trie", + "sp-api 35.0.0", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-inherents 35.0.0", + "sp-runtime 40.0.0", + "sp-state-machine 0.44.0", + "sp-storage 22.0.0", + "sp-trie 38.0.0", "tracing", ] [[package]] name = "cumulus-client-pov-recovery" -version = "0.15.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "21e3bd944ef351edb61fdaca5bf6d9a964d7c7571bd0b0236ea51f167bec9b6f" +version = "0.20.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "async-trait", - "cumulus-primitives-core", + "cumulus-primitives-core 0.17.0", "cumulus-relay-chain-interface", "futures", "futures-timer", @@ -2627,36 +2822,35 @@ dependencies = [ "polkadot-node-primitives", "polkadot-node-subsystem", "polkadot-overseer", - "polkadot-primitives", + "polkadot-primitives 17.0.0", "rand", "sc-client-api", "sc-consensus", - "sp-api", + "sp-api 35.0.0", "sp-consensus", - "sp-maybe-compressed-blob", - "sp-runtime", - "sp-version", + "sp-maybe-compressed-blob 11.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-runtime 40.0.0", + "sp-version 38.0.0", "tracing", ] [[package]] name = "cumulus-client-service" -version = "0.15.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fb134f1526eba4455290859ad34174ab787c8f36f509063f41eeac17202a8f78" +version = "0.21.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "cumulus-client-cli", "cumulus-client-collator", "cumulus-client-consensus-common", "cumulus-client-network", "cumulus-client-pov-recovery", - "cumulus-primitives-core", - "cumulus-primitives-proof-size-hostfunction", + "cumulus-primitives-core 0.17.0", + "cumulus-primitives-proof-size-hostfunction 0.11.0", "cumulus-relay-chain-inprocess-interface", "cumulus-relay-chain-interface", "cumulus-relay-chain-minimal-node", "futures", - "polkadot-primitives", + "polkadot-primitives 17.0.0", "sc-client-api", "sc-consensus", "sc-network", @@ -2668,13 +2862,13 @@ dependencies = [ "sc-telemetry", "sc-transaction-pool", "sc-utils", - "sp-api", + "sp-api 35.0.0", "sp-blockchain", "sp-consensus", - "sp-core", - "sp-io", - "sp-runtime", - "sp-transaction-pool", + "sp-core 35.0.0", + "sp-io 39.0.0", + "sp-runtime 40.0.0", + "sp-transaction-pool 35.0.0", ] [[package]] @@ -2683,17 +2877,34 @@ version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c5e8af48090936c45483d489ee681acb54277763586b53fa3dbd17173aa474fc" dependencies = [ - "cumulus-pallet-parachain-system", - "frame-support", - "frame-system", - "pallet-aura", - "pallet-timestamp", + "cumulus-pallet-parachain-system 0.15.0", + "frame-support 36.0.1", + "frame-system 36.1.0", + "pallet-aura 35.0.0", + "pallet-timestamp 35.0.0", + "parity-scale-codec", + "scale-info", + "sp-application-crypto 37.0.0", + "sp-consensus-aura 0.39.0", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "cumulus-pallet-aura-ext" +version = "0.18.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "cumulus-pallet-parachain-system 0.18.0", + "frame-support 39.0.0", + "frame-system 39.0.0", + "pallet-aura 38.0.0", + "pallet-timestamp 38.0.0", "parity-scale-codec", "scale-info", - "sp-application-crypto", - "sp-consensus-aura", - "sp-runtime", - "sp-std", + "sp-application-crypto 39.0.0", + "sp-consensus-aura 0.41.0", + "sp-runtime 40.0.0", ] [[package]] @@ -2703,33 +2914,68 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "300d5509bd8ac95bafe158fa475278315175a4eb0422c2cd82e08e8b9dde035c" dependencies = [ "bytes", - "cumulus-pallet-parachain-system-proc-macro", - "cumulus-primitives-core", - "cumulus-primitives-parachain-inherent", - "cumulus-primitives-proof-size-hostfunction", + "cumulus-pallet-parachain-system-proc-macro 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "cumulus-primitives-core 0.14.0", + "cumulus-primitives-parachain-inherent 0.14.0", + "cumulus-primitives-proof-size-hostfunction 0.9.0", + "environmental", + "frame-benchmarking 36.0.0", + "frame-support 36.0.1", + "frame-system 36.1.0", + "impl-trait-for-tuples", + "log", + "pallet-message-queue 39.0.2", + "parity-scale-codec", + "polkadot-parachain-primitives 13.0.0", + "polkadot-runtime-common 15.0.0", + "polkadot-runtime-parachains 15.0.4", + "scale-info", + "sp-core 34.0.0", + "sp-externalities 0.29.0", + "sp-inherents 33.0.0", + "sp-io 37.0.0", + "sp-runtime 38.0.1", + "sp-state-machine 0.42.0", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-trie 36.0.0", + "sp-version 36.0.0", + "staging-xcm 14.0.3", + "staging-xcm-builder 15.0.0", + "trie-db", +] + +[[package]] +name = "cumulus-pallet-parachain-system" +version = "0.18.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "bytes", + "cumulus-pallet-parachain-system-proc-macro 0.6.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "cumulus-primitives-core 0.17.0", + "cumulus-primitives-parachain-inherent 0.17.0", + "cumulus-primitives-proof-size-hostfunction 0.11.0", "environmental", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", "impl-trait-for-tuples", "log", - "pallet-message-queue", - "parity-scale-codec", - "polkadot-parachain-primitives", - "polkadot-runtime-common", - "polkadot-runtime-parachains", - "scale-info", - "sp-core", - "sp-externalities", - "sp-inherents", - "sp-io", - "sp-runtime", - "sp-state-machine", - "sp-std", - "sp-trie", - "sp-version", - "staging-xcm 14.1.0", - "staging-xcm-builder", + "pallet-message-queue 42.0.0", + "parity-scale-codec", + "polkadot-parachain-primitives 15.0.0", + "polkadot-runtime-parachains 18.0.0", + "scale-info", + "sp-core 35.0.0", + "sp-externalities 0.30.0", + "sp-inherents 35.0.0", + "sp-io 39.0.0", + "sp-runtime 40.0.0", + "sp-state-machine 0.44.0", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-trie 38.0.0", + "sp-version 38.0.0", + "staging-xcm 15.0.1", + "staging-xcm-builder 18.0.0", "trie-db", ] @@ -2739,10 +2985,21 @@ version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "befbaf3a1ce23ac8476481484fef5f4d500cbd15b4dad6380ce1d28134b0c1f7" dependencies = [ - "proc-macro-crate 3.1.0", + "proc-macro-crate 3.2.0", + "proc-macro2", + "quote", + "syn 2.0.90", +] + +[[package]] +name = "cumulus-pallet-parachain-system-proc-macro" +version = "0.6.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "proc-macro-crate 3.2.0", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -2751,13 +3008,26 @@ version = "17.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "506daacefa861aa2909b64f26e76495ce029227fd8355b97e074cc1d5dc54ab2" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", - "pallet-session", + "frame-benchmarking 36.0.0", + "frame-support 36.0.1", + "frame-system 36.1.0", + "pallet-session 36.0.0", + "parity-scale-codec", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "cumulus-pallet-session-benchmarking" +version = "20.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", + "pallet-session 39.0.0", "parity-scale-codec", - "sp-runtime", - "sp-std", + "sp-runtime 40.0.0", ] [[package]] @@ -2766,15 +3036,30 @@ version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8d5224285f60e5159bab549f458079d606a7f95ef779def8b89f1a244dc7cf81" dependencies = [ - "cumulus-primitives-core", - "frame-support", - "frame-system", + "cumulus-primitives-core 0.14.0", + "frame-support 36.0.1", + "frame-system 36.1.0", + "parity-scale-codec", + "scale-info", + "sp-io 37.0.0", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "staging-xcm 14.0.3", +] + +[[package]] +name = "cumulus-pallet-xcm" +version = "0.18.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "cumulus-primitives-core 0.17.0", + "frame-support 39.0.0", + "frame-system 39.0.0", "parity-scale-codec", "scale-info", - "sp-io", - "sp-runtime", - "sp-std", - "staging-xcm 14.1.0", + "sp-io 39.0.0", + "sp-runtime 40.0.0", + "staging-xcm 15.0.1", ] [[package]] @@ -2784,24 +3069,49 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0adf5409618b21e754fef0ac70f257878d22d61c48fdeefcab666835dcb8e0f0" dependencies = [ "bounded-collections", - "bp-xcm-bridge-hub-router", - "cumulus-primitives-core", - "frame-benchmarking", - "frame-support", - "frame-system", + "bp-xcm-bridge-hub-router 0.13.0", + "cumulus-primitives-core 0.14.0", + "frame-benchmarking 36.0.0", + "frame-support 36.0.1", + "frame-system 36.1.0", "log", - "pallet-message-queue", + "pallet-message-queue 39.0.2", "parity-scale-codec", - "polkadot-runtime-common", - "polkadot-runtime-parachains", + "polkadot-runtime-common 15.0.0", + "polkadot-runtime-parachains 15.0.4", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", - "staging-xcm 14.1.0", - "staging-xcm-builder", - "staging-xcm-executor", + "sp-core 34.0.0", + "sp-io 37.0.0", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "staging-xcm 14.0.3", + "staging-xcm-builder 15.0.0", + "staging-xcm-executor 15.0.0", +] + +[[package]] +name = "cumulus-pallet-xcmp-queue" +version = "0.18.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "bounded-collections", + "bp-xcm-bridge-hub-router 0.15.0", + "cumulus-primitives-core 0.17.0", + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", + "log", + "pallet-message-queue 42.0.0", + "parity-scale-codec", + "polkadot-runtime-common 18.0.0", + "polkadot-runtime-parachains 18.0.0", + "scale-info", + "sp-core 35.0.0", + "sp-io 39.0.0", + "sp-runtime 40.0.0", + "staging-xcm 15.0.1", + "staging-xcm-builder 18.0.0", + "staging-xcm-executor 18.0.0", ] [[package]] @@ -2811,12 +3121,21 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3e7977947ad43a4cbc532ca33abcde136ae3deffdc7168b2ae253d73ccd371e4" dependencies = [ "parity-scale-codec", - "polkadot-core-primitives", - "polkadot-primitives", - "sp-api", - "sp-consensus-aura", - "sp-runtime", - "sp-std", + "polkadot-core-primitives 14.0.0", + "polkadot-primitives 14.0.0", + "sp-api 33.0.0", + "sp-consensus-aura 0.39.0", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "cumulus-primitives-aura" +version = "0.16.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "sp-api 35.0.0", + "sp-consensus-aura 0.41.0", ] [[package]] @@ -2826,15 +3145,31 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "751e64b89a839d5cfabebc1c797936e5eee791d0fa2322d91e86f8440a743ddb" dependencies = [ "parity-scale-codec", - "polkadot-core-primitives", - "polkadot-parachain-primitives", - "polkadot-primitives", + "polkadot-core-primitives 14.0.0", + "polkadot-parachain-primitives 13.0.0", + "polkadot-primitives 14.0.0", "scale-info", - "sp-api", - "sp-runtime", - "sp-std", - "sp-trie", - "staging-xcm 14.1.0", + "sp-api 33.0.0", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-trie 36.0.0", + "staging-xcm 14.0.3", +] + +[[package]] +name = "cumulus-primitives-core" +version = "0.17.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "parity-scale-codec", + "polkadot-core-primitives 16.0.0", + "polkadot-parachain-primitives 15.0.0", + "polkadot-primitives 17.0.0", + "scale-info", + "sp-api 35.0.0", + "sp-runtime 40.0.0", + "sp-trie 38.0.0", + "staging-xcm 15.0.1", ] [[package]] @@ -2844,15 +3179,29 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "df521e13b48278b86d02c61d6e44036d6d263deb5aaec4838b1751da8988d3d2" dependencies = [ "async-trait", - "cumulus-primitives-core", + "cumulus-primitives-core 0.14.0", + "parity-scale-codec", + "scale-info", + "sp-core 34.0.0", + "sp-inherents 33.0.0", + "sp-runtime 38.0.1", + "sp-state-machine 0.42.0", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-trie 36.0.0", +] + +[[package]] +name = "cumulus-primitives-parachain-inherent" +version = "0.17.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "async-trait", + "cumulus-primitives-core 0.17.0", "parity-scale-codec", "scale-info", - "sp-core", - "sp-inherents", - "sp-runtime", - "sp-state-machine", - "sp-std", - "sp-trie", + "sp-core 35.0.0", + "sp-inherents 35.0.0", + "sp-trie 38.0.0", ] [[package]] @@ -2861,27 +3210,36 @@ version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9f973d2a7262c90e48dcd42062bcb1e0fbf48bbcdac4ea6df3d85212d8d8be5d" dependencies = [ - "sp-externalities", - "sp-runtime-interface", - "sp-trie", + "sp-externalities 0.29.0", + "sp-runtime-interface 28.0.0", + "sp-trie 36.0.0", +] + +[[package]] +name = "cumulus-primitives-proof-size-hostfunction" +version = "0.11.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "sp-externalities 0.30.0", + "sp-runtime-interface 29.0.0", + "sp-trie 38.0.0", ] [[package]] name = "cumulus-primitives-storage-weight-reclaim" -version = "6.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "29a7e13063f593f21534a7b64c96f311c40cd4d3c72649e0bd063a34506fdd70" +version = "9.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ - "cumulus-primitives-core", - "cumulus-primitives-proof-size-hostfunction", + "cumulus-primitives-core 0.17.0", + "cumulus-primitives-proof-size-hostfunction 0.11.0", "docify", - "frame-support", - "frame-system", + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", "log", "parity-scale-codec", "scale-info", - "sp-runtime", - "sp-std", + "sp-runtime 40.0.0", ] [[package]] @@ -2890,29 +3248,45 @@ version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "05742c520065e3870d419683113ed7f6d35de66f0c80af6828e7878d1bb0ea94" dependencies = [ - "cumulus-primitives-core", - "frame-support", + "cumulus-primitives-core 0.14.0", + "frame-support 36.0.1", + "log", + "pallet-asset-conversion 18.0.0", + "parity-scale-codec", + "polkadot-runtime-common 15.0.0", + "polkadot-runtime-parachains 15.0.4", + "sp-io 37.0.0", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "staging-xcm 14.0.3", + "staging-xcm-builder 15.0.0", + "staging-xcm-executor 15.0.0", +] + +[[package]] +name = "cumulus-primitives-utility" +version = "0.18.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "cumulus-primitives-core 0.17.0", + "frame-support 39.0.0", "log", - "pallet-asset-conversion", + "pallet-asset-conversion 21.0.0", "parity-scale-codec", - "polkadot-runtime-common", - "polkadot-runtime-parachains", - "sp-io", - "sp-runtime", - "sp-std", - "staging-xcm 14.1.0", - "staging-xcm-builder", - "staging-xcm-executor", + "polkadot-runtime-common 18.0.0", + "sp-runtime 40.0.0", + "staging-xcm 15.0.1", + "staging-xcm-builder 18.0.0", + "staging-xcm-executor 18.0.0", ] [[package]] name = "cumulus-relay-chain-inprocess-interface" -version = "0.15.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "511675c9780fe8396e2b0c3ca8a04ff0ddc57d837fd9fe4086cb9aac1b107523" +version = "0.21.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "async-trait", - "cumulus-primitives-core", + "cumulus-primitives-core 0.17.0", "cumulus-relay-chain-interface", "futures", "futures-timer", @@ -2923,58 +3297,49 @@ dependencies = [ "sc-sysinfo", "sc-telemetry", "sc-tracing", - "sp-api", + "sp-api 35.0.0", "sp-consensus", - "sp-core", - "sp-runtime", - "sp-state-machine", + "sp-core 35.0.0", + "sp-runtime 40.0.0", + "sp-state-machine 0.44.0", ] [[package]] name = "cumulus-relay-chain-interface" -version = "0.15.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "36abc0a30972529fad05c4fae9f6866ec6c3edfaf2e20977219c94a807d96ffa" +version = "0.20.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "async-trait", - "cumulus-primitives-core", + "cumulus-primitives-core 0.17.0", "futures", - "jsonrpsee-core", + "jsonrpsee-core 0.24.7", "parity-scale-codec", "polkadot-overseer", "sc-client-api", - "sp-api", + "sp-api 35.0.0", "sp-blockchain", - "sp-state-machine", - "sp-version", - "thiserror", + "sp-state-machine 0.44.0", + "sp-version 38.0.0", + "thiserror 1.0.69", ] [[package]] name = "cumulus-relay-chain-minimal-node" -version = "0.15.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b39ec9de6ed195263af022094d63689fc6a914f48f70d74eb3fed8ee48973ea3" +version = "0.21.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "array-bytes", "async-trait", - "cumulus-primitives-core", + "cumulus-primitives-core 0.17.0", "cumulus-relay-chain-interface", "cumulus-relay-chain-rpc-interface", "futures", - "parking_lot 0.12.3", - "polkadot-availability-recovery", - "polkadot-collator-protocol", - "polkadot-core-primitives", + "polkadot-core-primitives 16.0.0", "polkadot-network-bridge", - "polkadot-node-collation-generation", - "polkadot-node-core-chain-api", - "polkadot-node-core-prospective-parachains", - "polkadot-node-core-runtime-api", "polkadot-node-network-protocol", "polkadot-node-subsystem-util", "polkadot-overseer", - "polkadot-primitives", + "polkadot-primitives 17.0.0", "polkadot-service", "sc-authority-discovery", "sc-client-api", @@ -2983,11 +3348,11 @@ dependencies = [ "sc-service", "sc-tracing", "sc-utils", - "sp-api", + "sp-api 35.0.0", "sp-blockchain", "sp-consensus", - "sp-consensus-babe", - "sp-runtime", + "sp-consensus-babe 0.41.0", + "sp-runtime 40.0.0", "substrate-prometheus-endpoint", "tokio", "tracing", @@ -2995,20 +3360,20 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-rpc-interface" -version = "0.15.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b22c43792fa5d56a2360bcdbdc58c47aafa23688072d2b6e61844864e69a15c8" +version = "0.20.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "async-trait", - "cumulus-primitives-core", + "cumulus-primitives-core 0.17.0", "cumulus-relay-chain-interface", "either", "futures", "futures-timer", - "jsonrpsee", + "jsonrpsee 0.24.7", "parity-scale-codec", "pin-project", "polkadot-overseer", + "prometheus", "rand", "sc-client-api", "sc-rpc-api", @@ -3016,17 +3381,18 @@ dependencies = [ "schnellru", "serde", "serde_json", - "smoldot", - "smoldot-light", - "sp-api", - "sp-authority-discovery", - "sp-consensus-babe", - "sp-core", - "sp-runtime", - "sp-state-machine", - "sp-storage", - "sp-version", - "thiserror", + "smoldot 0.11.0", + "smoldot-light 0.9.0", + "sp-api 35.0.0", + "sp-authority-discovery 35.0.0", + "sp-consensus-babe 0.41.0", + "sp-core 35.0.0", + "sp-runtime 40.0.0", + "sp-state-machine 0.44.0", + "sp-storage 22.0.0", + "sp-version 38.0.0", + "substrate-prometheus-endpoint", + "thiserror 1.0.69", "tokio", "tokio-util", "tracing", @@ -3035,17 +3401,15 @@ dependencies = [ [[package]] name = "cumulus-test-relay-sproof-builder" -version = "0.14.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e1f4ab9d64a581d4a5431f2554f4602a4208c5e28b30be01af386e24d8447599" +version = "0.17.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ - "cumulus-primitives-core", + "cumulus-primitives-core 0.17.0", "parity-scale-codec", - "polkadot-primitives", - "sp-runtime", - "sp-state-machine", - "sp-std", - "sp-trie", + "polkadot-primitives 17.0.0", + "sp-runtime 40.0.0", + "sp-state-machine 0.44.0", + "sp-trie 38.0.0", ] [[package]] @@ -3060,7 +3424,7 @@ dependencies = [ "digest 0.10.7", "fiat-crypto", "rustc_version", - "subtle 2.5.0", + "subtle 2.6.1", "zeroize", ] @@ -3072,7 +3436,7 @@ checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -3090,46 +3454,61 @@ dependencies = [ [[package]] name = "cxx" -version = "1.0.124" +version = "1.0.135" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "273dcfd3acd4e1e276af13ed2a43eea7001318823e7a726a6b3ed39b4acc0b82" +checksum = "4d44ff199ff93242c3afe480ab588d544dd08d72e92885e152ffebc670f076ad" dependencies = [ "cc", + "cxxbridge-cmd", "cxxbridge-flags", "cxxbridge-macro", + "foldhash", "link-cplusplus", ] [[package]] name = "cxx-build" -version = "1.0.124" +version = "1.0.135" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d8b2766fbd92be34e9ed143898fce6c572dc009de39506ed6903e5a05b68914e" +checksum = "66fd8f17ad454fc1e4f4ab83abffcc88a532e90350d3ffddcb73030220fcbd52" dependencies = [ "cc", "codespan-reporting", - "once_cell", "proc-macro2", "quote", "scratch", - "syn 2.0.96", + "syn 2.0.90", +] + +[[package]] +name = "cxxbridge-cmd" +version = "1.0.135" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4717c9c806a9e07fdcb34c84965a414ea40fafe57667187052cf1eb7f5e8a8a9" +dependencies = [ + "clap", + "codespan-reporting", + "proc-macro2", + "quote", + "syn 2.0.90", ] [[package]] name = "cxxbridge-flags" -version = "1.0.124" +version = "1.0.135" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "839fcd5e43464614ffaa989eaf1c139ef1f0c51672a1ed08023307fa1b909ccd" +checksum = "2f6515329bf3d98f4073101c7866ff2bec4e635a13acb82e3f3753fff0bf43cb" [[package]] name = "cxxbridge-macro" -version = "1.0.124" +version = "1.0.135" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4b2c1c1776b986979be68bb2285da855f8d8a35851a769fca8740df7c3d07877" +checksum = "fb93e6a7ce8ec985c02bbb758237a31598b340acbbc3c19c5a4fa6adaaac92ab" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "rustversion", + "syn 2.0.90", ] [[package]] @@ -3138,8 +3517,18 @@ version = "0.14.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7b750cb3417fd1b327431a470f388520309479ab0bf5e323505daf0290cd3850" dependencies = [ - "darling_core", - "darling_macro", + "darling_core 0.14.4", + "darling_macro 0.14.4", +] + +[[package]] +name = "darling" +version = "0.20.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6f63b86c8a8826a49b8c21f08a2d07338eec8d900540f8630dc76284be802989" +dependencies = [ + "darling_core 0.20.10", + "darling_macro 0.20.10", ] [[package]] @@ -3156,17 +3545,42 @@ dependencies = [ "syn 1.0.109", ] +[[package]] +name = "darling_core" +version = "0.20.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "95133861a8032aaea082871032f5815eb9e98cef03fa916ab4500513994df9e5" +dependencies = [ + "fnv", + "ident_case", + "proc-macro2", + "quote", + "strsim 0.11.1", + "syn 2.0.90", +] + [[package]] name = "darling_macro" version = "0.14.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a4aab4dbc9f7611d8b55048a3a16d2d010c2c8334e46304b40ac1cc14bf3b48e" dependencies = [ - "darling_core", + "darling_core 0.14.4", "quote", "syn 1.0.109", ] +[[package]] +name = "darling_macro" +version = "0.20.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806" +dependencies = [ + "darling_core 0.20.10", + "quote", + "syn 2.0.90", +] + [[package]] name = "dashmap" version = "5.5.3" @@ -3267,24 +3681,35 @@ dependencies = [ [[package]] name = "derive-syn-parse" -version = "0.1.5" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e79116f119dd1dba1abf1f3405f03b9b0e79a27a3883864bfebded8a3dc768cd" +checksum = "d65d7ce8132b7c0e54497a4d9a55a1c2a0912a0d786cf894472ba818fba45762" dependencies = [ "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.90", ] [[package]] -name = "derive-syn-parse" -version = "0.2.0" +name = "derive-where" +version = "1.2.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d65d7ce8132b7c0e54497a4d9a55a1c2a0912a0d786cf894472ba818fba45762" +checksum = "62d671cc41a825ebabc75757b62d3d168c577f9149b2d49ece1dad1f72119d25" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.90", +] + +[[package]] +name = "derive_arbitrary" +version = "1.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "30542c1ad912e0e3d22a1935c290e12e8a29d704a420177a31faad4a601a0800" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -3297,7 +3722,7 @@ dependencies = [ "proc-macro2", "quote", "rustc_version", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -3317,7 +3742,7 @@ checksum = "cb7330aeadfbe296029522e6c40f315320aba36fc43a5b3632f3795348f3bd22" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", "unicode-xid", ] @@ -3354,7 +3779,7 @@ dependencies = [ "block-buffer 0.10.4", "const-oid", "crypto-common", - "subtle 2.5.0", + "subtle 2.6.1", ] [[package]] @@ -3401,39 +3826,39 @@ dependencies = [ [[package]] name = "displaydoc" -version = "0.2.4" +version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "487585f4d0c6655fe74905e2504d8ad6908e4db67f744eb140876906c2f3175d" +checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[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 0.2.0", + "derive-syn-parse", "once_cell", "proc-macro2", "quote", "regex", - "syn 2.0.96", + "syn 2.0.90", "termcolor", - "toml 0.8.14", + "toml 0.8.19", "walkdir", ] @@ -3530,7 +3955,7 @@ dependencies = [ "rand_core", "serde", "sha2 0.10.8", - "subtle 2.5.0", + "subtle 2.6.1", "zeroize", ] @@ -3571,49 +3996,51 @@ dependencies = [ "rand_core", "sec1", "serdect", - "subtle 2.5.0", + "subtle 2.6.1", "zeroize", ] [[package]] name = "emulated-integration-tests-common" -version = "11.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aef7c980b99bb2e4edfc9535d4096c1d0b5c8e3b52aab38a497a79563e6005f7" +version = "18.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "asset-test-utils", - "bp-messages", + "bp-messages 0.19.0", + "bp-xcm-bridge-hub", "bridge-runtime-common", - "cumulus-pallet-parachain-system", - "cumulus-pallet-xcmp-queue", - "cumulus-primitives-core", - "frame-support", - "pallet-assets", - "pallet-balances", + "cumulus-pallet-parachain-system 0.18.0", + "cumulus-pallet-xcmp-queue 0.18.0", + "cumulus-primitives-core 0.17.0", + "frame-support 39.0.0", + "pallet-assets 41.0.0", + "pallet-balances 40.0.0", "pallet-bridge-messages", - "pallet-message-queue", - "pallet-xcm", - "parachains-common", + "pallet-message-queue 42.0.0", + "pallet-xcm 18.0.0", + "pallet-xcm-bridge-hub", + "parachains-common 19.0.0", "parity-scale-codec", "paste", - "polkadot-parachain-primitives", - "polkadot-primitives", - "polkadot-runtime-parachains", + "polkadot-parachain-primitives 15.0.0", + "polkadot-primitives 17.0.0", + "polkadot-runtime-parachains 18.0.0", "sc-consensus-grandpa", - "sp-authority-discovery", - "sp-consensus-babe", - "sp-consensus-beefy", - "sp-core", - "sp-runtime", - "staging-xcm 14.1.0", + "sp-authority-discovery 35.0.0", + "sp-consensus-babe 0.41.0", + "sp-consensus-beefy 23.0.0", + "sp-core 35.0.0", + "sp-keyring 40.0.0", + "sp-runtime 40.0.0", + "staging-xcm 15.0.1", "xcm-emulator", ] [[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" @@ -3629,14 +4056,14 @@ dependencies = [ [[package]] name = "enum-as-inner" -version = "0.6.0" +version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5ffccbb6966c05b32ef8fbac435df276c4ae4d3dc55a8cd0eb9745e6c12f546a" +checksum = "a1e6a265c649f3f5979b601d26f1d05ada116434c87741c9493cb56218f76cbc" dependencies = [ - "heck 0.4.1", + "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -3656,7 +4083,7 @@ checksum = "a1ab991c1362ac86c61ab6f556cff143daa22e5a15e4e189df818b2fd19fe65b" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -3676,18 +4103,18 @@ checksum = "de0d48a183585823424a4ce1aa132d174a6a81bd540895822eb4c8373a8e49e8" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] name = "enumn" -version = "0.1.13" +version = "0.1.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6fd000fd6988e73bbe993ea3db9b1aa64906ab88766d654973924340c8cddb42" +checksum = "2f9ed6b3789237c8a0c1c505af1c7eb2c560df6186f01b098c3a1064ea532f38" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -3700,6 +4127,12 @@ dependencies = [ "regex", ] +[[package]] +name = "env_home" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c7f84e12ccf0a7ddc17a6c41c93326024c42920d7ee630d04950e6926645c0fe" + [[package]] name = "env_logger" version = "0.10.2" @@ -3740,12 +4173,12 @@ checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" [[package]] name = "errno" -version = "0.3.9" +version = "0.3.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba" +checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d" dependencies = [ "libc", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] @@ -3754,7 +4187,17 @@ version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "09d398648d65820a727d6a81e58b962f874473396a047e4c30bafe3240953417" dependencies = [ - "ethereum-types", + "ethereum-types 0.14.1", + "tiny-keccak", +] + +[[package]] +name = "ethabi-decode" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52029c4087f9f01108f851d0d02df9c21feb5660a19713466724b7f95bd2d773" +dependencies = [ + "ethereum-types 0.15.1", "tiny-keccak", ] @@ -3766,9 +4209,24 @@ checksum = "c22d4b5885b6aa2fe5e8b9329fb8d232bf739e434e6b87347c63bdd00c120f60" dependencies = [ "crunchy", "fixed-hash", - "impl-codec", - "impl-rlp", - "impl-serde", + "impl-codec 0.6.0", + "impl-rlp 0.3.0", + "impl-serde 0.4.0", + "scale-info", + "tiny-keccak", +] + +[[package]] +name = "ethbloom" +version = "0.14.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8c321610643004cf908ec0f5f2aa0d8f1f8e14b540562a2887a1111ff1ecbf7b" +dependencies = [ + "crunchy", + "fixed-hash", + "impl-codec 0.7.0", + "impl-rlp 0.4.0", + "impl-serde 0.5.0", "scale-info", "tiny-keccak", ] @@ -3779,14 +4237,30 @@ version = "0.14.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "02d215cbf040552efcbe99a38372fe80ab9d00268e20012b79fcd0f073edd8ee" dependencies = [ - "ethbloom", + "ethbloom 0.13.0", + "fixed-hash", + "impl-codec 0.6.0", + "impl-rlp 0.3.0", + "impl-serde 0.4.0", + "primitive-types 0.12.2", + "scale-info", + "uint 0.9.5", +] + +[[package]] +name = "ethereum-types" +version = "0.15.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ab15ed80916029f878e0267c3a9f92b67df55e79af370bf66199059ae2b4ee3" +dependencies = [ + "ethbloom 0.14.1", "fixed-hash", - "impl-codec", - "impl-rlp", - "impl-serde", - "primitive-types", + "impl-codec 0.7.0", + "impl-rlp 0.4.0", + "impl-serde 0.5.0", + "primitive-types 0.13.1", "scale-info", - "uint", + "uint 0.10.0", ] [[package]] @@ -3806,6 +4280,16 @@ dependencies = [ "pin-project-lite", ] +[[package]] +name = "event-listener" +version = "4.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "67b215c49b2b248c855fb73579eb1f4f26c38ffdc12973e20e07b91d78d5646e" +dependencies = [ + "concurrent-queue", + "pin-project-lite", +] + [[package]] name = "event-listener" version = "5.3.1" @@ -3819,9 +4303,9 @@ dependencies = [ [[package]] name = "event-listener-strategy" -version = "0.5.2" +version = "0.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0f214dc438f977e6d4e3500aaa277f5ad94ca83fbbd9b1a15713ce2344ccc5a1" +checksum = "3c3e4e0dd3673c1139bf041f3008816d9cf2946bbfac2945c09e523b8d7b05b2" dependencies = [ "event-listener 5.3.1", "pin-project-lite", @@ -3845,10 +4329,10 @@ dependencies = [ "blake2 0.10.6", "file-guard", "fs-err", - "prettyplease 0.2.20", + "prettyplease", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -3874,9 +4358,9 @@ dependencies = [ [[package]] name = "fastrand" -version = "2.1.0" +version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a" +checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" [[package]] name = "fatality" @@ -3885,7 +4369,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ec6f82451ff7f0568c6181287189126d492b5654e30a788add08027b6363d019" dependencies = [ "fatality-proc-macro", - "thiserror", + "thiserror 1.0.69", ] [[package]] @@ -3895,11 +4379,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eb42427514b063d97ce21d5199f36c0c307d981434a6be32582bc79fe5bd2303" dependencies = [ "expander", - "indexmap 2.2.6", - "proc-macro-crate 3.1.0", + "indexmap 2.7.0", + "proc-macro-crate 3.2.0", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -3909,7 +4393,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e182f7dbc2ef73d9ef67351c5fbbea084729c48362d3ce9dd44c28e32e277fe5" dependencies = [ "libc", - "thiserror", + "thiserror 1.0.69", ] [[package]] @@ -3919,7 +4403,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ded41244b729663b1e574f1b4fb731469f69f79c17667b5d776b16cda0479449" dependencies = [ "rand_core", - "subtle 2.5.0", + "subtle 2.6.1", ] [[package]] @@ -3950,14 +4434,14 @@ dependencies = [ [[package]] name = "filetime" -version = "0.2.23" +version = "0.2.25" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1ee447700ac8aa0b2f2bd7bc4462ad686ba06baa6727ac149a2d6277f0d240fd" +checksum = "35c0522e981e68cbfa8c3f978441a5f34b30b96e146b33cd3359176b50fe8586" dependencies = [ "cfg-if", "libc", - "redox_syscall 0.4.1", - "windows-sys 0.52.0", + "libredox", + "windows-sys 0.59.0", ] [[package]] @@ -3976,6 +4460,16 @@ dependencies = [ "scale-info", ] +[[package]] +name = "finito" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2384245d85162258a14b43567a9ee3598f5ae746a1581fb5d3d2cb780f0dbf95" +dependencies = [ + "futures-timer", + "pin-project", +] + [[package]] name = "fixed-hash" version = "0.8.0" @@ -4010,25 +4504,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] -name = "foreign-types" -version = "0.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" -dependencies = [ - "foreign-types-shared", -] - -[[package]] -name = "foreign-types-shared" -version = "0.1.1" +name = "foldhash" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" +checksum = "f81ec6369c545a7d40e4589b5597581fa1c441fe1cce96dd1de43159910a36a2" [[package]] name = "fork-tree" -version = "13.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ad4cc2314d3be8b49c555f6a7e550f5559e73ffd6ef9690ffbd9a706774452e0" +version = "13.0.1" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "parity-scale-codec", ] @@ -4060,7 +4544,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8835f84f38484cc86f110a805655697908257fb9a7af005234060891557198e9" dependencies = [ "nonempty", - "thiserror", + "thiserror 1.0.69", ] [[package]] @@ -4075,47 +4559,74 @@ version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "709b26657ebbba53dc7bb616577375ca462b20fef1b00e8d9b20d2435e87f7bc" dependencies = [ - "frame-support", - "frame-support-procedural", - "frame-system", + "frame-support 36.0.1", + "frame-support-procedural 30.0.4", + "frame-system 36.1.0", + "linregress", + "log", + "parity-scale-codec", + "paste", + "scale-info", + "serde", + "sp-api 33.0.0", + "sp-application-crypto 37.0.0", + "sp-core 34.0.0", + "sp-io 37.0.0", + "sp-runtime 38.0.1", + "sp-runtime-interface 28.0.0", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-storage 21.0.0", + "static_assertions", +] + +[[package]] +name = "frame-benchmarking" +version = "39.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "frame-support 39.0.0", + "frame-support-procedural 31.0.0", + "frame-system 39.0.0", "linregress", "log", "parity-scale-codec", "paste", "scale-info", "serde", - "sp-api", - "sp-application-crypto", - "sp-core", - "sp-io", - "sp-runtime", - "sp-runtime-interface", - "sp-std", - "sp-storage", + "sp-api 35.0.0", + "sp-application-crypto 39.0.0", + "sp-core 35.0.0", + "sp-io 39.0.0", + "sp-runtime 40.0.0", + "sp-runtime-interface 29.0.0", + "sp-storage 22.0.0", "static_assertions", ] [[package]] name = "frame-benchmarking-cli" -version = "40.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49302558cac41cba0a28aa784615daea85c49253ecc6d6a6c4a8ee2f2303655a" +version = "45.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "Inflector", "array-bytes", "chrono", "clap", "comfy-table", - "frame-benchmarking", - "frame-support", - "frame-system", + "cumulus-client-parachain-inherent", + "cumulus-primitives-proof-size-hostfunction 0.11.0", + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", "gethostname", "handlebars", + "hex", "itertools 0.11.0", - "lazy_static", "linked-hash-map", "log", "parity-scale-codec", + "polkadot-parachain-primitives 15.0.0", + "polkadot-primitives 17.0.0", "rand", "rand_pcg", "sc-block-builder", @@ -4124,38 +4635,57 @@ dependencies = [ "sc-client-api", "sc-client-db", "sc-executor", + "sc-executor-common", "sc-service", "sc-sysinfo", "serde", "serde_json", - "sp-api", + "sp-api 35.0.0", + "sp-block-builder 35.0.0", "sp-blockchain", - "sp-core", + "sp-core 35.0.0", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", "sp-database", - "sp-externalities", - "sp-genesis-builder", - "sp-inherents", - "sp-io", - "sp-keystore", - "sp-runtime", - "sp-state-machine", - "sp-storage", - "sp-trie", - "sp-wasm-interface", - "thiserror", + "sp-externalities 0.30.0", + "sp-genesis-builder 0.16.0", + "sp-inherents 35.0.0", + "sp-io 39.0.0", + "sp-keystore 0.41.0", + "sp-runtime 40.0.0", + "sp-state-machine 0.44.0", + "sp-storage 22.0.0", + "sp-timestamp 35.0.0", + "sp-transaction-pool 35.0.0", + "sp-trie 38.0.0", + "sp-version 38.0.0", + "sp-wasm-interface 21.0.1 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "subxt", + "subxt-signer", + "thiserror 1.0.69", "thousands", ] [[package]] name = "frame-election-provider-solution-type" -version = "14.0.0" +version = "14.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1388eb632484a1208a5b51d7d822a7df995f37bb10878b2a88f4ec89cbe5e6b2" +checksum = "8156f209055d352994ecd49e19658c6b469d7c6de923bd79868957d0dcfb6f71" +dependencies = [ + "proc-macro-crate 3.2.0", + "proc-macro2", + "quote", + "syn 2.0.90", +] + +[[package]] +name = "frame-election-provider-solution-type" +version = "14.0.1" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ - "proc-macro-crate 3.1.0", + "proc-macro-crate 3.2.0", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -4164,16 +4694,32 @@ version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b1ec289ebad5e601bb165cf7eb6ec2179ae34280ee310d0710a3111d4f8f8f94" dependencies = [ - "frame-election-provider-solution-type", - "frame-support", - "frame-system", + "frame-election-provider-solution-type 14.0.1 (registry+https://github.com/rust-lang/crates.io-index)", + "frame-support 36.0.1", + "frame-system 36.1.0", "parity-scale-codec", "scale-info", - "sp-arithmetic", - "sp-core", - "sp-npos-elections", - "sp-runtime", - "sp-std", + "sp-arithmetic 26.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-core 34.0.0", + "sp-npos-elections 33.0.0", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "frame-election-provider-support" +version = "39.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "frame-election-provider-solution-type 14.0.1 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "frame-support 39.0.0", + "frame-system 39.0.0", + "parity-scale-codec", + "scale-info", + "sp-arithmetic 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-core 35.0.0", + "sp-npos-elections 35.0.0", + "sp-runtime 40.0.0", ] [[package]] @@ -4183,17 +4729,46 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4d878830330eaa9e8b886279c338556b05702d0059989cb51cfb226b70bf3fa4" dependencies = [ "aquamarine", - "frame-support", - "frame-system", - "frame-try-runtime", + "frame-support 36.0.1", + "frame-system 36.1.0", + "frame-try-runtime 0.42.0", + "log", + "parity-scale-codec", + "scale-info", + "sp-core 34.0.0", + "sp-io 37.0.0", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-tracing 17.0.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "frame-executive" +version = "39.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "aquamarine", + "frame-support 39.0.0", + "frame-system 39.0.0", + "frame-try-runtime 0.45.0", "log", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", - "sp-tracing", + "sp-core 35.0.0", + "sp-io 39.0.0", + "sp-runtime 40.0.0", + "sp-tracing 17.0.1 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", +] + +[[package]] +name = "frame-metadata" +version = "15.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "878babb0b136e731cc77ec2fd883ff02745ff21e6fb662729953d44923df009c" +dependencies = [ + "cfg-if", + "parity-scale-codec", + "scale-info", ] [[package]] @@ -4208,6 +4783,18 @@ dependencies = [ "serde", ] +[[package]] +name = "frame-metadata" +version = "18.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "daaf440c68eb2c3d88e5760fe8c7af3f9fee9181fab6c2f2c4e7cc48dcc40bb8" +dependencies = [ + "cfg-if", + "parity-scale-codec", + "scale-info", + "serde", +] + [[package]] name = "frame-metadata-hash-extension" version = "0.4.0" @@ -4216,27 +4803,85 @@ checksum = "cf37fc730bf4b51e82a34c6357eebe32c04dbacf6525e0a7b9726f6a17ec9427" dependencies = [ "array-bytes", "docify", - "frame-support", - "frame-system", + "frame-support 36.0.1", + "frame-system 36.1.0", + "log", + "parity-scale-codec", + "scale-info", + "sp-runtime 38.0.1", +] + +[[package]] +name = "frame-metadata-hash-extension" +version = "0.7.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "array-bytes", + "const-hex", + "docify", + "frame-support 39.0.0", + "frame-system 39.0.0", "log", "parity-scale-codec", "scale-info", - "sp-runtime", + "sp-runtime 40.0.0", ] [[package]] name = "frame-support" -version = "36.0.0" +version = "36.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "512b517645f29d76c79e4c97bf8b0f4dcb6708a2af3be24b1956085dcdcf6ce5" +checksum = "2f4d08149c28010bfa568dcfa832aea628fb794d4243794a13b1bdef1aa66fb1" +dependencies = [ + "aquamarine", + "array-bytes", + "bitflags 1.3.2", + "docify", + "environmental", + "frame-metadata 16.0.0", + "frame-support-procedural 30.0.4", + "impl-trait-for-tuples", + "k256", + "log", + "macro_magic", + "parity-scale-codec", + "paste", + "scale-info", + "serde", + "serde_json", + "smallvec", + "sp-api 33.0.0", + "sp-arithmetic 26.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-core 34.0.0", + "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.14.0", + "sp-inherents 33.0.0", + "sp-io 37.0.0", + "sp-metadata-ir 0.7.0", + "sp-runtime 38.0.1", + "sp-staking 33.0.0", + "sp-state-machine 0.42.0", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-tracing 17.0.1 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-weights 31.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "static_assertions", + "tt-call", +] + +[[package]] +name = "frame-support" +version = "39.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "aquamarine", "array-bytes", + "binary-merkle-tree 16.0.0", "bitflags 1.3.2", "docify", "environmental", - "frame-metadata", - "frame-support-procedural", + "frame-metadata 18.0.0", + "frame-support-procedural 31.0.0", "impl-trait-for-tuples", "k256", "log", @@ -4247,56 +4892,89 @@ dependencies = [ "serde", "serde_json", "smallvec", - "sp-api", - "sp-arithmetic", - "sp-core", - "sp-crypto-hashing-proc-macro", - "sp-debug-derive", - "sp-genesis-builder", - "sp-inherents", - "sp-io", - "sp-metadata-ir", - "sp-runtime", - "sp-staking", - "sp-state-machine", - "sp-std", - "sp-tracing", - "sp-weights", + "sp-api 35.0.0", + "sp-arithmetic 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-core 35.0.0", + "sp-crypto-hashing-proc-macro 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-genesis-builder 0.16.0", + "sp-inherents 35.0.0", + "sp-io 39.0.0", + "sp-metadata-ir 0.8.0", + "sp-runtime 40.0.0", + "sp-staking 37.0.0", + "sp-state-machine 0.44.0", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-tracing 17.0.1 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-trie 38.0.0", + "sp-weights 31.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", "static_assertions", "tt-call", ] [[package]] name = "frame-support-procedural" -version = "30.0.1" +version = "30.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fd94af68373e179c32c360b3c280497a9cf0f45a4f47f0ee6539a6c6c9cf2343" +checksum = "5e8f9b6bc1517a6fcbf0b2377e5c8c6d39f5bb7862b191a59a9992081d63972d" +dependencies = [ + "Inflector", + "cfg-expr", + "derive-syn-parse", + "expander", + "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-macro2", + "quote", + "sp-crypto-hashing 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 2.0.90", +] + +[[package]] +name = "frame-support-procedural" +version = "31.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "Inflector", "cfg-expr", - "derive-syn-parse 0.2.0", + "derive-syn-parse", + "docify", "expander", - "frame-support-procedural-tools", + "frame-support-procedural-tools 13.0.1 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", "itertools 0.11.0", "macro_magic", "proc-macro-warning 1.0.2", "proc-macro2", "quote", - "sp-crypto-hashing", - "syn 2.0.96", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "syn 2.0.90", ] [[package]] name = "frame-support-procedural-tools" -version = "13.0.0" +version = "13.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bead15a320be1764cdd50458c4cfacb23e0cee65f64f500f8e34136a94c7eeca" +checksum = "81a088fd6fda5f53ff0c17fc7551ce8bd0ead14ba742228443c8196296a7369b" +dependencies = [ + "frame-support-procedural-tools-derive 12.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro-crate 3.2.0", + "proc-macro2", + "quote", + "syn 2.0.90", +] + +[[package]] +name = "frame-support-procedural-tools" +version = "13.0.1" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ - "frame-support-procedural-tools-derive", - "proc-macro-crate 3.1.0", + "frame-support-procedural-tools-derive 12.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "proc-macro-crate 3.2.0", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -4307,7 +4985,17 @@ checksum = "ed971c6435503a099bdac99fe4c5bea08981709e5b5a0a8535a1856f48561191" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", +] + +[[package]] +name = "frame-support-procedural-tools-derive" +version = "12.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.90", ] [[package]] @@ -4318,17 +5006,37 @@ checksum = "64d6a0e7bb6503facdcc6f8e19c83cd0bfc8bbbd268522b1a50e107dfc6b972d" dependencies = [ "cfg-if", "docify", - "frame-support", + "frame-support 36.0.1", + "log", + "parity-scale-codec", + "scale-info", + "serde", + "sp-core 34.0.0", + "sp-io 37.0.0", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-version 36.0.0", + "sp-weights 31.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "frame-system" +version = "39.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "cfg-if", + "docify", + "frame-support 39.0.0", "log", "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", - "sp-version", - "sp-weights", + "sp-core 35.0.0", + "sp-io 39.0.0", + "sp-runtime 40.0.0", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-version 38.0.0", + "sp-weights 31.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", ] [[package]] @@ -4337,14 +5045,28 @@ version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "15afc91c7780e18274dcea58ed1edb700c48d10e086a9785e3f6708099cd3250" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.1", + "frame-system 36.1.0", + "parity-scale-codec", + "scale-info", + "sp-core 34.0.0", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "frame-system-benchmarking" +version = "39.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", "parity-scale-codec", "scale-info", - "sp-core", - "sp-runtime", - "sp-std", + "sp-core 35.0.0", + "sp-runtime 40.0.0", ] [[package]] @@ -4354,7 +5076,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c9e9e2b7b85e451e367f4fb85ff3295bd039e17f64de1906154d3976e2638ee8" dependencies = [ "parity-scale-codec", - "sp-api", + "sp-api 33.0.0", +] + +[[package]] +name = "frame-system-rpc-runtime-api" +version = "35.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "docify", + "parity-scale-codec", + "sp-api 35.0.0", ] [[package]] @@ -4363,11 +5095,22 @@ version = "0.42.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ae6ba8b36a52775ad39ccfb45ff4ad814c3cb45ec74d0a4271889e00bd791c6c" dependencies = [ - "frame-support", + "frame-support 36.0.1", + "parity-scale-codec", + "sp-api 33.0.0", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "frame-try-runtime" +version = "0.45.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "frame-support 39.0.0", "parity-scale-codec", - "sp-api", - "sp-runtime", - "sp-std", + "sp-api 35.0.0", + "sp-runtime 40.0.0", ] [[package]] @@ -4395,7 +5138,7 @@ version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "29f9df8a11882c4e3335eb2d18a0137c505d9ca927470b0cac9c6f0ae07d28f7" dependencies = [ - "rustix 0.38.34", + "rustix 0.38.42", "windows-sys 0.48.0", ] @@ -4407,9 +5150,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", @@ -4432,9 +5175,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", @@ -4442,15 +5185,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", @@ -4460,9 +5203,9 @@ dependencies = [ [[package]] name = "futures-io" -version = "0.3.30" +version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1" +checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" [[package]] name = "futures-lite" @@ -4481,11 +5224,11 @@ dependencies = [ [[package]] name = "futures-lite" -version = "2.3.0" +version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "52527eb5074e35e9339c6b4e8d12600c7128b68fb25dcb9fa9dec18f7c25f3a5" +checksum = "cef40d21ae2c515b51041df9ed313ed21e572df340ea58a922a0aefe7e8891a1" dependencies = [ - "fastrand 2.1.0", + "fastrand 2.3.0", "futures-core", "futures-io", "parking", @@ -4494,13 +5237,13 @@ 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.96", + "syn 2.0.90", ] [[package]] @@ -4515,27 +5258,31 @@ dependencies = [ [[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" version = "3.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24" +dependencies = [ + "gloo-timers", + "send_wrapper 0.4.0", +] [[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", @@ -4642,9 +5389,13 @@ dependencies = [ [[package]] name = "gimli" -version = "0.29.0" +version = "0.31.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "40ecd4077b5ae9fd2e9e169b102c6c330d0605168eb0e8bf79952b256dbefffd" +checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f" +dependencies = [ + "fallible-iterator 0.3.0", + "stable_deref_trait", +] [[package]] name = "glob" @@ -4652,6 +5403,52 @@ version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" +[[package]] +name = "gloo-net" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c06f627b1a58ca3d42b45d6104bf1e1a03799df472df00988b6ba21accc10580" +dependencies = [ + "futures-channel", + "futures-core", + "futures-sink", + "gloo-utils", + "http 1.2.0", + "js-sys", + "pin-project", + "serde", + "serde_json", + "thiserror 1.0.69", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", +] + +[[package]] +name = "gloo-timers" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b995a66bb87bebce9a0f4a95aed01daca4872c050bfcb21653361c03bc35e5c" +dependencies = [ + "futures-channel", + "futures-core", + "js-sys", + "wasm-bindgen", +] + +[[package]] +name = "gloo-utils" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b5555354113b18c547c1d3a98fbf7fb32a9ff4f6fa112ce823a21641a0ba3aa" +dependencies = [ + "js-sys", + "serde", + "serde_json", + "wasm-bindgen", + "web-sys", +] + [[package]] name = "governor" version = "0.6.3" @@ -4680,7 +5477,7 @@ checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63" dependencies = [ "ff", "rand_core", - "subtle 2.5.0", + "subtle 2.6.1", ] [[package]] @@ -4695,7 +5492,7 @@ dependencies = [ "futures-sink", "futures-util", "http 0.2.12", - "indexmap 2.2.6", + "indexmap 2.7.0", "slab", "tokio", "tokio-util", @@ -4704,17 +5501,17 @@ dependencies = [ [[package]] name = "h2" -version = "0.4.5" +version = "0.4.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fa82e28a107a8cc405f0839610bdc9b15f1e25ec7d696aa5cf173edbcb1486ab" +checksum = "ccae279728d634d083c00f6099cb58f01cc99c145b84b8be2f6c74618d79922e" dependencies = [ "atomic-waker", "bytes", "fnv", "futures-core", "futures-sink", - "http 1.1.0", - "indexmap 2.2.6", + "http 1.2.0", + "indexmap 2.7.0", "slab", "tokio", "tokio-util", @@ -4732,7 +5529,7 @@ dependencies = [ "pest_derive", "serde", "serde_json", - "thiserror", + "thiserror 1.0.69", ] [[package]] @@ -4779,6 +5576,17 @@ dependencies = [ "serde", ] +[[package]] +name = "hashbrown" +version = "0.15.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289" +dependencies = [ + "allocator-api2", + "equivalent", + "foldhash", +] + [[package]] name = "hashlink" version = "0.8.4" @@ -4826,15 +5634,54 @@ checksum = "212ab92002354b4819390025006c897e8140934349e8635c9b077f47b4dcbd20" [[package]] name = "hex-literal" -version = "0.3.4" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7ebdb29d2ea9ed0083cd8cece49bbd968021bd99b0849edb4a9a7ee0fdf6a4e0" +checksum = "6fe2267d4ed49bc07b63801559be28c718ea06c4738b7a03c94df7386d2cde46" [[package]] -name = "hex-literal" -version = "0.4.1" +name = "hickory-proto" +version = "0.24.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6fe2267d4ed49bc07b63801559be28c718ea06c4738b7a03c94df7386d2cde46" +checksum = "447afdcdb8afb9d0a852af6dc65d9b285ce720ed7a59e42a8bf2e931c67bc1b5" +dependencies = [ + "async-trait", + "cfg-if", + "data-encoding", + "enum-as-inner 0.6.1", + "futures-channel", + "futures-io", + "futures-util", + "idna 1.0.3", + "ipnet", + "once_cell", + "rand", + "thiserror 1.0.69", + "tinyvec", + "tokio", + "tracing", + "url", +] + +[[package]] +name = "hickory-resolver" +version = "0.24.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0a2e2aba9c389ce5267d31cf1e4dace82390ae276b0b364ea55630b1fa1b44b4" +dependencies = [ + "cfg-if", + "futures-util", + "hickory-proto", + "ipconfig", + "lru-cache", + "once_cell", + "parking_lot 0.12.3", + "rand", + "resolv-conf", + "smallvec", + "thiserror 1.0.69", + "tokio", + "tracing", +] [[package]] name = "hkdf" @@ -4875,15 +5722,6 @@ dependencies = [ "hmac 0.8.1", ] -[[package]] -name = "home" -version = "0.5.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5" -dependencies = [ - "windows-sys 0.52.0", -] - [[package]] name = "hostname" version = "0.3.1" @@ -4908,9 +5746,9 @@ dependencies = [ [[package]] name = "http" -version = "1.1.0" +version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258" +checksum = "f16ca2af56261c99fba8bac40a10251ce8188205a4c448fbb745a2e4daa76fea" dependencies = [ "bytes", "fnv", @@ -4935,7 +5773,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" dependencies = [ "bytes", - "http 1.1.0", + "http 1.2.0", ] [[package]] @@ -4946,16 +5784,16 @@ checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f" dependencies = [ "bytes", "futures-util", - "http 1.1.0", + "http 1.2.0", "http-body 1.0.1", "pin-project-lite", ] [[package]] name = "httparse" -version = "1.9.4" +version = "1.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0fcc0b4a115bf80b728eb8ea024ad5bd707b615bfed49e0665b6e0f86fd082d9" +checksum = "7d71d3574edd2771538b901e6549113b4006ece66150fb69c0fb6d9a2adae946" [[package]] name = "httpdate" @@ -4971,9 +5809,9 @@ checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" [[package]] name = "hyper" -version = "0.14.29" +version = "0.14.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f361cde2f109281a220d4307746cdfd5ee3f410da58a70377762396775634b33" +checksum = "41dfc780fdec9373c01bae43289ea34c972e40ee3c9f6b3c8801a35f35586ce7" dependencies = [ "bytes", "futures-channel", @@ -4986,7 +5824,7 @@ dependencies = [ "httpdate", "itoa", "pin-project-lite", - "socket2 0.5.7", + "socket2 0.5.8", "tokio", "tower-service", "tracing", @@ -4995,15 +5833,15 @@ dependencies = [ [[package]] name = "hyper" -version = "1.4.1" +version = "1.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "50dfd22e0e76d0f662d429a5f80fcaf3855009297eab6a0a9f8543834744ba05" +checksum = "256fb8d4bd6413123cc9d91832d78325c48ff41677595be797d90f42969beae0" dependencies = [ "bytes", "futures-channel", "futures-util", - "h2 0.4.5", - "http 1.1.0", + "h2 0.4.7", + "http 1.2.0", "http-body 1.0.1", "httparse", "httpdate", @@ -5021,7 +5859,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "73b7d8abf35697b81a825e386fc151e0d503e8cb5fcb93cc8669c376dfd6f278" dependencies = [ "hex", - "hyper 1.4.1", + "hyper 1.5.2", "hyper-util", "pin-project-lite", "tokio", @@ -5037,7 +5875,7 @@ checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590" dependencies = [ "futures-util", "http 0.2.12", - "hyper 0.14.29", + "hyper 0.14.32", "log", "rustls 0.21.12", "rustls-native-certs 0.6.3", @@ -5045,35 +5883,53 @@ dependencies = [ "tokio-rustls 0.24.1", ] +[[package]] +name = "hyper-rustls" +version = "0.27.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2" +dependencies = [ + "futures-util", + "http 1.2.0", + "hyper 1.5.2", + "hyper-util", + "log", + "rustls 0.23.20", + "rustls-native-certs 0.8.1", + "rustls-pki-types", + "tokio", + "tokio-rustls 0.26.1", + "tower-service", +] + [[package]] name = "hyper-util" -version = "0.1.7" +version = "0.1.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cde7055719c54e36e95e8719f95883f22072a48ede39db7fc17a4e1d5281e9b9" +checksum = "df2dcfbe0677734ab2f3ffa7fa7bfd4706bfdc1ef393f2ee30184aed67e631b4" dependencies = [ "bytes", "futures-channel", "futures-util", - "http 1.1.0", + "http 1.2.0", "http-body 1.0.1", - "hyper 1.4.1", + "hyper 1.5.2", "pin-project-lite", - "socket2 0.5.7", + "socket2 0.5.8", "tokio", - "tower", "tower-service", "tracing", ] [[package]] -name = "hyperlocal-next" -version = "0.9.0" +name = "hyperlocal" +version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "acf569d43fa9848e510358c07b80f4adf34084ddc28c6a4a651ee8474c070dcc" +checksum = "986c5ce3b994526b3cd75578e62554abd09f0899d6206de48b3e96ab34ccc8c7" dependencies = [ "hex", "http-body-util", - "hyper 1.4.1", + "hyper 1.5.2", "hyper-util", "pin-project-lite", "tokio", @@ -5082,16 +5938,16 @@ dependencies = [ [[package]] name = "iana-time-zone" -version = "0.1.60" +version = "0.1.61" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141" +checksum = "235e081f3925a06703c2d0117ea8b91f042756fd6e7a6e5d901e8ca1a996b220" dependencies = [ "android_system_properties", "core-foundation-sys", "iana-time-zone-haiku", "js-sys", "wasm-bindgen", - "windows-core", + "windows-core 0.52.0", ] [[package]] @@ -5174,9 +6030,9 @@ checksum = "f8cafbf7aa791e9b22bec55a167906f9e1215fd475cd22adfcf660e03e989516" [[package]] name = "icu_properties" -version = "1.5.0" +version = "1.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1f8ac670d7422d7f76b32e17a5db556510825b29ec9154f235977c9caba61036" +checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5" dependencies = [ "displaydoc", "icu_collections", @@ -5218,7 +6074,7 @@ checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -5250,16 +6106,25 @@ dependencies = [ [[package]] name = "idna" -version = "1.0.0" +version = "1.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4716a3a0933a1d01c2f72450e89596eb51dd34ef3c211ccd875acdf1f8fe47ed" +checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e" dependencies = [ - "icu_normalizer", - "icu_properties", + "idna_adapter", "smallvec", "utf8_iter", ] +[[package]] +name = "idna_adapter" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71" +dependencies = [ + "icu_normalizer", + "icu_properties", +] + [[package]] name = "if-addrs" version = "0.10.2" @@ -5272,17 +6137,21 @@ 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.3", - "core-foundation", + "async-io 2.4.0", + "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", @@ -5300,7 +6169,7 @@ dependencies = [ "bytes", "futures", "http 0.2.12", - "hyper 0.14.29", + "hyper 0.14.32", "log", "rand", "tokio", @@ -5317,6 +6186,15 @@ dependencies = [ "parity-scale-codec", ] +[[package]] +name = "impl-codec" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b67aa010c1e3da95bf151bd8b4c059b2ed7e75387cdb969b4f8f2723a43f9941" +dependencies = [ + "parity-scale-codec", +] + [[package]] name = "impl-num-traits" version = "0.1.2" @@ -5325,7 +6203,18 @@ checksum = "951641f13f873bff03d4bf19ae8bec531935ac0ac2cc775f84d7edfdcfed3f17" dependencies = [ "integer-sqrt", "num-traits", - "uint", + "uint 0.9.5", +] + +[[package]] +name = "impl-num-traits" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "803d15461ab0dcc56706adf266158acbc44ccf719bf7d0af30705f58b90a4b8c" +dependencies = [ + "integer-sqrt", + "num-traits", + "uint 0.10.0", ] [[package]] @@ -5334,7 +6223,16 @@ version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f28220f89297a075ddc7245cd538076ee98b01f2a9c23a53a4f1105d5a322808" dependencies = [ - "rlp", + "rlp 0.5.2", +] + +[[package]] +name = "impl-rlp" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "54ed8ad1f3877f7e775b8cbf30ed1bd3209a95401817f19a0eb4402d13f8cf90" +dependencies = [ + "rlp 0.6.1", ] [[package]] @@ -5346,15 +6244,24 @@ dependencies = [ "serde", ] +[[package]] +name = "impl-serde" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +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.90", ] [[package]] @@ -5389,12 +6296,12 @@ dependencies = [ [[package]] name = "indexmap" -version = "2.2.6" +version = "2.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26" +checksum = "62f822373a4fe84d4bb149bf54e584a7f4abec90e072ed49cda0edea5b95471f" dependencies = [ "equivalent", - "hashbrown 0.14.5", + "hashbrown 0.15.2", "serde", ] @@ -5442,7 +6349,7 @@ dependencies = [ "derive_more 1.0.0", "either", "heck 0.5.0", - "impl-serde", + "impl-serde 0.4.0", "ink_ir", "ink_primitives", "itertools 0.12.1", @@ -5451,7 +6358,7 @@ dependencies = [ "quote", "serde", "serde_json", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -5491,7 +6398,7 @@ dependencies = [ "paste", "rlibc", "scale-decode 0.11.1", - "scale-encode", + "scale-encode 0.6.0", "scale-info", "schnorrkel 0.11.4", "secp256k1", @@ -5509,12 +6416,12 @@ checksum = "e201688fb27ff97496a4231a393dd4befcc5a9c092d6bf231f0f5d409ef44f34" dependencies = [ "blake2 0.10.6", "either", - "impl-serde", + "impl-serde 0.4.0", "ink_prelude", "itertools 0.12.1", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -5529,7 +6436,7 @@ dependencies = [ "parity-scale-codec", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", "synstructure 0.13.1", ] @@ -5540,7 +6447,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "27135c651274087ba0578d2c07866c31d8dd481ae8de5bb7295fe3931491aa80" dependencies = [ "derive_more 1.0.0", - "impl-serde", + "impl-serde 0.4.0", "ink_prelude", "ink_primitives", "linkme", @@ -5569,7 +6476,7 @@ dependencies = [ "ink_prelude", "parity-scale-codec", "scale-decode 0.11.1", - "scale-encode", + "scale-encode 0.6.0", "scale-info", "xxhash-rust", ] @@ -5624,12 +6531,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" @@ -5646,32 +6547,32 @@ dependencies = [ "asset-hub-paseo-runtime", "asset-hub-westend-runtime", "asset-test-utils", - "cumulus-primitives-core", + "cumulus-primitives-core 0.17.0", "emulated-integration-tests-common", - "frame-support", - "pallet-assets", - "pallet-balances", - "pallet-message-queue", - "pallet-xcm", + "frame-support 39.0.0", + "pallet-assets 41.0.0", + "pallet-balances 40.0.0", + "pallet-message-queue 42.0.0", + "pallet-xcm 18.0.0", "parity-scale-codec", "paseo-runtime", "paseo-runtime-constants", - "polkadot-primitives", - "polkadot-runtime-parachains", + "polkadot-primitives 17.0.0", + "polkadot-runtime-parachains 18.0.0", "pop-runtime-common", "pop-runtime-devnet", "pop-runtime-mainnet", "pop-runtime-testnet", - "sp-authority-discovery", - "sp-consensus-aura", - "sp-consensus-babe", - "sp-consensus-beefy", - "sp-consensus-grandpa", - "sp-core", - "sp-runtime", - "staging-xcm 14.1.0", - "staging-xcm-executor", - "tracing-subscriber 0.3.18", + "sp-authority-discovery 35.0.0", + "sp-consensus-aura 0.41.0", + "sp-consensus-babe 0.41.0", + "sp-consensus-beefy 23.0.0", + "sp-consensus-grandpa 22.0.0", + "sp-core 35.0.0", + "sp-runtime 40.0.0", + "staging-xcm 15.0.1", + "staging-xcm-executor 18.0.0", + "tracing-subscriber", "westend-runtime", "westend-runtime-constants", ] @@ -5699,7 +6600,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.8", "widestring", "windows-sys 0.48.0", "winreg", @@ -5707,85 +6608,86 @@ dependencies = [ [[package]] name = "ipnet" -version = "2.9.0" +version = "2.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3" +checksum = "ddc24109865250148c2e0f3d25d4f0f479571723792d3802153c60922a4fb708" [[package]] name = "is-terminal" -version = "0.4.12" +version = "0.4.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f23ff5ef2b80d608d61efee834934d862cd92461afc0560dedf493e4c033738b" +checksum = "261f68e344040fbd0edea105bef17c66edf46f984ddb1115b775ce31be948f4b" dependencies = [ - "hermit-abi 0.3.9", + "hermit-abi 0.4.0", "libc", "windows-sys 0.52.0", ] [[package]] name = "is_executable" -version = "1.0.1" +version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fa9acdc6d67b75e626ad644734e8bc6df893d9cd2a834129065d3dd6158ea9c8" +checksum = "d4a1b5bad6f9072935961dfbf1cced2f3d129963d091b6f69f007fe04e758ae2" dependencies = [ "winapi", ] [[package]] name = "is_terminal_polyfill" -version = "1.70.0" +version = "1.70.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f8478577c03552c21db0e2724ffb8986a5ce7af88107e6be5d2ee6e158c12800" +checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf" [[package]] name = "ismp" -version = "0.2.0" -source = "git+https://github.com/r0gue-io/ismp?branch=polkadot-v1.14.0#f95ee188c3b73ca3c4d6319ab85cff12fe757c4c" +version = "0.2.2" +source = "git+https://github.com/r0gue-io/ismp?branch=polkadot-stable2412#144c98de434ebd6732283b0585c1942c64577873" dependencies = [ "anyhow", - "derive_more 0.99.18", + "derive_more 1.0.0", + "displaydoc", "hex", "parity-scale-codec", - "primitive-types", + "primitive-types 0.13.1", "scale-info", "serde", - "serde-utils", - "serde_json", + "serde-hex-utils", + "thiserror 2.0.8", ] [[package]] name = "ismp-parachain" -version = "1.15.0" -source = "git+https://github.com/r0gue-io/ismp?branch=polkadot-v1.14.0#f95ee188c3b73ca3c4d6319ab85cff12fe757c4c" -dependencies = [ - "cumulus-pallet-parachain-system", - "cumulus-primitives-core", - "frame-support", - "frame-system", - "hex-literal 0.4.1", +version = "1.15.3" +source = "git+https://github.com/r0gue-io/ismp?branch=polkadot-stable2412#144c98de434ebd6732283b0585c1942c64577873" +dependencies = [ + "cumulus-pallet-parachain-system 0.18.0", + "cumulus-primitives-core 0.17.0", + "frame-support 39.0.0", + "frame-system 39.0.0", + "hex-literal", "ismp", "log", "pallet-ismp", "parity-scale-codec", - "primitive-types", + "primitive-types 0.13.1", "scale-info", "serde", - "sp-consensus-aura", - "sp-inherents", - "sp-io", - "sp-runtime", - "sp-trie", + "sp-consensus-aura 0.41.0", + "sp-inherents 35.0.0", + "sp-io 39.0.0", + "sp-runtime 40.0.0", + "sp-trie 38.0.0", "substrate-state-machine", ] [[package]] name = "ismp-parachain-inherent" -version = "1.15.0" -source = "git+https://github.com/r0gue-io/ismp?branch=polkadot-v1.14.0#f95ee188c3b73ca3c4d6319ab85cff12fe757c4c" +version = "1.15.3" +source = "git+https://github.com/r0gue-io/ismp?branch=polkadot-stable2412#144c98de434ebd6732283b0585c1942c64577873" dependencies = [ "anyhow", "async-trait", - "cumulus-primitives-core", + "cumulus-primitives-core 0.17.0", "cumulus-relay-chain-interface", "ismp", "ismp-parachain", @@ -5793,19 +6695,19 @@ dependencies = [ "log", "pallet-ismp-runtime-api", "parity-scale-codec", - "sp-api", + "sp-api 35.0.0", "sp-blockchain", - "sp-inherents", - "sp-runtime", + "sp-inherents 35.0.0", + "sp-runtime 40.0.0", ] [[package]] name = "ismp-parachain-runtime-api" -version = "1.15.0" -source = "git+https://github.com/r0gue-io/ismp?branch=polkadot-v1.14.0#f95ee188c3b73ca3c4d6319ab85cff12fe757c4c" +version = "1.15.1" +source = "git+https://github.com/r0gue-io/ismp?branch=polkadot-stable2412#144c98de434ebd6732283b0585c1942c64577873" dependencies = [ - "cumulus-pallet-parachain-system", - "sp-api", + "cumulus-pallet-parachain-system 0.18.0", + "sp-api 35.0.0", ] [[package]] @@ -5835,11 +6737,20 @@ dependencies = [ "either", ] +[[package]] +name = "itertools" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186" +dependencies = [ + "either", +] + [[package]] name = "itoa" -version = "1.0.11" +version = "1.0.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" +checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674" [[package]] name = "jni" @@ -5851,7 +6762,7 @@ dependencies = [ "combine", "jni-sys", "log", - "thiserror", + "thiserror 1.0.69", "walkdir", ] @@ -5863,35 +6774,83 @@ checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130" [[package]] name = "jobserver" -version = "0.1.31" +version = "0.1.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d2b099aaa34a9751c5bf0878add70444e1ed2dd73f347be99003d4577277de6e" +checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0" dependencies = [ "libc", ] [[package]] name = "js-sys" -version = "0.3.69" +version = "0.3.76" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d" +checksum = "6717b6b5b077764fb5966237269cb3c64edddde4b14ce42647430a78ced9e7b7" dependencies = [ + "once_cell", "wasm-bindgen", ] +[[package]] +name = "jsonrpsee" +version = "0.22.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cfdb12a2381ea5b2e68c3469ec604a007b367778cdb14d09612c8069ebd616ad" +dependencies = [ + "jsonrpsee-client-transport 0.22.5", + "jsonrpsee-core 0.22.5", + "jsonrpsee-http-client 0.22.5", + "jsonrpsee-types 0.22.5", +] + [[package]] name = "jsonrpsee" version = "0.23.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "62b089779ad7f80768693755a031cc14a7766aba707cbe886674e3f79e9b7e47" dependencies = [ - "jsonrpsee-core", + "jsonrpsee-core 0.23.2", + "jsonrpsee-types 0.23.2", + "jsonrpsee-ws-client 0.23.2", +] + +[[package]] +name = "jsonrpsee" +version = "0.24.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c5c71d8c1a731cc4227c2f698d377e7848ca12c8a48866fc5e6951c43a4db843" +dependencies = [ + "jsonrpsee-client-transport 0.24.7", + "jsonrpsee-core 0.24.7", + "jsonrpsee-http-client 0.24.7", "jsonrpsee-proc-macros", "jsonrpsee-server", - "jsonrpsee-types", - "jsonrpsee-ws-client", + "jsonrpsee-types 0.24.7", + "jsonrpsee-wasm-client", + "jsonrpsee-ws-client 0.24.7", + "tokio", + "tracing", +] + +[[package]] +name = "jsonrpsee-client-transport" +version = "0.22.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4978087a58c3ab02efc5b07c5e5e2803024536106fd5506f558db172c889b3aa" +dependencies = [ + "futures-util", + "http 0.2.12", + "jsonrpsee-core 0.22.5", + "pin-project", + "rustls-native-certs 0.7.3", + "rustls-pki-types", + "soketto 0.7.1", + "thiserror 1.0.69", "tokio", + "tokio-rustls 0.25.0", + "tokio-util", "tracing", + "url", ] [[package]] @@ -5902,83 +6861,196 @@ checksum = "08163edd8bcc466c33d79e10f695cdc98c00d1e6ddfb95cec41b6b0279dd5432" dependencies = [ "base64 0.22.1", "futures-util", - "http 1.1.0", - "jsonrpsee-core", + "http 1.2.0", + "jsonrpsee-core 0.23.2", "pin-project", - "rustls 0.23.10", + "rustls 0.23.20", "rustls-pki-types", "rustls-platform-verifier", - "soketto 0.8.0", - "thiserror", + "soketto 0.8.1", + "thiserror 1.0.69", "tokio", - "tokio-rustls 0.26.0", + "tokio-rustls 0.26.1", "tokio-util", "tracing", "url", ] [[package]] -name = "jsonrpsee-core" -version = "0.23.2" +name = "jsonrpsee-client-transport" +version = "0.24.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "79712302e737d23ca0daa178e752c9334846b08321d439fd89af9a384f8c830b" +checksum = "548125b159ba1314104f5bb5f38519e03a41862786aa3925cf349aae9cdd546e" dependencies = [ - "anyhow", - "async-trait", - "beef", - "bytes", - "futures-timer", + "base64 0.22.1", + "futures-channel", "futures-util", - "http 1.1.0", - "http-body 1.0.1", - "http-body-util", - "jsonrpsee-types", - "parking_lot 0.12.3", + "gloo-net", + "http 1.2.0", + "jsonrpsee-core 0.24.7", "pin-project", - "rand", - "rustc-hash", - "serde", - "serde_json", - "thiserror", + "rustls 0.23.20", + "rustls-pki-types", + "rustls-platform-verifier", + "soketto 0.8.1", + "thiserror 1.0.69", "tokio", - "tokio-stream", + "tokio-rustls 0.26.1", + "tokio-util", "tracing", + "url", ] [[package]] -name = "jsonrpsee-proc-macros" +name = "jsonrpsee-core" +version = "0.22.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b4b257e1ec385e07b0255dde0b933f948b5c8b8c28d42afda9587c3a967b896d" +dependencies = [ + "anyhow", + "async-trait", + "beef", + "futures-timer", + "futures-util", + "hyper 0.14.32", + "jsonrpsee-types 0.22.5", + "pin-project", + "rustc-hash 1.1.0", + "serde", + "serde_json", + "thiserror 1.0.69", + "tokio", + "tokio-stream", + "tracing", +] + +[[package]] +name = "jsonrpsee-core" version = "0.23.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7895f186d5921065d96e16bd795e5ca89ac8356ec423fafc6e3d7cf8ec11aee4" +checksum = "79712302e737d23ca0daa178e752c9334846b08321d439fd89af9a384f8c830b" +dependencies = [ + "anyhow", + "async-trait", + "beef", + "futures-timer", + "futures-util", + "jsonrpsee-types 0.23.2", + "pin-project", + "rustc-hash 1.1.0", + "serde", + "serde_json", + "thiserror 1.0.69", + "tokio", + "tokio-stream", + "tracing", +] + +[[package]] +name = "jsonrpsee-core" +version = "0.24.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f2882f6f8acb9fdaec7cefc4fd607119a9bd709831df7d7672a1d3b644628280" +dependencies = [ + "async-trait", + "bytes", + "futures-timer", + "futures-util", + "http 1.2.0", + "http-body 1.0.1", + "http-body-util", + "jsonrpsee-types 0.24.7", + "parking_lot 0.12.3", + "pin-project", + "rand", + "rustc-hash 2.1.0", + "serde", + "serde_json", + "thiserror 1.0.69", + "tokio", + "tokio-stream", + "tracing", + "wasm-bindgen-futures", +] + +[[package]] +name = "jsonrpsee-http-client" +version = "0.22.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ccf93fc4a0bfe05d851d37d7c32b7f370fe94336b52a2f0efc5f1981895c2e5" +dependencies = [ + "async-trait", + "hyper 0.14.32", + "hyper-rustls 0.24.2", + "jsonrpsee-core 0.22.5", + "jsonrpsee-types 0.22.5", + "serde", + "serde_json", + "thiserror 1.0.69", + "tokio", + "tower", + "tracing", + "url", +] + +[[package]] +name = "jsonrpsee-http-client" +version = "0.24.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b3638bc4617f96675973253b3a45006933bde93c2fd8a6170b33c777cc389e5b" +dependencies = [ + "async-trait", + "base64 0.22.1", + "http-body 1.0.1", + "hyper 1.5.2", + "hyper-rustls 0.27.5", + "hyper-util", + "jsonrpsee-core 0.24.7", + "jsonrpsee-types 0.24.7", + "rustls 0.23.20", + "rustls-platform-verifier", + "serde", + "serde_json", + "thiserror 1.0.69", + "tokio", + "tower", + "tracing", + "url", +] + +[[package]] +name = "jsonrpsee-proc-macros" +version = "0.24.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c06c01ae0007548e73412c08e2285ffe5d723195bf268bce67b1b77c3bb2a14d" dependencies = [ "heck 0.5.0", - "proc-macro-crate 3.1.0", + "proc-macro-crate 3.2.0", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] name = "jsonrpsee-server" -version = "0.23.2" +version = "0.24.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "654afab2e92e5d88ebd8a39d6074483f3f2bfdf91c5ac57fe285e7127cdd4f51" +checksum = "82ad8ddc14be1d4290cd68046e7d1d37acd408efed6d3ca08aefcc3ad6da069c" dependencies = [ - "anyhow", "futures-util", - "http 1.1.0", + "http 1.2.0", "http-body 1.0.1", "http-body-util", - "hyper 1.4.1", + "hyper 1.5.2", "hyper-util", - "jsonrpsee-core", - "jsonrpsee-types", + "jsonrpsee-core 0.24.7", + "jsonrpsee-types 0.24.7", "pin-project", "route-recognizer", "serde", "serde_json", - "soketto 0.8.0", - "thiserror", + "soketto 0.8.1", + "thiserror 1.0.69", "tokio", "tokio-stream", "tokio-util", @@ -5986,6 +7058,19 @@ dependencies = [ "tracing", ] +[[package]] +name = "jsonrpsee-types" +version = "0.22.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "150d6168405890a7a3231a3c74843f58b8959471f6df76078db2619ddee1d07d" +dependencies = [ + "anyhow", + "beef", + "serde", + "serde_json", + "thiserror 1.0.69", +] + [[package]] name = "jsonrpsee-types" version = "0.23.2" @@ -5993,10 +7078,33 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d9c465fbe385238e861fdc4d1c85e04ada6c1fd246161d26385c1b311724d2af" dependencies = [ "beef", - "http 1.1.0", + "http 1.2.0", + "serde", + "serde_json", + "thiserror 1.0.69", +] + +[[package]] +name = "jsonrpsee-types" +version = "0.24.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a178c60086f24cc35bb82f57c651d0d25d99c4742b4d335de04e97fa1f08a8a1" +dependencies = [ + "http 1.2.0", "serde", "serde_json", - "thiserror", + "thiserror 1.0.69", +] + +[[package]] +name = "jsonrpsee-wasm-client" +version = "0.24.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1a01cd500915d24ab28ca17527e23901ef1be6d659a2322451e1045532516c25" +dependencies = [ + "jsonrpsee-client-transport 0.24.7", + "jsonrpsee-core 0.24.7", + "jsonrpsee-types 0.24.7", ] [[package]] @@ -6005,18 +7113,31 @@ version = "0.23.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1c28759775f5cb2f1ea9667672d3fe2b0e701d1f4b7b67954e60afe7fd058b5e" dependencies = [ - "http 1.1.0", - "jsonrpsee-client-transport", - "jsonrpsee-core", - "jsonrpsee-types", + "http 1.2.0", + "jsonrpsee-client-transport 0.23.2", + "jsonrpsee-core 0.23.2", + "jsonrpsee-types 0.23.2", + "url", +] + +[[package]] +name = "jsonrpsee-ws-client" +version = "0.24.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fe322e0896d0955a3ebdd5bf813571c53fea29edd713bc315b76620b327e86d" +dependencies = [ + "http 1.2.0", + "jsonrpsee-client-transport 0.24.7", + "jsonrpsee-core 0.24.7", + "jsonrpsee-types 0.24.7", "url", ] [[package]] name = "k256" -version = "0.13.3" +version = "0.13.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "956ff9b67e26e1a6a866cb758f12c6f8746208489e3e4a4b5580802f2f0a587b" +checksum = "f6e3919bbaa2945715f0bb6d3934a173d1e9a59ac23767fbaaef277265a7411b" dependencies = [ "cfg-if", "ecdsa", @@ -6035,6 +7156,16 @@ dependencies = [ "cpufeatures", ] +[[package]] +name = "keccak-hash" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4b286e6b663fb926e1eeb68528e69cb70ed46c6d65871a21b2215ae8154c6d3c" +dependencies = [ + "primitive-types 0.12.2", + "tiny-keccak", +] + [[package]] name = "keystream" version = "1.0.0" @@ -6044,16 +7175,16 @@ checksum = "c33070833c9ee02266356de0c43f723152bd38bd96ddf52c82b3af10c9138b28" [[package]] name = "kusama-runtime-constants" version = "1.0.0" -source = "git+https://github.com/polkadot-fellows/runtimes?tag=v1.3.3#55bd514d60311b67cb11400a545cb64ce7a87c0e" +source = "git+https://github.com/polkadot-fellows/runtimes?tag=v1.3.4#3b18d942c766c7f358da50608b44edbe218284a4" dependencies = [ - "frame-support", - "polkadot-primitives", - "polkadot-runtime-common", + "frame-support 36.0.1", + "polkadot-primitives 14.0.0", + "polkadot-runtime-common 15.0.0", "smallvec", - "sp-core", - "sp-runtime", - "sp-weights", - "staging-xcm-builder", + "sp-core 34.0.0", + "sp-runtime 38.0.1", + "sp-weights 31.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "staging-xcm-builder 15.0.0", ] [[package]] @@ -6097,14 +7228,14 @@ checksum = "9baa9eeb6e315942429397e617a190f4fdc696ef1ee0342939d641029cbb4ea7" dependencies = [ "enumflags2", "libc", - "thiserror", + "thiserror 1.0.69", ] [[package]] name = "lazy_static" -version = "1.4.0" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" +checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" [[package]] name = "lazycell" @@ -6112,17 +7243,23 @@ version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" +[[package]] +name = "leb128" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "884e2677b40cc8c339eaefcb701c32ef1fd2493d71118dc0ca4b6a736c93bd67" + [[package]] name = "libc" -version = "0.2.155" +version = "0.2.168" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c" +checksum = "5aaeb2981e0606ca11d79718f8bb01164f1d6ed75080182d3abf017e6d244b6d" [[package]] name = "libloading" -version = "0.8.3" +version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c2a198fb6b0eada2a8df47933734e6d35d350665a33a3593d7164fa52c75c19" +checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34" dependencies = [ "cfg-if", "windows-targets 0.52.6", @@ -6130,9 +7267,9 @@ dependencies = [ [[package]] name = "libm" -version = "0.2.8" +version = "0.2.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058" +checksum = "8355be11b20d696c8f18f6cc018c4e372165b1fa8126cef092399c9951984ffa" [[package]] name = "libp2p" @@ -6165,10 +7302,10 @@ dependencies = [ "libp2p-wasm-ext", "libp2p-websocket", "libp2p-yamux", - "multiaddr 0.18.1", + "multiaddr 0.18.2", "pin-project", "rw-stream-sink", - "thiserror", + "thiserror 1.0.69", ] [[package]] @@ -6208,8 +7345,8 @@ dependencies = [ "instant", "libp2p-identity", "log", - "multiaddr 0.18.1", - "multihash 0.19.1", + "multiaddr 0.18.2", + "multihash 0.19.3", "multistream-select", "once_cell", "parking_lot 0.12.3", @@ -6218,7 +7355,7 @@ dependencies = [ "rand", "rw-stream-sink", "smallvec", - "thiserror", + "thiserror 1.0.69", "unsigned-varint 0.7.2", "void", ] @@ -6254,28 +7391,28 @@ dependencies = [ "libp2p-identity", "libp2p-swarm", "log", - "lru 0.12.4", + "lru 0.12.5", "quick-protobuf", "quick-protobuf-codec", "smallvec", - "thiserror", + "thiserror 1.0.69", "void", ] [[package]] name = "libp2p-identity" -version = "0.2.9" +version = "0.2.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "55cca1eb2bc1fd29f099f3daaab7effd01e1a54b7c577d0ed082521034d912e8" +checksum = "257b5621d159b32282eac446bed6670c39c7dc68a200a992d8f056afa0066f6d" dependencies = [ - "bs58 0.5.1", + "bs58", "ed25519-dalek", "hkdf", - "multihash 0.19.1", + "multihash 0.19.3", "quick-protobuf", "rand", "sha2 0.10.8", - "thiserror", + "thiserror 1.0.69", "tracing", "zeroize", ] @@ -6286,7 +7423,7 @@ version = "0.44.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "16ea178dabba6dde6ffc260a8e0452ccdc8f79becf544946692fff9d412fc29d" dependencies = [ - "arrayvec 0.7.4", + "arrayvec 0.7.6", "asynchronous-codec", "bytes", "either", @@ -6303,8 +7440,8 @@ dependencies = [ "rand", "sha2 0.10.8", "smallvec", - "thiserror", - "uint", + "thiserror 1.0.69", + "uint 0.9.5", "unsigned-varint 0.7.2", "void", ] @@ -6324,7 +7461,7 @@ dependencies = [ "log", "rand", "smallvec", - "socket2 0.5.7", + "socket2 0.5.8", "tokio", "trust-dns-proto 0.22.0", "void", @@ -6359,15 +7496,15 @@ dependencies = [ "libp2p-core", "libp2p-identity", "log", - "multiaddr 0.18.1", - "multihash 0.19.1", + "multiaddr 0.18.2", + "multihash 0.19.3", "once_cell", "quick-protobuf", "rand", "sha2 0.10.8", "snow", "static_assertions", - "thiserror", + "thiserror 1.0.69", "x25519-dalek", "zeroize", ] @@ -6405,12 +7542,12 @@ dependencies = [ "libp2p-tls", "log", "parking_lot 0.12.3", - "quinn 0.10.2", + "quinn", "rand", "ring 0.16.20", "rustls 0.21.12", - "socket2 0.5.7", - "thiserror", + "socket2 0.5.8", + "thiserror 1.0.69", "tokio", ] @@ -6465,7 +7602,7 @@ dependencies = [ "proc-macro-warning 0.4.2", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -6481,7 +7618,7 @@ dependencies = [ "libp2p-core", "libp2p-identity", "log", - "socket2 0.5.7", + "socket2 0.5.8", "tokio", ] @@ -6499,7 +7636,7 @@ dependencies = [ "ring 0.16.20", "rustls 0.21.12", "rustls-webpki 0.101.7", - "thiserror", + "thiserror 1.0.69", "x509-parser 0.15.1", "yasna", ] @@ -6529,7 +7666,7 @@ dependencies = [ "futures", "js-sys", "libp2p-core", - "send_wrapper", + "send_wrapper 0.6.0", "wasm-bindgen", "wasm-bindgen-futures", ] @@ -6549,8 +7686,8 @@ dependencies = [ "parking_lot 0.12.3", "pin-project-lite", "rw-stream-sink", - "soketto 0.8.0", - "thiserror", + "soketto 0.8.1", + "thiserror 1.0.69", "url", "webpki-roots 0.25.4", ] @@ -6564,7 +7701,7 @@ dependencies = [ "futures", "libp2p-core", "log", - "thiserror", + "thiserror 1.0.69", "yamux", ] @@ -6574,8 +7711,9 @@ version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d" dependencies = [ - "bitflags 2.5.0", + "bitflags 2.6.0", "libc", + "redox_syscall 0.5.8", ] [[package]] @@ -6620,7 +7758,7 @@ checksum = "5be9b9bb642d8522a44d533eab56c16c738301965504753b03ad1de3425d5451" dependencies = [ "crunchy", "digest 0.9.0", - "subtle 2.5.0", + "subtle 2.6.1", ] [[package]] @@ -6643,9 +7781,9 @@ dependencies = [ [[package]] name = "libz-sys" -version = "1.1.18" +version = "1.1.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c15da26e5af7e25c90b37a2d75cdbf940cf4a55316de9d84c679c9b8bfabf82e" +checksum = "d2d16453e800a8cf6dd2fc3eb4bc99b786a9b90c663b8559a5b1a041bf89e472" dependencies = [ "cc", "pkg-config", @@ -6693,14 +7831,14 @@ checksum = "edbe595006d355eaf9ae11db92707d4338cd2384d16866131cc1afdbdd35d8d9" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[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", ] @@ -6737,27 +7875,28 @@ dependencies = [ [[package]] name = "litemap" -version = "0.7.3" +version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "643cb0b8d4fcc284004d5fd0d67ccf61dfffadb7f75e1e71bc420f4688a3a704" +checksum = "4ee93343901ab17bd981295f2cf0026d4ad018c7c31ba84549a4ddbb47a45104" [[package]] name = "litep2p" -version = "0.6.2" +version = "0.8.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0f46c51c205264b834ceed95c8b195026e700494bc3991aaba3b4ea9e20626d9" +checksum = "2b0fef34af8847e816003bf7fdeac5ea50b9a7a88441ac927a6166b5e812ab79" dependencies = [ "async-trait", - "bs58 0.4.0", + "bs58", "bytes", "cid 0.10.1", "ed25519-dalek", "futures", "futures-timer", - "hex-literal 0.4.1", - "indexmap 2.2.6", + "hex-literal", + "hickory-resolver", + "indexmap 2.7.0", "libc", - "mockall 0.12.1", + "mockall 0.13.1", "multiaddr 0.17.1", "multihash 0.17.0", "network-interface", @@ -6765,8 +7904,7 @@ dependencies = [ "parking_lot 0.12.3", "pin-project", "prost 0.12.6", - "prost-build 0.11.9", - "quinn 0.9.4", + "prost-build", "rand", "rcgen", "ring 0.16.20", @@ -6776,20 +7914,17 @@ dependencies = [ "simple-dns", "smallvec", "snow", - "socket2 0.5.7", + "socket2 0.5.8", "static_assertions", - "str0m", - "thiserror", + "thiserror 1.0.69", "tokio", "tokio-stream", "tokio-tungstenite", "tokio-util", "tracing", - "trust-dns-resolver", - "uint", + "uint 0.9.5", "unsigned-varint 0.8.0", "url", - "webpki", "x25519-dalek", "x509-parser 0.16.0", "yasna", @@ -6808,9 +7943,9 @@ dependencies = [ [[package]] name = "log" -version = "0.4.21" +version = "0.4.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c" +checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24" [[package]] name = "lru" @@ -6829,11 +7964,11 @@ checksum = "a4a83fb7698b3643a0e34f9ae6f2e8f0178c0fd42f8b59d493aa271ff3a5bf21" [[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.2", ] [[package]] @@ -6847,19 +7982,18 @@ dependencies = [ [[package]] name = "lz4" -version = "1.25.0" +version = "1.28.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d6eab492fe7f8651add23237ea56dbf11b3c4ff762ab83d40a47f11433421f91" +checksum = "4d1febb2b4a79ddd1980eede06a8f7902197960aa0383ffcfdd62fe723036725" dependencies = [ - "libc", "lz4-sys", ] [[package]] name = "lz4-sys" -version = "1.9.5" +version = "1.11.1+lz4-1.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e9764018d143cc854c9f17f0b907de70f14393b1f502da6375dce70f00514eb3" +checksum = "6bd8c0d6c6ed0cd30b3652886bb8711dc4bb01d637a68105a3d5158039b418e6" dependencies = [ "cc", "libc", @@ -6876,50 +8010,50 @@ dependencies = [ [[package]] name = "macro_magic" -version = "0.5.0" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e03844fc635e92f3a0067e25fa4bf3e3dbf3f2927bf3aa01bb7bc8f1c428949d" +checksum = "cc33f9f0351468d26fbc53d9ce00a096c8522ecb42f19b50f34f2c422f76d21d" dependencies = [ "macro_magic_core", "macro_magic_macros", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] name = "macro_magic_core" -version = "0.5.0" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "468155613a44cfd825f1fb0ffa532b018253920d404e6fca1e8d43155198a46d" +checksum = "1687dc887e42f352865a393acae7cf79d98fab6351cde1f58e9e057da89bf150" dependencies = [ "const-random", - "derive-syn-parse 0.1.5", + "derive-syn-parse", "macro_magic_core_macros", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] name = "macro_magic_core_macros" -version = "0.5.0" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9ea73aa640dc01d62a590d48c0c3521ed739d53b27f919b25c3551e233481654" +checksum = "b02abfe41815b5bd98dbd4260173db2c116dda171dc0fe7838cb206333b83308" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] name = "macro_magic_macros" -version = "0.5.0" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ef9d79ae96aaba821963320eb2b6e34d17df1e5a83d8a1985c29cc5be59577b3" +checksum = "73ea28ee64b88876bf45277ed9a5817c1817df061a74f2b988971a12570e5869" dependencies = [ "macro_magic_core", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -6928,15 +8062,6 @@ version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4" -[[package]] -name = "matchers" -version = "0.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f099785f7595cc4b4553a174ce30dd7589ef93391ff414dbb67f62392b9e0ce1" -dependencies = [ - "regex-automata 0.1.10", -] - [[package]] name = "matchers" version = "0.1.0" @@ -6954,9 +8079,9 @@ checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5" [[package]] name = "matrixmultiply" -version = "0.3.8" +version = "0.3.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7574c1cf36da4798ab73da5b215bbf444f50718207754cb522201d78d1cd0ff2" +checksum = "9380b911e3e96d10c1f415da0876389aaf1b56759054eeb0de7df940c456ba1a" dependencies = [ "autocfg", "rawpointer", @@ -6974,7 +8099,7 @@ version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b2cffa4ad52c6f791f4f8b15f0c05f9824b2ced1160e88cc393d64fff9a8ac64" dependencies = [ - "rustix 0.38.34", + "rustix 0.38.42", ] [[package]] @@ -6988,9 +8113,9 @@ dependencies = [ [[package]] name = "memmap2" -version = "0.9.4" +version = "0.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fe751422e4a8caa417e13c3ea66452215d7d63e19e604f4980461212f3ae1322" +checksum = "fd3f7eed9d3848f8b98834af67102b720745c4ec028fcd0aa0239277e7de374f" dependencies = [ "libc", ] @@ -7015,13 +8140,13 @@ dependencies = [ [[package]] name = "merkleized-metadata" -version = "0.1.0" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f313fcff1d2a4bcaa2deeaa00bf7530d77d5f7bd0467a117dde2e29a75a7a17a" +checksum = "38c592efaf1b3250df14c8f3c2d952233f0302bb81d3586db2f303666c1cd607" dependencies = [ "array-bytes", "blake3", - "frame-metadata", + "frame-metadata 18.0.0", "parity-scale-codec", "scale-decode 0.13.1", "scale-info", @@ -7039,17 +8164,6 @@ dependencies = [ "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" @@ -7058,23 +8172,23 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" [[package]] name = "miniz_oxide" -version = "0.7.3" +version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "87dfd01fe195c66b572b37921ad8803d010623c0aca821bea2302239d155cdae" +checksum = "4ffbe83022cedc1d264172192511ae958937694cd57ce297164951b8b3568394" dependencies = [ - "adler", + "adler2", ] [[package]] name = "mio" -version = "0.8.11" +version = "1.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c" +checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd" dependencies = [ "libc", "log", "wasi", - "windows-sys 0.48.0", + "windows-sys 0.52.0", ] [[package]] @@ -7084,7 +8198,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "daa3eb39495d8e2e2947a1d862852c90cc6a4a8845f8b41c8829cb9fcc047f4a" dependencies = [ "arrayref", - "arrayvec 0.7.4", + "arrayvec 0.7.6", "bitflags 1.3.2", "blake2 0.10.6", "c2-chacha", @@ -7097,63 +8211,43 @@ dependencies = [ "rand", "rand_chacha", "rand_distr", - "subtle 2.5.0", - "thiserror", + "subtle 2.6.1", + "thiserror 1.0.69", "zeroize", ] [[package]] name = "mmr-gadget" -version = "37.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f06f25f3b298799dbc20f7ffd40e667adc4fbd664cbb23ead5f7bbda52407ff" +version = "42.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "futures", "log", "parity-scale-codec", "sc-client-api", "sc-offchain", - "sp-api", + "sp-api 35.0.0", "sp-blockchain", "sp-consensus", - "sp-consensus-beefy", - "sp-core", - "sp-mmr-primitives", - "sp-runtime", -] - -[[package]] -name = "mmr-primitives" -version = "1.15.0" -source = "git+https://github.com/r0gue-io/ismp?branch=polkadot-v1.14.0#f95ee188c3b73ca3c4d6319ab85cff12fe757c4c" -dependencies = [ - "ckb-merkle-mountain-range", - "frame-system", - "ismp", - "parity-scale-codec", - "scale-info", - "serde", - "sp-core", - "sp-io", - "sp-mmr-primitives", - "sp-runtime", - "sp-std", + "sp-consensus-beefy 23.0.0", + "sp-core 35.0.0", + "sp-mmr-primitives 35.0.0", + "sp-runtime 40.0.0", ] [[package]] name = "mmr-rpc" -version = "35.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f9a252b1e03418e99c18ff6e2d4d9748d195395ed3749c8bfd9ca2c7530a43d" +version = "39.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ - "jsonrpsee", + "jsonrpsee 0.24.7", "parity-scale-codec", "serde", - "sp-api", + "sp-api 35.0.0", "sp-blockchain", - "sp-core", - "sp-mmr-primitives", - "sp-runtime", + "sp-core 35.0.0", + "sp-mmr-primitives 35.0.0", + "sp-runtime 40.0.0", ] [[package]] @@ -7173,15 +8267,14 @@ dependencies = [ [[package]] name = "mockall" -version = "0.12.1" +version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "43766c2b5203b10de348ffe19f7e54564b64f3d6018ff7648d1e2d6d3a0f0a48" +checksum = "39a6bfcc6c8c7eed5ee98b9c3e33adc726054389233e201c95dab2d41a3839d2" dependencies = [ "cfg-if", "downcast", "fragile", - "lazy_static", - "mockall_derive 0.12.1", + "mockall_derive 0.13.1", "predicates 3.1.2", "predicates-tree", ] @@ -7200,14 +8293,14 @@ dependencies = [ [[package]] name = "mockall_derive" -version = "0.12.1" +version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af7cbce79ec385a1d4f54baa90a76401eb15d9cab93685f62e7e9f942aa00ae2" +checksum = "25ca3004c2efe9011bd4e461bd8256445052b9615405b4f7ea43fc8ca5c20898" dependencies = [ "cfg-if", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -7237,20 +8330,20 @@ dependencies = [ [[package]] name = "multiaddr" -version = "0.18.1" +version = "0.18.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b852bc02a2da5feed68cd14fa50d0774b92790a5bdbfa932a813926c8472070" +checksum = "fe6351f60b488e04c1d21bc69e56b89cb3f5e8f5d22557d6e8031bdfd79b6961" dependencies = [ "arrayref", "byteorder", "data-encoding", "libp2p-identity", "multibase", - "multihash 0.19.1", + "multihash 0.19.3", "percent-encoding", "serde", "static_assertions", - "unsigned-varint 0.7.2", + "unsigned-varint 0.8.0", "url", ] @@ -7301,12 +8394,12 @@ dependencies = [ [[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]] @@ -7323,12 +8416,6 @@ dependencies = [ "synstructure 0.12.6", ] -[[package]] -name = "multimap" -version = "0.8.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e5ce46fe64a9d73be07dcbe690a38ce1b293be448fd8ce1e6c1b8062c9f72c6a" - [[package]] name = "multimap" version = "0.10.0" @@ -7351,13 +8438,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", @@ -7365,17 +8451,6 @@ dependencies = [ "typenum", ] -[[package]] -name = "nalgebra-macros" -version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "91761aed67d03ad966ef783ae962ef9bbaca728d2dd7ceb7939ec110fffad998" -dependencies = [ - "proc-macro2", - "quote", - "syn 1.0.109", -] - [[package]] name = "names" version = "0.14.0" @@ -7393,21 +8468,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", @@ -7426,29 +8500,29 @@ dependencies = [ "anyhow", "byteorder", "paste", - "thiserror", + "thiserror 1.0.69", ] [[package]] name = "netlink-proto" -version = "0.10.0" +version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "65b4b14489ab424703c092062176d52ba55485a89c076b4f9db05092b7223aa6" +checksum = "86b33524dc0968bfad349684447bfce6db937a9ac3332a1fe60c0c5a5ce63f21" dependencies = [ "bytes", "futures", "log", "netlink-packet-core", "netlink-sys", - "thiserror", + "thiserror 1.0.69", "tokio", ] [[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", @@ -7465,15 +8539,15 @@ checksum = "a4a43439bf756eed340bdf8feba761e2d50c7d47175d87545cd5cbe4a137c4d1" dependencies = [ "cc", "libc", - "thiserror", + "thiserror 1.0.69", "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", @@ -7486,9 +8560,9 @@ version = "0.28.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ab2156c4fce2f8df6c499cc1c763e4394b7482525bf2a9701c9d79d215f519e4" dependencies = [ - "bitflags 2.5.0", + "bitflags 2.6.0", "cfg-if", - "cfg_aliases", + "cfg_aliases 0.1.1", "libc", ] @@ -7556,9 +8630,9 @@ dependencies = [ [[package]] name = "num-bigint" -version = "0.4.5" +version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c165a9ab64cf766f73521c0dd2cfdff64f488b8f0b3e621face3462d3db536d7" +checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9" dependencies = [ "num-integer", "num-traits", @@ -7587,7 +8661,7 @@ checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -7596,7 +8670,7 @@ version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a652d9771a63711fd3c3deb670acfbe5c30a4072e664d7a3bf5a9e1056ac72c3" dependencies = [ - "arrayvec 0.7.4", + "arrayvec 0.7.6", "itoa", ] @@ -7663,9 +8737,9 @@ dependencies = [ [[package]] name = "object" -version = "0.36.4" +version = "0.36.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "084f1a5821ac4c651660a94a7153d27ac9d8a53736203f58b31945ded098070a" +checksum = "aedf0a2d09c573ed1d8d85b30c119153926a2b36dce0ab28322c09a117a4683e" dependencies = [ "memchr", ] @@ -7681,18 +8755,18 @@ dependencies = [ [[package]] name = "oid-registry" -version = "0.7.0" +version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1c958dd45046245b9c3c2547369bb634eb461670b2e7e0de552905801a648d1d" +checksum = "a8d8034d9489cdaf79228eb9f6a3b8d7bb32ba00d6645ebd48eef4077ceb5bd9" dependencies = [ "asn1-rs 0.6.2", ] [[package]] name = "once_cell" -version = "1.19.0" +version = "1.20.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" +checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775" [[package]] name = "opaque-debug" @@ -7706,32 +8780,6 @@ version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381" -[[package]] -name = "openssl" -version = "0.10.66" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9529f4786b70a3e8c61e11179af17ab6188ad8d0ded78c5529441ed39d4bd9c1" -dependencies = [ - "bitflags 2.5.0", - "cfg-if", - "foreign-types", - "libc", - "once_cell", - "openssl-macros", - "openssl-sys", -] - -[[package]] -name = "openssl-macros" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.96", -] - [[package]] name = "openssl-probe" version = "0.1.5" @@ -7739,38 +8787,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" [[package]] -name = "openssl-src" -version = "300.3.1+3.3.1" +name = "option-ext" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7259953d42a81bf137fbbd73bd30a8e1914d6dce43c2b90ed575783a22608b91" -dependencies = [ - "cc", -] +checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" [[package]] -name = "openssl-sys" -version = "0.9.103" +name = "orchestra" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f9e8deee91df40a943c71b917e5874b951d32a802526c85721ce3b776c929d6" -dependencies = [ - "cc", - "libc", - "openssl-src", - "pkg-config", - "vcpkg", -] - -[[package]] -name = "option-ext" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" - -[[package]] -name = "orchestra" -version = "0.3.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "92829eef0328a3d1cd22a02c0e51deb92a5362df3e7d21a4e9bdc38934694e66" +checksum = "41f6bbacc8c189a3f2e45e0fd0436e5d97f194db888e721bdbc3973e7dbed4c2" dependencies = [ "async-trait", "dyn-clonable", @@ -7779,35 +8805,26 @@ dependencies = [ "orchestra-proc-macro", "pin-project", "prioritized-metered-channel", - "thiserror", + "thiserror 1.0.69", "tracing", ] [[package]] name = "orchestra-proc-macro" -version = "0.3.6" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1344346d5af32c95bbddea91b18a88cc83eac394192d20ef2fc4c40a74332355" +checksum = "f7b1d40dd8f367db3c65bec8d3dd47d4a604ee8874480738f93191bddab4e0e0" dependencies = [ "expander", - "indexmap 2.2.6", + "indexmap 2.7.0", "itertools 0.11.0", "petgraph", - "proc-macro-crate 3.1.0", + "proc-macro-crate 3.2.0", "proc-macro2", "quote", "syn 1.0.109", ] -[[package]] -name = "ordered-float" -version = "1.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3305af35278dd29f46fcdd139e0b1fbfae2153f0e5928b39b035542dd31e37b7" -dependencies = [ - "num-traits", -] - [[package]] name = "os_pipe" version = "1.2.1" @@ -7828,19 +8845,19 @@ checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" name = "pallet-api" version = "0.1.0" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", "log", - "pallet-assets", - "pallet-balances", + "pallet-assets 41.0.0", + "pallet-balances 40.0.0", "parity-scale-codec", "pop-chain-extension", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 35.0.0", + "sp-io 39.0.0", + "sp-runtime 40.0.0", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", ] [[package]] @@ -7849,38 +8866,54 @@ version = "18.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f726ebb59401c1844a4a8703047bdafcd99a1827cd5d8b2c82abeb8948a7f25b" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.1", + "frame-system 36.1.0", + "log", + "parity-scale-codec", + "scale-info", + "sp-api 33.0.0", + "sp-arithmetic 26.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-core 34.0.0", + "sp-io 37.0.0", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "pallet-asset-conversion" +version = "21.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", "log", "parity-scale-codec", "scale-info", - "sp-api", - "sp-arithmetic", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-api 35.0.0", + "sp-arithmetic 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-core 35.0.0", + "sp-io 39.0.0", + "sp-runtime 40.0.0", ] [[package]] name = "pallet-asset-conversion-ops" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7ffad613243bdac3426f8db5e4adb674f068fca3d76254f58d648cbc03d3ffce" +version = "0.7.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", "log", - "pallet-asset-conversion", + "pallet-asset-conversion 21.0.0", "parity-scale-codec", "scale-info", - "sp-arithmetic", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-arithmetic 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-core 35.0.0", + "sp-io 39.0.0", + "sp-runtime 40.0.0", ] [[package]] @@ -7889,14 +8922,29 @@ version = "18.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e0fde03a96382f4dbe37ef95cb4ef7aade7c0be410cb6c888eda911c94af3eaf" dependencies = [ - "frame-support", - "frame-system", - "pallet-asset-conversion", - "pallet-transaction-payment", + "frame-support 36.0.1", + "frame-system 36.1.0", + "pallet-asset-conversion 18.0.0", + "pallet-transaction-payment 36.0.0", + "parity-scale-codec", + "scale-info", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "pallet-asset-conversion-tx-payment" +version = "21.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", + "pallet-asset-conversion 21.0.0", + "pallet-transaction-payment 39.0.0", "parity-scale-codec", "scale-info", - "sp-runtime", - "sp-std", + "sp-runtime 40.0.0", ] [[package]] @@ -7905,14 +8953,28 @@ version = "15.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e806842bec955190ec64f8b2179f74f5355137c4cadf04f3269e6196cd19caf9" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.1", + "frame-system 36.1.0", + "parity-scale-codec", + "scale-info", + "sp-core 34.0.0", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "pallet-asset-rate" +version = "18.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", "parity-scale-codec", "scale-info", - "sp-core", - "sp-runtime", - "sp-std", + "sp-core 35.0.0", + "sp-runtime 40.0.0", ] [[package]] @@ -7921,17 +8983,34 @@ version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "100a180dfbf30a1c872100ec2dae8a61c0f5e8b3f2d3a5cbb34093826293e2ab" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", - "pallet-transaction-payment", + "frame-benchmarking 36.0.0", + "frame-support 36.0.1", + "frame-system 36.1.0", + "pallet-transaction-payment 36.0.0", + "parity-scale-codec", + "scale-info", + "serde", + "sp-core 34.0.0", + "sp-io 37.0.0", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "pallet-asset-tx-payment" +version = "39.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", + "pallet-transaction-payment 39.0.0", "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 35.0.0", + "sp-io 39.0.0", + "sp-runtime 40.0.0", ] [[package]] @@ -7940,32 +9019,47 @@ version = "37.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f79ef6a7763fc08177f014052469ee12aefcdad0d99a747372360c2f648d2cc4" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.1", + "frame-system 36.1.0", + "impl-trait-for-tuples", + "log", + "parity-scale-codec", + "scale-info", + "sp-core 34.0.0", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "pallet-assets" +version = "41.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", "impl-trait-for-tuples", "log", "parity-scale-codec", "scale-info", - "sp-core", - "sp-runtime", - "sp-std", + "sp-core 35.0.0", + "sp-runtime 40.0.0", ] [[package]] name = "pallet-assets-freezer" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8a98488bba3ba1b9877ed2fb8a8739f07a3e19389d5011549ce7b78f62466ff8" +version = "0.6.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", "log", - "pallet-assets", + "pallet-assets 41.0.0", "parity-scale-codec", "scale-info", - "sp-runtime", + "sp-runtime 40.0.0", ] [[package]] @@ -7974,16 +9068,32 @@ version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0861b2a1ad6526948567bb59a3fdc4c7f02ee79b07be8b931a544350ec35ab0c" dependencies = [ - "frame-support", - "frame-system", + "frame-support 36.0.1", + "frame-system 36.1.0", + "log", + "pallet-timestamp 35.0.0", + "parity-scale-codec", + "scale-info", + "sp-application-crypto 37.0.0", + "sp-consensus-aura 0.39.0", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "pallet-aura" +version = "38.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "frame-support 39.0.0", + "frame-system 39.0.0", "log", - "pallet-timestamp", + "pallet-timestamp 38.0.0", "parity-scale-codec", "scale-info", - "sp-application-crypto", - "sp-consensus-aura", - "sp-runtime", - "sp-std", + "sp-application-crypto 39.0.0", + "sp-consensus-aura 0.41.0", + "sp-runtime 40.0.0", ] [[package]] @@ -7992,15 +9102,30 @@ version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ed2c3666a476132f5846fe4d5e1961a923a58a0f54d873d84566f24ffaa3684f" dependencies = [ - "frame-support", - "frame-system", - "pallet-session", + "frame-support 36.0.1", + "frame-system 36.1.0", + "pallet-session 36.0.0", "parity-scale-codec", "scale-info", - "sp-application-crypto", - "sp-authority-discovery", - "sp-runtime", - "sp-std", + "sp-application-crypto 37.0.0", + "sp-authority-discovery 33.0.0", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "pallet-authority-discovery" +version = "39.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "frame-support 39.0.0", + "frame-system 39.0.0", + "pallet-session 39.0.0", + "parity-scale-codec", + "scale-info", + "sp-application-crypto 39.0.0", + "sp-authority-discovery 35.0.0", + "sp-runtime 40.0.0", ] [[package]] @@ -8009,13 +9134,26 @@ version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "38885846dbcf03b025fdbd7edb3649046dbc68fa0b419ffe8837ef853a10d31f" dependencies = [ - "frame-support", - "frame-system", + "frame-support 36.0.1", + "frame-system 36.1.0", + "impl-trait-for-tuples", + "parity-scale-codec", + "scale-info", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "pallet-authorship" +version = "39.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "frame-support 39.0.0", + "frame-system 39.0.0", "impl-trait-for-tuples", "parity-scale-codec", "scale-info", - "sp-runtime", - "sp-std", + "sp-runtime 40.0.0", ] [[package]] @@ -8024,23 +9162,46 @@ version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b23d2d814e3cb793659fcf84533f66fdf0ed9cccb66cb2225851f482843ed096" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.1", + "frame-system 36.1.0", + "log", + "pallet-authorship 36.0.0", + "pallet-session 36.0.0", + "pallet-timestamp 35.0.0", + "parity-scale-codec", + "scale-info", + "sp-application-crypto 37.0.0", + "sp-consensus-babe 0.39.0", + "sp-core 34.0.0", + "sp-io 37.0.0", + "sp-runtime 38.0.1", + "sp-session 34.0.0", + "sp-staking 33.0.0", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "pallet-babe" +version = "39.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", "log", - "pallet-authorship", - "pallet-session", - "pallet-timestamp", + "pallet-authorship 39.0.0", + "pallet-session 39.0.0", + "pallet-timestamp 38.0.0", "parity-scale-codec", "scale-info", - "sp-application-crypto", - "sp-consensus-babe", - "sp-core", - "sp-io", - "sp-runtime", - "sp-session", - "sp-staking", - "sp-std", + "sp-application-crypto 39.0.0", + "sp-consensus-babe 0.41.0", + "sp-core 35.0.0", + "sp-io 39.0.0", + "sp-runtime 40.0.0", + "sp-session 37.0.0", + "sp-staking 37.0.0", ] [[package]] @@ -8051,19 +9212,40 @@ checksum = "af34fa3fb6a0abe3577e435988039a9e441f6705ae2d3ad627a23e3f705baa2d" dependencies = [ "aquamarine", "docify", - "frame-benchmarking", - "frame-election-provider-support", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-election-provider-support 36.0.0", + "frame-support 36.0.1", + "frame-system 36.1.0", + "log", + "pallet-balances 37.0.0", + "parity-scale-codec", + "scale-info", + "sp-core 34.0.0", + "sp-io 37.0.0", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-tracing 17.0.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "pallet-bags-list" +version = "38.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "aquamarine", + "docify", + "frame-benchmarking 39.0.0", + "frame-election-provider-support 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", "log", - "pallet-balances", + "pallet-balances 40.0.0", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", - "sp-tracing", + "sp-core 35.0.0", + "sp-io 39.0.0", + "sp-runtime 40.0.0", + "sp-tracing 17.0.1 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", ] [[package]] @@ -8073,14 +9255,29 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6878e240962d3887f0e0654ac343a18845adb95ad493c9d4d5e803c015d4a4c3" dependencies = [ "docify", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.1", + "frame-system 36.1.0", + "log", + "parity-scale-codec", + "scale-info", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "pallet-balances" +version = "40.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "docify", + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", "log", "parity-scale-codec", "scale-info", - "sp-runtime", - "sp-std", + "sp-runtime 40.0.0", ] [[package]] @@ -8089,19 +9286,38 @@ version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "715dfcd1bf3f1f37af6335d4eb3cef921e746ac54721e2258c4fd968b61eb009" dependencies = [ - "frame-support", - "frame-system", + "frame-support 36.0.1", + "frame-system 36.1.0", + "log", + "pallet-authorship 36.0.0", + "pallet-session 36.0.0", + "parity-scale-codec", + "scale-info", + "serde", + "sp-consensus-beefy 20.0.0", + "sp-runtime 38.0.1", + "sp-session 34.0.0", + "sp-staking 33.0.0", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "pallet-beefy" +version = "40.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "frame-support 39.0.0", + "frame-system 39.0.0", "log", - "pallet-authorship", - "pallet-session", + "pallet-authorship 39.0.0", + "pallet-session 39.0.0", "parity-scale-codec", "scale-info", "serde", - "sp-consensus-beefy", - "sp-runtime", - "sp-session", - "sp-staking", - "sp-std", + "sp-consensus-beefy 23.0.0", + "sp-runtime 40.0.0", + "sp-session 37.0.0", + "sp-staking 37.0.0", ] [[package]] @@ -8111,23 +9327,48 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "01d70c6f872eb3f2635355ccbea944a4f9ea411c0aa25f6f1a15219e8da11ad2" dependencies = [ "array-bytes", - "binary-merkle-tree", - "frame-support", - "frame-system", + "binary-merkle-tree 15.0.1", + "frame-support 36.0.1", + "frame-system 36.1.0", + "log", + "pallet-beefy 36.0.0", + "pallet-mmr 35.0.0", + "pallet-session 36.0.0", + "parity-scale-codec", + "scale-info", + "serde", + "sp-api 33.0.0", + "sp-consensus-beefy 20.0.0", + "sp-core 34.0.0", + "sp-io 37.0.0", + "sp-runtime 38.0.1", + "sp-state-machine 0.42.0", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "pallet-beefy-mmr" +version = "40.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "array-bytes", + "binary-merkle-tree 16.0.0", + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", "log", - "pallet-beefy", - "pallet-mmr", - "pallet-session", + "pallet-beefy 40.0.0", + "pallet-mmr 39.0.0", + "pallet-session 39.0.0", "parity-scale-codec", "scale-info", "serde", - "sp-api", - "sp-consensus-beefy", - "sp-core", - "sp-io", - "sp-runtime", - "sp-state-machine", - "sp-std", + "sp-api 35.0.0", + "sp-consensus-beefy 23.0.0", + "sp-core 35.0.0", + "sp-io 39.0.0", + "sp-runtime 40.0.0", + "sp-state-machine 0.44.0", ] [[package]] @@ -8136,101 +9377,116 @@ version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0566499e74ba4b7ccbd1b667eef0dab76ca28402a8d501e22b73a363717b05a9" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.1", + "frame-system 36.1.0", + "log", + "pallet-treasury 35.0.0", + "parity-scale-codec", + "scale-info", + "sp-core 34.0.0", + "sp-io 37.0.0", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "pallet-bounties" +version = "38.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", "log", - "pallet-treasury", + "pallet-treasury 38.0.0", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 35.0.0", + "sp-io 39.0.0", + "sp-runtime 40.0.0", ] [[package]] name = "pallet-bridge-grandpa" -version = "0.15.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61d30a4860bb12559dc28b2d46dd865e2066bce83239230f748e2c569a3cadf4" +version = "0.19.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ - "bp-header-chain", - "bp-runtime", + "bp-header-chain 0.19.0", + "bp-runtime 0.19.0", "bp-test-utils", - "finality-grandpa", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", "log", "parity-scale-codec", "scale-info", - "sp-consensus-grandpa", - "sp-runtime", - "sp-std", - "sp-trie", + "sp-consensus-grandpa 22.0.0", + "sp-runtime 40.0.0", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", ] [[package]] name = "pallet-bridge-messages" -version = "0.15.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e3c0fcb1b9ae50ece73cbe36b72c2778f5d4637e4fb0cfac30cb16f7d4b61d5e" -dependencies = [ - "bp-messages", - "bp-runtime", - "frame-benchmarking", - "frame-support", - "frame-system", +version = "0.19.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "bp-header-chain 0.19.0", + "bp-messages 0.19.0", + "bp-runtime 0.19.0", + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", "log", - "num-traits", "parity-scale-codec", "scale-info", - "sp-runtime", - "sp-std", + "sp-runtime 40.0.0", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-trie 38.0.0", ] [[package]] name = "pallet-bridge-parachains" -version = "0.15.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3974fb658cf1b9ca8c2d3c77bf080b2f94c054c2b466b709ef29f6d3726f2231" +version = "0.19.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ - "bp-header-chain", + "bp-header-chain 0.19.0", "bp-parachains", - "bp-polkadot-core", - "bp-runtime", - "frame-benchmarking", - "frame-support", - "frame-system", + "bp-polkadot-core 0.19.0", + "bp-runtime 0.19.0", + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", "log", "pallet-bridge-grandpa", "parity-scale-codec", "scale-info", - "sp-runtime", - "sp-std", - "sp-trie", + "sp-runtime 40.0.0", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", ] [[package]] name = "pallet-bridge-relayers" -version = "0.15.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2c92383f4c7d1eaced8413e39b948227a527a0136f705660580c57753dc11568" +version = "0.19.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ - "bp-messages", + "bp-header-chain 0.19.0", + "bp-messages 0.19.0", "bp-relayers", - "bp-runtime", - "frame-benchmarking", - "frame-support", - "frame-system", + "bp-runtime 0.19.0", + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", "log", + "pallet-bridge-grandpa", "pallet-bridge-messages", + "pallet-bridge-parachains", + "pallet-transaction-payment 39.0.0", "parity-scale-codec", "scale-info", - "sp-arithmetic", - "sp-runtime", - "sp-std", + "sp-arithmetic 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-runtime 40.0.0", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", ] [[package]] @@ -8240,17 +9496,35 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cd0d652c399b6ed776ee3322e60f40e323f86b413719d7696eddb8f64c368ac0" dependencies = [ "bitvec", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.1", + "frame-system 36.1.0", + "log", + "parity-scale-codec", + "scale-info", + "sp-api 33.0.0", + "sp-arithmetic 26.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-core 34.0.0", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "pallet-broker" +version = "0.18.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "bitvec", + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", "log", "parity-scale-codec", "scale-info", - "sp-api", - "sp-arithmetic", - "sp-core", - "sp-runtime", - "sp-std", + "sp-api 35.0.0", + "sp-arithmetic 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-core 35.0.0", + "sp-runtime 40.0.0", ] [[package]] @@ -8259,18 +9533,36 @@ version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "38e351f103ebbdd1eb095da8c2379caccc82ebc59a740c2731693d2204286b83" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.1", + "frame-system 36.1.0", + "log", + "pallet-bounties 35.0.0", + "pallet-treasury 35.0.0", + "parity-scale-codec", + "scale-info", + "sp-core 34.0.0", + "sp-io 37.0.0", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "pallet-child-bounties" +version = "38.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", "log", - "pallet-bounties", - "pallet-treasury", + "pallet-bounties 38.0.0", + "pallet-treasury 38.0.0", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 35.0.0", + "sp-io 39.0.0", + "sp-runtime 40.0.0", ] [[package]] @@ -8279,55 +9571,72 @@ version = "17.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f660cc09f2f277a3976da2eef856b5c725ab7ad1192902ef7f4e4bafd992f04f" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.1", + "frame-system 36.1.0", + "log", + "pallet-authorship 36.0.0", + "pallet-balances 37.0.0", + "pallet-session 36.0.0", + "parity-scale-codec", + "rand", + "scale-info", + "sp-runtime 38.0.1", + "sp-staking 33.0.0", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "pallet-collator-selection" +version = "20.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", "log", - "pallet-authorship", - "pallet-balances", - "pallet-session", + "pallet-authorship 39.0.0", + "pallet-balances 40.0.0", + "pallet-session 39.0.0", "parity-scale-codec", "rand", "scale-info", - "sp-runtime", - "sp-staking", - "sp-std", + "sp-runtime 40.0.0", + "sp-staking 37.0.0", ] [[package]] name = "pallet-collective" -version = "36.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "771bf7f6c76c3ea5e965fee0bf1d8a8c79c8c52d75ead65ed3c4d385f333756f" +version = "39.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "docify", + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", "log", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 35.0.0", + "sp-io 39.0.0", + "sp-runtime 40.0.0", ] [[package]] name = "pallet-contracts" -version = "35.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3e6989ac82690f981959b0d38ac6d6d52fc06bf00a035548d62b9a2e9c220376" +version = "39.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "bitflags 1.3.2", "environmental", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", "impl-trait-for-tuples", "log", - "pallet-balances", + "pallet-balances 40.0.0", "pallet-contracts-proc-macro", - "pallet-contracts-uapi 11.0.0", + "pallet-contracts-uapi 12.0.1", "parity-scale-codec", "paste", "rand", @@ -8335,26 +9644,25 @@ dependencies = [ "scale-info", "serde", "smallvec", - "sp-api", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", - "staging-xcm 14.1.0", - "staging-xcm-builder", + "sp-api 35.0.0", + "sp-core 35.0.0", + "sp-io 39.0.0", + "sp-runtime 40.0.0", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "staging-xcm 15.0.1", + "staging-xcm-builder 18.0.0", "wasm-instrument", "wasmi 0.32.3", ] [[package]] name = "pallet-contracts-proc-macro" -version = "23.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "94226cbd48516b7c310eb5dae8d50798c1ce73a7421dc0977c55b7fc2237a283" +version = "23.0.2" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -8365,19 +9673,17 @@ checksum = "2d7a51646d9ff1d91abd0186d2c074f0dfd3b1a2d55f08a229a2f2e4bc6d1e49" dependencies = [ "bitflags 1.3.2", "paste", - "polkavm-derive", + "polkavm-derive 0.9.1", ] [[package]] name = "pallet-contracts-uapi" -version = "11.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e1330375dcced95509e3cca7ef6b1c3fac648df995b86d39467d082ba981dc46" +version = "12.0.1" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "bitflags 1.3.2", "parity-scale-codec", "paste", - "polkavm-derive", "scale-info", ] @@ -8388,15 +9694,31 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9033f0d23500bbc39298fd50c07b89a2f2d9f07300139b4df8005995ef683875" dependencies = [ "assert_matches", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.1", + "frame-system 36.1.0", + "parity-scale-codec", + "scale-info", + "serde", + "sp-io 37.0.0", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "pallet-conviction-voting" +version = "39.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "assert_matches", + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", "parity-scale-codec", "scale-info", "serde", - "sp-io", - "sp-runtime", - "sp-std", + "sp-io 39.0.0", + "sp-runtime 40.0.0", ] [[package]] @@ -8405,32 +9727,45 @@ version = "3.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0596ec5ab55e02b1b5637b3ec2b99027d036fe97a1ab4733ae105474dfa727cf" dependencies = [ - "frame-support", - "frame-system", + "frame-support 36.0.1", + "frame-system 36.1.0", + "parity-scale-codec", + "scale-info", + "sp-runtime 38.0.1", + "sp-staking 33.0.0", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "pallet-delegated-staking" +version = "6.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "frame-support 39.0.0", + "frame-system 39.0.0", + "log", "parity-scale-codec", "scale-info", - "sp-runtime", - "sp-staking", - "sp-std", + "sp-io 39.0.0", + "sp-runtime 40.0.0", + "sp-staking 37.0.0", ] [[package]] name = "pallet-democracy" -version = "36.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7ccd68a2bf5f2dfda2b810cbe1a779492d4c2e99338989fede4389d412ae325b" +version = "39.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", "log", "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 35.0.0", + "sp-io 39.0.0", + "sp-runtime 40.0.0", ] [[package]] @@ -8439,22 +9774,44 @@ version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bd1090fdc6ccdd8ff08c60000c970428baaaf0b33e7a6b01a91ec8b697a650a3" dependencies = [ - "frame-benchmarking", - "frame-election-provider-support", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-election-provider-support 36.0.0", + "frame-support 36.0.1", + "frame-system 36.1.0", + "log", + "pallet-election-provider-support-benchmarking 35.0.0", + "parity-scale-codec", + "rand", + "scale-info", + "sp-arithmetic 26.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-core 34.0.0", + "sp-io 37.0.0", + "sp-npos-elections 33.0.0", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "strum 0.26.3", +] + +[[package]] +name = "pallet-election-provider-multi-phase" +version = "38.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "frame-benchmarking 39.0.0", + "frame-election-provider-support 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", "log", - "pallet-election-provider-support-benchmarking", + "pallet-election-provider-support-benchmarking 38.0.0", "parity-scale-codec", "rand", "scale-info", - "sp-arithmetic", - "sp-core", - "sp-io", - "sp-npos-elections", - "sp-runtime", - "sp-std", - "strum 0.26.2", + "sp-arithmetic 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-core 35.0.0", + "sp-io 39.0.0", + "sp-npos-elections 35.0.0", + "sp-runtime 40.0.0", + "strum 0.26.3", ] [[package]] @@ -8463,33 +9820,44 @@ version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "93475989d2f6900caf8f1c847a55d909295c156525a7510c5f1dde176ec7c714" dependencies = [ - "frame-benchmarking", - "frame-election-provider-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-election-provider-support 36.0.0", + "frame-system 36.1.0", + "parity-scale-codec", + "sp-npos-elections 33.0.0", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "pallet-election-provider-support-benchmarking" +version = "38.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "frame-benchmarking 39.0.0", + "frame-election-provider-support 39.0.0", + "frame-system 39.0.0", "parity-scale-codec", - "sp-npos-elections", - "sp-runtime", - "sp-std", + "sp-npos-elections 35.0.0", + "sp-runtime 40.0.0", ] [[package]] name = "pallet-elections-phragmen" -version = "37.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9320d95c95e2d4d3ee24c9292b4ee8562ecb724b985613cfa7f274912bad2c9d" +version = "40.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", "log", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-npos-elections", - "sp-runtime", - "sp-staking", - "sp-std", + "sp-core 35.0.0", + "sp-io 39.0.0", + "sp-npos-elections 35.0.0", + "sp-runtime 40.0.0", + "sp-staking 37.0.0", ] [[package]] @@ -8499,41 +9867,81 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9155f4f762513e0287320411415c76a647152799ad33db1785c9b71c36a14575" dependencies = [ "docify", - "frame-benchmarking", - "frame-election-provider-support", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-election-provider-support 36.0.0", + "frame-support 36.0.1", + "frame-system 36.1.0", "log", "parity-scale-codec", "scale-info", - "sp-io", - "sp-runtime", - "sp-staking", - "sp-std", + "sp-io 37.0.0", + "sp-runtime 38.0.1", + "sp-staking 33.0.0", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] -name = "pallet-grandpa" -version = "36.0.0" +name = "pallet-fast-unstake" +version = "38.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "docify", + "frame-benchmarking 39.0.0", + "frame-election-provider-support 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", + "log", + "parity-scale-codec", + "scale-info", + "sp-io 39.0.0", + "sp-runtime 40.0.0", + "sp-staking 37.0.0", +] + +[[package]] +name = "pallet-grandpa" +version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8244b686d5cae6a8af1557ed0f49db08f812f0e7942a8d2da554b4da8a69daf0" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.1", + "frame-system 36.1.0", + "log", + "pallet-authorship 36.0.0", + "pallet-session 36.0.0", + "parity-scale-codec", + "scale-info", + "sp-application-crypto 37.0.0", + "sp-consensus-grandpa 20.0.0", + "sp-core 34.0.0", + "sp-io 37.0.0", + "sp-runtime 38.0.1", + "sp-session 34.0.0", + "sp-staking 33.0.0", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "pallet-grandpa" +version = "39.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", "log", - "pallet-authorship", - "pallet-session", + "pallet-authorship 39.0.0", + "pallet-session 39.0.0", "parity-scale-codec", "scale-info", - "sp-application-crypto", - "sp-consensus-grandpa", - "sp-core", - "sp-io", - "sp-runtime", - "sp-session", - "sp-staking", - "sp-std", + "sp-application-crypto 39.0.0", + "sp-consensus-grandpa 22.0.0", + "sp-core 35.0.0", + "sp-io 39.0.0", + "sp-runtime 40.0.0", + "sp-session 37.0.0", + "sp-staking 37.0.0", ] [[package]] @@ -8543,15 +9951,31 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4555795a3e0e3aa49ea432b7afecb9c71a7db8793a99c68bd8dd3a52a12571f3" dependencies = [ "enumflags2", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.1", + "frame-system 36.1.0", + "log", + "parity-scale-codec", + "scale-info", + "sp-io 37.0.0", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "pallet-identity" +version = "39.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "enumflags2", + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", "log", "parity-scale-codec", "scale-info", - "sp-io", - "sp-runtime", - "sp-std", + "sp-io 39.0.0", + "sp-runtime 40.0.0", ] [[package]] @@ -8560,19 +9984,38 @@ version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fa761292e95020304b58b50e5187f8bb82f557c8c2d013e3c96ab41d611873b0" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.1", + "frame-system 36.1.0", + "log", + "pallet-authorship 36.0.0", + "parity-scale-codec", + "scale-info", + "sp-application-crypto 37.0.0", + "sp-core 34.0.0", + "sp-io 37.0.0", + "sp-runtime 38.0.1", + "sp-staking 33.0.0", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "pallet-im-online" +version = "38.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", "log", - "pallet-authorship", + "pallet-authorship 39.0.0", "parity-scale-codec", "scale-info", - "sp-application-crypto", - "sp-core", - "sp-io", - "sp-runtime", - "sp-staking", - "sp-std", + "sp-application-crypto 39.0.0", + "sp-core 35.0.0", + "sp-io 39.0.0", + "sp-runtime 40.0.0", + "sp-staking 37.0.0", ] [[package]] @@ -8581,53 +10024,69 @@ version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b183880ad5efae06afe6066e76f2bac5acf67f34b3cfab7352ceec46accf4b45" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.1", + "frame-system 36.1.0", + "parity-scale-codec", + "scale-info", + "sp-core 34.0.0", + "sp-io 37.0.0", + "sp-keyring 38.0.0", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "pallet-indices" +version = "39.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-keyring", - "sp-runtime", - "sp-std", + "sp-core 35.0.0", + "sp-io 39.0.0", + "sp-keyring 40.0.0", + "sp-runtime 40.0.0", ] [[package]] name = "pallet-ismp" -version = "1.15.0" -source = "git+https://github.com/r0gue-io/ismp?branch=polkadot-v1.14.0#f95ee188c3b73ca3c4d6319ab85cff12fe757c4c" +version = "1.15.3" +source = "git+https://github.com/r0gue-io/ismp?branch=polkadot-stable2412#144c98de434ebd6732283b0585c1942c64577873" dependencies = [ + "anyhow", "fortuples", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", "ismp", "log", - "mmr-primitives", "parity-scale-codec", "scale-info", "serde", - "sp-api", - "sp-core", - "sp-io", - "sp-mmr-primitives", - "sp-runtime", - "sp-std", + "sp-api 35.0.0", + "sp-core 35.0.0", + "sp-io 39.0.0", + "sp-mmr-primitives 35.0.0", + "sp-runtime 40.0.0", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", ] [[package]] name = "pallet-ismp-rpc" -version = "1.15.0" -source = "git+https://github.com/r0gue-io/ismp?branch=polkadot-v1.14.0#f95ee188c3b73ca3c4d6319ab85cff12fe757c4c" +version = "1.15.3" +source = "git+https://github.com/r0gue-io/ismp?branch=polkadot-stable2412#144c98de434ebd6732283b0585c1942c64577873" dependencies = [ "anyhow", - "frame-system", + "frame-system 39.0.0", "hash-db", "hex", - "hex-literal 0.3.4", + "hex-literal", "ismp", - "jsonrpsee", + "jsonrpsee 0.24.7", "pallet-ismp", "pallet-ismp-runtime-api", "parity-scale-codec", @@ -8635,67 +10094,103 @@ dependencies = [ "sc-rpc", "serde", "serde_json", - "sp-api", + "sp-api 35.0.0", "sp-blockchain", - "sp-core", - "sp-mmr-primitives", - "sp-runtime", - "sp-storage", - "sp-trie", + "sp-core 35.0.0", + "sp-mmr-primitives 35.0.0", + "sp-runtime 40.0.0", + "sp-storage 22.0.0", + "sp-trie 38.0.0", + "tower", "trie-db", ] [[package]] name = "pallet-ismp-runtime-api" -version = "1.15.0" -source = "git+https://github.com/r0gue-io/ismp?branch=polkadot-v1.14.0#f95ee188c3b73ca3c4d6319ab85cff12fe757c4c" +version = "1.15.3" +source = "git+https://github.com/r0gue-io/ismp?branch=polkadot-stable2412#144c98de434ebd6732283b0585c1942c64577873" dependencies = [ "ismp", "pallet-ismp", "parity-scale-codec", - "primitive-types", + "primitive-types 0.13.1", "serde", - "sp-api", - "sp-mmr-primitives", + "sp-api 35.0.0", + "sp-mmr-primitives 35.0.0", ] [[package]] name = "pallet-membership" -version = "36.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34006cf047f47edbef33874cc64895918e2c5d7562795209068d5fb388c53a30" +version = "39.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", "log", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 35.0.0", + "sp-io 39.0.0", + "sp-runtime 40.0.0", ] [[package]] name = "pallet-message-queue" -version = "39.0.0" +version = "39.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "20e65a37881d1998546254a5e50a1f768b3f82deabe774e750f4ea95aba8030c" +checksum = "e565e64035684e8768e00e54aaa4a0c8e69c83703899d74e8de57ed5fde399da" +dependencies = [ + "environmental", + "frame-benchmarking 36.0.0", + "frame-support 36.0.1", + "frame-system 36.1.0", + "log", + "parity-scale-codec", + "scale-info", + "sp-arithmetic 26.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-core 34.0.0", + "sp-io 37.0.0", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-weights 31.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "pallet-message-queue" +version = "42.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "environmental", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", + "log", + "parity-scale-codec", + "scale-info", + "sp-arithmetic 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-core 35.0.0", + "sp-io 39.0.0", + "sp-runtime 40.0.0", + "sp-weights 31.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", +] + +[[package]] +name = "pallet-migrations" +version = "9.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "cfg-if", + "docify", + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", + "impl-trait-for-tuples", "log", "parity-scale-codec", "scale-info", - "sp-arithmetic", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", - "sp-weights", + "sp-core 35.0.0", + "sp-runtime 40.0.0", ] [[package]] @@ -8704,17 +10199,34 @@ version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cf8ccec82827413f031689fef4c714fdb0213d58c7a6e208d33f5eab80483770" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.1", + "frame-system 36.1.0", + "log", + "parity-scale-codec", + "scale-info", + "sp-core 34.0.0", + "sp-io 37.0.0", + "sp-mmr-primitives 33.0.0", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "pallet-mmr" +version = "39.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", "log", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-mmr-primitives", - "sp-runtime", - "sp-std", + "sp-core 35.0.0", + "sp-io 39.0.0", + "sp-mmr-primitives 35.0.0", + "sp-runtime 40.0.0", ] [[package]] @@ -8723,33 +10235,42 @@ version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "be58483d827602eb8353ecf36aed65c857f0974db5d27981831e5ebf853040bd" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.1", + "frame-system 36.1.0", + "log", + "parity-scale-codec", + "scale-info", + "sp-io 37.0.0", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "pallet-multisig" +version = "39.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ "log", "parity-scale-codec", + "polkadot-sdk-frame", "scale-info", - "sp-io", - "sp-runtime", - "sp-std", ] [[package]] name = "pallet-nft-fractionalization" -version = "18.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7dcaa330221f60feaf3b23d495cccc3bf2a3d6254c596b3c032273c2b46d4078" +version = "22.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", "log", - "pallet-assets", - "pallet-nfts 30.0.0", + "pallet-assets 41.0.0", + "pallet-nfts 33.0.0", "parity-scale-codec", "scale-info", - "sp-runtime", - "sp-std", + "sp-runtime 40.0.0", ] [[package]] @@ -8759,16 +10280,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3e1cd476809de3840e19091a083d5a79178af1f108ad489706e1f9e04c8836a4" dependencies = [ "enumflags2", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.1", + "frame-system 36.1.0", "log", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 34.0.0", + "sp-io 37.0.0", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -8776,17 +10297,34 @@ name = "pallet-nfts" version = "31.0.0" dependencies = [ "enumflags2", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", "log", - "pallet-balances", + "pallet-balances 40.0.0", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-keystore", - "sp-runtime", + "sp-core 35.0.0", + "sp-io 39.0.0", + "sp-keystore 0.41.0", + "sp-runtime 40.0.0", +] + +[[package]] +name = "pallet-nfts" +version = "33.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "enumflags2", + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", + "log", + "parity-scale-codec", + "scale-info", + "sp-core 35.0.0", + "sp-io 39.0.0", + "sp-runtime 40.0.0", ] [[package]] @@ -8797,25 +10335,33 @@ checksum = "b0ca7a0446d2d3c27f726a016c6366218df2e0bfef9ed35886b252cfa9757f6c" dependencies = [ "pallet-nfts 30.0.0", "parity-scale-codec", - "sp-api", - "sp-std", + "sp-api 33.0.0", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "pallet-nfts-runtime-api" +version = "25.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "pallet-nfts 33.0.0", + "parity-scale-codec", + "sp-api 35.0.0", ] [[package]] name = "pallet-nis" -version = "36.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e77cba0e15749c8de2be65efffa51e02bd051b4e6fcf23360d43c3b6a859187c" +version = "39.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", "parity-scale-codec", "scale-info", - "sp-arithmetic", - "sp-core", - "sp-runtime", - "sp-std", + "sp-arithmetic 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-core 35.0.0", + "sp-runtime 40.0.0", ] [[package]] @@ -8824,18 +10370,36 @@ version = "33.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "36f8c994eb7298a394b58f98afd520b521b5d46f6f39eade4657eeaac9962471" dependencies = [ - "frame-support", - "frame-system", + "frame-support 36.0.1", + "frame-system 36.1.0", + "log", + "pallet-balances 37.0.0", + "parity-scale-codec", + "scale-info", + "sp-core 34.0.0", + "sp-io 37.0.0", + "sp-runtime 38.0.1", + "sp-staking 33.0.0", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-tracing 17.0.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "pallet-nomination-pools" +version = "37.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "frame-support 39.0.0", + "frame-system 39.0.0", "log", - "pallet-balances", + "pallet-balances 40.0.0", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-staking", - "sp-std", - "sp-tracing", + "sp-core 35.0.0", + "sp-io 39.0.0", + "sp-runtime 40.0.0", + "sp-staking 37.0.0", + "sp-tracing 17.0.1 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", ] [[package]] @@ -8844,20 +10408,40 @@ version = "34.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "39ee599f2861e55fc6113c01e9b14d6e85fda46bac36a906b5dd5a951fa0455c" dependencies = [ - "frame-benchmarking", - "frame-election-provider-support", - "frame-support", - "frame-system", - "pallet-bags-list", - "pallet-delegated-staking", - "pallet-nomination-pools", - "pallet-staking", + "frame-benchmarking 36.0.0", + "frame-election-provider-support 36.0.0", + "frame-support 36.0.1", + "frame-system 36.1.0", + "pallet-bags-list 35.0.0", + "pallet-delegated-staking 3.0.0", + "pallet-nomination-pools 33.0.0", + "pallet-staking 36.0.0", + "parity-scale-codec", + "scale-info", + "sp-runtime 38.0.1", + "sp-runtime-interface 28.0.0", + "sp-staking 33.0.0", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "pallet-nomination-pools-benchmarking" +version = "37.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "frame-benchmarking 39.0.0", + "frame-election-provider-support 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", + "pallet-bags-list 38.0.0", + "pallet-delegated-staking 6.0.0", + "pallet-nomination-pools 37.0.0", + "pallet-staking 39.0.0", "parity-scale-codec", "scale-info", - "sp-runtime", - "sp-runtime-interface", - "sp-staking", - "sp-std", + "sp-runtime 40.0.0", + "sp-runtime-interface 29.0.0", + "sp-staking 37.0.0", ] [[package]] @@ -8866,10 +10450,20 @@ version = "31.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2906899d8f029780f0d9da77b90ae86f42bcfda5ac402c931406cd84852012ed" dependencies = [ - "pallet-nomination-pools", + "pallet-nomination-pools 33.0.0", + "parity-scale-codec", + "sp-api 33.0.0", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "pallet-nomination-pools-runtime-api" +version = "35.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "pallet-nomination-pools 37.0.0", "parity-scale-codec", - "sp-api", - "sp-std", + "sp-api 35.0.0", ] [[package]] @@ -8878,16 +10472,32 @@ version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4859e7bb2af46d2e0f137c2f777adf39f0e5d4d188226158d599f1cfcfb76b9e" dependencies = [ - "frame-support", - "frame-system", + "frame-support 36.0.1", + "frame-system 36.1.0", + "log", + "pallet-balances 37.0.0", + "parity-scale-codec", + "scale-info", + "serde", + "sp-runtime 38.0.1", + "sp-staking 33.0.0", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "pallet-offences" +version = "38.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "frame-support 39.0.0", + "frame-system 39.0.0", "log", - "pallet-balances", + "pallet-balances 40.0.0", "parity-scale-codec", "scale-info", "serde", - "sp-runtime", - "sp-staking", - "sp-std", + "sp-runtime 40.0.0", + "sp-staking 37.0.0", ] [[package]] @@ -8896,23 +10506,46 @@ version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4351b0edafcdf3240f0471c638b39d2c981bde9d17c0172536a0aa3b7c3097ef" dependencies = [ - "frame-benchmarking", - "frame-election-provider-support", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-election-provider-support 36.0.0", + "frame-support 36.0.1", + "frame-system 36.1.0", + "log", + "pallet-babe 36.0.0", + "pallet-balances 37.0.0", + "pallet-grandpa 36.0.0", + "pallet-im-online 35.0.0", + "pallet-offences 35.0.0", + "pallet-session 36.0.0", + "pallet-staking 36.0.0", + "parity-scale-codec", + "scale-info", + "sp-runtime 38.0.1", + "sp-staking 33.0.0", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "pallet-offences-benchmarking" +version = "39.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "frame-benchmarking 39.0.0", + "frame-election-provider-support 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", "log", - "pallet-babe", - "pallet-balances", - "pallet-grandpa", - "pallet-im-online", - "pallet-offences", - "pallet-session", - "pallet-staking", + "pallet-babe 39.0.0", + "pallet-balances 40.0.0", + "pallet-grandpa 39.0.0", + "pallet-im-online 38.0.0", + "pallet-offences 38.0.0", + "pallet-session 39.0.0", + "pallet-staking 39.0.0", "parity-scale-codec", "scale-info", - "sp-runtime", - "sp-staking", - "sp-std", + "sp-runtime 40.0.0", + "sp-staking 37.0.0", ] [[package]] @@ -8922,16 +10555,33 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "58d9a81a93202105a660e6aa3d3f81638bdd109ca0497f3e528529cd52d034db" dependencies = [ "docify", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.1", + "frame-system 36.1.0", + "parity-scale-codec", + "paste", + "scale-info", + "serde", + "sp-core 34.0.0", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "pallet-parameters" +version = "0.10.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "docify", + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", "parity-scale-codec", "paste", "scale-info", "serde", - "sp-core", - "sp-runtime", - "sp-std", + "sp-core 35.0.0", + "sp-runtime 40.0.0", ] [[package]] @@ -8940,16 +10590,32 @@ version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "68ac726abc5b1bcd6c8f783514b8e1a48be32c7d15e0b263e4bc28cc1e4e7763" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.1", + "frame-system 36.1.0", + "log", + "parity-scale-codec", + "scale-info", + "sp-core 34.0.0", + "sp-io 37.0.0", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "pallet-preimage" +version = "39.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", "log", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 35.0.0", + "sp-io 39.0.0", + "sp-runtime 40.0.0", ] [[package]] @@ -8958,50 +10624,56 @@ version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b4e12680e176607815a78a0cd10a52af50790292cb950404f30a885e2a7229e9" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.1", + "frame-system 36.1.0", + "parity-scale-codec", + "scale-info", + "sp-io 37.0.0", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "pallet-proxy" +version = "39.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ "parity-scale-codec", + "polkadot-sdk-frame", "scale-info", - "sp-io", - "sp-runtime", - "sp-std", ] [[package]] name = "pallet-ranked-collective" -version = "36.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "862ea8d386ed5737e859470c43cbfd9652c81398cad29e03ae7846c21aaee4c6" +version = "39.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", "impl-trait-for-tuples", "log", "parity-scale-codec", "scale-info", - "sp-arithmetic", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-arithmetic 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-core 35.0.0", + "sp-io 39.0.0", + "sp-runtime 40.0.0", ] [[package]] name = "pallet-recovery" -version = "36.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b24d4131bc79fee0b07550136ca6329faa84c1c3e76ae62a74aef6b1da0b95b4" +version = "39.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", "parity-scale-codec", "scale-info", - "sp-io", - "sp-runtime", - "sp-std", + "sp-io 39.0.0", + "sp-runtime 40.0.0", ] [[package]] @@ -9011,136 +10683,304 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b2c906a9c4573eb58de4134ec7180bf12c6769df2b9859dae8adcbc5fce78add" dependencies = [ "assert_matches", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.1", + "frame-system 36.1.0", "log", "parity-scale-codec", "scale-info", "serde", - "sp-arithmetic", - "sp-io", - "sp-runtime", - "sp-std", + "sp-arithmetic 26.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-io 37.0.0", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] -name = "pallet-root-testing" -version = "12.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fa61642f7bdc1a393798aa1ff67bb8c29f8f184b6fce165e1079010d446a1e29" +name = "pallet-referenda" +version = "39.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ - "frame-support", - "frame-system", + "assert_matches", + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", + "log", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "serde", + "sp-arithmetic 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-io 39.0.0", + "sp-runtime 40.0.0", ] [[package]] -name = "pallet-scheduler" -version = "37.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b170d6aa191197d3f50b1193925546972ffc394376ead4d2739eb40909b73c85" +name = "pallet-revive" +version = "0.3.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ - "docify", - "frame-benchmarking", - "frame-support", - "frame-system", + "bitflags 1.3.2", + "derive_more 0.99.18", + "environmental", + "ethereum-types 0.15.1", + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", + "hex", + "impl-trait-for-tuples", + "jsonrpsee 0.24.7", "log", + "pallet-balances 40.0.0", + "pallet-revive-fixtures", + "pallet-revive-proc-macro", + "pallet-revive-uapi", + "pallet-transaction-payment 39.0.0", "parity-scale-codec", + "paste", + "polkavm 0.13.0", + "rlp 0.6.1", "scale-info", - "sp-io", - "sp-runtime", - "sp-std", - "sp-weights", + "serde", + "sp-api 35.0.0", + "sp-arithmetic 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-core 35.0.0", + "sp-io 39.0.0", + "sp-runtime 40.0.0", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-weights 31.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "staging-xcm 15.0.1", + "staging-xcm-builder 18.0.0", + "subxt-signer", ] [[package]] -name = "pallet-session" -version = "36.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7c92b24c911c2cfa5351616edc7f2f93427ea6f4f95efdb13f0f5d51997939c3" +name = "pallet-revive-fixtures" +version = "0.3.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ - "frame-support", - "frame-system", - "impl-trait-for-tuples", + "anyhow", + "frame-system 39.0.0", "log", - "pallet-timestamp", - "parity-scale-codec", - "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-session", - "sp-staking", - "sp-state-machine", - "sp-std", - "sp-trie", + "parity-wasm", + "polkavm-linker 0.14.0", + "sp-core 35.0.0", + "sp-io 39.0.0", + "sp-runtime 40.0.0", + "tempfile", + "toml 0.8.19", ] [[package]] -name = "pallet-session-benchmarking" -version = "36.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bd02aaf5f10734670346677042ece94fae20dcd5436eafeb9b429d8d6d5b6385" +name = "pallet-revive-proc-macro" +version = "0.1.2" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.90", +] + +[[package]] +name = "pallet-revive-uapi" +version = "0.2.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", - "pallet-session", - "pallet-staking", + "bitflags 1.3.2", "parity-scale-codec", - "rand", - "sp-runtime", - "sp-session", - "sp-std", + "paste", + "polkavm-derive 0.14.0", + "scale-info", ] [[package]] -name = "pallet-society" -version = "36.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "66b60b1d726532317f9965bab4995aa49b73f9b7ca3b9a0f75d158bd84686c5f" +name = "pallet-root-testing" +version = "15.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", - "log", + "frame-support 39.0.0", + "frame-system 39.0.0", "parity-scale-codec", - "rand_chacha", "scale-info", - "sp-arithmetic", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 35.0.0", + "sp-io 39.0.0", + "sp-runtime 40.0.0", ] [[package]] -name = "pallet-staking" -version = "36.0.0" +name = "pallet-scheduler" +version = "37.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fbebdb060417654f215fc6f03675e5f44cfc83837d9e523e1b8fd9a4a2e1bdc2" +checksum = "b170d6aa191197d3f50b1193925546972ffc394376ead4d2739eb40909b73c85" dependencies = [ - "frame-benchmarking", - "frame-election-provider-support", - "frame-support", - "frame-system", + "docify", + "frame-benchmarking 36.0.0", + "frame-support 36.0.1", + "frame-system 36.1.0", "log", - "pallet-authorship", - "pallet-session", "parity-scale-codec", - "rand_chacha", "scale-info", - "serde", - "sp-application-crypto", - "sp-io", - "sp-runtime", - "sp-staking", - "sp-std", + "sp-io 37.0.0", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-weights 31.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "pallet-scheduler" +version = "40.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "docify", + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", + "log", + "parity-scale-codec", + "scale-info", + "sp-io 39.0.0", + "sp-runtime 40.0.0", + "sp-weights 31.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", +] + +[[package]] +name = "pallet-session" +version = "36.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7c92b24c911c2cfa5351616edc7f2f93427ea6f4f95efdb13f0f5d51997939c3" +dependencies = [ + "frame-support 36.0.1", + "frame-system 36.1.0", + "impl-trait-for-tuples", + "log", + "pallet-timestamp 35.0.0", + "parity-scale-codec", + "scale-info", + "sp-core 34.0.0", + "sp-io 37.0.0", + "sp-runtime 38.0.1", + "sp-session 34.0.0", + "sp-staking 33.0.0", + "sp-state-machine 0.42.0", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-trie 36.0.0", +] + +[[package]] +name = "pallet-session" +version = "39.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "frame-support 39.0.0", + "frame-system 39.0.0", + "impl-trait-for-tuples", + "log", + "pallet-timestamp 38.0.0", + "parity-scale-codec", + "scale-info", + "sp-core 35.0.0", + "sp-io 39.0.0", + "sp-runtime 40.0.0", + "sp-session 37.0.0", + "sp-staking 37.0.0", + "sp-state-machine 0.44.0", + "sp-trie 38.0.0", +] + +[[package]] +name = "pallet-session-benchmarking" +version = "36.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bd02aaf5f10734670346677042ece94fae20dcd5436eafeb9b429d8d6d5b6385" +dependencies = [ + "frame-benchmarking 36.0.0", + "frame-support 36.0.1", + "frame-system 36.1.0", + "pallet-session 36.0.0", + "pallet-staking 36.0.0", + "parity-scale-codec", + "rand", + "sp-runtime 38.0.1", + "sp-session 34.0.0", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "pallet-session-benchmarking" +version = "39.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", + "pallet-session 39.0.0", + "pallet-staking 39.0.0", + "parity-scale-codec", + "rand", + "sp-runtime 40.0.0", + "sp-session 37.0.0", +] + +[[package]] +name = "pallet-society" +version = "39.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", + "log", + "parity-scale-codec", + "rand_chacha", + "scale-info", + "sp-arithmetic 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-io 39.0.0", + "sp-runtime 40.0.0", +] + +[[package]] +name = "pallet-staking" +version = "36.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fbebdb060417654f215fc6f03675e5f44cfc83837d9e523e1b8fd9a4a2e1bdc2" +dependencies = [ + "frame-benchmarking 36.0.0", + "frame-election-provider-support 36.0.0", + "frame-support 36.0.1", + "frame-system 36.1.0", + "log", + "pallet-authorship 36.0.0", + "pallet-session 36.0.0", + "parity-scale-codec", + "rand_chacha", + "scale-info", + "serde", + "sp-application-crypto 37.0.0", + "sp-io 37.0.0", + "sp-runtime 38.0.1", + "sp-staking 33.0.0", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "pallet-staking" +version = "39.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "frame-benchmarking 39.0.0", + "frame-election-provider-support 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", + "log", + "pallet-authorship 39.0.0", + "pallet-session 39.0.0", + "parity-scale-codec", + "rand_chacha", + "scale-info", + "serde", + "sp-application-crypto 39.0.0", + "sp-io 39.0.0", + "sp-runtime 40.0.0", + "sp-staking 37.0.0", ] [[package]] @@ -9149,10 +10989,10 @@ version = "12.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "db5e6b1d8ee9d3f6894c5abd8c3e17737ed738c9854f87bfd16239741b7f4d5d" dependencies = [ - "proc-macro-crate 3.1.0", + "proc-macro-crate 3.2.0", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -9162,7 +11002,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "988a7ebeacc84d4bdb0b12409681e956ffe35438447d8f8bc78db547cffb6ebc" dependencies = [ "log", - "sp-arithmetic", + "sp-arithmetic 26.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "pallet-staking-reward-fn" +version = "22.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "log", + "sp-arithmetic 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", ] [[package]] @@ -9172,8 +11021,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3350ef1795b832f4adc464e88fb6d44827bd3f98701b0b0bbee495267b444a92" dependencies = [ "parity-scale-codec", - "sp-api", - "sp-staking", + "sp-api 33.0.0", + "sp-staking 33.0.0", +] + +[[package]] +name = "pallet-staking-runtime-api" +version = "25.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "parity-scale-codec", + "sp-api 35.0.0", + "sp-staking 37.0.0", ] [[package]] @@ -9182,16 +11041,32 @@ version = "37.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e07f8626f4ff62ac79d6ad0bd01fab7645897ce35706ddb95fa084e75be9306d" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.1", + "frame-system 36.1.0", + "log", + "parity-scale-codec", + "scale-info", + "sp-core 34.0.0", + "sp-io 37.0.0", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "pallet-state-trie-migration" +version = "42.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", "log", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 35.0.0", + "sp-io 39.0.0", + "sp-runtime 40.0.0", ] [[package]] @@ -9201,14 +11076,29 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1bd2a8797c1bb3d3897b4f87a7716111da5eeb8561345277b6e6d70349ec8b35" dependencies = [ "docify", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.1", + "frame-system 36.1.0", + "parity-scale-codec", + "scale-info", + "sp-io 37.0.0", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "pallet-sudo" +version = "39.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "docify", + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", "parity-scale-codec", "scale-info", - "sp-io", - "sp-runtime", - "sp-std", + "sp-io 39.0.0", + "sp-runtime 40.0.0", ] [[package]] @@ -9218,38 +11108,55 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ae789d344be857679b0b98b28a67c747119724847f81d704d3fd03ee13fb6841" dependencies = [ "docify", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.1", + "frame-system 36.1.0", + "log", + "parity-scale-codec", + "scale-info", + "sp-inherents 33.0.0", + "sp-io 37.0.0", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-storage 21.0.0", + "sp-timestamp 33.0.0", +] + +[[package]] +name = "pallet-timestamp" +version = "38.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "docify", + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", "log", "parity-scale-codec", "scale-info", - "sp-inherents", - "sp-io", - "sp-runtime", - "sp-std", - "sp-storage", - "sp-timestamp", + "sp-inherents 35.0.0", + "sp-io 39.0.0", + "sp-runtime 40.0.0", + "sp-storage 22.0.0", + "sp-timestamp 35.0.0", ] [[package]] name = "pallet-tips" -version = "35.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f7dfec7872ee9e071209ae860094569745e8bd47564bacdba739256ee52cf78c" +version = "38.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", "log", - "pallet-treasury", + "pallet-treasury 38.0.0", "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 35.0.0", + "sp-io 39.0.0", + "sp-runtime 40.0.0", ] [[package]] @@ -9258,32 +11165,47 @@ version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "74fb6114223c8d967c3c2f21cbc845e8ea604ff7e21a8e59d119d5a9257ba886" dependencies = [ - "frame-support", - "frame-system", + "frame-support 36.0.1", + "frame-system 36.1.0", + "parity-scale-codec", + "scale-info", + "serde", + "sp-core 34.0.0", + "sp-io 37.0.0", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "pallet-transaction-payment" +version = "39.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 35.0.0", + "sp-io 39.0.0", + "sp-runtime 40.0.0", ] [[package]] name = "pallet-transaction-payment-rpc" -version = "38.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a82898085607c7b00ef20fdce7c621790bf2b644c134918a172fe0a8f7f08e6c" +version = "42.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ - "jsonrpsee", - "pallet-transaction-payment-rpc-runtime-api", + "jsonrpsee 0.24.7", + "pallet-transaction-payment-rpc-runtime-api 39.0.0", "parity-scale-codec", - "sp-api", + "sp-api 35.0.0", "sp-blockchain", - "sp-core", + "sp-core 35.0.0", "sp-rpc", - "sp-runtime", - "sp-weights", + "sp-runtime 40.0.0", + "sp-weights 31.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", ] [[package]] @@ -9292,11 +11214,23 @@ version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f4bad1700ad7eb5ab254189e1df894d1d16b3626a3c4b9c45259ec4d9efc262c" dependencies = [ - "pallet-transaction-payment", + "pallet-transaction-payment 36.0.0", + "parity-scale-codec", + "sp-api 33.0.0", + "sp-runtime 38.0.1", + "sp-weights 31.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "pallet-transaction-payment-rpc-runtime-api" +version = "39.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "pallet-transaction-payment 39.0.0", "parity-scale-codec", - "sp-api", - "sp-runtime", - "sp-weights", + "sp-api 35.0.0", + "sp-runtime 40.0.0", + "sp-weights 31.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", ] [[package]] @@ -9306,17 +11240,36 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9c502615bb4fdd02856a131cb2a612ad40c26435ec938f65f11cae4ff230812b" dependencies = [ "docify", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.1", + "frame-system 36.1.0", + "impl-trait-for-tuples", + "pallet-balances 37.0.0", + "parity-scale-codec", + "scale-info", + "serde", + "sp-core 34.0.0", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "pallet-treasury" +version = "38.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "docify", + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", "impl-trait-for-tuples", - "pallet-balances", + "log", + "pallet-balances 40.0.0", "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-runtime", - "sp-std", + "sp-core 35.0.0", + "sp-runtime 40.0.0", ] [[package]] @@ -9325,14 +11278,28 @@ version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4a59e8599a8c19908e934645f845b5cb546cef1f08745319db7e5b9c24f9e0e4" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.1", + "frame-system 36.1.0", + "log", + "parity-scale-codec", + "scale-info", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "pallet-uniques" +version = "39.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", "log", "parity-scale-codec", "scale-info", - "sp-runtime", - "sp-std", + "sp-runtime 40.0.0", ] [[package]] @@ -9341,15 +11308,30 @@ version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3238fe6ad00da6a137be115904c39cab97eb5c7f03da0bb1a20de1bef03f0c71" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.1", + "frame-system 36.1.0", + "parity-scale-codec", + "scale-info", + "sp-core 34.0.0", + "sp-io 37.0.0", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "pallet-utility" +version = "39.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 35.0.0", + "sp-io 39.0.0", + "sp-runtime 40.0.0", ] [[package]] @@ -9358,14 +11340,28 @@ version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "78f7f0f4fe5e1d851e85d81e5e73b6f929f0c35af786ce8be9c9e3363717c136" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.1", + "frame-system 36.1.0", + "log", + "parity-scale-codec", + "scale-info", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "pallet-vesting" +version = "39.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", "log", "parity-scale-codec", "scale-info", - "sp-runtime", - "sp-std", + "sp-runtime 40.0.0", ] [[package]] @@ -9374,14 +11370,28 @@ version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3e4f27640279229eb73fde0cb06e98b799305e6b0bc724f4dfbef2001ab4ad00" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.1", + "frame-system 36.1.0", + "parity-scale-codec", + "scale-info", + "sp-api 33.0.0", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "pallet-whitelist" +version = "38.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", "parity-scale-codec", "scale-info", - "sp-api", - "sp-runtime", - "sp-std", + "sp-api 35.0.0", + "sp-runtime 40.0.0", ] [[package]] @@ -9391,22 +11401,45 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fe7409458b7fedc5c7d46459da154ccc2dc22a843ce08e8ab6c1743ef5cf972c" dependencies = [ "bounded-collections", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.1", + "frame-system 36.1.0", "log", - "pallet-balances", + "pallet-balances 37.0.0", + "parity-scale-codec", + "scale-info", + "serde", + "sp-core 34.0.0", + "sp-io 37.0.0", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "staging-xcm 14.0.3", + "staging-xcm-builder 15.0.0", + "staging-xcm-executor 15.0.0", + "xcm-runtime-apis 0.2.0", +] + +[[package]] +name = "pallet-xcm" +version = "18.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "bounded-collections", + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", + "pallet-balances 40.0.0", "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", - "staging-xcm 14.1.0", - "staging-xcm-builder", - "staging-xcm-executor", - "xcm-runtime-apis", + "sp-core 35.0.0", + "sp-io 39.0.0", + "sp-runtime 40.0.0", + "staging-xcm 15.0.1", + "staging-xcm-builder 18.0.0", + "staging-xcm-executor 18.0.0", + "tracing", + "xcm-runtime-apis 0.5.0", ] [[package]] @@ -9415,18 +11448,58 @@ version = "15.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2f177a171203cc0bec3cff1bdd5d3b926abfbd0ecf347e044b147194e664f717" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.1", + "frame-system 36.1.0", + "log", + "parity-scale-codec", + "scale-info", + "sp-io 37.0.0", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "staging-xcm 14.0.3", + "staging-xcm-builder 15.0.0", + "staging-xcm-executor 15.0.0", +] + +[[package]] +name = "pallet-xcm-benchmarks" +version = "18.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", + "log", + "parity-scale-codec", + "scale-info", + "sp-io 39.0.0", + "sp-runtime 40.0.0", + "staging-xcm 15.0.1", + "staging-xcm-builder 18.0.0", + "staging-xcm-executor 18.0.0", +] + +[[package]] +name = "pallet-xcm-bridge-hub" +version = "0.14.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "bp-messages 0.19.0", + "bp-runtime 0.19.0", + "bp-xcm-bridge-hub", + "frame-support 39.0.0", + "frame-system 39.0.0", "log", + "pallet-bridge-messages", "parity-scale-codec", "scale-info", - "sp-io", - "sp-runtime", - "sp-std", - "staging-xcm 14.1.0", - "staging-xcm-builder", - "staging-xcm-executor", + "sp-core 35.0.0", + "sp-runtime 40.0.0", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "staging-xcm 15.0.1", + "staging-xcm-builder 18.0.0", + "staging-xcm-executor 18.0.0", ] [[package]] @@ -9435,18 +11508,37 @@ version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f48bd38d4061a51f263f4c08021e66100e16cbda9978fba163d2544637b31dab" dependencies = [ - "bp-xcm-bridge-hub-router", - "frame-benchmarking", - "frame-support", - "frame-system", + "bp-xcm-bridge-hub-router 0.13.0", + "frame-benchmarking 36.0.0", + "frame-support 36.0.1", + "frame-system 36.1.0", + "log", + "parity-scale-codec", + "scale-info", + "sp-core 34.0.0", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "staging-xcm 14.0.3", + "staging-xcm-builder 15.0.0", +] + +[[package]] +name = "pallet-xcm-bridge-hub-router" +version = "0.16.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "bp-xcm-bridge-hub-router 0.15.0", + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", "log", "parity-scale-codec", "scale-info", - "sp-core", - "sp-runtime", - "sp-std", - "staging-xcm 14.1.0", - "staging-xcm-builder", + "sp-core 35.0.0", + "sp-runtime 40.0.0", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "staging-xcm 15.0.1", + "staging-xcm-builder 18.0.0", ] [[package]] @@ -9455,62 +11547,90 @@ version = "15.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9319e656eebdf161666e54a4d8e24f73137f702f01600247f7be650bc4d46167" dependencies = [ - "cumulus-primitives-core", - "cumulus-primitives-utility", - "frame-support", - "frame-system", + "cumulus-primitives-core 0.14.0", + "cumulus-primitives-utility 0.15.0", + "frame-support 36.0.1", + "frame-system 36.1.0", "log", - "pallet-asset-tx-payment", - "pallet-assets", - "pallet-authorship", - "pallet-balances", - "pallet-collator-selection", - "pallet-message-queue", - "pallet-xcm", - "parity-scale-codec", - "polkadot-primitives", + "pallet-asset-tx-payment 36.0.0", + "pallet-assets 37.0.0", + "pallet-authorship 36.0.0", + "pallet-balances 37.0.0", + "pallet-collator-selection 17.0.0", + "pallet-message-queue 39.0.2", + "pallet-xcm 15.0.0", + "parity-scale-codec", + "polkadot-primitives 14.0.0", + "scale-info", + "sp-consensus-aura 0.39.0", + "sp-core 34.0.0", + "sp-io 37.0.0", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "staging-parachain-info 0.15.0", + "staging-xcm 14.0.3", + "staging-xcm-executor 15.0.0", + "substrate-wasm-builder 23.0.0", +] + +[[package]] +name = "parachains-common" +version = "19.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "cumulus-primitives-core 0.17.0", + "cumulus-primitives-utility 0.18.0", + "frame-support 39.0.0", + "frame-system 39.0.0", + "log", + "pallet-asset-tx-payment 39.0.0", + "pallet-assets 41.0.0", + "pallet-authorship 39.0.0", + "pallet-balances 40.0.0", + "pallet-collator-selection 20.0.0", + "pallet-message-queue 42.0.0", + "pallet-xcm 18.0.0", + "parity-scale-codec", + "polkadot-primitives 17.0.0", "scale-info", - "sp-consensus-aura", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", - "staging-parachain-info", - "staging-xcm 14.1.0", - "staging-xcm-executor", - "substrate-wasm-builder", + "sp-consensus-aura 0.41.0", + "sp-core 35.0.0", + "sp-io 39.0.0", + "sp-runtime 40.0.0", + "staging-parachain-info 0.18.0", + "staging-xcm 15.0.1", + "staging-xcm-executor 18.0.0", + "substrate-wasm-builder 25.0.0", ] [[package]] name = "parachains-runtimes-test-utils" -version = "15.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c778447d2e71a418b083c0458579d0f8d13872f43c63142d9e5157edea000bdd" +version = "20.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ - "cumulus-pallet-parachain-system", - "cumulus-pallet-xcmp-queue", - "cumulus-primitives-core", - "cumulus-primitives-parachain-inherent", + "cumulus-pallet-parachain-system 0.18.0", + "cumulus-pallet-xcmp-queue 0.18.0", + "cumulus-primitives-core 0.17.0", + "cumulus-primitives-parachain-inherent 0.17.0", "cumulus-test-relay-sproof-builder", - "frame-support", - "frame-system", - "pallet-balances", - "pallet-collator-selection", - "pallet-session", - "pallet-timestamp", - "pallet-xcm", - "parity-scale-codec", - "polkadot-parachain-primitives", - "sp-consensus-aura", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", - "sp-tracing", - "staging-parachain-info", - "staging-xcm 14.1.0", - "staging-xcm-executor", - "substrate-wasm-builder", + "frame-support 39.0.0", + "frame-system 39.0.0", + "pallet-balances 40.0.0", + "pallet-collator-selection 20.0.0", + "pallet-session 39.0.0", + "pallet-timestamp 38.0.0", + "pallet-xcm 18.0.0", + "parity-scale-codec", + "polkadot-parachain-primitives 15.0.0", + "sp-consensus-aura 0.41.0", + "sp-core 35.0.0", + "sp-io 39.0.0", + "sp-runtime 40.0.0", + "sp-tracing 17.0.1 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "staging-parachain-info 0.18.0", + "staging-xcm 15.0.1", + "staging-xcm-executor 18.0.0", + "substrate-wasm-builder 25.0.0", ] [[package]] @@ -9519,7 +11639,7 @@ version = "2.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4e69bf016dc406eff7d53a7d3f7cf1c2e72c82b9088aac1118591e36dd2cd3e9" dependencies = [ - "bitcoin_hashes 0.13.0", + "bitcoin_hashes", "rand", "rand_core", "serde", @@ -9548,7 +11668,7 @@ dependencies = [ "memmap2 0.5.10", "parking_lot 0.12.3", "rand", - "siphasher", + "siphasher 0.3.11", "snap", "winapi", ] @@ -9559,7 +11679,7 @@ version = "3.6.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "306800abfa29c7f16596b5970a588435e3d5b3149683d00c12b699cc19f895ee" dependencies = [ - "arrayvec 0.7.4", + "arrayvec 0.7.6", "bitvec", "byte-slice-cast", "bytes", @@ -9574,7 +11694,7 @@ version = "3.6.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d830939c76d294956402033aee57a6da7b438f2294eb94864c37b0569053a42c" dependencies = [ - "proc-macro-crate 3.1.0", + "proc-macro-crate 3.2.0", "proc-macro2", "quote", "syn 1.0.109", @@ -9587,13 +11707,13 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0d32c34f4f5ca7f9196001c0aba5a1f9a5a12382c8944b8b0f90233282d1e8f8" dependencies = [ "cfg-if", - "ethereum-types", + "ethereum-types 0.14.1", "hashbrown 0.12.3", "impl-trait-for-tuples", "lru 0.8.1", "parity-util-mem-derive", "parking_lot 0.12.3", - "primitive-types", + "primitive-types 0.12.2", "smallvec", "winapi", ] @@ -9617,9 +11737,9 @@ checksum = "e1ad0aff30c1da14b1254fcb2af73e1fa9a28670e584a626f53a369d0e157304" [[package]] name = "parking" -version = "2.2.0" +version = "2.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb813b8af86854136c6922af0598d719255ecb2179515e6e7730d468f05c9cae" +checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba" [[package]] name = "parking_lot" @@ -9664,7 +11784,7 @@ checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8" dependencies = [ "cfg-if", "libc", - "redox_syscall 0.5.2", + "redox_syscall 0.5.8", "smallvec", "windows-targets 0.52.6", ] @@ -9677,119 +11797,118 @@ checksum = "7924d1d0ad836f665c9065e26d016c673ece3993f30d340068b16f282afc1156" [[package]] name = "paseo-runtime" -version = "1.3.3" -source = "git+https://github.com/paseo-network/runtimes/?tag=v1.3.3#871469acf97f0f233d0d50ebf80b414305a5c055" -dependencies = [ - "binary-merkle-tree", - "frame-benchmarking", - "frame-election-provider-support", - "frame-executive", - "frame-metadata-hash-extension", - "frame-support", - "frame-system", - "frame-system-benchmarking", - "frame-system-rpc-runtime-api", - "frame-try-runtime", - "hex-literal 0.4.1", - "log", - "pallet-asset-rate", - "pallet-authority-discovery", - "pallet-authorship", - "pallet-babe", - "pallet-bags-list", - "pallet-balances", - "pallet-beefy", - "pallet-beefy-mmr", - "pallet-bounties", - "pallet-broker", - "pallet-child-bounties", - "pallet-conviction-voting", - "pallet-election-provider-multi-phase", - "pallet-election-provider-support-benchmarking", - "pallet-fast-unstake", - "pallet-grandpa", - "pallet-im-online", - "pallet-indices", - "pallet-message-queue", - "pallet-mmr", - "pallet-multisig", - "pallet-nomination-pools", - "pallet-nomination-pools-benchmarking", - "pallet-nomination-pools-runtime-api", - "pallet-offences", - "pallet-offences-benchmarking", - "pallet-parameters", - "pallet-preimage", - "pallet-proxy", - "pallet-referenda", - "pallet-scheduler", - "pallet-session", - "pallet-session-benchmarking", - "pallet-staking", +version = "1.3.4" +source = "git+https://github.com/paseo-network/runtimes?tag=v1.3.4#313b81aa2b2cb076b4f99c9b2bea040a8bcf709f" +dependencies = [ + "binary-merkle-tree 15.0.1", + "frame-benchmarking 36.0.0", + "frame-election-provider-support 36.0.0", + "frame-executive 36.0.0", + "frame-metadata-hash-extension 0.4.0", + "frame-support 36.0.1", + "frame-system 36.1.0", + "frame-system-benchmarking 36.0.0", + "frame-system-rpc-runtime-api 33.0.0", + "frame-try-runtime 0.42.0", + "hex-literal", + "log", + "pallet-asset-rate 15.0.0", + "pallet-authority-discovery 36.0.0", + "pallet-authorship 36.0.0", + "pallet-babe 36.0.0", + "pallet-bags-list 35.0.0", + "pallet-balances 37.0.0", + "pallet-beefy 36.0.0", + "pallet-beefy-mmr 36.0.0", + "pallet-bounties 35.0.0", + "pallet-broker 0.15.0", + "pallet-child-bounties 35.0.0", + "pallet-conviction-voting 36.0.0", + "pallet-election-provider-multi-phase 35.0.0", + "pallet-election-provider-support-benchmarking 35.0.0", + "pallet-fast-unstake 35.0.0", + "pallet-grandpa 36.0.0", + "pallet-indices 36.0.0", + "pallet-message-queue 39.0.2", + "pallet-mmr 35.0.0", + "pallet-multisig 36.0.0", + "pallet-nomination-pools 33.0.0", + "pallet-nomination-pools-benchmarking 34.0.0", + "pallet-nomination-pools-runtime-api 31.0.0", + "pallet-offences 35.0.0", + "pallet-offences-benchmarking 36.0.0", + "pallet-parameters 0.7.0", + "pallet-preimage 36.0.0", + "pallet-proxy 36.0.0", + "pallet-referenda 36.0.0", + "pallet-scheduler 37.0.0", + "pallet-session 36.0.0", + "pallet-session-benchmarking 36.0.0", + "pallet-staking 36.0.0", "pallet-staking-reward-curve", - "pallet-staking-reward-fn", - "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-vesting", - "pallet-whitelist", - "pallet-xcm", - "pallet-xcm-benchmarks", + "pallet-staking-reward-fn 22.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "pallet-staking-runtime-api 21.0.0", + "pallet-state-trie-migration 37.0.0", + "pallet-sudo 36.0.0", + "pallet-timestamp 35.0.0", + "pallet-transaction-payment 36.0.0", + "pallet-transaction-payment-rpc-runtime-api 36.0.0", + "pallet-treasury 35.0.0", + "pallet-utility 36.0.0", + "pallet-vesting 36.0.0", + "pallet-whitelist 35.0.0", + "pallet-xcm 15.0.0", + "pallet-xcm-benchmarks 15.0.0", "parity-scale-codec", "paseo-runtime-constants", - "polkadot-parachain-primitives", - "polkadot-primitives", - "polkadot-runtime-common", - "polkadot-runtime-parachains", + "polkadot-parachain-primitives 13.0.0", + "polkadot-primitives 14.0.0", + "polkadot-runtime-common 15.0.0", + "polkadot-runtime-parachains 15.0.4", "relay-common", "scale-info", "serde_json", - "sp-api", - "sp-application-crypto", - "sp-arithmetic", - "sp-authority-discovery", - "sp-block-builder", - "sp-consensus-babe", - "sp-consensus-beefy", - "sp-core", - "sp-debug-derive", - "sp-genesis-builder", - "sp-inherents", - "sp-io", - "sp-npos-elections", - "sp-offchain", - "sp-runtime", - "sp-session", - "sp-staking", - "sp-std", - "sp-storage", - "sp-transaction-pool", - "sp-version", - "staging-xcm 14.1.0", - "staging-xcm-builder", - "staging-xcm-executor", - "substrate-wasm-builder", - "xcm-runtime-apis", + "sp-api 33.0.0", + "sp-application-crypto 37.0.0", + "sp-arithmetic 26.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-authority-discovery 33.0.0", + "sp-block-builder 33.0.0", + "sp-consensus-babe 0.39.0", + "sp-consensus-beefy 20.0.0", + "sp-core 34.0.0", + "sp-debug-derive 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-genesis-builder 0.14.0", + "sp-inherents 33.0.0", + "sp-io 37.0.0", + "sp-npos-elections 33.0.0", + "sp-offchain 33.0.0", + "sp-runtime 38.0.1", + "sp-session 34.0.0", + "sp-staking 33.0.0", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-storage 21.0.0", + "sp-transaction-pool 33.0.0", + "sp-version 36.0.0", + "staging-xcm 14.0.3", + "staging-xcm-builder 15.0.0", + "staging-xcm-executor 15.0.0", + "substrate-wasm-builder 23.0.0", + "xcm-runtime-apis 0.2.0", ] [[package]] name = "paseo-runtime-constants" version = "1.0.0" -source = "git+https://github.com/paseo-network/runtimes/?tag=v1.3.3#871469acf97f0f233d0d50ebf80b414305a5c055" +source = "git+https://github.com/paseo-network/runtimes?tag=v1.3.4#313b81aa2b2cb076b4f99c9b2bea040a8bcf709f" dependencies = [ - "frame-support", - "polkadot-primitives", - "polkadot-runtime-common", + "frame-support 36.0.1", + "polkadot-primitives 14.0.0", + "polkadot-runtime-common 15.0.0", "smallvec", - "sp-core", - "sp-runtime", - "sp-weights", - "staging-xcm-builder", + "sp-core 34.0.0", + "sp-runtime 38.0.1", + "sp-weights 31.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "staging-xcm-builder 15.0.0", ] [[package]] @@ -9800,7 +11919,7 @@ checksum = "346f04948ba92c43e8469c1ee6736c7563d71012b17d40745260fe106aac2166" dependencies = [ "base64ct", "rand_core", - "subtle 2.5.0", + "subtle 2.6.1", ] [[package]] @@ -9842,20 +11961,20 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" [[package]] name = "pest" -version = "2.7.10" +version = "2.7.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "560131c633294438da9f7c4b08189194b20946c8274c6b9e38881a7874dc8ee8" +checksum = "8b7cafe60d6cf8e62e1b9b2ea516a089c008945bb5a275416789e7db0bc199dc" dependencies = [ "memchr", - "thiserror", + "thiserror 2.0.8", "ucd-trie", ] [[package]] name = "pest_derive" -version = "2.7.10" +version = "2.7.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26293c9193fbca7b1a3bf9b79dc1e388e927e6cacaa78b4a3ab705a1d3d41459" +checksum = "816518421cfc6887a0d62bf441b6ffb4536fcc926395a69e1a85852d4363f57e" dependencies = [ "pest", "pest_generator", @@ -9863,22 +11982,22 @@ dependencies = [ [[package]] name = "pest_generator" -version = "2.7.10" +version = "2.7.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3ec22af7d3fb470a85dd2ca96b7c577a1eb4ef6f1683a9fe9a8c16e136c04687" +checksum = "7d1396fd3a870fc7838768d171b4616d5c91f6cc25e377b673d714567d99377b" dependencies = [ "pest", "pest_meta", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] name = "pest_meta" -version = "2.7.10" +version = "2.7.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d7a240022f37c361ec1878d646fc5b7d7c4d28d5946e1a80ad5a7a4f4ca0bdcd" +checksum = "e1e58089ea25d717bfd31fb534e4f3afcc2cc569c70de3e239778991ea3b7dea" dependencies = [ "once_cell", "pest", @@ -9892,34 +12011,34 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db" dependencies = [ "fixedbitset", - "indexmap 2.2.6", + "indexmap 2.7.0", ] [[package]] name = "pin-project" -version = "1.1.5" +version = "1.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3" +checksum = "be57f64e946e500c8ee36ef6331845d40a93055567ec57e8fae13efd33759b95" dependencies = [ "pin-project-internal", ] [[package]] name = "pin-project-internal" -version = "1.1.5" +version = "1.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965" +checksum = "3c0f5fad0874fc7abcd4d750e76917eaebbecaa2c20bde22e1dbeeba8beb758c" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] name = "pin-project-lite" -version = "0.2.14" +version = "0.2.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02" +checksum = "915a1e146535de9163f3987b8944ed8cf49a18bb0056bcebcdcece385cece4ff" [[package]] name = "pin-utils" @@ -9929,12 +12048,12 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" [[package]] name = "piper" -version = "0.2.3" +version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ae1d5c74c9876f070d3e8fd503d748c7d974c3e48da8f41350fa5222ef9b4391" +checksum = "96c8c490f422ef9a4efd2cb5b42b76c8613d7e7dfc1caf667b8a3350a5acc066" dependencies = [ "atomic-waker", - "fastrand 2.1.0", + "fastrand 2.3.0", "futures-io", ] @@ -9950,36 +12069,33 @@ dependencies = [ [[package]] name = "pkg-config" -version = "0.3.30" +version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec" +checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2" [[package]] name = "polkadot-approval-distribution" -version = "15.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61d39d6552d00ade2d668b8171aa7d6a1f5da4c7ebff402b5a9877b5d1e45b4e" +version = "20.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "bitvec", "futures", "futures-timer", "itertools 0.11.0", - "polkadot-node-jaeger", "polkadot-node-metrics", "polkadot-node-network-protocol", "polkadot-node-primitives", "polkadot-node-subsystem", "polkadot-node-subsystem-util", - "polkadot-primitives", + "polkadot-primitives 17.0.0", "rand", "tracing-gum", ] [[package]] name = "polkadot-availability-bitfield-distribution" -version = "15.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd0a8b5280959524f84b09c27ef0dbceeced6d19537f8fd43d03a08414f8b93d" +version = "20.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "always-assert", "futures", @@ -9987,16 +12103,15 @@ dependencies = [ "polkadot-node-network-protocol", "polkadot-node-subsystem", "polkadot-node-subsystem-util", - "polkadot-primitives", + "polkadot-primitives 17.0.0", "rand", "tracing-gum", ] [[package]] name = "polkadot-availability-distribution" -version = "15.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "adfe520a9c8dbe6c5db06c0b919c53441927babc1c02b9df76718fc4b80c5c4f" +version = "20.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "derive_more 0.99.18", "fatality", @@ -10007,21 +12122,20 @@ dependencies = [ "polkadot-node-primitives", "polkadot-node-subsystem", "polkadot-node-subsystem-util", - "polkadot-primitives", + "polkadot-primitives 17.0.0", "rand", "sc-network", "schnellru", - "sp-core", - "sp-keystore", - "thiserror", + "sp-core 35.0.0", + "sp-keystore 0.41.0", + "thiserror 1.0.69", "tracing-gum", ] [[package]] name = "polkadot-availability-recovery" -version = "15.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "727f02306a3a51eb0b8efca3e1e14c5efa2daf921c9be7c46d9c5d68670a9b51" +version = "20.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "async-trait", "fatality", @@ -10032,11 +12146,11 @@ dependencies = [ "polkadot-node-primitives", "polkadot-node-subsystem", "polkadot-node-subsystem-util", - "polkadot-primitives", + "polkadot-primitives 17.0.0", "rand", "sc-network", "schnellru", - "thiserror", + "thiserror 1.0.69", "tokio", "tracing-gum", ] @@ -10053,9 +12167,8 @@ dependencies = [ [[package]] name = "polkadot-cli" -version = "15.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "141a62da626bba7c4a29b8e5d20a975efa6439095a352ebfc47f068e4dfd82fd" +version = "21.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "cfg-if", "clap", @@ -10071,20 +12184,19 @@ dependencies = [ "sc-storage-monitor", "sc-sysinfo", "sc-tracing", - "sp-core", - "sp-io", - "sp-keyring", - "sp-maybe-compressed-blob", - "sp-runtime", + "sp-core 35.0.0", + "sp-io 39.0.0", + "sp-keyring 40.0.0", + "sp-maybe-compressed-blob 11.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-runtime 40.0.0", "substrate-build-script-utils", - "thiserror", + "thiserror 1.0.69", ] [[package]] name = "polkadot-collator-protocol" -version = "15.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75bd07cc8a0bfabe6464d40072e30bd87f52730fbc26c733f0a8ffa97918c0a8" +version = "20.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "bitvec", "fatality", @@ -10094,11 +12206,12 @@ dependencies = [ "polkadot-node-primitives", "polkadot-node-subsystem", "polkadot-node-subsystem-util", - "polkadot-primitives", - "sp-core", - "sp-keystore", - "sp-runtime", - "thiserror", + "polkadot-primitives 17.0.0", + "schnellru", + "sp-core 35.0.0", + "sp-keystore 0.41.0", + "sp-runtime 40.0.0", + "thiserror 1.0.69", "tokio-util", "tracing-gum", ] @@ -10111,80 +12224,87 @@ checksum = "17c72ee63bcf920f963cd7ac066759b0b649350c8ab3781a85a6aac87b1488f2" dependencies = [ "parity-scale-codec", "scale-info", - "sp-core", - "sp-runtime", - "sp-std", + "sp-core 34.0.0", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "polkadot-core-primitives" +version = "16.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "parity-scale-codec", + "scale-info", + "sp-core 35.0.0", + "sp-runtime 40.0.0", ] [[package]] name = "polkadot-dispute-distribution" -version = "15.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "09c49e68add45aa6c2b85e97f0d09b81f26b1428117bdc9284eaa74a1eb63daf" +version = "20.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "derive_more 0.99.18", "fatality", "futures", "futures-timer", - "indexmap 2.2.6", + "indexmap 2.7.0", "parity-scale-codec", "polkadot-erasure-coding", "polkadot-node-network-protocol", "polkadot-node-primitives", "polkadot-node-subsystem", "polkadot-node-subsystem-util", - "polkadot-primitives", + "polkadot-primitives 17.0.0", "sc-network", "schnellru", - "sp-application-crypto", - "sp-keystore", - "thiserror", + "sp-application-crypto 39.0.0", + "sp-keystore 0.41.0", + "thiserror 1.0.69", "tracing-gum", ] [[package]] name = "polkadot-erasure-coding" -version = "14.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6a39a54a269817e09d602b4e9c527905f9e367ff7c6337b1b3e1e048515f6b59" +version = "17.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "parity-scale-codec", "polkadot-node-primitives", - "polkadot-primitives", + "polkadot-primitives 17.0.0", "reed-solomon-novelpoly", - "sp-core", - "sp-trie", - "thiserror", + "sp-core 35.0.0", + "sp-trie 38.0.0", + "thiserror 1.0.69", ] [[package]] name = "polkadot-gossip-support" -version = "15.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "53b56e8fe08e4ed30af0d296870b12b5a7411695f2b79b3c5842d04b9a347200" +version = "20.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "futures", "futures-timer", "polkadot-node-network-protocol", "polkadot-node-subsystem", "polkadot-node-subsystem-util", - "polkadot-primitives", + "polkadot-primitives 17.0.0", "rand", "rand_chacha", "sc-network", "sc-network-common", - "sp-application-crypto", - "sp-core", - "sp-crypto-hashing", - "sp-keystore", + "sp-application-crypto 39.0.0", + "sp-core 35.0.0", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-keystore 0.41.0", "tracing-gum", ] [[package]] name = "polkadot-network-bridge" -version = "15.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "178b92197936c23ae8a936ec74b83a15a9fe0978c7f3de677db141ba9c524a63" +version = "20.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "always-assert", "async-trait", @@ -10197,18 +12317,17 @@ dependencies = [ "polkadot-node-network-protocol", "polkadot-node-subsystem", "polkadot-overseer", - "polkadot-primitives", + "polkadot-primitives 17.0.0", "sc-network", "sp-consensus", - "thiserror", + "thiserror 1.0.69", "tracing-gum", ] [[package]] name = "polkadot-node-collation-generation" -version = "15.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "869534f66d5a38443acf4b9fec3a4919f59f293e6fdee4177cd7cece1c4a85ef" +version = "20.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "futures", "parity-scale-codec", @@ -10216,19 +12335,20 @@ dependencies = [ "polkadot-node-primitives", "polkadot-node-subsystem", "polkadot-node-subsystem-util", - "polkadot-primitives", - "sp-core", - "sp-maybe-compressed-blob", - "thiserror", + "polkadot-primitives 17.0.0", + "schnellru", + "sp-core 35.0.0", + "sp-maybe-compressed-blob 11.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "thiserror 1.0.69", "tracing-gum", ] [[package]] name = "polkadot-node-core-approval-voting" -version = "15.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ed3629b2d93b5f152bc75437fb68326ebf9267885ff89f2abede9b8a050e9288" +version = "20.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ + "async-trait", "bitvec", "derive_more 0.99.18", "futures", @@ -10237,31 +12357,59 @@ dependencies = [ "kvdb", "merlin", "parity-scale-codec", - "polkadot-node-jaeger", "polkadot-node-primitives", "polkadot-node-subsystem", "polkadot-node-subsystem-util", "polkadot-overseer", - "polkadot-primitives", + "polkadot-primitives 17.0.0", "rand", "rand_chacha", "rand_core", "sc-keystore", "schnellru", "schnorrkel 0.11.4", - "sp-application-crypto", + "sp-application-crypto 39.0.0", + "sp-consensus", + "sp-consensus-slots 0.41.0", + "sp-runtime 40.0.0", + "thiserror 1.0.69", + "tracing-gum", +] + +[[package]] +name = "polkadot-node-core-approval-voting-parallel" +version = "0.3.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "async-trait", + "futures", + "futures-timer", + "itertools 0.11.0", + "polkadot-approval-distribution", + "polkadot-node-core-approval-voting", + "polkadot-node-metrics", + "polkadot-node-network-protocol", + "polkadot-node-primitives", + "polkadot-node-subsystem", + "polkadot-node-subsystem-util", + "polkadot-overseer", + "polkadot-primitives 17.0.0", + "rand", + "rand_chacha", + "rand_core", + "sc-keystore", + "sp-application-crypto 39.0.0", "sp-consensus", - "sp-consensus-slots", - "sp-runtime", - "thiserror", + "sp-consensus-slots 0.41.0", + "sp-runtime 40.0.0", + "thiserror 1.0.69", "tracing-gum", ] [[package]] name = "polkadot-node-core-av-store" -version = "15.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8487c45eedaaf535ccc78bf4f459eae9443c4c9cfcca31dc3838950f3a3426e3" +version = "20.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "bitvec", "futures", @@ -10269,22 +12417,20 @@ dependencies = [ "kvdb", "parity-scale-codec", "polkadot-erasure-coding", - "polkadot-node-jaeger", "polkadot-node-primitives", "polkadot-node-subsystem", "polkadot-node-subsystem-util", "polkadot-overseer", - "polkadot-primitives", + "polkadot-primitives 17.0.0", "sp-consensus", - "thiserror", + "thiserror 1.0.69", "tracing-gum", ] [[package]] name = "polkadot-node-core-backing" -version = "15.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b493dff8562ce2675dbb0e5c8594e145085a4536de435f5061f577bdaba2195e" +version = "20.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "bitvec", "fatality", @@ -10293,35 +12439,34 @@ dependencies = [ "polkadot-node-primitives", "polkadot-node-subsystem", "polkadot-node-subsystem-util", - "polkadot-primitives", + "polkadot-parachain-primitives 15.0.0", + "polkadot-primitives 17.0.0", "polkadot-statement-table", "schnellru", - "sp-keystore", - "thiserror", + "sp-keystore 0.41.0", + "thiserror 1.0.69", "tracing-gum", ] [[package]] name = "polkadot-node-core-bitfield-signing" -version = "15.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5946d61086be5096e8dafd731d0881fa41e12f21a1f3a8b9d7ff6f1294914b98" +version = "20.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "futures", "polkadot-node-subsystem", "polkadot-node-subsystem-util", - "polkadot-primitives", - "sp-keystore", - "thiserror", + "polkadot-primitives 17.0.0", + "sp-keystore 0.41.0", + "thiserror 1.0.69", "tracing-gum", "wasm-timer", ] [[package]] name = "polkadot-node-core-candidate-validation" -version = "15.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "389b6d8da9a7cf825f97ff4da4ef754a1371de0358e896fbec973f4ff1dfe011" +version = "20.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "async-trait", "futures", @@ -10333,17 +12478,17 @@ dependencies = [ "polkadot-node-subsystem", "polkadot-node-subsystem-util", "polkadot-overseer", - "polkadot-parachain-primitives", - "polkadot-primitives", - "sp-maybe-compressed-blob", + "polkadot-parachain-primitives 15.0.0", + "polkadot-primitives 17.0.0", + "sp-application-crypto 39.0.0", + "sp-keystore 0.41.0", "tracing-gum", ] [[package]] name = "polkadot-node-core-chain-api" -version = "15.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "29086798f24839c9dc1c8b080ffc68bbfe2a5fdc5f29de557b9d224a45011094" +version = "20.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "futures", "polkadot-node-metrics", @@ -10356,9 +12501,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-selection" -version = "15.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "79c8bcae78a4562bc8b3b786e08cb1b3c96c29554da7d57b6806a6723b1540b0" +version = "20.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "futures", "futures-timer", @@ -10367,16 +12511,15 @@ dependencies = [ "polkadot-node-primitives", "polkadot-node-subsystem", "polkadot-node-subsystem-util", - "polkadot-primitives", - "thiserror", + "polkadot-primitives 17.0.0", + "thiserror 1.0.69", "tracing-gum", ] [[package]] name = "polkadot-node-core-dispute-coordinator" -version = "15.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "459e1da76e61c2f5636123ae7c19097067dcc1d07e0d5e77eae4eb87e5cb999d" +version = "20.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "fatality", "futures", @@ -10385,54 +12528,48 @@ dependencies = [ "polkadot-node-primitives", "polkadot-node-subsystem", "polkadot-node-subsystem-util", - "polkadot-primitives", + "polkadot-primitives 17.0.0", "sc-keystore", "schnellru", - "thiserror", + "thiserror 1.0.69", "tracing-gum", ] [[package]] name = "polkadot-node-core-parachains-inherent" -version = "15.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "18e4d2b44748657a68c8ff2995b0b39609f5186bc4b07040ebb6b389dbf1047b" +version = "20.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "async-trait", "futures", "futures-timer", "polkadot-node-subsystem", "polkadot-overseer", - "polkadot-primitives", + "polkadot-primitives 17.0.0", "sp-blockchain", - "sp-inherents", - "thiserror", + "sp-inherents 35.0.0", + "thiserror 1.0.69", "tracing-gum", ] [[package]] name = "polkadot-node-core-prospective-parachains" -version = "14.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "756205c36293216422775c6fa1be9fc4bdb99fa5cafd86b96e7feae13e669e79" +version = "19.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ - "bitvec", "fatality", "futures", - "parity-scale-codec", - "polkadot-node-primitives", "polkadot-node-subsystem", "polkadot-node-subsystem-util", - "polkadot-primitives", - "thiserror", + "polkadot-primitives 17.0.0", + "thiserror 1.0.69", "tracing-gum", ] [[package]] name = "polkadot-node-core-provisioner" -version = "15.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d6f090dc90bbe0b452a57a3129b53a6129e357ff4607e9db27a54b291d7a747b" +version = "20.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "bitvec", "fatality", @@ -10441,17 +12578,16 @@ dependencies = [ "polkadot-node-primitives", "polkadot-node-subsystem", "polkadot-node-subsystem-util", - "polkadot-primitives", + "polkadot-primitives 17.0.0", "schnellru", - "thiserror", + "thiserror 1.0.69", "tracing-gum", ] [[package]] name = "polkadot-node-core-pvf" -version = "15.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2eea57cb8ce66c2952b87b2476b46d6316ae58342f198abd09c391827ed5402d" +version = "20.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "always-assert", "array-bytes", @@ -10461,44 +12597,43 @@ dependencies = [ "futures-timer", "parity-scale-codec", "pin-project", - "polkadot-core-primitives", + "polkadot-core-primitives 16.0.0", "polkadot-node-core-pvf-common", "polkadot-node-metrics", "polkadot-node-primitives", "polkadot-node-subsystem", - "polkadot-parachain-primitives", - "polkadot-primitives", + "polkadot-parachain-primitives 15.0.0", + "polkadot-primitives 17.0.0", "rand", "slotmap", - "sp-core", + "sp-core 35.0.0", + "strum 0.26.3", "tempfile", - "thiserror", + "thiserror 1.0.69", "tokio", "tracing-gum", ] [[package]] name = "polkadot-node-core-pvf-checker" -version = "15.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6483e6db611d96b14deb298bcf877c44905ba2b45207183d62d0fda9c2fcfec2" +version = "20.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "futures", "polkadot-node-primitives", "polkadot-node-subsystem", "polkadot-node-subsystem-util", "polkadot-overseer", - "polkadot-primitives", - "sp-keystore", - "thiserror", + "polkadot-primitives 17.0.0", + "sp-keystore 0.41.0", + "thiserror 1.0.69", "tracing-gum", ] [[package]] name = "polkadot-node-core-pvf-common" -version = "14.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d0eca24abc74c0c3f02f9986edbda12b3e8b6d294c39b238cf39e94e246aa2b9" +version = "17.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "cpu-time", "futures", @@ -10506,69 +12641,47 @@ dependencies = [ "libc", "nix 0.28.0", "parity-scale-codec", - "polkadot-parachain-primitives", - "polkadot-primitives", + "polkadot-parachain-primitives 15.0.0", + "polkadot-primitives 17.0.0", "sc-executor", "sc-executor-common", "sc-executor-wasmtime", "seccompiler", - "sp-core", - "sp-crypto-hashing", - "sp-externalities", - "sp-io", - "sp-tracing", - "thiserror", + "sp-core 35.0.0", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-externalities 0.30.0", + "sp-io 39.0.0", + "sp-tracing 17.0.1 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "thiserror 1.0.69", "tracing-gum", ] [[package]] name = "polkadot-node-core-runtime-api" -version = "15.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0024b2f4e4a03e4fda348183bbfe5eb51dd6e90b57eabc83596ee4d0079fd0e8" +version = "20.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "futures", "polkadot-node-metrics", "polkadot-node-subsystem", "polkadot-node-subsystem-types", - "polkadot-primitives", + "polkadot-primitives 17.0.0", "schnellru", - "sp-consensus-babe", + "sp-consensus-babe 0.41.0", "tracing-gum", ] -[[package]] -name = "polkadot-node-jaeger" -version = "15.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b671c3407a7e325264af798664ca60c985873c04f54f53cc8f02aa81512fd40a" -dependencies = [ - "lazy_static", - "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", -] - [[package]] name = "polkadot-node-metrics" -version = "15.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bae429c6a40f782a615d7ec863c4eda83c36bee5f6b542bcf86f754342f97b5a" +version = "20.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ - "bs58 0.5.1", + "bs58", "futures", "futures-timer", "log", "parity-scale-codec", - "polkadot-primitives", + "polkadot-primitives 17.0.0", "prioritized-metered-channel", "sc-cli", "sc-service", @@ -10579,9 +12692,8 @@ dependencies = [ [[package]] name = "polkadot-node-network-protocol" -version = "15.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf88dcc39ac21e12a65c255707b89933ddf3dadfb2c422d9f0fd8ff644229e77" +version = "20.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "async-channel 1.9.0", "async-trait", @@ -10591,59 +12703,57 @@ dependencies = [ "futures", "hex", "parity-scale-codec", - "polkadot-node-jaeger", "polkadot-node-primitives", - "polkadot-primitives", + "polkadot-primitives 17.0.0", "rand", "sc-authority-discovery", "sc-network", "sc-network-types", - "sp-runtime", - "strum 0.26.2", - "thiserror", + "sp-runtime 40.0.0", + "strum 0.26.3", + "thiserror 1.0.69", "tracing-gum", ] [[package]] name = "polkadot-node-primitives" -version = "14.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "779833f70a1563ed042d3c6b831a45c5ea0f80caa8f4ede487f7bee3130168fb" +version = "17.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "bitvec", "bounded-vec", "futures", + "futures-timer", "parity-scale-codec", - "polkadot-parachain-primitives", - "polkadot-primitives", + "polkadot-parachain-primitives 15.0.0", + "polkadot-primitives 17.0.0", + "sc-keystore", "schnorrkel 0.11.4", "serde", - "sp-application-crypto", - "sp-consensus-babe", - "sp-core", - "sp-keystore", - "sp-maybe-compressed-blob", - "sp-runtime", - "thiserror", + "sp-application-crypto 39.0.0", + "sp-consensus-babe 0.41.0", + "sp-consensus-slots 0.41.0", + "sp-core 35.0.0", + "sp-keystore 0.41.0", + "sp-maybe-compressed-blob 11.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-runtime 40.0.0", + "thiserror 1.0.69", "zstd 0.12.4", ] [[package]] name = "polkadot-node-subsystem" -version = "15.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6a338e574c2416135b0004ebef226be22db13c44532e2a0f33b67648afb3ca12" +version = "20.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ - "polkadot-node-jaeger", "polkadot-node-subsystem-types", "polkadot-overseer", ] [[package]] name = "polkadot-node-subsystem-types" -version = "15.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b0df39c7eef657b1e28917529f0b0c2aa5f0b013f4f298cfb3620b54449f0c95" +version = "20.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "async-trait", "bitvec", @@ -10651,30 +12761,28 @@ dependencies = [ "fatality", "futures", "orchestra", - "polkadot-node-jaeger", "polkadot-node-network-protocol", "polkadot-node-primitives", - "polkadot-primitives", + "polkadot-primitives 17.0.0", "polkadot-statement-table", "sc-client-api", "sc-network", "sc-network-types", "sc-transaction-pool-api", "smallvec", - "sp-api", - "sp-authority-discovery", + "sp-api 35.0.0", + "sp-authority-discovery 35.0.0", "sp-blockchain", - "sp-consensus-babe", - "sp-runtime", + "sp-consensus-babe 0.41.0", + "sp-runtime 40.0.0", "substrate-prometheus-endpoint", - "thiserror", + "thiserror 1.0.69", ] [[package]] name = "polkadot-node-subsystem-util" -version = "15.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a55a268e05c8c39aeb81b9ad59dfd18a7a711c8f8fa19bf83c75025de25466b7" +version = "20.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "async-trait", "derive_more 0.99.18", @@ -10688,30 +12796,28 @@ dependencies = [ "parking_lot 0.12.3", "pin-project", "polkadot-erasure-coding", - "polkadot-node-jaeger", "polkadot-node-metrics", "polkadot-node-network-protocol", "polkadot-node-primitives", "polkadot-node-subsystem", "polkadot-node-subsystem-types", "polkadot-overseer", - "polkadot-primitives", + "polkadot-primitives 17.0.0", "prioritized-metered-channel", "rand", "sc-client-api", "schnellru", - "sp-application-crypto", - "sp-core", - "sp-keystore", - "thiserror", + "sp-application-crypto 39.0.0", + "sp-core 35.0.0", + "sp-keystore 0.41.0", + "thiserror 1.0.69", "tracing-gum", ] [[package]] name = "polkadot-overseer" -version = "15.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c2456c1b2d176550e91e2e1ddb092390b00e20898e5c4fd9b5978d56ab1bbf24" +version = "20.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "async-trait", "futures", @@ -10722,10 +12828,10 @@ dependencies = [ "polkadot-node-network-protocol", "polkadot-node-primitives", "polkadot-node-subsystem-types", - "polkadot-primitives", + "polkadot-primitives 17.0.0", "sc-client-api", - "sp-api", - "sp-core", + "sp-api 35.0.0", + "sp-core 35.0.0", "tikv-jemalloc-ctl", "tracing-gum", ] @@ -10739,13 +12845,29 @@ dependencies = [ "bounded-collections", "derive_more 0.99.18", "parity-scale-codec", - "polkadot-core-primitives", + "polkadot-core-primitives 14.0.0", + "scale-info", + "serde", + "sp-core 34.0.0", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-weights 31.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "polkadot-parachain-primitives" +version = "15.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "bounded-collections", + "derive_more 0.99.18", + "parity-scale-codec", + "polkadot-core-primitives 16.0.0", "scale-info", "serde", - "sp-core", - "sp-runtime", - "sp-std", - "sp-weights", + "sp-core 35.0.0", + "sp-runtime 40.0.0", + "sp-weights 31.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", ] [[package]] @@ -10755,37 +12877,64 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5a4879609f4340138930c3c7313256941104a3ff6f7ecb2569d15223da9b35b2" dependencies = [ "bitvec", - "hex-literal 0.4.1", + "hex-literal", + "log", + "parity-scale-codec", + "polkadot-core-primitives 14.0.0", + "polkadot-parachain-primitives 13.0.0", + "scale-info", + "serde", + "sp-api 33.0.0", + "sp-application-crypto 37.0.0", + "sp-arithmetic 26.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-authority-discovery 33.0.0", + "sp-consensus-slots 0.39.0", + "sp-core 34.0.0", + "sp-inherents 33.0.0", + "sp-io 37.0.0", + "sp-keystore 0.40.0", + "sp-runtime 38.0.1", + "sp-staking 33.0.0", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "polkadot-primitives" +version = "17.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "bitvec", + "hex-literal", "log", "parity-scale-codec", - "polkadot-core-primitives", - "polkadot-parachain-primitives", + "polkadot-core-primitives 16.0.0", + "polkadot-parachain-primitives 15.0.0", "scale-info", "serde", - "sp-api", - "sp-application-crypto", - "sp-arithmetic", - "sp-authority-discovery", - "sp-consensus-slots", - "sp-core", - "sp-inherents", - "sp-io", - "sp-keystore", - "sp-runtime", - "sp-staking", - "sp-std", + "sp-api 35.0.0", + "sp-application-crypto 39.0.0", + "sp-arithmetic 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-authority-discovery 35.0.0", + "sp-consensus-slots 0.41.0", + "sp-core 35.0.0", + "sp-inherents 35.0.0", + "sp-io 39.0.0", + "sp-keystore 0.41.0", + "sp-runtime 40.0.0", + "sp-staking 37.0.0", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "thiserror 1.0.69", ] [[package]] name = "polkadot-rpc" -version = "15.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0dc80e33ff0a7155588d7b6cadffbbad7e8e489c2275f6f49ce61cb5cdfedca7" +version = "21.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ - "jsonrpsee", + "jsonrpsee 0.24.7", "mmr-rpc", "pallet-transaction-payment-rpc", - "polkadot-primitives", + "polkadot-primitives 17.0.0", "sc-chain-spec", "sc-client-api", "sc-consensus-babe", @@ -10799,15 +12948,15 @@ dependencies = [ "sc-rpc-spec-v2", "sc-sync-state-rpc", "sc-transaction-pool-api", - "sp-api", - "sp-application-crypto", - "sp-block-builder", + "sp-api 35.0.0", + "sp-application-crypto 39.0.0", + "sp-block-builder 35.0.0", "sp-blockchain", "sp-consensus", - "sp-consensus-babe", - "sp-consensus-beefy", - "sp-keystore", - "sp-runtime", + "sp-consensus-babe 0.41.0", + "sp-consensus-beefy 23.0.0", + "sp-keystore 0.41.0", + "sp-runtime 40.0.0", "substrate-frame-rpc-system", "substrate-state-trie-migration-rpc", ] @@ -10819,64 +12968,115 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "28fdcb41bb21c7b14d0341a9a17364ccc04ad34de05d41e7938cb03acbc11066" dependencies = [ "bitvec", - "frame-benchmarking", - "frame-election-provider-support", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-election-provider-support 36.0.0", + "frame-support 36.0.1", + "frame-system 36.1.0", + "impl-trait-for-tuples", + "libsecp256k1", + "log", + "pallet-asset-rate 15.0.0", + "pallet-authorship 36.0.0", + "pallet-babe 36.0.0", + "pallet-balances 37.0.0", + "pallet-broker 0.15.0", + "pallet-election-provider-multi-phase 35.0.0", + "pallet-fast-unstake 35.0.0", + "pallet-identity 36.0.0", + "pallet-session 36.0.0", + "pallet-staking 36.0.0", + "pallet-staking-reward-fn 22.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "pallet-timestamp 35.0.0", + "pallet-transaction-payment 36.0.0", + "pallet-treasury 35.0.0", + "pallet-vesting 36.0.0", + "parity-scale-codec", + "polkadot-primitives 14.0.0", + "polkadot-runtime-parachains 15.0.4", + "rustc-hex", + "scale-info", + "serde", + "serde_derive", + "slot-range-helper 14.0.0", + "sp-api 33.0.0", + "sp-core 34.0.0", + "sp-inherents 33.0.0", + "sp-io 37.0.0", + "sp-npos-elections 33.0.0", + "sp-runtime 38.0.1", + "sp-session 34.0.0", + "sp-staking 33.0.0", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "staging-xcm 14.0.3", + "staging-xcm-builder 15.0.0", + "staging-xcm-executor 15.0.0", + "static_assertions", +] + +[[package]] +name = "polkadot-runtime-common" +version = "18.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "bitvec", + "frame-benchmarking 39.0.0", + "frame-election-provider-support 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", "impl-trait-for-tuples", "libsecp256k1", "log", - "pallet-asset-rate", - "pallet-authorship", - "pallet-babe", - "pallet-balances", - "pallet-broker", - "pallet-election-provider-multi-phase", - "pallet-fast-unstake", - "pallet-identity", - "pallet-session", - "pallet-staking", - "pallet-staking-reward-fn", - "pallet-timestamp", - "pallet-transaction-payment", - "pallet-treasury", - "pallet-vesting", - "parity-scale-codec", - "polkadot-primitives", - "polkadot-runtime-parachains", + "pallet-asset-rate 18.0.0", + "pallet-authorship 39.0.0", + "pallet-babe 39.0.0", + "pallet-balances 40.0.0", + "pallet-broker 0.18.0", + "pallet-election-provider-multi-phase 38.0.0", + "pallet-fast-unstake 38.0.0", + "pallet-identity 39.0.0", + "pallet-session 39.0.0", + "pallet-staking 39.0.0", + "pallet-staking-reward-fn 22.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "pallet-timestamp 38.0.0", + "pallet-transaction-payment 39.0.0", + "pallet-treasury 38.0.0", + "pallet-vesting 39.0.0", + "parity-scale-codec", + "polkadot-primitives 17.0.0", + "polkadot-runtime-parachains 18.0.0", "rustc-hex", "scale-info", "serde", "serde_derive", - "slot-range-helper", - "sp-api", - "sp-core", - "sp-inherents", - "sp-io", - "sp-npos-elections", - "sp-runtime", - "sp-session", - "sp-staking", - "sp-std", - "staging-xcm 14.1.0", - "staging-xcm-builder", - "staging-xcm-executor", + "slot-range-helper 16.0.0", + "sp-api 35.0.0", + "sp-core 35.0.0", + "sp-inherents 35.0.0", + "sp-io 39.0.0", + "sp-keyring 40.0.0", + "sp-npos-elections 35.0.0", + "sp-runtime 40.0.0", + "sp-session 37.0.0", + "sp-staking 37.0.0", + "staging-xcm 15.0.1", + "staging-xcm-builder 18.0.0", + "staging-xcm-executor 18.0.0", "static_assertions", ] [[package]] name = "polkadot-runtime-constants" version = "1.0.0" -source = "git+https://github.com/polkadot-fellows/runtimes?tag=v1.3.3#55bd514d60311b67cb11400a545cb64ce7a87c0e" +source = "git+https://github.com/polkadot-fellows/runtimes?tag=v1.3.4#3b18d942c766c7f358da50608b44edbe218284a4" dependencies = [ - "frame-support", - "polkadot-primitives", - "polkadot-runtime-common", + "frame-support 36.0.1", + "polkadot-primitives 14.0.0", + "polkadot-runtime-common 15.0.0", "smallvec", - "sp-core", - "sp-runtime", - "sp-weights", - "staging-xcm-builder", + "sp-core 34.0.0", + "sp-runtime 38.0.1", + "sp-weights 31.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "staging-xcm-builder 15.0.0", ] [[package]] @@ -10885,86 +13085,177 @@ version = "15.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ac75b3fea8464e5681b44733ed11cf09e22ff1e956f6703b918b637bd40e7427" dependencies = [ - "bs58 0.5.1", - "frame-benchmarking", + "bs58", + "frame-benchmarking 36.0.0", + "parity-scale-codec", + "polkadot-primitives 14.0.0", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-tracing 17.0.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "polkadot-runtime-metrics" +version = "18.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "bs58", + "frame-benchmarking 39.0.0", "parity-scale-codec", - "polkadot-primitives", - "sp-std", - "sp-tracing", + "polkadot-primitives 17.0.0", + "sp-tracing 17.0.1 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", ] [[package]] name = "polkadot-runtime-parachains" -version = "15.0.3" +version = "15.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cb7e68cb26f9025daaad694d8192fd0e63e92c8761c45a339dd7a5b7925a3cb6" +checksum = "63f6a36ba61ca8f2c07b7061894f3a947d77189c66e992a2f23109eb01dfa9e0" +dependencies = [ + "bitflags 1.3.2", + "bitvec", + "derive_more 0.99.18", + "frame-benchmarking 36.0.0", + "frame-support 36.0.1", + "frame-system 36.1.0", + "impl-trait-for-tuples", + "log", + "pallet-authority-discovery 36.0.0", + "pallet-authorship 36.0.0", + "pallet-babe 36.0.0", + "pallet-balances 37.0.0", + "pallet-broker 0.15.0", + "pallet-message-queue 39.0.2", + "pallet-session 36.0.0", + "pallet-staking 36.0.0", + "pallet-timestamp 35.0.0", + "pallet-vesting 36.0.0", + "parity-scale-codec", + "polkadot-core-primitives 14.0.0", + "polkadot-parachain-primitives 13.0.0", + "polkadot-primitives 14.0.0", + "polkadot-runtime-metrics 15.0.0", + "rand", + "rand_chacha", + "scale-info", + "serde", + "sp-api 33.0.0", + "sp-application-crypto 37.0.0", + "sp-arithmetic 26.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-core 34.0.0", + "sp-inherents 33.0.0", + "sp-io 37.0.0", + "sp-keystore 0.40.0", + "sp-runtime 38.0.1", + "sp-session 34.0.0", + "sp-staking 33.0.0", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "staging-xcm 14.0.3", + "staging-xcm-executor 15.0.0", + "static_assertions", + "xcm-procedural 10.0.1", +] + +[[package]] +name = "polkadot-runtime-parachains" +version = "18.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "bitflags 1.3.2", "bitvec", "derive_more 0.99.18", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", "impl-trait-for-tuples", "log", - "pallet-authority-discovery", - "pallet-authorship", - "pallet-babe", - "pallet-balances", - "pallet-broker", - "pallet-message-queue", - "pallet-session", - "pallet-staking", - "pallet-timestamp", - "pallet-vesting", - "parity-scale-codec", - "polkadot-core-primitives", - "polkadot-parachain-primitives", - "polkadot-primitives", - "polkadot-runtime-metrics", + "pallet-authority-discovery 39.0.0", + "pallet-authorship 39.0.0", + "pallet-babe 39.0.0", + "pallet-balances 40.0.0", + "pallet-broker 0.18.0", + "pallet-message-queue 42.0.0", + "pallet-mmr 39.0.0", + "pallet-session 39.0.0", + "pallet-staking 39.0.0", + "pallet-timestamp 38.0.0", + "pallet-vesting 39.0.0", + "parity-scale-codec", + "polkadot-core-primitives 16.0.0", + "polkadot-parachain-primitives 15.0.0", + "polkadot-primitives 17.0.0", + "polkadot-runtime-metrics 18.0.0", "rand", "rand_chacha", "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", - "staging-xcm 14.1.0", - "staging-xcm-executor", + "sp-api 35.0.0", + "sp-application-crypto 39.0.0", + "sp-arithmetic 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-core 35.0.0", + "sp-inherents 35.0.0", + "sp-io 39.0.0", + "sp-keystore 0.41.0", + "sp-runtime 40.0.0", + "sp-session 37.0.0", + "sp-staking 37.0.0", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "staging-xcm 15.0.1", + "staging-xcm-executor 18.0.0", "static_assertions", ] +[[package]] +name = "polkadot-sdk-frame" +version = "0.8.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "docify", + "frame-benchmarking 39.0.0", + "frame-executive 39.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", + "frame-system-benchmarking 39.0.0", + "frame-system-rpc-runtime-api 35.0.0", + "frame-try-runtime 0.45.0", + "log", + "parity-scale-codec", + "scale-info", + "sp-api 35.0.0", + "sp-arithmetic 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-block-builder 35.0.0", + "sp-consensus-aura 0.41.0", + "sp-consensus-grandpa 22.0.0", + "sp-core 35.0.0", + "sp-genesis-builder 0.16.0", + "sp-inherents 35.0.0", + "sp-io 39.0.0", + "sp-keyring 40.0.0", + "sp-offchain 35.0.0", + "sp-runtime 40.0.0", + "sp-session 37.0.0", + "sp-storage 22.0.0", + "sp-transaction-pool 35.0.0", + "sp-version 38.0.0", +] + [[package]] name = "polkadot-service" -version = "15.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fa560fb67981865b895082845c4ec43fabb206da5bf583ec5ef3561a8e3fc333" +version = "21.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "async-trait", - "frame-benchmarking", + "frame-benchmarking 39.0.0", "frame-benchmarking-cli", - "frame-support", - "frame-system", - "frame-system-rpc-runtime-api", + "frame-system 39.0.0", + "frame-system-rpc-runtime-api 35.0.0", "futures", - "hex-literal 0.4.1", "is_executable", "kvdb", "kvdb-rocksdb", "log", "mmr-gadget", - "pallet-babe", - "pallet-staking", - "pallet-transaction-payment", - "pallet-transaction-payment-rpc-runtime-api", + "pallet-transaction-payment 39.0.0", + "pallet-transaction-payment-rpc-runtime-api 39.0.0", "parity-db", "parity-scale-codec", "parking_lot 0.12.3", @@ -10973,12 +13264,13 @@ dependencies = [ "polkadot-availability-distribution", "polkadot-availability-recovery", "polkadot-collator-protocol", - "polkadot-core-primitives", + "polkadot-core-primitives 16.0.0", "polkadot-dispute-distribution", "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", @@ -10998,18 +13290,15 @@ dependencies = [ "polkadot-node-subsystem-types", "polkadot-node-subsystem-util", "polkadot-overseer", - "polkadot-parachain-primitives", - "polkadot-primitives", + "polkadot-primitives 17.0.0", "polkadot-rpc", - "polkadot-runtime-parachains", + "polkadot-runtime-parachains 18.0.0", "polkadot-statement-distribution", "rococo-runtime", "sc-authority-discovery", "sc-basic-authorship", - "sc-block-builder", "sc-chain-spec", "sc-client-api", - "sc-client-db", "sc-consensus", "sc-consensus-babe", "sc-consensus-beefy", @@ -11018,7 +13307,6 @@ dependencies = [ "sc-executor", "sc-keystore", "sc-network", - "sc-network-common", "sc-network-sync", "sc-offchain", "sc-service", @@ -11027,73 +13315,68 @@ dependencies = [ "sc-telemetry", "sc-transaction-pool", "sc-transaction-pool-api", - "schnellru", "serde", "serde_json", - "sp-api", - "sp-authority-discovery", - "sp-block-builder", + "sp-api 35.0.0", + "sp-authority-discovery 35.0.0", + "sp-block-builder 35.0.0", "sp-blockchain", "sp-consensus", - "sp-consensus-babe", - "sp-consensus-beefy", - "sp-consensus-grandpa", - "sp-core", - "sp-inherents", - "sp-io", - "sp-keyring", - "sp-keystore", - "sp-mmr-primitives", - "sp-offchain", - "sp-runtime", - "sp-session", - "sp-state-machine", - "sp-storage", - "sp-timestamp", - "sp-transaction-pool", - "sp-version", - "sp-weights", - "staging-xcm 14.1.0", + "sp-consensus-babe 0.41.0", + "sp-consensus-beefy 23.0.0", + "sp-consensus-grandpa 22.0.0", + "sp-core 35.0.0", + "sp-genesis-builder 0.16.0", + "sp-inherents 35.0.0", + "sp-io 39.0.0", + "sp-keyring 40.0.0", + "sp-mmr-primitives 35.0.0", + "sp-offchain 35.0.0", + "sp-runtime 40.0.0", + "sp-session 37.0.0", + "sp-timestamp 35.0.0", + "sp-transaction-pool 35.0.0", + "sp-version 38.0.0", + "sp-weights 31.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "staging-xcm 15.0.1", "substrate-prometheus-endpoint", - "thiserror", + "thiserror 1.0.69", "tracing-gum", "westend-runtime", - "xcm-runtime-apis", + "xcm-runtime-apis 0.5.0", ] [[package]] name = "polkadot-statement-distribution" -version = "15.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "16020ecadd1826ffbce2693ba1490123a0f7ca74d233c9bc8c0cbfc23bb4df2a" +version = "20.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ - "arrayvec 0.7.4", + "arrayvec 0.7.6", "bitvec", "fatality", "futures", "futures-timer", - "indexmap 2.2.6", + "indexmap 2.7.0", "parity-scale-codec", "polkadot-node-network-protocol", "polkadot-node-primitives", "polkadot-node-subsystem", "polkadot-node-subsystem-util", - "polkadot-primitives", - "sp-keystore", - "sp-staking", - "thiserror", + "polkadot-primitives 17.0.0", + "sp-keystore 0.41.0", + "sp-staking 37.0.0", + "thiserror 1.0.69", "tracing-gum", ] [[package]] name = "polkadot-statement-table" -version = "14.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "947e9e3c8f71b9678f39a01f371a808b574823967dd9da187e6f886f5f08691c" +version = "17.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "parity-scale-codec", - "polkadot-primitives", - "sp-core", + "polkadot-primitives 17.0.0", + "sp-core 35.0.0", "tracing-gum", ] @@ -11105,58 +13388,127 @@ checksum = "8a3693e5efdb2bf74e449cd25fd777a28bd7ed87e41f5d5da75eb31b4de48b94" dependencies = [ "libc", "log", - "polkavm-assembler", - "polkavm-common", - "polkavm-linux-raw", + "polkavm-assembler 0.9.0", + "polkavm-common 0.9.0", + "polkavm-linux-raw 0.9.0", ] [[package]] -name = "polkavm-assembler" -version = "0.9.0" +name = "polkavm" +version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1fa96d6d868243acc12de813dd48e756cbadcc8e13964c70d272753266deadc1" +checksum = "57e79a14b15ed38cb5b9a1e38d02e933f19e3d180ae5b325fed606c5e5b9177e" dependencies = [ + "libc", "log", + "polkavm-assembler 0.13.0", + "polkavm-common 0.13.0", + "polkavm-linux-raw 0.13.0", ] [[package]] -name = "polkavm-common" +name = "polkavm-assembler" version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1d9428a5cfcc85c5d7b9fc4b6a18c4b802d0173d768182a51cc7751640f08b92" +checksum = "1fa96d6d868243acc12de813dd48e756cbadcc8e13964c70d272753266deadc1" dependencies = [ "log", ] [[package]] -name = "polkavm-derive" -version = "0.9.1" +name = "polkavm-assembler" +version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ae8c4bea6f3e11cd89bb18bcdddac10bd9a24015399bd1c485ad68a985a19606" +checksum = "4e8da55465000feb0a61bbf556ed03024db58f3420eca37721fc726b3b2136bf" dependencies = [ - "polkavm-derive-impl-macro", + "log", ] [[package]] -name = "polkavm-derive-impl" +name = "polkavm-common" version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c4fdfc49717fb9a196e74a5d28e0bc764eb394a2c803eb11133a31ac996c60c" +checksum = "1d9428a5cfcc85c5d7b9fc4b6a18c4b802d0173d768182a51cc7751640f08b92" dependencies = [ - "polkavm-common", - "proc-macro2", - "quote", - "syn 2.0.96", + "log", ] [[package]] -name = "polkavm-derive-impl-macro" -version = "0.9.0" +name = "polkavm-common" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "084b4339aae7dfdaaa5aa7d634110afd95970e0737b6fb2a0cb10db8b56b753c" +dependencies = [ + "log", + "polkavm-assembler 0.13.0", +] + +[[package]] +name = "polkavm-common" +version = "0.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "711952a783e9c5ad407cdacb1ed147f36d37c5d43417c1091d86456d2999417b" + +[[package]] +name = "polkavm-derive" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ae8c4bea6f3e11cd89bb18bcdddac10bd9a24015399bd1c485ad68a985a19606" +dependencies = [ + "polkavm-derive-impl-macro 0.9.0", +] + +[[package]] +name = "polkavm-derive" +version = "0.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b4832a0aebf6cefc988bb7b2d74ea8c86c983164672e2fc96300f356a1babfc1" +dependencies = [ + "polkavm-derive-impl-macro 0.14.0", +] + +[[package]] +name = "polkavm-derive-impl" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c4fdfc49717fb9a196e74a5d28e0bc764eb394a2c803eb11133a31ac996c60c" +dependencies = [ + "polkavm-common 0.9.0", + "proc-macro2", + "quote", + "syn 2.0.90", +] + +[[package]] +name = "polkavm-derive-impl" +version = "0.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e339fc7c11310fe5adf711d9342278ac44a75c9784947937cce12bd4f30842f2" +dependencies = [ + "polkavm-common 0.14.0", + "proc-macro2", + "quote", + "syn 2.0.90", +] + +[[package]] +name = "polkavm-derive-impl-macro" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8ba81f7b5faac81e528eb6158a6f3c9e0bb1008e0ffa19653bc8dea925ecb429" dependencies = [ - "polkavm-derive-impl", - "syn 2.0.96", + "polkavm-derive-impl 0.9.0", + "syn 2.0.90", +] + +[[package]] +name = "polkavm-derive-impl-macro" +version = "0.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b569754b15060d03000c09e3bf11509d527f60b75d79b4c30c3625b5071d9702" +dependencies = [ + "polkavm-derive-impl 0.14.0", + "syn 2.0.90", ] [[package]] @@ -11169,7 +13521,22 @@ dependencies = [ "hashbrown 0.14.5", "log", "object 0.32.2", - "polkavm-common", + "polkavm-common 0.9.0", + "regalloc2 0.9.3", + "rustc-demangle", +] + +[[package]] +name = "polkavm-linker" +version = "0.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0959ac3b0f4fd5caf5c245c637705f19493efe83dba31a83bbba928b93b0116a" +dependencies = [ + "gimli 0.31.1", + "hashbrown 0.14.5", + "log", + "object 0.36.5", + "polkavm-common 0.14.0", "regalloc2 0.9.3", "rustc-demangle", ] @@ -11180,6 +13547,12 @@ version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "26e85d3456948e650dff0cfc85603915847faf893ed1e66b020bb82ef4557120" +[[package]] +name = "polkavm-linux-raw" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "686c4dd9c9c16cc22565b51bdbb269792318d0fd2e6b966b5f6c788534cad0e9" + [[package]] name = "polling" version = "2.8.0" @@ -11198,17 +13571,17 @@ dependencies = [ [[package]] name = "polling" -version = "3.7.2" +version = "3.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a3ed00ed3fbf728b5816498ecd316d1716eecaced9c0c8d2c5a6740ca214985b" +checksum = "a604568c3202727d1507653cb121dbd627a58684eb09a820fd746bee38b4442f" dependencies = [ "cfg-if", "concurrent-queue", "hermit-abi 0.4.0", "pin-project-lite", - "rustix 0.38.34", + "rustix 0.38.42", "tracing", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] @@ -11240,7 +13613,7 @@ version = "0.0.0" dependencies = [ "ink", "pop-primitives", - "sp-io", + "sp-io 38.0.0", ] [[package]] @@ -11249,19 +13622,19 @@ version = "0.1.0" dependencies = [ "contract-build", "env_logger 0.11.5", - "frame-support", - "frame-system", + "frame-support 39.0.0", + "frame-system 39.0.0", "log", - "pallet-assets", - "pallet-balances", + "pallet-assets 41.0.0", + "pallet-balances 40.0.0", "pallet-contracts", "parity-scale-codec", "pop-api", "pop-primitives", "pop-runtime-devnet", "pop-runtime-testnet", - "sp-io", - "sp-runtime", + "sp-io 39.0.0", + "sp-runtime 40.0.0", ] [[package]] @@ -11270,20 +13643,20 @@ version = "0.1.0" dependencies = [ "contract-build", "env_logger 0.11.5", - "frame-support", - "frame-system", + "frame-support 39.0.0", + "frame-system 39.0.0", "impl-trait-for-tuples", "log", - "pallet-balances", + "pallet-balances 40.0.0", "pallet-contracts", - "pallet-timestamp", + "pallet-timestamp 38.0.0", "parity-scale-codec", "rand", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 35.0.0", + "sp-io 39.0.0", + "sp-runtime 40.0.0", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", ] [[package]] @@ -11298,25 +13671,26 @@ dependencies = [ "cumulus-client-consensus-common", "cumulus-client-consensus-proposer", "cumulus-client-service", - "cumulus-primitives-aura", - "cumulus-primitives-core", - "cumulus-primitives-parachain-inherent", + "cumulus-primitives-aura 0.16.0", + "cumulus-primitives-core 0.17.0", + "cumulus-primitives-parachain-inherent 0.17.0", "cumulus-relay-chain-interface", - "frame-benchmarking", + "docify", + "frame-benchmarking 39.0.0", "frame-benchmarking-cli", "futures", "ismp-parachain", "ismp-parachain-inherent", "ismp-parachain-runtime-api", - "jsonrpsee", + "jsonrpsee 0.24.7", "log", "pallet-ismp-rpc", "pallet-ismp-runtime-api", - "pallet-multisig", + "pallet-multisig 39.0.0", "pallet-transaction-payment-rpc", "parity-scale-codec", "polkadot-cli", - "polkadot-primitives", + "polkadot-primitives 17.0.0", "pop-runtime-common", "pop-runtime-devnet", "pop-runtime-mainnet", @@ -11339,19 +13713,21 @@ dependencies = [ "sc-transaction-pool-api", "serde", "serde_json", - "sp-api", - "sp-block-builder", + "sp-api 35.0.0", + "sp-block-builder 35.0.0", "sp-blockchain", - "sp-consensus-aura", - "sp-core", - "sp-io", - "sp-keystore", - "sp-offchain", - "sp-runtime", - "sp-session", - "sp-timestamp", - "sp-transaction-pool", - "staging-xcm 14.1.0", + "sp-consensus-aura 0.41.0", + "sp-core 35.0.0", + "sp-genesis-builder 0.16.0", + "sp-io 39.0.0", + "sp-keyring 40.0.0", + "sp-keystore 0.41.0", + "sp-offchain 35.0.0", + "sp-runtime 40.0.0", + "sp-session 37.0.0", + "sp-timestamp 35.0.0", + "sp-transaction-pool 35.0.0", + "staging-xcm 15.0.1", "substrate-build-script-utils", "substrate-frame-rpc-system", "substrate-prometheus-endpoint", @@ -11370,248 +13746,249 @@ dependencies = [ name = "pop-runtime-common" version = "0.0.0" dependencies = [ - "frame-support", - "parachains-common", + "docify", + "frame-support 39.0.0", + "parachains-common 19.0.0", "parity-scale-codec", - "polkadot-primitives", + "polkadot-primitives 17.0.0", "scale-info", - "sp-runtime", - "sp-std", + "sp-runtime 40.0.0", ] [[package]] name = "pop-runtime-devnet" version = "0.1.0" dependencies = [ - "cumulus-pallet-aura-ext", - "cumulus-pallet-parachain-system", - "cumulus-pallet-session-benchmarking", - "cumulus-pallet-xcm", - "cumulus-pallet-xcmp-queue", - "cumulus-primitives-aura", - "cumulus-primitives-core", + "anyhow", + "cumulus-pallet-aura-ext 0.18.0", + "cumulus-pallet-parachain-system 0.18.0", + "cumulus-pallet-session-benchmarking 20.0.0", + "cumulus-pallet-xcm 0.18.0", + "cumulus-pallet-xcmp-queue 0.18.0", + "cumulus-primitives-aura 0.16.0", + "cumulus-primitives-core 0.17.0", "cumulus-primitives-storage-weight-reclaim", - "cumulus-primitives-utility", + "cumulus-primitives-utility 0.18.0", + "docify", "enumflags2", "env_logger 0.11.5", - "frame-benchmarking", - "frame-executive", - "frame-metadata-hash-extension", - "frame-support", - "frame-system", - "frame-system-benchmarking", - "frame-system-rpc-runtime-api", - "frame-try-runtime", + "frame-benchmarking 39.0.0", + "frame-executive 39.0.0", + "frame-metadata-hash-extension 0.7.0", + "frame-support 39.0.0", + "frame-system 39.0.0", + "frame-system-benchmarking 39.0.0", + "frame-system-rpc-runtime-api 35.0.0", + "frame-try-runtime 0.45.0", "hex", - "hex-literal 0.4.1", + "hex-literal", "ismp", "ismp-parachain", "ismp-parachain-runtime-api", "log", "pallet-api", - "pallet-assets", - "pallet-aura", - "pallet-authorship", - "pallet-balances", - "pallet-collator-selection", + "pallet-assets 41.0.0", + "pallet-aura 38.0.0", + "pallet-authorship 39.0.0", + "pallet-balances 40.0.0", + "pallet-collator-selection 20.0.0", "pallet-contracts", "pallet-ismp", "pallet-ismp-runtime-api", - "pallet-message-queue", - "pallet-multisig", + "pallet-message-queue 42.0.0", + "pallet-multisig 39.0.0", "pallet-nft-fractionalization", "pallet-nfts 31.0.0", - "pallet-nfts-runtime-api", - "pallet-preimage", - "pallet-proxy", - "pallet-scheduler", - "pallet-session", - "pallet-sudo", - "pallet-timestamp", - "pallet-transaction-payment", - "pallet-transaction-payment-rpc-runtime-api", - "pallet-utility", - "pallet-xcm", - "parachains-common", - "parity-scale-codec", - "polkadot-parachain-primitives", - "polkadot-runtime-common", + "pallet-nfts-runtime-api 25.0.0", + "pallet-preimage 39.0.0", + "pallet-proxy 39.0.0", + "pallet-scheduler 40.0.0", + "pallet-session 39.0.0", + "pallet-sudo 39.0.0", + "pallet-timestamp 38.0.0", + "pallet-transaction-payment 39.0.0", + "pallet-transaction-payment-rpc-runtime-api 39.0.0", + "pallet-utility 39.0.0", + "pallet-xcm 18.0.0", + "parachains-common 19.0.0", + "parity-scale-codec", + "polkadot-parachain-primitives 15.0.0", + "polkadot-runtime-common 18.0.0", "pop-chain-extension", "pop-primitives", "pop-runtime-common", "scale-info", "smallvec", - "sp-api", - "sp-block-builder", - "sp-consensus-aura", - "sp-core", - "sp-genesis-builder", - "sp-inherents", - "sp-io", - "sp-mmr-primitives", - "sp-offchain", - "sp-runtime", - "sp-session", - "sp-std", - "sp-transaction-pool", - "sp-version", - "staging-parachain-info", - "staging-xcm 14.1.0", - "staging-xcm-builder", - "staging-xcm-executor", - "substrate-wasm-builder", + "sp-api 35.0.0", + "sp-block-builder 35.0.0", + "sp-consensus-aura 0.41.0", + "sp-core 35.0.0", + "sp-genesis-builder 0.16.0", + "sp-inherents 35.0.0", + "sp-io 39.0.0", + "sp-mmr-primitives 35.0.0", + "sp-offchain 35.0.0", + "sp-runtime 40.0.0", + "sp-session 37.0.0", + "sp-transaction-pool 35.0.0", + "sp-version 38.0.0", + "staging-parachain-info 0.18.0", + "staging-xcm 15.0.1", + "staging-xcm-builder 18.0.0", + "staging-xcm-executor 18.0.0", + "substrate-wasm-builder 25.0.0", ] [[package]] name = "pop-runtime-mainnet" version = "0.1.0" dependencies = [ - "cumulus-pallet-aura-ext", - "cumulus-pallet-parachain-system", - "cumulus-pallet-session-benchmarking", - "cumulus-pallet-xcm", - "cumulus-pallet-xcmp-queue", - "cumulus-primitives-aura", - "cumulus-primitives-core", + "cumulus-pallet-aura-ext 0.18.0", + "cumulus-pallet-parachain-system 0.18.0", + "cumulus-pallet-session-benchmarking 20.0.0", + "cumulus-pallet-xcm 0.18.0", + "cumulus-pallet-xcmp-queue 0.18.0", + "cumulus-primitives-aura 0.16.0", + "cumulus-primitives-core 0.17.0", "cumulus-primitives-storage-weight-reclaim", - "cumulus-primitives-utility", + "cumulus-primitives-utility 0.18.0", + "docify", "enumflags2", "env_logger 0.11.5", - "frame-benchmarking", - "frame-executive", - "frame-metadata-hash-extension", - "frame-support", - "frame-system", - "frame-system-benchmarking", - "frame-system-rpc-runtime-api", - "frame-try-runtime", + "frame-benchmarking 39.0.0", + "frame-executive 39.0.0", + "frame-metadata-hash-extension 0.7.0", + "frame-support 39.0.0", + "frame-system 39.0.0", + "frame-system-benchmarking 39.0.0", + "frame-system-rpc-runtime-api 35.0.0", + "frame-try-runtime 0.45.0", "hex", "log", - "pallet-aura", - "pallet-authorship", - "pallet-balances", - "pallet-collator-selection", - "pallet-message-queue", - "pallet-multisig", - "pallet-preimage", - "pallet-proxy", - "pallet-scheduler", - "pallet-session", - "pallet-sudo", - "pallet-timestamp", - "pallet-transaction-payment", - "pallet-transaction-payment-rpc-runtime-api", - "pallet-utility", - "pallet-xcm", - "parachains-common", - "parity-scale-codec", - "polkadot-parachain-primitives", - "polkadot-runtime-common", + "pallet-aura 38.0.0", + "pallet-authorship 39.0.0", + "pallet-balances 40.0.0", + "pallet-collator-selection 20.0.0", + "pallet-message-queue 42.0.0", + "pallet-multisig 39.0.0", + "pallet-preimage 39.0.0", + "pallet-proxy 39.0.0", + "pallet-scheduler 40.0.0", + "pallet-session 39.0.0", + "pallet-sudo 39.0.0", + "pallet-timestamp 38.0.0", + "pallet-transaction-payment 39.0.0", + "pallet-transaction-payment-rpc-runtime-api 39.0.0", + "pallet-utility 39.0.0", + "pallet-xcm 18.0.0", + "parachains-common 19.0.0", + "parity-scale-codec", + "polkadot-parachain-primitives 15.0.0", + "polkadot-runtime-common 18.0.0", "pop-runtime-common", "scale-info", "smallvec", - "sp-api", - "sp-block-builder", - "sp-consensus-aura", - "sp-core", - "sp-genesis-builder", - "sp-inherents", - "sp-io", - "sp-offchain", - "sp-runtime", - "sp-session", - "sp-std", - "sp-transaction-pool", - "sp-version", - "staging-parachain-info", - "staging-xcm 14.1.0", - "staging-xcm-builder", - "staging-xcm-executor", - "substrate-wasm-builder", + "sp-api 35.0.0", + "sp-block-builder 35.0.0", + "sp-consensus-aura 0.41.0", + "sp-core 35.0.0", + "sp-genesis-builder 0.16.0", + "sp-inherents 35.0.0", + "sp-io 39.0.0", + "sp-offchain 35.0.0", + "sp-runtime 40.0.0", + "sp-session 37.0.0", + "sp-transaction-pool 35.0.0", + "sp-version 38.0.0", + "staging-parachain-info 0.18.0", + "staging-xcm 15.0.1", + "staging-xcm-builder 18.0.0", + "staging-xcm-executor 18.0.0", + "substrate-wasm-builder 25.0.0", ] [[package]] name = "pop-runtime-testnet" version = "0.4.2" dependencies = [ - "cumulus-pallet-aura-ext", - "cumulus-pallet-parachain-system", - "cumulus-pallet-session-benchmarking", - "cumulus-pallet-xcm", - "cumulus-pallet-xcmp-queue", - "cumulus-primitives-aura", - "cumulus-primitives-core", + "cumulus-pallet-aura-ext 0.18.0", + "cumulus-pallet-parachain-system 0.18.0", + "cumulus-pallet-session-benchmarking 20.0.0", + "cumulus-pallet-xcm 0.18.0", + "cumulus-pallet-xcmp-queue 0.18.0", + "cumulus-primitives-aura 0.16.0", + "cumulus-primitives-core 0.17.0", "cumulus-primitives-storage-weight-reclaim", - "cumulus-primitives-utility", + "cumulus-primitives-utility 0.18.0", + "docify", "enumflags2", "env_logger 0.11.5", - "frame-benchmarking", - "frame-executive", - "frame-metadata-hash-extension", - "frame-support", - "frame-system", - "frame-system-benchmarking", - "frame-system-rpc-runtime-api", - "frame-try-runtime", + "frame-benchmarking 39.0.0", + "frame-executive 39.0.0", + "frame-metadata-hash-extension 0.7.0", + "frame-support 39.0.0", + "frame-system 39.0.0", + "frame-system-benchmarking 39.0.0", + "frame-system-rpc-runtime-api 35.0.0", + "frame-try-runtime 0.45.0", "hex", - "hex-literal 0.4.1", + "hex-literal", "log", "pallet-api", - "pallet-assets", - "pallet-aura", - "pallet-authorship", - "pallet-balances", - "pallet-collator-selection", + "pallet-assets 41.0.0", + "pallet-aura 38.0.0", + "pallet-authorship 39.0.0", + "pallet-balances 40.0.0", + "pallet-collator-selection 20.0.0", "pallet-contracts", - "pallet-message-queue", - "pallet-multisig", + "pallet-message-queue 42.0.0", + "pallet-multisig 39.0.0", "pallet-nft-fractionalization", "pallet-nfts 31.0.0", - "pallet-nfts-runtime-api", - "pallet-preimage", - "pallet-proxy", - "pallet-scheduler", - "pallet-session", - "pallet-sudo", - "pallet-timestamp", - "pallet-transaction-payment", - "pallet-transaction-payment-rpc-runtime-api", - "pallet-utility", - "pallet-xcm", - "parachains-common", - "parity-scale-codec", - "polkadot-parachain-primitives", - "polkadot-runtime-common", + "pallet-nfts-runtime-api 25.0.0", + "pallet-preimage 39.0.0", + "pallet-proxy 39.0.0", + "pallet-scheduler 40.0.0", + "pallet-session 39.0.0", + "pallet-sudo 39.0.0", + "pallet-timestamp 38.0.0", + "pallet-transaction-payment 39.0.0", + "pallet-transaction-payment-rpc-runtime-api 39.0.0", + "pallet-utility 39.0.0", + "pallet-xcm 18.0.0", + "parachains-common 19.0.0", + "parity-scale-codec", + "polkadot-parachain-primitives 15.0.0", + "polkadot-runtime-common 18.0.0", "pop-chain-extension", "pop-primitives", "pop-runtime-common", "scale-info", "smallvec", - "sp-api", - "sp-block-builder", - "sp-consensus-aura", - "sp-core", - "sp-genesis-builder", - "sp-inherents", - "sp-io", - "sp-offchain", - "sp-runtime", - "sp-session", - "sp-std", - "sp-transaction-pool", - "sp-version", - "staging-parachain-info", - "staging-xcm 14.1.0", - "staging-xcm-builder", - "staging-xcm-executor", - "substrate-wasm-builder", + "sp-api 35.0.0", + "sp-block-builder 35.0.0", + "sp-consensus-aura 0.41.0", + "sp-core 35.0.0", + "sp-genesis-builder 0.16.0", + "sp-inherents 35.0.0", + "sp-io 39.0.0", + "sp-offchain 35.0.0", + "sp-runtime 40.0.0", + "sp-session 37.0.0", + "sp-transaction-pool 35.0.0", + "sp-version 38.0.0", + "staging-parachain-info 0.18.0", + "staging-xcm 15.0.1", + "staging-xcm-builder 18.0.0", + "staging-xcm-executor 18.0.0", + "substrate-wasm-builder 25.0.0", ] [[package]] name = "portable-atomic" -version = "1.6.0" +version = "1.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7170ef9988bc169ba16dd36a7fa041e5c4cbeb6a35b76d4c03daded371eae7c0" +checksum = "280dc24453071f1b63954171985a0b0d30058d287960968b9b2aca264c8d4ee6" [[package]] name = "powerfmt" @@ -11621,9 +13998,12 @@ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" [[package]] name = "ppv-lite86" -version = "0.2.17" +version = "0.2.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" +checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04" +dependencies = [ + "zerocopy", +] [[package]] name = "predicates" @@ -11651,15 +14031,15 @@ dependencies = [ [[package]] name = "predicates-core" -version = "1.0.6" +version = "1.0.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b794032607612e7abeb4db69adb4e33590fa6cf1149e95fd7cb00e634b92f174" +checksum = "ae8177bee8e75d6846599c6b9ff679ed51e882816914eec639944d7c9aa11931" [[package]] name = "predicates-tree" -version = "1.0.9" +version = "1.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "368ba315fb8c5052ab692e68a0eefec6ec57b23a36959c14496f0b0df2c0cecf" +checksum = "41b740d195ed3166cd147c8047ec98db0e22ec019eb8eeb76d343b795304fb13" dependencies = [ "predicates-core", "termtree", @@ -11667,37 +14047,42 @@ dependencies = [ [[package]] name = "prettyplease" -version = "0.1.25" +version = "0.2.25" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6c8646e95016a7a6c4adea95bafa8a16baab64b583356217f2c85db4a39d9a86" +checksum = "64d1ec885c64d0457d564db4ec299b2dae3f9c02808b8ad9c3a089c591b18033" dependencies = [ "proc-macro2", - "syn 1.0.109", + "syn 2.0.90", ] [[package]] -name = "prettyplease" -version = "0.2.20" +name = "primitive-types" +version = "0.12.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f12335488a2f3b0a83b14edad48dca9879ce89b2edd10e80237e4e852dd645e" +checksum = "0b34d9fd68ae0b74a41b21c03c2f62847aa0ffea044eee893b4c140b37e244e2" dependencies = [ - "proc-macro2", - "syn 2.0.96", + "fixed-hash", + "impl-codec 0.6.0", + "impl-num-traits 0.1.2", + "impl-rlp 0.3.0", + "impl-serde 0.4.0", + "scale-info", + "uint 0.9.5", ] [[package]] name = "primitive-types" -version = "0.12.2" +version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b34d9fd68ae0b74a41b21c03c2f62847aa0ffea044eee893b4c140b37e244e2" +checksum = "d15600a7d856470b7d278b3fe0e311fe28c2526348549f8ef2ff7db3299c87f5" dependencies = [ "fixed-hash", - "impl-codec", - "impl-num-traits", - "impl-rlp", - "impl-serde", + "impl-codec 0.7.0", + "impl-num-traits 0.2.0", + "impl-rlp 0.4.0", + "impl-serde 0.5.0", "scale-info", - "uint", + "uint 0.10.0", ] [[package]] @@ -11712,7 +14097,7 @@ dependencies = [ "futures", "futures-timer", "nanorand", - "thiserror", + "thiserror 1.0.69", "tracing", ] @@ -11722,17 +14107,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.1.0" +version = "3.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6d37c51ca738a55da99dc0c4a34860fd675453b8b36209178c2249bb13651284" +checksum = "8ecf48c7ca261d60b74ab1a7b20da18bede46776b2e55535cb958eb595c5fa7b" dependencies = [ - "toml_edit 0.21.1", + "toml_edit", ] [[package]] @@ -11767,7 +14152,7 @@ checksum = "3d1eaa7fa0aa1929ffdf7eeb6eac234dde6268914a14ad44d23521ab6a9b258e" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -11778,14 +14163,14 @@ checksum = "834da187cfe638ae8abb0203f0b33e5ccdb02a28e7199f2f47b3e2754f50edca" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] name = "proc-macro2" -version = "1.0.93" +version = "1.0.92" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "60946a68e5f9d28b0dc1c21bb8a97ee7d018a8b322fa57838ba31cc878e22d99" +checksum = "37d3544b3f2748c54e147655edb5025752e2303145b5aefb3c3ea2c78b973bb0" dependencies = [ "unicode-ident", ] @@ -11801,7 +14186,7 @@ dependencies = [ "lazy_static", "memchr", "parking_lot 0.12.3", - "thiserror", + "thiserror 1.0.69", ] [[package]] @@ -11824,17 +14209,23 @@ checksum = "440f724eba9f6996b75d63681b0a92b06947f1457076d503a4d2e2c8f56442b8" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] -name = "prost" -version = "0.11.9" +name = "proptest" +version = "1.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b82eaa1d779e9a4bc1c3217db8ffbeabaae1dca241bf70183242128d48681cd" +checksum = "14cae93065090804185d3b75f0bf93b8eeda30c7a9b4a33d3bdb3988d6229e50" dependencies = [ - "bytes", - "prost-derive 0.11.9", + "bitflags 2.6.0", + "lazy_static", + "num-traits", + "rand", + "rand_chacha", + "rand_xorshift", + "regex-syntax 0.8.5", + "unarray", ] [[package]] @@ -11848,106 +14239,84 @@ dependencies = [ ] [[package]] -name = "prost-build" -version = "0.11.9" +name = "prost" +version = "0.13.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "119533552c9a7ffacc21e099c24a0ac8bb19c2a2a3f363de84cd9b844feab270" +checksum = "2c0fef6c4230e4ccf618a35c59d7ede15dea37de8427500f50aff708806e42ec" dependencies = [ "bytes", - "heck 0.4.1", - "itertools 0.10.5", - "lazy_static", - "log", - "multimap 0.8.3", - "petgraph", - "prettyplease 0.1.25", - "prost 0.11.9", - "prost-types 0.11.9", - "regex", - "syn 1.0.109", - "tempfile", - "which 4.4.2", + "prost-derive 0.13.4", ] [[package]] name = "prost-build" -version = "0.12.6" +version = "0.13.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22505a5c94da8e3b7c2996394d1c933236c4d743e81a410bcca4e6989fc066a4" +checksum = "d0f3e5beed80eb580c68e2c600937ac2c4eedabdfd5ef1e5b7ea4f3fba84497b" dependencies = [ - "bytes", "heck 0.5.0", - "itertools 0.11.0", + "itertools 0.13.0", "log", - "multimap 0.10.0", + "multimap", "once_cell", "petgraph", - "prettyplease 0.2.20", - "prost 0.12.6", - "prost-types 0.12.6", + "prettyplease", + "prost 0.13.4", + "prost-types", "regex", - "syn 2.0.96", + "syn 2.0.90", "tempfile", ] [[package]] name = "prost-derive" -version = "0.11.9" +version = "0.12.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e5d2d8d10f3c6ded6da8b05b5fb3b8a5082514344d56c9f871412d29b4e075b4" +checksum = "81bddcdb20abf9501610992b6759a4c888aef7d1a7247ef75e2404275ac24af1" dependencies = [ "anyhow", - "itertools 0.10.5", + "itertools 0.12.1", "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.90", ] [[package]] name = "prost-derive" -version = "0.12.6" +version = "0.13.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "81bddcdb20abf9501610992b6759a4c888aef7d1a7247ef75e2404275ac24af1" +checksum = "157c5a9d7ea5c2ed2d9fb8f495b64759f7816c7eaea54ba3978f0d63000162e3" dependencies = [ "anyhow", - "itertools 0.11.0", + "itertools 0.13.0", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] name = "prost-types" -version = "0.11.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "213622a1460818959ac1181aaeb2dc9c7f63df720db7d788b3e24eacd1983e13" -dependencies = [ - "prost 0.11.9", -] - -[[package]] -name = "prost-types" -version = "0.12.6" +version = "0.13.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9091c90b0a32608e984ff2fa4091273cbdd755d54935c51d520887f4a1dbd5b0" +checksum = "cc2f1e56baa61e93533aebc21af4d2134b70f66275e0fcdf3cbe43d77ff7e8fc" dependencies = [ - "prost 0.12.6", + "prost 0.13.4", ] [[package]] name = "psm" -version = "0.1.21" +version = "0.1.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5787f7cda34e3033a72192c018bc5883100330f362ef279a8cbccfce8bb4e874" +checksum = "200b9ff220857e53e184257720a14553b2f4aa02577d2ed9842d45d4b9654810" dependencies = [ "cc", ] [[package]] name = "quanta" -version = "0.12.3" +version = "0.12.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e5167a477619228a0b284fac2674e3c388cba90631d7b7de620e6f1fcd08da5" +checksum = "773ce68d0bb9bc7ef20be3536ffe94e223e1f365bd374108b2659fac0c65cfe6" dependencies = [ "crossbeam-utils", "libc", @@ -11982,28 +14351,10 @@ dependencies = [ "asynchronous-codec", "bytes", "quick-protobuf", - "thiserror", + "thiserror 1.0.69", "unsigned-varint 0.7.2", ] -[[package]] -name = "quinn" -version = "0.9.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2e8b432585672228923edbbf64b8b12c14e1112f62e88737655b4a083dbcd78e" -dependencies = [ - "bytes", - "pin-project-lite", - "quinn-proto 0.9.6", - "quinn-udp 0.3.2", - "rustc-hash", - "rustls 0.20.9", - "thiserror", - "tokio", - "tracing", - "webpki", -] - [[package]] name = "quinn" version = "0.10.2" @@ -12013,33 +14364,15 @@ dependencies = [ "bytes", "futures-io", "pin-project-lite", - "quinn-proto 0.10.6", - "quinn-udp 0.4.1", - "rustc-hash", + "quinn-proto", + "quinn-udp", + "rustc-hash 1.1.0", "rustls 0.21.12", - "thiserror", + "thiserror 1.0.69", "tokio", "tracing", ] -[[package]] -name = "quinn-proto" -version = "0.9.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "94b0b33c13a79f669c85defaf4c275dc86a0c0372807d0ca3d78e0bb87274863" -dependencies = [ - "bytes", - "rand", - "ring 0.16.20", - "rustc-hash", - "rustls 0.20.9", - "slab", - "thiserror", - "tinyvec", - "tracing", - "webpki", -] - [[package]] name = "quinn-proto" version = "0.10.6" @@ -12049,27 +14382,14 @@ dependencies = [ "bytes", "rand", "ring 0.16.20", - "rustc-hash", + "rustc-hash 1.1.0", "rustls 0.21.12", "slab", - "thiserror", + "thiserror 1.0.69", "tinyvec", "tracing", ] -[[package]] -name = "quinn-udp" -version = "0.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "641538578b21f5e5c8ea733b736895576d0fe329bb883b937db6f4d163dbaaf4" -dependencies = [ - "libc", - "quinn-proto 0.9.6", - "socket2 0.4.10", - "tracing", - "windows-sys 0.42.0", -] - [[package]] name = "quinn-udp" version = "0.4.1" @@ -12078,16 +14398,16 @@ checksum = "055b4e778e8feb9f93c4e439f71dc2156ef13360b432b799e179a8c4cdf0b1d7" dependencies = [ "bytes", "libc", - "socket2 0.5.7", + "socket2 0.5.8", "tracing", "windows-sys 0.48.0", ] [[package]] name = "quote" -version = "1.0.36" +version = "1.0.37" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7" +checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af" dependencies = [ "proc-macro2", ] @@ -12147,13 +14467,22 @@ dependencies = [ "rand_core", ] +[[package]] +name = "rand_xorshift" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d25bf25ec5ae4a3f1b92f929810509a2f53d7dca2f50b794ff57e3face536c8f" +dependencies = [ + "rand_core", +] + [[package]] name = "raw-cpuid" -version = "11.0.2" +version = "11.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e29830cbb1290e404f24c73af91c5d8d631ce7e128691e9477556b540cd01ecd" +checksum = "1ab240315c661615f2ee9f0f2cd32d5a7343a84d5ebcccb99d46e6637565e7b0" dependencies = [ - "bitflags 2.5.0", + "bitflags 2.6.0", ] [[package]] @@ -12195,41 +14524,48 @@ dependencies = [ ] [[package]] -name = "redox_syscall" -version = "0.2.16" +name = "reconnecting-jsonrpsee-ws-client" +version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" +checksum = "06fa4f17e09edfc3131636082faaec633c7baa269396b4004040bc6c52f49f65" dependencies = [ - "bitflags 1.3.2", + "cfg_aliases 0.2.1", + "finito", + "futures", + "jsonrpsee 0.23.2", + "serde_json", + "thiserror 1.0.69", + "tokio", + "tracing", ] [[package]] name = "redox_syscall" -version = "0.4.1" +version = "0.2.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" +checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" dependencies = [ "bitflags 1.3.2", ] [[package]] name = "redox_syscall" -version = "0.5.2" +version = "0.5.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c82cf8cff14456045f55ec4241383baeff27af886adb72ffb2162f99911de0fd" +checksum = "03a862b389f93e68874fbf580b9de08dd02facb9a788ebadaf4a3fd33cf58834" dependencies = [ - "bitflags 2.5.0", + "bitflags 2.6.0", ] [[package]] name = "redox_users" -version = "0.4.5" +version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bd283d9651eeda4b2a83a43c1c91b266c40fd76ecd39a50a8c630ae69dc72891" +checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43" dependencies = [ "getrandom", "libredox", - "thiserror", + "thiserror 1.0.69", ] [[package]] @@ -12241,7 +14577,7 @@ dependencies = [ "derive_more 0.99.18", "fs-err", "static_init", - "thiserror", + "thiserror 1.0.69", ] [[package]] @@ -12261,7 +14597,7 @@ checksum = "bcc303e793d3734489387d205e9b186fac9c6cfacedd98cbb2e8a5943595f3e6" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -12284,21 +14620,21 @@ checksum = "ad156d539c879b7a24a363a2016d77961786e71f48f2e2fc8302a92abd2429a6" dependencies = [ "hashbrown 0.13.2", "log", - "rustc-hash", + "rustc-hash 1.1.0", "slice-group-by", "smallvec", ] [[package]] name = "regex" -version = "1.10.5" +version = "1.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b91213439dad192326a0d7c6ee3955910425f441d7038e0d6933b0aec5c4517f" +checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191" dependencies = [ "aho-corasick", "memchr", - "regex-automata 0.4.7", - "regex-syntax 0.8.4", + "regex-automata 0.4.9", + "regex-syntax 0.8.5", ] [[package]] @@ -12312,13 +14648,13 @@ dependencies = [ [[package]] name = "regex-automata" -version = "0.4.7" +version = "0.4.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df" +checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908" dependencies = [ "aho-corasick", "memchr", - "regex-syntax 0.8.4", + "regex-syntax 0.8.5", ] [[package]] @@ -12329,21 +14665,21 @@ checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" [[package]] name = "regex-syntax" -version = "0.8.4" +version = "0.8.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b" +checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" [[package]] name = "relay-common" version = "1.0.0" -source = "git+https://github.com/paseo-network/runtimes/?tag=v1.3.3#871469acf97f0f233d0d50ebf80b414305a5c055" +source = "git+https://github.com/paseo-network/runtimes?tag=v1.3.4#313b81aa2b2cb076b4f99c9b2bea040a8bcf709f" dependencies = [ - "pallet-staking-reward-fn", + "pallet-staking-reward-fn 22.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "parity-scale-codec", - "polkadot-primitives", + "polkadot-primitives 14.0.0", "scale-info", - "sp-api", - "sp-runtime", + "sp-api 33.0.0", + "sp-runtime 38.0.1", ] [[package]] @@ -12363,7 +14699,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2" dependencies = [ "hmac 0.12.1", - "subtle 2.5.0", + "subtle 2.6.1", ] [[package]] @@ -12396,6 +14732,15 @@ dependencies = [ "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 = "rlibc" version = "1.0.0" @@ -12412,6 +14757,16 @@ dependencies = [ "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" @@ -12424,121 +14779,120 @@ dependencies = [ [[package]] name = "rococo-runtime" -version = "15.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0874c053846cd50170370d88244fd00ed299d3d3833804f0929371a9ed836137" +version = "20.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ - "binary-merkle-tree", + "binary-merkle-tree 16.0.0", "bitvec", - "frame-benchmarking", - "frame-executive", - "frame-metadata-hash-extension", - "frame-support", - "frame-system", - "frame-system-benchmarking", - "frame-system-rpc-runtime-api", - "frame-try-runtime", - "hex-literal 0.4.1", - "log", - "pallet-asset-rate", - "pallet-authority-discovery", - "pallet-authorship", - "pallet-babe", - "pallet-balances", - "pallet-beefy", - "pallet-beefy-mmr", - "pallet-bounties", - "pallet-child-bounties", + "frame-benchmarking 39.0.0", + "frame-executive 39.0.0", + "frame-metadata-hash-extension 0.7.0", + "frame-support 39.0.0", + "frame-system 39.0.0", + "frame-system-benchmarking 39.0.0", + "frame-system-rpc-runtime-api 35.0.0", + "frame-try-runtime 0.45.0", + "hex-literal", + "log", + "pallet-asset-rate 18.0.0", + "pallet-authority-discovery 39.0.0", + "pallet-authorship 39.0.0", + "pallet-babe 39.0.0", + "pallet-balances 40.0.0", + "pallet-beefy 40.0.0", + "pallet-beefy-mmr 40.0.0", + "pallet-bounties 38.0.0", + "pallet-child-bounties 38.0.0", "pallet-collective", - "pallet-conviction-voting", + "pallet-conviction-voting 39.0.0", "pallet-democracy", "pallet-elections-phragmen", - "pallet-grandpa", - "pallet-identity", - "pallet-indices", + "pallet-grandpa 39.0.0", + "pallet-identity 39.0.0", + "pallet-indices 39.0.0", "pallet-membership", - "pallet-message-queue", - "pallet-mmr", - "pallet-multisig", + "pallet-message-queue 42.0.0", + "pallet-migrations", + "pallet-mmr 39.0.0", + "pallet-multisig 39.0.0", "pallet-nis", - "pallet-offences", - "pallet-parameters", - "pallet-preimage", - "pallet-proxy", + "pallet-offences 38.0.0", + "pallet-parameters 0.10.0", + "pallet-preimage 39.0.0", + "pallet-proxy 39.0.0", "pallet-ranked-collective", "pallet-recovery", - "pallet-referenda", + "pallet-referenda 39.0.0", "pallet-root-testing", - "pallet-scheduler", - "pallet-session", + "pallet-scheduler 40.0.0", + "pallet-session 39.0.0", "pallet-society", - "pallet-staking", - "pallet-state-trie-migration", - "pallet-sudo", - "pallet-timestamp", + "pallet-staking 39.0.0", + "pallet-state-trie-migration 42.0.0", + "pallet-sudo 39.0.0", + "pallet-timestamp 38.0.0", "pallet-tips", - "pallet-transaction-payment", - "pallet-transaction-payment-rpc-runtime-api", - "pallet-treasury", - "pallet-utility", - "pallet-vesting", - "pallet-whitelist", - "pallet-xcm", - "pallet-xcm-benchmarks", - "parity-scale-codec", - "polkadot-parachain-primitives", - "polkadot-primitives", - "polkadot-runtime-common", - "polkadot-runtime-parachains", + "pallet-transaction-payment 39.0.0", + "pallet-transaction-payment-rpc-runtime-api 39.0.0", + "pallet-treasury 38.0.0", + "pallet-utility 39.0.0", + "pallet-vesting 39.0.0", + "pallet-whitelist 38.0.0", + "pallet-xcm 18.0.0", + "pallet-xcm-benchmarks 18.0.0", + "parity-scale-codec", + "polkadot-parachain-primitives 15.0.0", + "polkadot-primitives 17.0.0", + "polkadot-runtime-common 18.0.0", + "polkadot-runtime-parachains 18.0.0", "rococo-runtime-constants", "scale-info", "serde", "serde_derive", "serde_json", "smallvec", - "sp-api", - "sp-arithmetic", - "sp-authority-discovery", - "sp-block-builder", - "sp-consensus-babe", - "sp-consensus-beefy", - "sp-consensus-grandpa", - "sp-core", - "sp-genesis-builder", - "sp-inherents", - "sp-io", - "sp-mmr-primitives", - "sp-offchain", - "sp-runtime", - "sp-session", - "sp-staking", - "sp-std", - "sp-storage", - "sp-transaction-pool", - "sp-version", - "staging-xcm 14.1.0", - "staging-xcm-builder", - "staging-xcm-executor", + "sp-api 35.0.0", + "sp-arithmetic 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-authority-discovery 35.0.0", + "sp-block-builder 35.0.0", + "sp-consensus-babe 0.41.0", + "sp-consensus-beefy 23.0.0", + "sp-consensus-grandpa 22.0.0", + "sp-core 35.0.0", + "sp-genesis-builder 0.16.0", + "sp-inherents 35.0.0", + "sp-io 39.0.0", + "sp-keyring 40.0.0", + "sp-mmr-primitives 35.0.0", + "sp-offchain 35.0.0", + "sp-runtime 40.0.0", + "sp-session 37.0.0", + "sp-staking 37.0.0", + "sp-storage 22.0.0", + "sp-transaction-pool 35.0.0", + "sp-version 38.0.0", + "staging-xcm 15.0.1", + "staging-xcm-builder 18.0.0", + "staging-xcm-executor 18.0.0", "static_assertions", - "substrate-wasm-builder", - "xcm-runtime-apis", + "substrate-wasm-builder 25.0.0", + "xcm-runtime-apis 0.5.0", ] [[package]] name = "rococo-runtime-constants" -version = "15.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2ef330dc0657ac9e4ff93ff320e2ee1a120493bceb91010c7ef7b08fe8e27950" +version = "18.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ - "frame-support", - "polkadot-primitives", - "polkadot-runtime-common", + "frame-support 39.0.0", + "polkadot-primitives 17.0.0", + "polkadot-runtime-common 18.0.0", "smallvec", - "sp-core", - "sp-runtime", - "sp-weights", - "staging-xcm 14.1.0", - "staging-xcm-builder", + "sp-core 35.0.0", + "sp-runtime 40.0.0", + "sp-weights 31.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "staging-xcm 15.0.1", + "staging-xcm-builder 18.0.0", ] [[package]] @@ -12560,16 +14914,19 @@ dependencies = [ [[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", ] @@ -12595,6 +14952,12 @@ version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" +[[package]] +name = "rustc-hash" +version = "2.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c7fb8039b3032c191086b10f11f319a6e99e1e82889c5cc6046f515c9db1d497" + [[package]] name = "rustc-hex" version = "2.1.0" @@ -12603,11 +14966,11 @@ checksum = "3e75f6a532d0fd9f7f13144f392b6ad56a32696bfcd9c78f797f16bbb6f072d6" [[package]] name = "rustc_version" -version = "0.4.0" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" +checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" dependencies = [ - "semver 1.0.23", + "semver 1.0.24", ] [[package]] @@ -12649,15 +15012,15 @@ dependencies = [ [[package]] name = "rustix" -version = "0.38.34" +version = "0.38.42" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f" +checksum = "f93dc38ecbab2eb790ff964bb77fa94faf256fd3e73285fd7ba0903b76bedb85" dependencies = [ - "bitflags 2.5.0", + "bitflags 2.6.0", "errno", "libc", "linux-raw-sys 0.4.14", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] @@ -12685,42 +15048,68 @@ dependencies = [ [[package]] name = "rustls" -version = "0.23.10" +version = "0.22.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "05cff451f60db80f490f3c182b77c35260baace73209e9cdbbe526bfe3a4d402" +checksum = "bf4ef73721ac7bcd79b2b315da7779d8fc09718c6b3d2d1b2d94850eb8c18432" dependencies = [ "log", - "once_cell", "ring 0.17.8", "rustls-pki-types", - "rustls-webpki 0.102.4", - "subtle 2.5.0", + "rustls-webpki 0.102.8", + "subtle 2.6.1", "zeroize", ] [[package]] -name = "rustls-native-certs" -version = "0.6.3" +name = "rustls" +version = "0.23.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a9aace74cb666635c918e9c12bc0d348266037aa8eb599b5cba565709a8dff00" +checksum = "5065c3f250cbd332cd894be57c40fa52387247659b14a2d6041d121547903b1b" dependencies = [ - "openssl-probe", - "rustls-pemfile 1.0.4", + "log", + "once_cell", + "ring 0.17.8", + "rustls-pki-types", + "rustls-webpki 0.102.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", + "security-framework 2.11.1", ] [[package]] name = "rustls-native-certs" -version = "0.7.0" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e5bfb394eeed242e909609f56089eecfe5fda225042e8b171791b9c95f5931e5" +dependencies = [ + "openssl-probe", + "rustls-pemfile 2.2.0", + "rustls-pki-types", + "schannel", + "security-framework 2.11.1", +] + +[[package]] +name = "rustls-native-certs" +version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f1fb85efa936c42c6d5fc28d2629bb51e4b2f4b8a5211e297d599cc5a093792" +checksum = "7fcff2dd52b58a8d98a70243663a0d234c4e2b79235637849d15913394a247d3" dependencies = [ "openssl-probe", - "rustls-pemfile 2.1.2", "rustls-pki-types", "schannel", - "security-framework", + "security-framework 3.1.0", ] [[package]] @@ -12734,38 +15123,37 @@ dependencies = [ [[package]] name = "rustls-pemfile" -version = "2.1.2" +version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "29993a25686778eb88d4189742cd713c9bce943bc54251a33509dc63cbacf73d" +checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50" dependencies = [ - "base64 0.22.1", "rustls-pki-types", ] [[package]] name = "rustls-pki-types" -version = "1.7.0" +version = "1.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "976295e77ce332211c0d24d92c0e83e50f5c5f046d11082cea19f3df13a3562d" +checksum = "d2bf47e6ff922db3825eb750c4e2ff784c6ff8fb9e13046ef6a1d1c5401b0b37" [[package]] name = "rustls-platform-verifier" -version = "0.3.3" +version = "0.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "93bda3f493b9abe5b93b3e7e3ecde0df292f2bd28c0296b90586ee0055ff5123" +checksum = "afbb878bdfdf63a336a5e63561b1835e7a8c91524f51621db870169eac84b490" dependencies = [ - "core-foundation", + "core-foundation 0.9.4", "core-foundation-sys", "jni", "log", "once_cell", - "rustls 0.23.10", - "rustls-native-certs 0.7.0", + "rustls 0.23.20", + "rustls-native-certs 0.7.3", "rustls-platform-verifier-android", - "rustls-webpki 0.102.4", - "security-framework", + "rustls-webpki 0.102.8", + "security-framework 2.11.1", "security-framework-sys", - "webpki-roots 0.26.3", + "webpki-roots 0.26.7", "winapi", ] @@ -12787,9 +15175,9 @@ dependencies = [ [[package]] name = "rustls-webpki" -version = "0.102.4" +version = "0.102.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ff448f7e92e913c4b7d4c6d8e4540a1724b319b4152b8aef6d4cf8339712b33e" +checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9" dependencies = [ "ring 0.17.8", "rustls-pki-types", @@ -12798,9 +15186,9 @@ dependencies = [ [[package]] name = "rustversion" -version = "1.0.17" +version = "1.0.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "955d28af4278de8121b7ebeb796b6a45735dc01436d898801014aced2773a3d6" +checksum = "0e819f2bc632f285be6d7cd36e25940d45b2391dd6d9b939e79de557f7014248" [[package]] name = "ruzstd" @@ -12813,6 +15201,17 @@ dependencies = [ "twox-hash", ] +[[package]] +name = "ruzstd" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "58c4eb8a81997cf040a091d1f7e1938aeab6749d3a0dfa73af43cdc32393483d" +dependencies = [ + "byteorder", + "derive_more 0.99.18", + "twox-hash", +] + [[package]] name = "rw-stream-sink" version = "0.4.0" @@ -12850,21 +15249,19 @@ dependencies = [ [[package]] name = "sc-allocator" -version = "29.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b975ee3a95eaacb611e7b415737a7fa2db4d8ad7b880cc1b97371b04e95c7903" +version = "30.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "log", - "sp-core", - "sp-wasm-interface", - "thiserror", + "sp-core 35.0.0", + "sp-wasm-interface 21.0.1 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "thiserror 1.0.69", ] [[package]] name = "sc-authority-discovery" -version = "0.42.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7ae99d03b5cf657754241180c4aedd14c4851a08f3fa56814106b3cc02083d2c" +version = "0.47.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "async-trait", "futures", @@ -12873,29 +15270,28 @@ dependencies = [ "libp2p", "linked_hash_set", "log", - "multihash 0.19.1", + "multihash 0.19.3", "parity-scale-codec", "prost 0.12.6", - "prost-build 0.12.6", + "prost-build", "rand", "sc-client-api", "sc-network", "sc-network-types", - "sp-api", - "sp-authority-discovery", + "sp-api 35.0.0", + "sp-authority-discovery 35.0.0", "sp-blockchain", - "sp-core", - "sp-keystore", - "sp-runtime", + "sp-core 35.0.0", + "sp-keystore 0.41.0", + "sp-runtime 40.0.0", "substrate-prometheus-endpoint", - "thiserror", + "thiserror 1.0.69", ] [[package]] name = "sc-basic-authorship" -version = "0.42.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c31a124aa02343a17cb86cc714bc2b66ce18c7f17530178767388de8a37b152" +version = "0.47.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "futures", "futures-timer", @@ -12905,41 +15301,39 @@ dependencies = [ "sc-proposer-metrics", "sc-telemetry", "sc-transaction-pool-api", - "sp-api", + "sp-api 35.0.0", "sp-blockchain", "sp-consensus", - "sp-core", - "sp-inherents", - "sp-runtime", + "sp-core 35.0.0", + "sp-inherents 35.0.0", + "sp-runtime 40.0.0", "substrate-prometheus-endpoint", ] [[package]] name = "sc-block-builder" -version = "0.40.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d6345fb862e10aaa7d88d6689a7c247448c40ae465253c83566dc76a17ec1426" +version = "0.43.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "parity-scale-codec", - "sp-api", - "sp-block-builder", + "sp-api 35.0.0", + "sp-block-builder 35.0.0", "sp-blockchain", - "sp-core", - "sp-inherents", - "sp-runtime", - "sp-trie", + "sp-core 35.0.0", + "sp-inherents 35.0.0", + "sp-runtime 40.0.0", + "sp-trie 38.0.0", ] [[package]] name = "sc-chain-spec" -version = "35.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e04100ec7ff9cf1f2052b05086c77cc216ff7268b8c4fe41007de420bc1f70be" +version = "40.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "array-bytes", "docify", "log", - "memmap2 0.9.4", + "memmap2 0.9.5", "parity-scale-codec", "sc-chain-spec-derive", "sc-client-api", @@ -12949,32 +15343,30 @@ dependencies = [ "serde", "serde_json", "sp-blockchain", - "sp-core", - "sp-crypto-hashing", - "sp-genesis-builder", - "sp-io", - "sp-runtime", - "sp-state-machine", - "sp-tracing", + "sp-core 35.0.0", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-genesis-builder 0.16.0", + "sp-io 39.0.0", + "sp-runtime 40.0.0", + "sp-state-machine 0.44.0", + "sp-tracing 17.0.1 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", ] [[package]] name = "sc-chain-spec-derive" version = "12.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b18cef11d2c69703e0d7c3528202ef4ed1cd2b47a6f063e9e17cad8255b1fa94" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ - "proc-macro-crate 3.1.0", + "proc-macro-crate 3.2.0", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] name = "sc-cli" -version = "0.44.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "23a50b5a5de473b38de8a909b125b9747a30158900159e59251bb716f80d6d22" +version = "0.49.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "array-bytes", "chrono", @@ -12998,25 +15390,25 @@ dependencies = [ "sc-service", "sc-telemetry", "sc-tracing", + "sc-transaction-pool", "sc-utils", "serde", "serde_json", "sp-blockchain", - "sp-core", - "sp-keyring", - "sp-keystore", - "sp-panic-handler", - "sp-runtime", - "sp-version", - "thiserror", + "sp-core 35.0.0", + "sp-keyring 40.0.0", + "sp-keystore 0.41.0", + "sp-panic-handler 13.0.1 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-runtime 40.0.0", + "sp-version 38.0.0", + "thiserror 1.0.69", "tokio", ] [[package]] name = "sc-client-api" -version = "35.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1bb517f4418644aeefd7c29bbe34bfc56ba8b5ea56e0b661a48a4d4d6afef40b" +version = "38.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "fnv", "futures", @@ -13026,25 +15418,24 @@ dependencies = [ "sc-executor", "sc-transaction-pool-api", "sc-utils", - "sp-api", + "sp-api 35.0.0", "sp-blockchain", "sp-consensus", - "sp-core", + "sp-core 35.0.0", "sp-database", - "sp-externalities", - "sp-runtime", - "sp-state-machine", + "sp-externalities 0.30.0", + "sp-runtime 40.0.0", + "sp-state-machine 0.44.0", "sp-statement-store", - "sp-storage", - "sp-trie", + "sp-storage 22.0.0", + "sp-trie 38.0.0", "substrate-prometheus-endpoint", ] [[package]] name = "sc-client-db" -version = "0.42.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2e3c685871877f39df000ec446f65fc8d502a7cecfc437cdac59866349642dc3" +version = "0.45.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "hash-db", "kvdb", @@ -13058,20 +15449,19 @@ dependencies = [ "sc-client-api", "sc-state-db", "schnellru", - "sp-arithmetic", + "sp-arithmetic 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", "sp-blockchain", - "sp-core", + "sp-core 35.0.0", "sp-database", - "sp-runtime", - "sp-state-machine", - "sp-trie", + "sp-runtime 40.0.0", + "sp-state-machine 0.44.0", + "sp-trie 38.0.0", ] [[package]] name = "sc-consensus" -version = "0.41.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2b2927954d83d4c055a8699cad8ae093fc921ce73694da6773bd06d195e9a8dd" +version = "0.46.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "async-trait", "futures", @@ -13082,21 +15472,20 @@ dependencies = [ "sc-network-types", "sc-utils", "serde", - "sp-api", + "sp-api 35.0.0", "sp-blockchain", "sp-consensus", - "sp-core", - "sp-runtime", - "sp-state-machine", + "sp-core 35.0.0", + "sp-runtime 40.0.0", + "sp-state-machine 0.44.0", "substrate-prometheus-endpoint", - "thiserror", + "thiserror 1.0.69", ] [[package]] name = "sc-consensus-aura" -version = "0.42.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "017320849a7fce8200da88ccf07785d461c4d144032788f09eb4316742649a38" +version = "0.47.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "async-trait", "futures", @@ -13107,26 +15496,25 @@ dependencies = [ "sc-consensus", "sc-consensus-slots", "sc-telemetry", - "sp-api", - "sp-application-crypto", - "sp-block-builder", + "sp-api 35.0.0", + "sp-application-crypto 39.0.0", + "sp-block-builder 35.0.0", "sp-blockchain", "sp-consensus", - "sp-consensus-aura", - "sp-consensus-slots", - "sp-core", - "sp-inherents", - "sp-keystore", - "sp-runtime", + "sp-consensus-aura 0.41.0", + "sp-consensus-slots 0.41.0", + "sp-core 35.0.0", + "sp-inherents 35.0.0", + "sp-keystore 0.41.0", + "sp-runtime 40.0.0", "substrate-prometheus-endpoint", - "thiserror", + "thiserror 1.0.69", ] [[package]] name = "sc-consensus-babe" -version = "0.42.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "91c28b231f19a90917fde889a5077a796e2f9cb4dc6b62f861a8d859437a54cc" +version = "0.47.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "async-trait", "fork-tree", @@ -13143,50 +15531,48 @@ dependencies = [ "sc-consensus-slots", "sc-telemetry", "sc-transaction-pool-api", - "sp-api", - "sp-application-crypto", - "sp-block-builder", + "sp-api 35.0.0", + "sp-application-crypto 39.0.0", + "sp-block-builder 35.0.0", "sp-blockchain", "sp-consensus", - "sp-consensus-babe", - "sp-consensus-slots", - "sp-core", - "sp-crypto-hashing", - "sp-inherents", - "sp-keystore", - "sp-runtime", + "sp-consensus-babe 0.41.0", + "sp-consensus-slots 0.41.0", + "sp-core 35.0.0", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-inherents 35.0.0", + "sp-keystore 0.41.0", + "sp-runtime 40.0.0", "substrate-prometheus-endpoint", - "thiserror", + "thiserror 1.0.69", ] [[package]] name = "sc-consensus-babe-rpc" -version = "0.42.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "879efb0d8d0bd363d38ca314fbe4c44363dc1bdcab0ba1c21e78d9a68fd4398b" +version = "0.47.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "futures", - "jsonrpsee", + "jsonrpsee 0.24.7", "sc-consensus-babe", "sc-consensus-epochs", "sc-rpc-api", "serde", - "sp-api", - "sp-application-crypto", + "sp-api 35.0.0", + "sp-application-crypto 39.0.0", "sp-blockchain", "sp-consensus", - "sp-consensus-babe", - "sp-core", - "sp-keystore", - "sp-runtime", - "thiserror", + "sp-consensus-babe 0.41.0", + "sp-core 35.0.0", + "sp-keystore 0.41.0", + "sp-runtime 40.0.0", + "thiserror 1.0.69", ] [[package]] name = "sc-consensus-beefy" -version = "21.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5ddcd779375dc2aa4abfb2ff8e001d0901593b58e5c70e1720472a001fe13105" +version = "26.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -13203,62 +15589,59 @@ dependencies = [ "sc-network-sync", "sc-network-types", "sc-utils", - "sp-api", - "sp-application-crypto", - "sp-arithmetic", + "sp-api 35.0.0", + "sp-application-crypto 39.0.0", + "sp-arithmetic 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", "sp-blockchain", "sp-consensus", - "sp-consensus-beefy", - "sp-core", - "sp-crypto-hashing", - "sp-keystore", - "sp-runtime", + "sp-consensus-beefy 23.0.0", + "sp-core 35.0.0", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-keystore 0.41.0", + "sp-runtime 40.0.0", "substrate-prometheus-endpoint", - "thiserror", + "thiserror 1.0.69", "tokio", "wasm-timer", ] [[package]] name = "sc-consensus-beefy-rpc" -version = "21.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "54e88abb3353e3ed98bcb8ab829dc84dfdf9d17f5312568bdf2361a1bde7ce0a" +version = "26.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "futures", - "jsonrpsee", + "jsonrpsee 0.24.7", "log", "parity-scale-codec", "parking_lot 0.12.3", "sc-consensus-beefy", "sc-rpc", "serde", - "sp-application-crypto", - "sp-consensus-beefy", - "sp-core", - "sp-runtime", - "thiserror", + "sp-application-crypto 39.0.0", + "sp-consensus-beefy 23.0.0", + "sp-core 35.0.0", + "sp-runtime 40.0.0", + "thiserror 1.0.69", ] [[package]] name = "sc-consensus-epochs" -version = "0.41.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8c983798bfea80e629ffa4faa7c299f8522d382703cd32f7a299beaf69631586" +version = "0.46.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "fork-tree", "parity-scale-codec", "sc-client-api", "sc-consensus", "sp-blockchain", - "sp-runtime", + "sp-runtime 40.0.0", ] [[package]] name = "sc-consensus-grandpa" -version = "0.27.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c7c6c62a03b54973f1a608a405908af0fe957fefaf77483cce96bd213eee7ed0" +version = "0.32.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "ahash 0.8.11", "array-bytes", @@ -13285,29 +15668,28 @@ dependencies = [ "sc-transaction-pool-api", "sc-utils", "serde_json", - "sp-api", - "sp-application-crypto", - "sp-arithmetic", + "sp-api 35.0.0", + "sp-application-crypto 39.0.0", + "sp-arithmetic 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", "sp-blockchain", "sp-consensus", - "sp-consensus-grandpa", - "sp-core", - "sp-crypto-hashing", - "sp-keystore", - "sp-runtime", + "sp-consensus-grandpa 22.0.0", + "sp-core 35.0.0", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-keystore 0.41.0", + "sp-runtime 40.0.0", "substrate-prometheus-endpoint", - "thiserror", + "thiserror 1.0.69", ] [[package]] name = "sc-consensus-grandpa-rpc" -version = "0.27.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9ef329f23bdafaeb57e131b81cc479a85b6ecb25e42435b6a6a544d048207685" +version = "0.32.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "finality-grandpa", "futures", - "jsonrpsee", + "jsonrpsee 0.24.7", "log", "parity-scale-codec", "sc-client-api", @@ -13315,16 +15697,15 @@ dependencies = [ "sc-rpc", "serde", "sp-blockchain", - "sp-core", - "sp-runtime", - "thiserror", + "sp-core 35.0.0", + "sp-runtime 40.0.0", + "thiserror 1.0.69", ] [[package]] name = "sc-consensus-slots" -version = "0.41.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4dca112d43c7785193362b33aa7941947bb84d65db9187abe72f1f7a969474c0" +version = "0.46.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "async-trait", "futures", @@ -13334,21 +15715,20 @@ dependencies = [ "sc-client-api", "sc-consensus", "sc-telemetry", - "sp-arithmetic", + "sp-arithmetic 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", "sp-blockchain", "sp-consensus", - "sp-consensus-slots", - "sp-core", - "sp-inherents", - "sp-runtime", - "sp-state-machine", + "sp-consensus-slots 0.41.0", + "sp-core 35.0.0", + "sp-inherents 35.0.0", + "sp-runtime 40.0.0", + "sp-state-machine 0.44.0", ] [[package]] name = "sc-executor" -version = "0.39.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "39f5767bf6a6bad29365d6d08fcf940ee453d31457ed034cf14f0392877daafd" +version = "0.41.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "parity-scale-codec", "parking_lot 0.12.3", @@ -13356,49 +15736,46 @@ dependencies = [ "sc-executor-polkavm", "sc-executor-wasmtime", "schnellru", - "sp-api", - "sp-core", - "sp-externalities", - "sp-io", - "sp-panic-handler", - "sp-runtime-interface", - "sp-trie", - "sp-version", - "sp-wasm-interface", + "sp-api 35.0.0", + "sp-core 35.0.0", + "sp-externalities 0.30.0", + "sp-io 39.0.0", + "sp-panic-handler 13.0.1 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-runtime-interface 29.0.0", + "sp-trie 38.0.0", + "sp-version 38.0.0", + "sp-wasm-interface 21.0.1 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", "tracing", ] [[package]] name = "sc-executor-common" -version = "0.35.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c3b703a33dcb7cddf19176fdf12294b9a6408125836b0f4afee3e6969e7f190" +version = "0.36.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ - "polkavm", + "polkavm 0.9.3", "sc-allocator", - "sp-maybe-compressed-blob", - "sp-wasm-interface", - "thiserror", + "sp-maybe-compressed-blob 11.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-wasm-interface 21.0.1 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "thiserror 1.0.69", "wasm-instrument", ] [[package]] name = "sc-executor-polkavm" -version = "0.32.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26fe58d9cacfab73e5595fa84b80f7bd03efebe54a0574daaeb221a1d1f7ab80" +version = "0.33.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "log", - "polkavm", + "polkavm 0.9.3", "sc-executor-common", - "sp-wasm-interface", + "sp-wasm-interface 21.0.1 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", ] [[package]] name = "sc-executor-wasmtime" -version = "0.35.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8cd498f2f77ec1f861c30804f5bfd796d4afcc8ce44ea1f11bfbe2847551d161" +version = "0.36.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "anyhow", "cfg-if", @@ -13408,18 +15785,17 @@ dependencies = [ "rustix 0.36.17", "sc-allocator", "sc-executor-common", - "sp-runtime-interface", - "sp-wasm-interface", + "sp-runtime-interface 29.0.0", + "sp-wasm-interface 21.0.1 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", "wasmtime", ] [[package]] name = "sc-informant" -version = "0.41.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "74c3751acd690bc469b859d0ad899b076642db9b107e31c28cbd99749b6ecb91" +version = "0.46.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ - "ansi_term", + "console", "futures", "futures-timer", "log", @@ -13428,59 +15804,56 @@ dependencies = [ "sc-network-common", "sc-network-sync", "sp-blockchain", - "sp-runtime", + "sp-runtime 40.0.0", ] [[package]] name = "sc-keystore" -version = "32.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "267c8cfaceaeecb25484bad8668c17036016e46053a23509d44486474dbf44d3" +version = "34.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "array-bytes", "parking_lot 0.12.3", "serde_json", - "sp-application-crypto", - "sp-core", - "sp-keystore", - "thiserror", + "sp-application-crypto 39.0.0", + "sp-core 35.0.0", + "sp-keystore 0.41.0", + "thiserror 1.0.69", ] [[package]] name = "sc-mixnet" -version = "0.12.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a5a72a92dc72572a0facd73b410855d7f6edf38b32aef46c4798c74f25e595d5" +version = "0.17.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "array-bytes", - "arrayvec 0.7.4", + "arrayvec 0.7.6", "blake2 0.10.6", "bytes", "futures", "futures-timer", "log", "mixnet", - "multiaddr 0.18.1", + "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-api 35.0.0", "sp-consensus", - "sp-core", - "sp-keystore", + "sp-core 35.0.0", + "sp-keystore 0.41.0", "sp-mixnet", - "sp-runtime", - "thiserror", + "sp-runtime 40.0.0", + "thiserror 1.0.69", ] [[package]] name = "sc-network" -version = "0.42.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "04be75f35cea819bae84be99cde138872b17494acf0e54f5f0ae8b0ed3fbe51a" +version = "0.47.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -13504,7 +15877,7 @@ dependencies = [ "partial_sort", "pin-project", "prost 0.12.6", - "prost-build 0.12.6", + "prost-build", "rand", "sc-client-api", "sc-network-common", @@ -13514,12 +15887,12 @@ dependencies = [ "serde", "serde_json", "smallvec", - "sp-arithmetic", + "sp-arithmetic 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", "sp-blockchain", - "sp-core", - "sp-runtime", + "sp-core 35.0.0", + "sp-runtime 40.0.0", "substrate-prometheus-endpoint", - "thiserror", + "thiserror 1.0.69", "tokio", "tokio-stream", "unsigned-varint 0.7.2", @@ -13530,28 +15903,26 @@ dependencies = [ [[package]] name = "sc-network-common" -version = "0.41.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2ec0c3c5629a418fb26b56963d40c5ca3fd02dd94eb5753e9eb72cea5c2eeb2f" +version = "0.46.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "async-trait", "bitflags 1.3.2", "futures", "libp2p-identity", "parity-scale-codec", - "prost-build 0.12.6", + "prost-build", "sc-consensus", "sc-network-types", "sp-consensus", - "sp-consensus-grandpa", - "sp-runtime", + "sp-consensus-grandpa 22.0.0", + "sp-runtime 40.0.0", ] [[package]] name = "sc-network-gossip" -version = "0.42.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0ae1836528495b6aa5140da39ed0278f5086c21ce530c37964db1b2e2c101ab1" +version = "0.47.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "ahash 0.8.11", "futures", @@ -13562,16 +15933,15 @@ dependencies = [ "sc-network-sync", "sc-network-types", "schnellru", - "sp-runtime", + "sp-runtime 40.0.0", "substrate-prometheus-endpoint", "tracing", ] [[package]] name = "sc-network-light" -version = "0.41.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f5e6deda277664336c26ea251cc1ebff7a165df0e3ad4ae23113380d9863ea40" +version = "0.46.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -13579,21 +15949,20 @@ dependencies = [ "log", "parity-scale-codec", "prost 0.12.6", - "prost-build 0.12.6", + "prost-build", "sc-client-api", "sc-network", "sc-network-types", "sp-blockchain", - "sp-core", - "sp-runtime", - "thiserror", + "sp-core 35.0.0", + "sp-runtime 40.0.0", + "thiserror 1.0.69", ] [[package]] name = "sc-network-sync" -version = "0.41.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ee9ab31b84534c487b9fb84e83db47890fcbd350f354b1e6484892d3d42d0020" +version = "0.46.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -13601,12 +15970,11 @@ dependencies = [ "fork-tree", "futures", "futures-timer", - "libp2p", "log", "mockall 0.11.4", "parity-scale-codec", "prost 0.12.6", - "prost-build 0.12.6", + "prost-build", "sc-client-api", "sc-consensus", "sc-network", @@ -13615,23 +15983,22 @@ dependencies = [ "sc-utils", "schnellru", "smallvec", - "sp-arithmetic", + "sp-arithmetic 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", "sp-blockchain", "sp-consensus", - "sp-consensus-grandpa", - "sp-core", - "sp-runtime", + "sp-consensus-grandpa 22.0.0", + "sp-core 35.0.0", + "sp-runtime 40.0.0", "substrate-prometheus-endpoint", - "thiserror", + "thiserror 1.0.69", "tokio", "tokio-stream", ] [[package]] name = "sc-network-transactions" -version = "0.41.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7c2eb55e29b0ca52ad3e209fe569b72dfe6b44cc1da7d722446d5a8333dff8e1" +version = "0.46.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "array-bytes", "futures", @@ -13643,59 +16010,60 @@ dependencies = [ "sc-network-types", "sc-utils", "sp-consensus", - "sp-runtime", + "sp-runtime 40.0.0", "substrate-prometheus-endpoint", ] [[package]] name = "sc-network-types" -version = "0.12.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c372dbda66644a1df0daa8c0d99c36b6f74db7dca213d2416cd84f507125224" +version = "0.14.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ - "bs58 0.5.1", + "bs58", "ed25519-dalek", "libp2p-identity", "litep2p", "log", - "multiaddr 0.18.1", - "multihash 0.19.1", + "multiaddr 0.18.2", + "multihash 0.19.3", "rand", - "thiserror", + "thiserror 1.0.69", "zeroize", ] [[package]] name = "sc-offchain" -version = "37.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "038d77ad5f923ec4183d6b31c7432fdb56d12ee69cad2cff17d4a39caf933bcb" +version = "42.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "array-bytes", "bytes", "fnv", "futures", "futures-timer", - "hyper 0.14.29", - "hyper-rustls", + "http-body-util", + "hyper 1.5.2", + "hyper-rustls 0.27.5", + "hyper-util", "log", "num_cpus", "once_cell", "parity-scale-codec", "parking_lot 0.12.3", "rand", + "rustls 0.23.20", "sc-client-api", "sc-network", "sc-network-common", "sc-network-types", "sc-transaction-pool-api", "sc-utils", - "sp-api", - "sp-core", - "sp-externalities", - "sp-keystore", - "sp-offchain", - "sp-runtime", + "sp-api 35.0.0", + "sp-core 35.0.0", + "sp-externalities 0.30.0", + "sp-keystore 0.41.0", + "sp-offchain 35.0.0", + "sp-runtime 40.0.0", "threadpool", "tracing", ] @@ -13703,8 +16071,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.18.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f680a0bed67dab19898624246376ba85d5f70a89859ba030830aacd079c28d3c" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -13712,12 +16079,11 @@ dependencies = [ [[package]] name = "sc-rpc" -version = "37.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ca9cb792ddb5d0c3df89018e80290de4c769315fa59271bda0a0d29b2d182fdc" +version = "42.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "futures", - "jsonrpsee", + "jsonrpsee 0.24.7", "log", "parity-scale-codec", "parking_lot 0.12.3", @@ -13730,26 +16096,25 @@ dependencies = [ "sc-transaction-pool-api", "sc-utils", "serde_json", - "sp-api", + "sp-api 35.0.0", "sp-blockchain", - "sp-core", - "sp-keystore", - "sp-offchain", + "sp-core 35.0.0", + "sp-keystore 0.41.0", + "sp-offchain 35.0.0", "sp-rpc", - "sp-runtime", - "sp-session", + "sp-runtime 40.0.0", + "sp-session 37.0.0", "sp-statement-store", - "sp-version", + "sp-version 38.0.0", "tokio", ] [[package]] name = "sc-rpc-api" -version = "0.41.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "57b8adf62a207985cf7534abf0d940b335fda0a68eb902da05b7270ee30a6293" +version = "0.46.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ - "jsonrpsee", + "jsonrpsee 0.24.7", "parity-scale-codec", "sc-chain-spec", "sc-mixnet", @@ -13757,28 +16122,29 @@ dependencies = [ "scale-info", "serde", "serde_json", - "sp-core", + "sp-core 35.0.0", "sp-rpc", - "sp-runtime", - "sp-version", - "thiserror", + "sp-runtime 40.0.0", + "sp-version 38.0.0", + "thiserror 1.0.69", ] [[package]] name = "sc-rpc-server" -version = "16.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c14c236a01e03f55f16b92d89fd902cf2e4e9887357a3c36827a1e39b799c6b" +version = "19.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ + "dyn-clone", "forwarded-header-value", "futures", "governor", - "http 1.1.0", + "http 1.2.0", "http-body-util", - "hyper 1.4.1", + "hyper 1.5.2", "ip_network", - "jsonrpsee", + "jsonrpsee 0.24.7", "log", + "sc-rpc-api", "serde", "serde_json", "substrate-prometheus-endpoint", @@ -13789,15 +16155,15 @@ dependencies = [ [[package]] name = "sc-rpc-spec-v2" -version = "0.42.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4242d30df623f68d5b937ae264cce85e734c35922e0bf196d7a59b8e7f7843c2" +version = "0.47.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "array-bytes", "futures", "futures-util", "hex", - "jsonrpsee", + "itertools 0.11.0", + "jsonrpsee 0.24.7", "log", "parity-scale-codec", "parking_lot 0.12.3", @@ -13806,32 +16172,30 @@ dependencies = [ "sc-client-api", "sc-rpc", "sc-transaction-pool-api", - "sc-utils", "schnellru", "serde", - "sp-api", + "sp-api 35.0.0", "sp-blockchain", - "sp-core", + "sp-core 35.0.0", "sp-rpc", - "sp-runtime", - "sp-version", - "thiserror", + "sp-runtime 40.0.0", + "sp-version 38.0.0", + "thiserror 1.0.69", "tokio", "tokio-stream", ] [[package]] name = "sc-service" -version = "0.43.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "718b7e3a3963b09c2ab18ce13dbc43c0afa8b53169b67372fbcc4c4147b77e05" +version = "0.48.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "async-trait", "directories", "exit-future", "futures", "futures-timer", - "jsonrpsee", + "jsonrpsee 0.24.7", "log", "parity-scale-codec", "parking_lot 0.12.3", @@ -13862,24 +16226,24 @@ dependencies = [ "schnellru", "serde", "serde_json", - "sp-api", + "sp-api 35.0.0", "sp-blockchain", "sp-consensus", - "sp-core", - "sp-externalities", - "sp-keystore", - "sp-runtime", - "sp-session", - "sp-state-machine", - "sp-storage", - "sp-transaction-pool", + "sp-core 35.0.0", + "sp-externalities 0.30.0", + "sp-keystore 0.41.0", + "sp-runtime 40.0.0", + "sp-session 37.0.0", + "sp-state-machine 0.44.0", + "sp-storage 22.0.0", + "sp-transaction-pool 35.0.0", "sp-transaction-storage-proof", - "sp-trie", - "sp-version", + "sp-trie 38.0.0", + "sp-version 38.0.0", "static_init", "substrate-prometheus-endpoint", "tempfile", - "thiserror", + "thiserror 1.0.69", "tokio", "tracing", "tracing-futures", @@ -13887,37 +16251,34 @@ dependencies = [ [[package]] name = "sc-state-db" -version = "0.36.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f689d0b97c1bbdb2ca31b5f202bda195947f85c7fef990651cad202b99de896b" +version = "0.37.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "log", "parity-scale-codec", "parking_lot 0.12.3", - "sp-core", + "sp-core 35.0.0", ] [[package]] name = "sc-storage-monitor" -version = "0.22.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1d117c3945c524b9c0e30966359895f5ad551c2cd4ccbb677b53917fbad5039a" +version = "0.23.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "clap", "fs4", "log", - "sp-core", - "thiserror", + "sp-core 35.0.0", + "thiserror 1.0.69", "tokio", ] [[package]] name = "sc-sync-state-rpc" -version = "0.42.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "58fca6421f003249095557d97b674a27bf4bbf1f301406eb04c42878a43fc715" +version = "0.47.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ - "jsonrpsee", + "jsonrpsee 0.24.7", "parity-scale-codec", "sc-chain-spec", "sc-client-api", @@ -13927,15 +16288,14 @@ dependencies = [ "serde", "serde_json", "sp-blockchain", - "sp-runtime", - "thiserror", + "sp-runtime 40.0.0", + "thiserror 1.0.69", ] [[package]] name = "sc-sysinfo" -version = "35.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7c00ab3d8f51c1905cc3c53cf441b9d94403c67f27968002ff7765248b0f3e6b" +version = "40.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "derive_more 0.99.18", "futures", @@ -13947,17 +16307,16 @@ dependencies = [ "sc-telemetry", "serde", "serde_json", - "sp-core", - "sp-crypto-hashing", - "sp-io", - "sp-std", + "sp-core 35.0.0", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-io 39.0.0", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", ] [[package]] name = "sc-telemetry" -version = "22.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b1fc8e8ad7f84f2ca864ee361b6207fe21e18c8182c60f209732b2a7c0dcbd31" +version = "27.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "chrono", "futures", @@ -13970,62 +16329,59 @@ dependencies = [ "sc-utils", "serde", "serde_json", - "thiserror", + "thiserror 1.0.69", "wasm-timer", ] [[package]] name = "sc-tracing" -version = "35.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61151f2d6b7ce3d7174484414dbc4e2f64b05a144c8f0a59ea02284e6c748a19" +version = "38.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ - "ansi_term", "chrono", + "console", "is-terminal", - "lazy_static", "libc", "log", "parity-scale-codec", "parking_lot 0.12.3", - "regex", - "rustc-hash", + "rustc-hash 1.1.0", "sc-client-api", "sc-tracing-proc-macro", "serde", - "sp-api", + "sp-api 35.0.0", "sp-blockchain", - "sp-core", + "sp-core 35.0.0", "sp-rpc", - "sp-runtime", - "sp-tracing", - "thiserror", + "sp-runtime 40.0.0", + "sp-tracing 17.0.1 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "thiserror 1.0.69", "tracing", - "tracing-log 0.2.0", - "tracing-subscriber 0.3.18", + "tracing-log", + "tracing-subscriber", ] [[package]] name = "sc-tracing-proc-macro" version = "11.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "151cdf86d79abf22cf2a240a7ca95041c908dbd96c2ae9a818073042aa210964" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ - "proc-macro-crate 3.1.0", + "proc-macro-crate 3.2.0", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] name = "sc-transaction-pool" -version = "35.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "800e35d0d2f2b8e17170ec961d58756fe7891026b19d889be388b9585cb12f90" +version = "38.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "async-trait", "futures", "futures-timer", + "indexmap 2.7.0", + "itertools 0.11.0", "linked-hash-map", "log", "parity-scale-codec", @@ -14034,22 +16390,23 @@ dependencies = [ "sc-transaction-pool-api", "sc-utils", "serde", - "sp-api", + "sp-api 35.0.0", "sp-blockchain", - "sp-core", - "sp-crypto-hashing", - "sp-runtime", - "sp-tracing", - "sp-transaction-pool", + "sp-core 35.0.0", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-runtime 40.0.0", + "sp-tracing 17.0.1 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-transaction-pool 35.0.0", "substrate-prometheus-endpoint", - "thiserror", + "thiserror 1.0.69", + "tokio", + "tokio-stream", ] [[package]] name = "sc-transaction-pool-api" -version = "35.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b3de6f60df6706970061e225e87d77aab9a764b258fe151b896a700419bc6b9d" +version = "38.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "async-trait", "futures", @@ -14057,25 +16414,23 @@ dependencies = [ "parity-scale-codec", "serde", "sp-blockchain", - "sp-core", - "sp-runtime", - "thiserror", + "sp-core 35.0.0", + "sp-runtime 40.0.0", + "thiserror 1.0.69", ] [[package]] name = "sc-utils" -version = "17.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "acf1bad736c230f16beb1cf48af9e69564df23b13aca9e5751a61266340b4bb5" +version = "18.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "async-channel 1.9.0", "futures", "futures-timer", - "lazy_static", "log", "parking_lot 0.12.3", "prometheus", - "sp-arithmetic", + "sp-arithmetic 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", ] [[package]] @@ -14095,7 +16450,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e57b1e7f6b65ed1f04e79a85a57d755ad56d76fdf1e9bddcc9ae14f71fcdcf54" dependencies = [ "parity-scale-codec", + "scale-info", "scale-type-resolver 0.2.0", + "serde", ] [[package]] @@ -14107,7 +16464,7 @@ dependencies = [ "derive_more 0.99.18", "parity-scale-codec", "scale-bits 0.5.0", - "scale-decode-derive", + "scale-decode-derive 0.11.1", "scale-type-resolver 0.1.1", "smallvec", ] @@ -14120,7 +16477,9 @@ checksum = "e98f3262c250d90e700bb802eb704e1f841e03331c2eb815e46516c4edbf5b27" dependencies = [ "derive_more 0.99.18", "parity-scale-codec", + "primitive-types 0.12.2", "scale-bits 0.6.0", + "scale-decode-derive 0.13.1", "scale-type-resolver 0.2.0", "smallvec", ] @@ -14131,7 +16490,19 @@ version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5398fdb3c7bea3cb419bac4983aadacae93fe1a7b5f693f4ebd98c3821aad7a5" dependencies = [ - "darling", + "darling 0.14.4", + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "scale-decode-derive" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9bb22f574168103cdd3133b19281639ca65ad985e24612728f727339dcaf4021" +dependencies = [ + "darling 0.14.4", "proc-macro2", "quote", "syn 1.0.109", @@ -14145,33 +16516,61 @@ checksum = "628800925a33794fb5387781b883b5e14d130fece9af5a63613867b8de07c5c7" dependencies = [ "derive_more 0.99.18", "parity-scale-codec", - "scale-encode-derive", + "scale-encode-derive 0.6.0", "scale-type-resolver 0.1.1", "smallvec", ] +[[package]] +name = "scale-encode" +version = "0.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "528464e6ae6c8f98e2b79633bf79ef939552e795e316579dab09c61670d56602" +dependencies = [ + "derive_more 0.99.18", + "parity-scale-codec", + "primitive-types 0.12.2", + "scale-bits 0.6.0", + "scale-encode-derive 0.7.2", + "scale-type-resolver 0.2.0", + "smallvec", +] + [[package]] name = "scale-encode-derive" version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7a304e1af7cdfbe7a24e08b012721456cc8cecdedadc14b3d10513eada63233c" dependencies = [ - "darling", + "darling 0.14.4", "proc-macro-crate 1.1.3", "proc-macro2", "quote", "syn 1.0.109", ] +[[package]] +name = "scale-encode-derive" +version = "0.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bef2618f123c88da9cd8853b69d766068f1eddc7692146d7dfe9b89e25ce2efd" +dependencies = [ + "darling 0.20.10", + "proc-macro-crate 3.2.0", + "proc-macro2", + "quote", + "syn 2.0.90", +] + [[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 0.99.18", + "derive_more 1.0.0", "parity-scale-codec", "scale-info-derive", "schemars", @@ -14180,14 +16579,14 @@ 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.1.0", + "proc-macro-crate 3.2.0", "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.90", ] [[package]] @@ -14204,14 +16603,52 @@ 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.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "498d1aecf2ea61325d4511787c115791639c0fd21ef4f8e11e49dd09eff2bbac" +dependencies = [ + "proc-macro2", + "quote", + "scale-info", + "syn 2.0.90", + "thiserror 1.0.69", +] + +[[package]] +name = "scale-value" +version = "0.16.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8cd6ab090d823e75cfdb258aad5fe92e13f2af7d04b43a55d607d25fcc38c811" +dependencies = [ + "base58", + "blake2 0.10.6", + "derive_more 0.99.18", + "either", + "frame-metadata 15.1.0", + "parity-scale-codec", + "scale-bits 0.6.0", + "scale-decode 0.13.1", + "scale-encode 0.7.2", + "scale-info", + "scale-type-resolver 0.2.0", + "serde", + "yap", +] [[package]] name = "schannel" -version = "0.1.23" +version = "0.1.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534" +checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d" dependencies = [ - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] @@ -14235,7 +16672,7 @@ dependencies = [ "proc-macro2", "quote", "serde_derive_internals", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -14256,7 +16693,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "844b7645371e6ecdf61ff246ba1958c29e802881a749ae3fb1993675d210d28d" dependencies = [ "arrayref", - "arrayvec 0.7.4", + "arrayvec 0.7.6", "curve25519-dalek-ng", "merlin", "rand_core", @@ -14273,14 +16710,14 @@ checksum = "8de18f6d8ba0aad7045f5feae07ec29899c1112584a38509a84ad7b04451eaa0" dependencies = [ "aead", "arrayref", - "arrayvec 0.7.4", + "arrayvec 0.7.6", "curve25519-dalek", "getrandom_or_panic", "merlin", "rand_core", "serde_bytes", "sha2 0.10.8", - "subtle 2.5.0", + "subtle 2.6.1", "zeroize", ] @@ -14307,32 +16744,17 @@ dependencies = [ ] [[package]] -name = "sctp-proto" -version = "0.2.2" +name = "sec1" +version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6220f78bb44c15f326b0596113305f6101097a18755d53727a575c97e09fb24" -dependencies = [ - "bytes", - "crc", - "fxhash", - "log", - "rand", - "slab", - "thiserror", -] - -[[package]] -name = "sec1" -version = "0.7.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc" +checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc" dependencies = [ "base16ct", "der", "generic-array 0.14.7", "pkcs8", "serdect", - "subtle 2.5.0", + "subtle 2.6.1", "zeroize", ] @@ -14374,23 +16796,36 @@ dependencies = [ [[package]] name = "security-framework" -version = "2.11.0" +version = "2.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c627723fd09706bacdb5cf41499e95098555af3c3c29d014dc3c458ef6be11c0" +checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02" dependencies = [ - "bitflags 2.5.0", - "core-foundation", + "bitflags 2.6.0", + "core-foundation 0.9.4", "core-foundation-sys", "libc", "num-bigint", "security-framework-sys", ] +[[package]] +name = "security-framework" +version = "3.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "81d3f8c9bfcc3cbb6b0179eb57042d75b1582bdc65c3cb95f3fa999509c03cbc" +dependencies = [ + "bitflags 2.6.0", + "core-foundation 0.10.0", + "core-foundation-sys", + "libc", + "security-framework-sys", +] + [[package]] name = "security-framework-sys" -version = "2.11.0" +version = "2.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "317936bbbd05227752583946b9e66d7ce3b489f84e11a94a510b4437fef407d7" +checksum = "1863fd3768cd83c56a7f60faa4dc0d403f1b6df0a38c3c25f44b7894e45370d5" dependencies = [ "core-foundation-sys", "libc", @@ -14407,9 +16842,9 @@ dependencies = [ [[package]] name = "semver" -version = "1.0.23" +version = "1.0.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b" +checksum = "3cb6eb87a131f756572d7fb904f6e7b68633f09cca868c5df1c4b8d1a694bbba" dependencies = [ "serde", ] @@ -14420,6 +16855,12 @@ version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" +[[package]] +name = "send_wrapper" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f638d531eccd6e23b980caf34876660d38e265409d8e99b397ab71eb3612fad0" + [[package]] name = "send_wrapper" version = "0.6.0" @@ -14428,9 +16869,9 @@ checksum = "cd0b0ec5f1c1ca621c432a25813d8d60c88abe6d3e08a3eb9cf37d97a0fe3d73" [[package]] name = "serde" -version = "1.0.217" +version = "1.0.216" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "02fc4265df13d6fa1d00ecff087228cc0a2b5f3c0e87e258d8b94a156e984c70" +checksum = "0b9781016e935a97e8beecf0c933758c97a5520d32930e460142b4cd80c6338e" dependencies = [ "serde_derive", ] @@ -14445,9 +16886,9 @@ dependencies = [ ] [[package]] -name = "serde-utils" +name = "serde-hex-utils" version = "0.1.0" -source = "git+https://github.com/r0gue-io/ismp?branch=polkadot-v1.14.0#f95ee188c3b73ca3c4d6319ab85cff12fe757c4c" +source = "git+https://github.com/r0gue-io/ismp?branch=polkadot-stable2412#144c98de434ebd6732283b0585c1942c64577873" dependencies = [ "anyhow", "hex", @@ -14456,22 +16897,22 @@ dependencies = [ [[package]] name = "serde_bytes" -version = "0.11.14" +version = "0.11.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b8497c313fd43ab992087548117643f6fcd935cbf36f176ffda0aacf9591734" +checksum = "387cc504cb06bb40a96c8e04e951fe01854cf6bc921053c954e4a606d9675c6a" dependencies = [ "serde", ] [[package]] name = "serde_derive" -version = "1.0.217" +version = "1.0.216" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0" +checksum = "46f859dbbf73865c6627ed570e78961cd3ac92407a2d117204c49232485da55e" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -14482,14 +16923,14 @@ checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] name = "serde_json" -version = "1.0.135" +version = "1.0.133" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2b0d7ba2887406110130a978386c4e1befb98c674b4fba677954e4db976630d9" +checksum = "c7fceb2473b9166b2294ef05efcb65a3db80803f0b03ef86a5fc88a2b85ee377" dependencies = [ "itoa", "memchr", @@ -14505,14 +16946,14 @@ checksum = "6c64451ba24fc7a6a2d60fc75dd9c83c90903b19028d4eff35e88fc1e86564e9" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] name = "serde_spanned" -version = "0.6.6" +version = "0.6.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "79e674e01f999af37c49f70a6ede167a8a60b2503e56c5599532a65baa5969a0" +checksum = "87607cb1398ed59d48732e575a4c28a7a8ebf2454b964fe3f224f2afc07909e1" dependencies = [ "serde", ] @@ -14531,15 +16972,15 @@ dependencies = [ [[package]] name = "serde_with" -version = "3.9.0" +version = "3.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "69cecfa94848272156ea67b2b1a53f20fc7bc638c4a46d2f8abde08f05f4b857" +checksum = "8e28bdad6db2b8340e449f7108f020b3b092e8583a9e3fb82713e1d4e71fe817" dependencies = [ "base64 0.22.1", "chrono", "hex", "indexmap 1.9.3", - "indexmap 2.2.6", + "indexmap 2.7.0", "serde", "serde_derive", "serde_json", @@ -14569,18 +17010,6 @@ dependencies = [ "opaque-debug 0.3.1", ] -[[package]] -name = "sha-1" -version = "0.10.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f5058ada175748e33390e40e872bd0fe59a19f265d0158daa551c5a88a76009c" -dependencies = [ - "cfg-if", - "cpufeatures", - "digest 0.10.7", - "sha1-asm", -] - [[package]] name = "sha1" version = "0.10.6" @@ -14592,15 +17021,6 @@ dependencies = [ "digest 0.10.7", ] -[[package]] -name = "sha1-asm" -version = "0.5.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "286acebaf8b67c1130aedffad26f594eff0c1292389158135327d2e23aed582b" -dependencies = [ - "cc", -] - [[package]] name = "sha2" version = "0.9.9" @@ -14702,9 +17122,9 @@ dependencies = [ [[package]] name = "simba" -version = "0.8.1" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "061507c94fc6ab4ba1c9a0305018408e312e17c041eb63bef8aa726fa33aceae" +checksum = "b3a386a501cd104797982c15ae17aafe8b9261315b5d07e3ec803f2ea26be0fa" dependencies = [ "approx", "num-complex", @@ -14715,11 +17135,11 @@ dependencies = [ [[package]] name = "simple-dns" -version = "0.5.7" +version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cae9a3fcdadafb6d97f4c0e007e4247b114ee0f119f650c3cbf3a8b3a1479694" +checksum = "4c80e565e7dcc4f1ef247e2f395550d4cf7d777746d5988e7e4e3156b71077fc" dependencies = [ - "bitflags 2.5.0", + "bitflags 2.6.0", ] [[package]] @@ -14734,6 +17154,12 @@ 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" @@ -14758,8 +17184,19 @@ dependencies = [ "enumn", "parity-scale-codec", "paste", - "sp-runtime", - "sp-std", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "slot-range-helper" +version = "16.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "enumn", + "parity-scale-codec", + "paste", + "sp-runtime 40.0.0", ] [[package]] @@ -14785,28 +17222,45 @@ checksum = "13f2b548cd8447f8de0fdf1c592929f70f4fc7039a05e47404b0d096ec6987a1" dependencies = [ "async-channel 1.9.0", "async-executor", - "async-fs", + "async-fs 1.6.0", "async-io 1.13.0", "async-lock 2.8.0", - "async-net", - "async-process", + "async-net 1.8.0", + "async-process 1.8.1", "blocking", "futures-lite 1.13.0", ] +[[package]] +name = "smol" +version = "2.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a33bd3e260892199c3ccfc487c88b2da2265080acb316cd920da72fdfd7c599f" +dependencies = [ + "async-channel 2.3.1", + "async-executor", + "async-fs 2.1.2", + "async-io 2.4.0", + "async-lock 3.4.0", + "async-net 2.0.0", + "async-process 2.3.0", + "blocking", + "futures-lite 2.5.0", +] + [[package]] name = "smoldot" version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c0bb30cf57b7b5f6109ce17c3164445e2d6f270af2cb48f6e4d31c2967c9a9f5" dependencies = [ - "arrayvec 0.7.4", + "arrayvec 0.7.6", "async-lock 2.8.0", "atomic-take", "base64 0.21.7", "bip39", "blake2-rfc", - "bs58 0.5.1", + "bs58", "chacha20", "crossbeam-queue", "derive_more 0.99.18", @@ -14832,13 +17286,68 @@ dependencies = [ "poly1305", "rand", "rand_chacha", - "ruzstd", + "ruzstd 0.4.0", "schnorrkel 0.10.2", "serde", "serde_json", "sha2 0.10.8", "sha3", - "siphasher", + "siphasher 0.3.11", + "slab", + "smallvec", + "soketto 0.7.1", + "twox-hash", + "wasmi 0.31.2", + "x25519-dalek", + "zeroize", +] + +[[package]] +name = "smoldot" +version = "0.16.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6d1eaa97d77be4d026a1e7ffad1bb3b78448763b357ea6f8188d3e6f736a9b9" +dependencies = [ + "arrayvec 0.7.6", + "async-lock 3.4.0", + "atomic-take", + "base64 0.21.7", + "bip39", + "blake2-rfc", + "bs58", + "chacha20", + "crossbeam-queue", + "derive_more 0.99.18", + "ed25519-zebra", + "either", + "event-listener 4.0.3", + "fnv", + "futures-lite 2.5.0", + "futures-util", + "hashbrown 0.14.5", + "hex", + "hmac 0.12.1", + "itertools 0.12.1", + "libm", + "libsecp256k1", + "merlin", + "no-std-net", + "nom", + "num-bigint", + "num-rational", + "num-traits", + "pbkdf2", + "pin-project", + "poly1305", + "rand", + "rand_chacha", + "ruzstd 0.5.0", + "schnorrkel 0.11.4", + "serde", + "serde_json", + "sha2 0.10.8", + "sha3", + "siphasher 1.0.1", "slab", "smallvec", "soketto 0.7.1", @@ -14877,10 +17386,46 @@ dependencies = [ "rand_chacha", "serde", "serde_json", - "siphasher", + "siphasher 0.3.11", + "slab", + "smol 1.3.0", + "smoldot 0.11.0", + "zeroize", +] + +[[package]] +name = "smoldot-light" +version = "0.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5496f2d116b7019a526b1039ec2247dd172b8670633b1a64a614c9ea12c9d8c7" +dependencies = [ + "async-channel 2.3.1", + "async-lock 3.4.0", + "base64 0.21.7", + "blake2-rfc", + "derive_more 0.99.18", + "either", + "event-listener 4.0.3", + "fnv", + "futures-channel", + "futures-lite 2.5.0", + "futures-util", + "hashbrown 0.14.5", + "hex", + "itertools 0.12.1", + "log", + "lru 0.12.5", + "no-std-net", + "parking_lot 0.12.3", + "pin-project", + "rand", + "rand_chacha", + "serde", + "serde_json", + "siphasher 1.0.1", "slab", - "smol", - "smoldot", + "smol 2.0.2", + "smoldot 0.16.0", "zeroize", ] @@ -14904,7 +17449,7 @@ dependencies = [ "ring 0.17.8", "rustc_version", "sha2 0.10.8", - "subtle 2.5.0", + "subtle 2.6.1", ] [[package]] @@ -14924,18 +17469,40 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a0ad61e3ab1c48d4c8060c7ef8571c5b6007df26687e8dbfdb6c857d840cfd2c" dependencies = [ "byte-slice-cast", - "frame-support", + "frame-support 36.0.1", + "hex", + "parity-scale-codec", + "rlp 0.5.2", + "scale-info", + "serde", + "snowbridge-ethereum 0.8.0", + "snowbridge-milagro-bls", + "sp-core 34.0.0", + "sp-io 37.0.0", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "ssz_rs", + "ssz_rs_derive", +] + +[[package]] +name = "snowbridge-beacon-primitives" +version = "0.12.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "byte-slice-cast", + "frame-support 39.0.0", "hex", "parity-scale-codec", - "rlp", + "rlp 0.6.1", "scale-info", "serde", - "snowbridge-ethereum", + "snowbridge-ethereum 0.11.0", "snowbridge-milagro-bls", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 35.0.0", + "sp-io 39.0.0", + "sp-runtime 40.0.0", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", "ssz_rs", "ssz_rs_derive", ] @@ -14946,22 +17513,45 @@ version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "668cd71582305168ed51cb0357a4b4ea814c68c7db3898a9ba4d492f712c54e1" dependencies = [ - "ethabi-decode", - "frame-support", - "frame-system", - "hex-literal 0.4.1", + "ethabi-decode 1.0.0", + "frame-support 36.0.1", + "frame-system 36.1.0", + "hex-literal", + "parity-scale-codec", + "polkadot-parachain-primitives 13.0.0", + "scale-info", + "serde", + "snowbridge-beacon-primitives 0.8.0", + "sp-arithmetic 26.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-core 34.0.0", + "sp-io 37.0.0", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "staging-xcm 14.0.3", + "staging-xcm-builder 15.0.0", +] + +[[package]] +name = "snowbridge-core" +version = "0.12.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "ethabi-decode 2.0.0", + "frame-support 39.0.0", + "frame-system 39.0.0", + "hex-literal", "parity-scale-codec", - "polkadot-parachain-primitives", + "polkadot-parachain-primitives 15.0.0", "scale-info", "serde", - "snowbridge-beacon-primitives", - "sp-arithmetic", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", - "staging-xcm 14.1.0", - "staging-xcm-builder", + "snowbridge-beacon-primitives 0.12.0", + "sp-arithmetic 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-core 35.0.0", + "sp-io 39.0.0", + "sp-runtime 40.0.0", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "staging-xcm 15.0.1", + "staging-xcm-builder 18.0.0", ] [[package]] @@ -14970,19 +17560,39 @@ version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1ef1f6f60f6c8cc3cdb2a829d7452de946d8707f63f70c6f714d1c52cbc0fc17" dependencies = [ - "ethabi-decode", - "ethbloom", - "ethereum-types", - "hex-literal 0.4.1", + "ethabi-decode 1.0.0", + "ethbloom 0.13.0", + "ethereum-types 0.14.1", + "hex-literal", + "parity-bytes", + "parity-scale-codec", + "rlp 0.5.2", + "scale-info", + "serde", + "serde-big-array", + "sp-io 37.0.0", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "snowbridge-ethereum" +version = "0.11.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "ethabi-decode 2.0.0", + "ethbloom 0.14.1", + "ethereum-types 0.15.1", + "hex-literal", "parity-bytes", "parity-scale-codec", - "rlp", + "rlp 0.6.1", "scale-info", "serde", "serde-big-array", - "sp-io", - "sp-runtime", - "sp-std", + "sp-io 39.0.0", + "sp-runtime 40.0.0", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", ] [[package]] @@ -15006,18 +17616,37 @@ version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8e8e6707ced1308d763117bfe68f85e3f22fcdca7987b32e438c0485570f6ac7" dependencies = [ - "frame-support", - "hex-literal 0.4.1", + "frame-support 36.0.1", + "hex-literal", + "log", + "parity-scale-codec", + "scale-info", + "snowbridge-core 0.8.0", + "sp-core 34.0.0", + "sp-io 37.0.0", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "staging-xcm 14.0.3", + "staging-xcm-executor 15.0.0", +] + +[[package]] +name = "snowbridge-router-primitives" +version = "0.18.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "frame-support 39.0.0", + "hex-literal", "log", "parity-scale-codec", "scale-info", - "snowbridge-core", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", - "staging-xcm 14.1.0", - "staging-xcm-executor", + "snowbridge-core 0.12.0", + "sp-core 35.0.0", + "sp-io 39.0.0", + "sp-runtime 40.0.0", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "staging-xcm 15.0.1", + "staging-xcm-executor 18.0.0", ] [[package]] @@ -15032,9 +17661,9 @@ dependencies = [ [[package]] name = "socket2" -version = "0.5.7" +version = "0.5.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c" +checksum = "c970269d99b64e60ec3bd6ad27270092a5394c4e309314b18ae3fe575695fbe8" dependencies = [ "libc", "windows-sys 0.52.0", @@ -15052,19 +17681,19 @@ dependencies = [ "httparse", "log", "rand", - "sha-1 0.9.8", + "sha-1", ] [[package]] name = "soketto" -version = "0.8.0" +version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "37468c595637c10857701c990f93a40ce0e357cedb0953d1c26c8d8027f9bb53" +checksum = "2e859df029d160cb88608f5d7df7fb4753fd20fdfb4de5644f3d8b8440841721" dependencies = [ "base64 0.22.1", "bytes", "futures", - "http 1.1.0", + "http 1.2.0", "httparse", "log", "rand", @@ -15081,17 +17710,39 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-api-proc-macro", - "sp-core", - "sp-externalities", - "sp-metadata-ir", - "sp-runtime", - "sp-runtime-interface", - "sp-state-machine", - "sp-std", - "sp-trie", - "sp-version", - "thiserror", + "sp-api-proc-macro 20.0.0", + "sp-core 34.0.0", + "sp-externalities 0.29.0", + "sp-metadata-ir 0.7.0", + "sp-runtime 38.0.1", + "sp-runtime-interface 28.0.0", + "sp-state-machine 0.42.0", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-trie 36.0.0", + "sp-version 36.0.0", + "thiserror 1.0.69", +] + +[[package]] +name = "sp-api" +version = "35.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "docify", + "hash-db", + "log", + "parity-scale-codec", + "scale-info", + "sp-api-proc-macro 21.0.0", + "sp-core 35.0.0", + "sp-externalities 0.30.0", + "sp-metadata-ir 0.8.0", + "sp-runtime 40.0.0", + "sp-runtime-interface 29.0.0", + "sp-state-machine 0.44.0", + "sp-trie 38.0.0", + "sp-version 38.0.0", + "thiserror 1.0.69", ] [[package]] @@ -15103,10 +17754,24 @@ dependencies = [ "Inflector", "blake2 0.10.6", "expander", - "proc-macro-crate 3.1.0", + "proc-macro-crate 3.2.0", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", +] + +[[package]] +name = "sp-api-proc-macro" +version = "21.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "Inflector", + "blake2 0.10.6", + "expander", + "proc-macro-crate 3.2.0", + "proc-macro2", + "quote", + "syn 2.0.90", ] [[package]] @@ -15118,9 +17783,21 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-std", + "sp-core 34.0.0", + "sp-io 37.0.0", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "sp-application-crypto" +version = "39.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "parity-scale-codec", + "scale-info", + "serde", + "sp-core 35.0.0", + "sp-io 39.0.0", ] [[package]] @@ -15135,7 +17812,21 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-std", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "static_assertions", +] + +[[package]] +name = "sp-arithmetic" +version = "26.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "docify", + "integer-sqrt", + "num-traits", + "parity-scale-codec", + "scale-info", + "serde", "static_assertions", ] @@ -15147,9 +17838,21 @@ checksum = "6a4a1e45abc3277f18484ee0b0f9808e4206eb696ad38500c892c72f33480d69" dependencies = [ "parity-scale-codec", "scale-info", - "sp-api", - "sp-application-crypto", - "sp-runtime", + "sp-api 33.0.0", + "sp-application-crypto 37.0.0", + "sp-runtime 38.0.1", +] + +[[package]] +name = "sp-authority-discovery" +version = "35.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "parity-scale-codec", + "scale-info", + "sp-api 35.0.0", + "sp-application-crypto 39.0.0", + "sp-runtime 40.0.0", ] [[package]] @@ -15158,44 +17861,53 @@ version = "33.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2cf199dc4f9f77abd3fd91c409759118159ce6ffcd8bc90b229b684ccc8c981f" dependencies = [ - "sp-api", - "sp-inherents", - "sp-runtime", + "sp-api 33.0.0", + "sp-inherents 33.0.0", + "sp-runtime 38.0.1", ] [[package]] -name = "sp-blockchain" -version = "35.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f27eb18b6ddf7d663f4886f7edba3eb73bd102d68cf10802c1f862e3b3db32ab" +name = "sp-block-builder" +version = "35.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ - "futures", - "log", - "parity-scale-codec", + "sp-api 35.0.0", + "sp-inherents 35.0.0", + "sp-runtime 40.0.0", +] + +[[package]] +name = "sp-blockchain" +version = "38.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "futures", + "parity-scale-codec", "parking_lot 0.12.3", "schnellru", - "sp-api", + "sp-api 35.0.0", "sp-consensus", + "sp-core 35.0.0", "sp-database", - "sp-runtime", - "sp-state-machine", - "thiserror", + "sp-runtime 40.0.0", + "sp-state-machine 0.44.0", + "thiserror 1.0.69", + "tracing", ] [[package]] name = "sp-consensus" -version = "0.39.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ab094e8a7e9e5c7f05f8d90592aa1d1cf9b3f547d0dd401daff7ed98af942e12" +version = "0.41.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "async-trait", "futures", "log", - "sp-core", - "sp-inherents", - "sp-runtime", - "sp-state-machine", - "thiserror", + "sp-core 35.0.0", + "sp-inherents 35.0.0", + "sp-runtime 40.0.0", + "sp-state-machine 0.44.0", + "thiserror 1.0.69", ] [[package]] @@ -15207,12 +17919,28 @@ dependencies = [ "async-trait", "parity-scale-codec", "scale-info", - "sp-api", - "sp-application-crypto", - "sp-consensus-slots", - "sp-inherents", - "sp-runtime", - "sp-timestamp", + "sp-api 33.0.0", + "sp-application-crypto 37.0.0", + "sp-consensus-slots 0.39.0", + "sp-inherents 33.0.0", + "sp-runtime 38.0.1", + "sp-timestamp 33.0.0", +] + +[[package]] +name = "sp-consensus-aura" +version = "0.41.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "async-trait", + "parity-scale-codec", + "scale-info", + "sp-api 35.0.0", + "sp-application-crypto 39.0.0", + "sp-consensus-slots 0.41.0", + "sp-inherents 35.0.0", + "sp-runtime 40.0.0", + "sp-timestamp 35.0.0", ] [[package]] @@ -15225,13 +17953,31 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-api", - "sp-application-crypto", - "sp-consensus-slots", - "sp-core", - "sp-inherents", - "sp-runtime", - "sp-timestamp", + "sp-api 33.0.0", + "sp-application-crypto 37.0.0", + "sp-consensus-slots 0.39.0", + "sp-core 34.0.0", + "sp-inherents 33.0.0", + "sp-runtime 38.0.1", + "sp-timestamp 33.0.0", +] + +[[package]] +name = "sp-consensus-babe" +version = "0.41.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "async-trait", + "parity-scale-codec", + "scale-info", + "serde", + "sp-api 35.0.0", + "sp-application-crypto 39.0.0", + "sp-consensus-slots 0.41.0", + "sp-core 35.0.0", + "sp-inherents 35.0.0", + "sp-runtime 40.0.0", + "sp-timestamp 35.0.0", ] [[package]] @@ -15244,15 +17990,35 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-api", - "sp-application-crypto", - "sp-core", - "sp-crypto-hashing", - "sp-io", - "sp-keystore", - "sp-mmr-primitives", - "sp-runtime", - "strum 0.26.2", + "sp-api 33.0.0", + "sp-application-crypto 37.0.0", + "sp-core 34.0.0", + "sp-crypto-hashing 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-io 37.0.0", + "sp-keystore 0.40.0", + "sp-mmr-primitives 33.0.0", + "sp-runtime 38.0.1", + "strum 0.26.3", +] + +[[package]] +name = "sp-consensus-beefy" +version = "23.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "parity-scale-codec", + "scale-info", + "serde", + "sp-api 35.0.0", + "sp-application-crypto 39.0.0", + "sp-core 35.0.0", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-io 39.0.0", + "sp-keystore 0.41.0", + "sp-mmr-primitives 35.0.0", + "sp-runtime 40.0.0", + "sp-weights 31.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "strum 0.26.3", ] [[package]] @@ -15266,11 +18032,28 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-api", - "sp-application-crypto", - "sp-core", - "sp-keystore", - "sp-runtime", + "sp-api 33.0.0", + "sp-application-crypto 37.0.0", + "sp-core 34.0.0", + "sp-keystore 0.40.0", + "sp-runtime 38.0.1", +] + +[[package]] +name = "sp-consensus-grandpa" +version = "22.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "finality-grandpa", + "log", + "parity-scale-codec", + "scale-info", + "serde", + "sp-api 35.0.0", + "sp-application-crypto 39.0.0", + "sp-core 35.0.0", + "sp-keystore 0.41.0", + "sp-runtime 40.0.0", ] [[package]] @@ -15282,7 +18065,18 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-timestamp", + "sp-timestamp 33.0.0", +] + +[[package]] +name = "sp-consensus-slots" +version = "0.41.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "parity-scale-codec", + "scale-info", + "serde", + "sp-timestamp 35.0.0", ] [[package]] @@ -15295,13 +18089,59 @@ dependencies = [ "bitflags 1.3.2", "blake2 0.10.6", "bounded-collections", - "bs58 0.5.1", + "bs58", + "dyn-clonable", + "ed25519-zebra", + "futures", + "hash-db", + "hash256-std-hasher", + "impl-serde 0.4.0", + "itertools 0.11.0", + "k256", + "libsecp256k1", + "log", + "merlin", + "parity-bip39", + "parity-scale-codec", + "parking_lot 0.12.3", + "paste", + "primitive-types 0.12.2", + "rand", + "scale-info", + "schnorrkel 0.11.4", + "secp256k1", + "secrecy", + "serde", + "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.29.0", + "sp-runtime-interface 28.0.0", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-storage 21.0.0", + "ss58-registry", + "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 = "35.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "array-bytes", + "bitflags 1.3.2", + "blake2 0.10.6", + "bounded-collections", + "bs58", "dyn-clonable", "ed25519-zebra", "futures", "hash-db", "hash256-std-hasher", - "impl-serde", + "impl-serde 0.5.0", "itertools 0.11.0", "k256", "libsecp256k1", @@ -15311,22 +18151,22 @@ dependencies = [ "parity-scale-codec", "parking_lot 0.12.3", "paste", - "primitive-types", + "primitive-types 0.13.1", "rand", "scale-info", "schnorrkel 0.11.4", "secp256k1", "secrecy", "serde", - "sp-crypto-hashing", - "sp-debug-derive", - "sp-externalities", - "sp-runtime-interface", - "sp-std", - "sp-storage", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-externalities 0.30.0", + "sp-runtime-interface 29.0.0", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-storage 22.0.0", "ss58-registry", - "substrate-bip39", - "thiserror", + "substrate-bip39 0.6.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "thiserror 1.0.69", "tracing", "w3f-bls", "zeroize", @@ -15346,6 +18186,19 @@ dependencies = [ "twox-hash", ] +[[package]] +name = "sp-crypto-hashing" +version = "0.1.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "blake2b_simd", + "byteorder", + "digest 0.10.7", + "sha2 0.10.8", + "sha3", + "twox-hash", +] + [[package]] name = "sp-crypto-hashing-proc-macro" version = "0.1.0" @@ -15353,15 +18206,24 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b85d0f1f1e44bd8617eb2a48203ee854981229e3e79e6f468c7175d5fd37489b" dependencies = [ "quote", - "sp-crypto-hashing", - "syn 2.0.96", + "sp-crypto-hashing 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 2.0.90", +] + +[[package]] +name = "sp-crypto-hashing-proc-macro" +version = "0.1.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "quote", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "syn 2.0.90", ] [[package]] name = "sp-database" version = "10.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "722cbecdbf5b94578137dbd07feb51e95f7de221be0c1ff4dcfe0bb4cd986929" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "kvdb", "parking_lot 0.12.3", @@ -15375,7 +18237,17 @@ checksum = "48d09fa0a5f7299fb81ee25ae3853d26200f7a348148aed6de76be905c007dbe" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", +] + +[[package]] +name = "sp-debug-derive" +version = "14.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.90", ] [[package]] @@ -15386,7 +18258,17 @@ checksum = "a904407d61cb94228c71b55a9d3708e9d6558991f9e83bd42bd91df37a159d30" dependencies = [ "environmental", "parity-scale-codec", - "sp-storage", + "sp-storage 21.0.0", +] + +[[package]] +name = "sp-externalities" +version = "0.30.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "environmental", + "parity-scale-codec", + "sp-storage 22.0.0", ] [[package]] @@ -15398,8 +18280,20 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde_json", - "sp-api", - "sp-runtime", + "sp-api 33.0.0", + "sp-runtime 38.0.1", +] + +[[package]] +name = "sp-genesis-builder" +version = "0.16.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "parity-scale-codec", + "scale-info", + "serde_json", + "sp-api 35.0.0", + "sp-runtime 40.0.0", ] [[package]] @@ -15412,8 +18306,21 @@ dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", "scale-info", - "sp-runtime", - "thiserror", + "sp-runtime 38.0.1", + "thiserror 1.0.69", +] + +[[package]] +name = "sp-inherents" +version = "35.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "async-trait", + "impl-trait-for-tuples", + "parity-scale-codec", + "scale-info", + "sp-runtime 40.0.0", + "thiserror 1.0.69", ] [[package]] @@ -15427,18 +18334,71 @@ dependencies = [ "libsecp256k1", "log", "parity-scale-codec", - "polkavm-derive", + "polkavm-derive 0.9.1", + "rustversion", + "secp256k1", + "sp-core 34.0.0", + "sp-crypto-hashing 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-externalities 0.29.0", + "sp-keystore 0.40.0", + "sp-runtime-interface 28.0.0", + "sp-state-machine 0.42.0", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-tracing 17.0.1 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-trie 36.0.0", + "tracing", + "tracing-core", +] + +[[package]] +name = "sp-io" +version = "38.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "59ef7eb561bb4839cc8424ce58c5ea236cbcca83f26fcc0426d8decfe8aa97d4" +dependencies = [ + "bytes", + "docify", + "ed25519-dalek", + "libsecp256k1", + "log", + "parity-scale-codec", + "polkavm-derive 0.9.1", + "rustversion", + "secp256k1", + "sp-core 34.0.0", + "sp-crypto-hashing 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-externalities 0.29.0", + "sp-keystore 0.40.0", + "sp-runtime-interface 28.0.0", + "sp-state-machine 0.43.0", + "sp-tracing 17.0.1 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-trie 37.0.0", + "tracing", + "tracing-core", +] + +[[package]] +name = "sp-io" +version = "39.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "bytes", + "docify", + "ed25519-dalek", + "libsecp256k1", + "log", + "parity-scale-codec", + "polkavm-derive 0.9.1", "rustversion", "secp256k1", - "sp-core", - "sp-crypto-hashing", - "sp-externalities", - "sp-keystore", - "sp-runtime-interface", - "sp-state-machine", - "sp-std", - "sp-tracing", - "sp-trie", + "sp-core 35.0.0", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-externalities 0.30.0", + "sp-keystore 0.41.0", + "sp-runtime-interface 29.0.0", + "sp-state-machine 0.44.0", + "sp-tracing 17.0.1 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-trie 38.0.0", "tracing", "tracing-core", ] @@ -15449,9 +18409,19 @@ version = "38.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b03536e1ff3ec2bd8181eeaa26c0d682ebdcbd01548a055cf591077188b8c3f0" dependencies = [ - "sp-core", - "sp-runtime", - "strum 0.26.2", + "sp-core 34.0.0", + "sp-runtime 38.0.1", + "strum 0.26.3", +] + +[[package]] +name = "sp-keyring" +version = "40.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "sp-core 35.0.0", + "sp-runtime 40.0.0", + "strum 0.26.3", ] [[package]] @@ -15462,8 +18432,19 @@ checksum = "0248b4d784cb4a01472276928977121fa39d977a5bb24793b6b15e64b046df42" dependencies = [ "parity-scale-codec", "parking_lot 0.12.3", - "sp-core", - "sp-externalities", + "sp-core 34.0.0", + "sp-externalities 0.29.0", +] + +[[package]] +name = "sp-keystore" +version = "0.41.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "parity-scale-codec", + "parking_lot 0.12.3", + "sp-core 35.0.0", + "sp-externalities 0.30.0", ] [[package]] @@ -15472,7 +18453,16 @@ version = "11.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f0c768c11afbe698a090386876911da4236af199cd38a5866748df4d8628aeff" dependencies = [ - "thiserror", + "thiserror 1.0.69", + "zstd 0.12.4", +] + +[[package]] +name = "sp-maybe-compressed-blob" +version = "11.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "thiserror 1.0.69", "zstd 0.12.4", ] @@ -15482,21 +18472,30 @@ version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a616fa51350b35326682a472ee8e6ba742fdacb18babac38ecd46b3e05ead869" dependencies = [ - "frame-metadata", + "frame-metadata 16.0.0", + "parity-scale-codec", + "scale-info", +] + +[[package]] +name = "sp-metadata-ir" +version = "0.8.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "frame-metadata 18.0.0", "parity-scale-codec", "scale-info", ] [[package]] name = "sp-mixnet" -version = "0.11.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2f65a570519da820ce3dc35053497a65f9fbd3f5a7dc81fa03078ca263e9311e" +version = "0.13.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "parity-scale-codec", "scale-info", - "sp-api", - "sp-application-crypto", + "sp-api 35.0.0", + "sp-application-crypto 39.0.0", ] [[package]] @@ -15510,11 +18509,28 @@ dependencies = [ "polkadot-ckb-merkle-mountain-range", "scale-info", "serde", - "sp-api", - "sp-core", - "sp-debug-derive", - "sp-runtime", - "thiserror", + "sp-api 33.0.0", + "sp-core 34.0.0", + "sp-debug-derive 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-runtime 38.0.1", + "thiserror 1.0.69", +] + +[[package]] +name = "sp-mmr-primitives" +version = "35.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "log", + "parity-scale-codec", + "polkadot-ckb-merkle-mountain-range", + "scale-info", + "serde", + "sp-api 35.0.0", + "sp-core 35.0.0", + "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-runtime 40.0.0", + "thiserror 1.0.69", ] [[package]] @@ -15526,9 +18542,22 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-arithmetic", - "sp-core", - "sp-runtime", + "sp-arithmetic 26.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-core 34.0.0", + "sp-runtime 38.0.1", +] + +[[package]] +name = "sp-npos-elections" +version = "35.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "parity-scale-codec", + "scale-info", + "serde", + "sp-arithmetic 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-core 35.0.0", + "sp-runtime 40.0.0", ] [[package]] @@ -15537,39 +18566,83 @@ version = "33.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cbe721c367760bddf10fcfa24fb48edd64c442f71db971f043c8ac73f51aa6e9" dependencies = [ - "sp-api", - "sp-core", - "sp-runtime", + "sp-api 33.0.0", + "sp-core 34.0.0", + "sp-runtime 38.0.1", +] + +[[package]] +name = "sp-offchain" +version = "35.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "sp-api 35.0.0", + "sp-core 35.0.0", + "sp-runtime 40.0.0", ] [[package]] name = "sp-panic-handler" -version = "13.0.0" +version = "13.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d8f5a17a0a11de029a8b811cb6e8b32ce7e02183cc04a3e965c383246798c416" +checksum = "81478b3740b357fa0ea10fcdc1ee02ebae7734e50f80342c4743476d9f78eeea" +dependencies = [ + "backtrace", + "regex", +] + +[[package]] +name = "sp-panic-handler" +version = "13.0.1" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "backtrace", - "lazy_static", "regex", ] [[package]] name = "sp-rpc" -version = "32.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "45458f0955870a92b3969098d4f1f4e9b55b4282d9f1dc112a51bb5bb6584900" +version = "33.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ - "rustc-hash", + "rustc-hash 1.1.0", "serde", - "sp-core", + "sp-core 35.0.0", ] [[package]] name = "sp-runtime" -version = "38.0.0" +version = "38.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "89ef409c414546b655ec1e94aaea178e4a97e21284a91b24c762aebf836d3b49" +checksum = "5273900f0b0bef48b2e1ff9c4fb5e188b8168ee5891418a427f4be2af92ee40f" +dependencies = [ + "docify", + "either", + "hash256-std-hasher", + "impl-trait-for-tuples", + "log", + "num-traits", + "parity-scale-codec", + "paste", + "rand", + "scale-info", + "serde", + "simple-mermaid", + "sp-application-crypto 37.0.0", + "sp-arithmetic 26.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-core 34.0.0", + "sp-io 37.0.0", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-weights 31.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "tracing", +] + +[[package]] +name = "sp-runtime" +version = "40.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ + "binary-merkle-tree 16.0.0", "docify", "either", "hash256-std-hasher", @@ -15582,12 +18655,15 @@ dependencies = [ "scale-info", "serde", "simple-mermaid", - "sp-application-crypto", - "sp-arithmetic", - "sp-core", - "sp-io", - "sp-std", - "sp-weights", + "sp-application-crypto 39.0.0", + "sp-arithmetic 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-core 35.0.0", + "sp-io 39.0.0", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-trie 38.0.0", + "sp-weights 31.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "tracing", + "tuplex", ] [[package]] @@ -15599,14 +18675,33 @@ dependencies = [ "bytes", "impl-trait-for-tuples", "parity-scale-codec", - "polkavm-derive", - "primitive-types", - "sp-externalities", - "sp-runtime-interface-proc-macro", - "sp-std", - "sp-storage", - "sp-tracing", - "sp-wasm-interface", + "polkavm-derive 0.9.1", + "primitive-types 0.12.2", + "sp-externalities 0.29.0", + "sp-runtime-interface-proc-macro 18.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 21.0.0", + "sp-tracing 17.0.1 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-wasm-interface 21.0.1 (registry+https://github.com/rust-lang/crates.io-index)", + "static_assertions", +] + +[[package]] +name = "sp-runtime-interface" +version = "29.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "bytes", + "impl-trait-for-tuples", + "parity-scale-codec", + "polkavm-derive 0.9.1", + "primitive-types 0.13.1", + "sp-externalities 0.30.0", + "sp-runtime-interface-proc-macro 18.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-storage 22.0.0", + "sp-tracing 17.0.1 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-wasm-interface 21.0.1 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", "static_assertions", ] @@ -15618,10 +18713,23 @@ checksum = "0195f32c628fee3ce1dfbbf2e7e52a30ea85f3589da9fe62a8b816d70fc06294" dependencies = [ "Inflector", "expander", - "proc-macro-crate 3.1.0", + "proc-macro-crate 3.2.0", + "proc-macro2", + "quote", + "syn 2.0.90", +] + +[[package]] +name = "sp-runtime-interface-proc-macro" +version = "18.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "Inflector", + "expander", + "proc-macro-crate 3.2.0", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -15632,11 +18740,25 @@ checksum = "4daf2e40ffc7e7e8de08efb860eb9534faf614a49c53dc282f430faedb4aed13" dependencies = [ "parity-scale-codec", "scale-info", - "sp-api", - "sp-core", - "sp-keystore", - "sp-runtime", - "sp-staking", + "sp-api 33.0.0", + "sp-core 34.0.0", + "sp-keystore 0.40.0", + "sp-runtime 38.0.1", + "sp-staking 33.0.0", +] + +[[package]] +name = "sp-session" +version = "37.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "parity-scale-codec", + "scale-info", + "sp-api 35.0.0", + "sp-core 35.0.0", + "sp-keystore 0.41.0", + "sp-runtime 40.0.0", + "sp-staking 37.0.0", ] [[package]] @@ -15649,8 +18771,21 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-runtime", + "sp-core 34.0.0", + "sp-runtime 38.0.1", +] + +[[package]] +name = "sp-staking" +version = "37.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "impl-trait-for-tuples", + "parity-scale-codec", + "scale-info", + "serde", + "sp-core 35.0.0", + "sp-runtime 40.0.0", ] [[package]] @@ -15665,20 +18800,60 @@ dependencies = [ "parking_lot 0.12.3", "rand", "smallvec", - "sp-core", - "sp-externalities", - "sp-panic-handler", - "sp-trie", - "thiserror", + "sp-core 34.0.0", + "sp-externalities 0.29.0", + "sp-panic-handler 13.0.1 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-trie 36.0.0", + "thiserror 1.0.69", "tracing", "trie-db", ] [[package]] -name = "sp-statement-store" -version = "17.0.0" +name = "sp-state-machine" +version = "0.43.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b03aa86b1b46549889d32348bc85a8135c725665115567507231a6d85712aaac" +checksum = "930104d6ae882626e8880d9b1578da9300655d337a3ffb45e130c608b6c89660" +dependencies = [ + "hash-db", + "log", + "parity-scale-codec", + "parking_lot 0.12.3", + "rand", + "smallvec", + "sp-core 34.0.0", + "sp-externalities 0.29.0", + "sp-panic-handler 13.0.1 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-trie 37.0.0", + "thiserror 1.0.69", + "tracing", + "trie-db", +] + +[[package]] +name = "sp-state-machine" +version = "0.44.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "hash-db", + "log", + "parity-scale-codec", + "parking_lot 0.12.3", + "rand", + "smallvec", + "sp-core 35.0.0", + "sp-externalities 0.30.0", + "sp-panic-handler 13.0.1 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-trie 38.0.0", + "thiserror 1.0.69", + "tracing", + "trie-db", +] + +[[package]] +name = "sp-statement-store" +version = "19.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "aes-gcm", "curve25519-dalek", @@ -15688,14 +18863,14 @@ dependencies = [ "rand", "scale-info", "sha2 0.10.8", - "sp-api", - "sp-application-crypto", - "sp-core", - "sp-crypto-hashing", - "sp-externalities", - "sp-runtime", - "sp-runtime-interface", - "thiserror", + "sp-api 35.0.0", + "sp-application-crypto 39.0.0", + "sp-core 35.0.0", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-externalities 0.30.0", + "sp-runtime 40.0.0", + "sp-runtime-interface 29.0.0", + "thiserror 1.0.69", "x25519-dalek", ] @@ -15705,17 +18880,34 @@ version = "14.0.0" 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?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" + [[package]] name = "sp-storage" version = "21.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "99c82989b3a4979a7e1ad848aad9f5d0b4388f1f454cc131766526601ab9e8f8" dependencies = [ - "impl-serde", + "impl-serde 0.4.0", + "parity-scale-codec", + "ref-cast", + "serde", + "sp-debug-derive 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "sp-storage" +version = "22.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "impl-serde 0.5.0", "parity-scale-codec", "ref-cast", "serde", - "sp-debug-derive", + "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", ] [[package]] @@ -15726,21 +18918,44 @@ checksum = "78becf144a76f6fd108dfe94a90e20a185b38c0b310dc5482328196143c8266b" dependencies = [ "async-trait", "parity-scale-codec", - "sp-inherents", - "sp-runtime", - "thiserror", + "sp-inherents 33.0.0", + "sp-runtime 38.0.1", + "thiserror 1.0.69", +] + +[[package]] +name = "sp-timestamp" +version = "35.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "async-trait", + "parity-scale-codec", + "sp-inherents 35.0.0", + "sp-runtime 40.0.0", + "thiserror 1.0.69", ] [[package]] name = "sp-tracing" -version = "17.0.0" +version = "17.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "90b3decf116db9f1dfaf1f1597096b043d0e12c952d3bcdc018c6d6b77deec7e" +checksum = "cf641a1d17268c8fcfdb8e0fa51a79c2d4222f4cfda5f3944dbdbc384dced8d5" +dependencies = [ + "parity-scale-codec", + "tracing", + "tracing-core", + "tracing-subscriber", +] + +[[package]] +name = "sp-tracing" +version = "17.0.1" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "parity-scale-codec", "tracing", "tracing-core", - "tracing-subscriber 0.2.25", + "tracing-subscriber", ] [[package]] @@ -15749,30 +18964,62 @@ version = "33.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a3c9d1604aadc15b70e95f4388d0b1aa380215520b7ddfd372531a6d8262269c" dependencies = [ - "sp-api", - "sp-runtime", + "sp-api 33.0.0", + "sp-runtime 38.0.1", +] + +[[package]] +name = "sp-transaction-pool" +version = "35.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "sp-api 35.0.0", + "sp-runtime 40.0.0", +] + +[[package]] +name = "sp-transaction-storage-proof" +version = "35.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "async-trait", + "parity-scale-codec", + "scale-info", + "sp-core 35.0.0", + "sp-inherents 35.0.0", + "sp-runtime 40.0.0", + "sp-trie 38.0.0", ] [[package]] -name = "sp-transaction-storage-proof" -version = "33.0.0" +name = "sp-trie" +version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b5a891cb913015bb99401e372255193cc3848c6fe5c2f6fe2383ef9588cb190" +checksum = "841d717c0f465f5371569e6fdc25b6f32d47c15d6e4c92b3b779e1c9b18b951d" dependencies = [ - "async-trait", + "ahash 0.8.11", + "hash-db", + "lazy_static", + "memory-db", + "nohash-hasher", "parity-scale-codec", + "parking_lot 0.12.3", + "rand", "scale-info", - "sp-core", - "sp-inherents", - "sp-runtime", - "sp-trie", + "schnellru", + "sp-core 34.0.0", + "sp-externalities 0.29.0", + "thiserror 1.0.69", + "tracing", + "trie-db", + "trie-root", ] [[package]] name = "sp-trie" -version = "36.0.0" +version = "37.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "841d717c0f465f5371569e6fdc25b6f32d47c15d6e4c92b3b779e1c9b18b951d" +checksum = "6282aef9f4b6ecd95a67a45bcdb67a71f4a4155c09a53c10add4ffe823db18cd" dependencies = [ "ahash 0.8.11", "hash-db", @@ -15784,9 +19031,31 @@ dependencies = [ "rand", "scale-info", "schnellru", - "sp-core", - "sp-externalities", - "thiserror", + "sp-core 34.0.0", + "sp-externalities 0.29.0", + "thiserror 1.0.69", + "tracing", + "trie-db", + "trie-root", +] + +[[package]] +name = "sp-trie" +version = "38.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "ahash 0.8.11", + "hash-db", + "memory-db", + "nohash-hasher", + "parity-scale-codec", + "parking_lot 0.12.3", + "rand", + "scale-info", + "schnellru", + "sp-core 35.0.0", + "sp-externalities 0.30.0", + "thiserror 1.0.69", "tracing", "trie-db", "trie-root", @@ -15798,16 +19067,33 @@ version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bccf96fefae339dee7c4453f91be64eb28cce4c2fe82130445cf096b18b2c081" dependencies = [ - "impl-serde", + "impl-serde 0.4.0", + "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 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-version-proc-macro 14.0.0", + "thiserror 1.0.69", +] + +[[package]] +name = "sp-version" +version = "38.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "impl-serde 0.5.0", "parity-scale-codec", "parity-wasm", "scale-info", "serde", - "sp-crypto-hashing-proc-macro", - "sp-runtime", - "sp-std", - "sp-version-proc-macro", - "thiserror", + "sp-crypto-hashing-proc-macro 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-runtime 40.0.0", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-version-proc-macro 15.0.0", + "thiserror 1.0.69", ] [[package]] @@ -15819,14 +19105,37 @@ dependencies = [ "parity-scale-codec", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", +] + +[[package]] +name = "sp-version-proc-macro" +version = "15.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "parity-scale-codec", + "proc-macro-warning 1.0.2", + "proc-macro2", + "quote", + "syn 2.0.90", ] [[package]] name = "sp-wasm-interface" -version = "21.0.0" +version = "21.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3b04b919e150b4736d85089d49327eab65507deb1485eec929af69daa2278eb3" +checksum = "b066baa6d57951600b14ffe1243f54c47f9c23dd89c262e17ca00ae8dca58be9" +dependencies = [ + "anyhow", + "impl-trait-for-tuples", + "log", + "parity-scale-codec", +] + +[[package]] +name = "sp-wasm-interface" +version = "21.0.1" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "anyhow", "impl-trait-for-tuples", @@ -15846,8 +19155,22 @@ dependencies = [ "scale-info", "serde", "smallvec", - "sp-arithmetic", - "sp-debug-derive", + "sp-arithmetic 26.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 = "31.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "bounded-collections", + "parity-scale-codec", + "scale-info", + "serde", + "smallvec", + "sp-arithmetic 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-debug-derive 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", ] [[package]] @@ -15883,9 +19206,9 @@ dependencies = [ [[package]] name = "ss58-registry" -version = "1.47.0" +version = "1.51.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4743ce898933fbff7bbf414f497c459a782d496269644b3d650a398ae6a487ba" +checksum = "19409f13998e55816d1c728395af0b52ec066206341d939e22e7766df9b494b8" dependencies = [ "Inflector", "num-format", @@ -15931,13 +19254,26 @@ version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cd00d586b0dac4f42736bdd0ad52213a891b240e011ea82b38938263dd821c25" dependencies = [ - "cumulus-primitives-core", - "frame-support", - "frame-system", + "cumulus-primitives-core 0.14.0", + "frame-support 36.0.1", + "frame-system 36.1.0", + "parity-scale-codec", + "scale-info", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "staging-parachain-info" +version = "0.18.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "cumulus-primitives-core 0.17.0", + "frame-support 39.0.0", + "frame-system 39.0.0", "parity-scale-codec", "scale-info", - "sp-runtime", - "sp-std", + "sp-runtime 40.0.0", ] [[package]] @@ -15955,27 +19291,48 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-weights", + "sp-weights 31.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "xcm-procedural 8.0.0", ] [[package]] name = "staging-xcm" -version = "14.1.0" +version = "14.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f2b7b5f531c6bf9629514ef8e5fda0e9e80dd84516957f710940d0e01d3fb36c" +checksum = "21f9bbb4905116e1ba08efe2264c046ac4d6a42dcfcb402705119068f5ac3671" +dependencies = [ + "array-bytes", + "bounded-collections", + "derivative", + "environmental", + "impl-trait-for-tuples", + "log", + "parity-scale-codec", + "scale-info", + "serde", + "sp-weights 31.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "xcm-procedural 10.0.1", +] + +[[package]] +name = "staging-xcm" +version = "15.0.1" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "array-bytes", "bounded-collections", "derivative", "environmental", + "frame-support 39.0.0", + "hex-literal", "impl-trait-for-tuples", "log", "parity-scale-codec", "scale-info", "serde", - "sp-weights", - "xcm-procedural 10.1.0", + "sp-runtime 40.0.0", + "sp-weights 31.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "xcm-procedural 11.0.0", ] [[package]] @@ -15984,21 +19341,43 @@ version = "15.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "847fa2afe1bed2751eaabf7b91fa4043037947f17653d7cc59ea202cc44c6bb8" dependencies = [ - "frame-support", - "frame-system", + "frame-support 36.0.1", + "frame-system 36.1.0", + "impl-trait-for-tuples", + "log", + "pallet-transaction-payment 36.0.0", + "parity-scale-codec", + "polkadot-parachain-primitives 13.0.0", + "scale-info", + "sp-arithmetic 26.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-io 37.0.0", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-weights 31.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "staging-xcm 14.0.3", + "staging-xcm-executor 15.0.0", +] + +[[package]] +name = "staging-xcm-builder" +version = "18.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "frame-support 39.0.0", + "frame-system 39.0.0", "impl-trait-for-tuples", "log", - "pallet-transaction-payment", + "pallet-asset-conversion 21.0.0", + "pallet-transaction-payment 39.0.0", "parity-scale-codec", - "polkadot-parachain-primitives", + "polkadot-parachain-primitives 15.0.0", "scale-info", - "sp-arithmetic", - "sp-io", - "sp-runtime", - "sp-std", - "sp-weights", - "staging-xcm 14.1.0", - "staging-xcm-executor", + "sp-arithmetic 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-io 39.0.0", + "sp-runtime 40.0.0", + "sp-weights 31.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "staging-xcm 15.0.1", + "staging-xcm-executor 18.0.0", ] [[package]] @@ -16008,19 +19387,39 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "26b98d8219449eaf02e71a7edf1a14b14d4c713dd01d9df66fde1ce30dba4d6d" dependencies = [ "environmental", - "frame-benchmarking", - "frame-support", + "frame-benchmarking 36.0.0", + "frame-support 36.0.1", "impl-trait-for-tuples", "log", "parity-scale-codec", "scale-info", - "sp-arithmetic", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", - "sp-weights", - "staging-xcm 14.1.0", + "sp-arithmetic 26.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-core 34.0.0", + "sp-io 37.0.0", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-weights 31.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "staging-xcm 14.0.3", +] + +[[package]] +name = "staging-xcm-executor" +version = "18.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "environmental", + "frame-benchmarking 39.0.0", + "frame-support 39.0.0", + "impl-trait-for-tuples", + "parity-scale-codec", + "scale-info", + "sp-arithmetic 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-core 35.0.0", + "sp-io 39.0.0", + "sp-runtime 40.0.0", + "sp-weights 31.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "staging-xcm 15.0.1", + "tracing", ] [[package]] @@ -16036,7 +19435,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8a2a1c578e98c1c16fc3b8ec1328f7659a500737d7a0c6d625e73e830ff9c1f6" dependencies = [ "bitflags 1.3.2", - "cfg_aliases", + "cfg_aliases 0.1.1", "libc", "parking_lot 0.11.2", "parking_lot_core 0.8.6", @@ -16046,37 +19445,17 @@ dependencies = [ [[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", "syn 1.0.109", ] -[[package]] -name = "str0m" -version = "0.5.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6706347e49b13373f7ddfafad47df7583ed52083d6fc8a594eb2c80497ef959d" -dependencies = [ - "combine", - "crc", - "fastrand 2.1.0", - "hmac 0.12.1", - "once_cell", - "openssl", - "openssl-sys", - "sctp-proto", - "serde", - "sha-1 0.10.1", - "thiserror", - "tracing", -] - [[package]] name = "string-interner" version = "0.17.0" @@ -16108,9 +19487,9 @@ checksum = "063e6045c0e62079840579a7e47a355ae92f60eb74daaf156fb1e84ba164e63f" [[package]] name = "strum" -version = "0.26.2" +version = "0.26.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5d8cec3501a5194c432b2b7976db6b7d10ec95c253208b45f83f7136aa985e29" +checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06" dependencies = [ "strum_macros 0.26.4", ] @@ -16138,7 +19517,7 @@ dependencies = [ "proc-macro2", "quote", "rustversion", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -16154,79 +19533,90 @@ dependencies = [ "zeroize", ] +[[package]] +name = "substrate-bip39" +version = "0.6.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "hmac 0.12.1", + "pbkdf2", + "schnorrkel 0.11.4", + "sha2 0.10.8", + "zeroize", +] + [[package]] name = "substrate-build-script-utils" version = "11.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b285e7d183a32732fdc119f3d81b7915790191fad602b7c709ef247073c77a2e" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" [[package]] name = "substrate-frame-rpc-system" -version = "36.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "02b8837de37f5ea6316846a63dc48489b63ebde05df73ba7d7077b3135487560" +version = "41.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "docify", - "frame-system-rpc-runtime-api", + "frame-system-rpc-runtime-api 35.0.0", "futures", - "jsonrpsee", + "jsonrpsee 0.24.7", "log", "parity-scale-codec", "sc-rpc-api", "sc-transaction-pool-api", - "sp-api", - "sp-block-builder", + "sp-api 35.0.0", + "sp-block-builder 35.0.0", "sp-blockchain", - "sp-core", - "sp-runtime", + "sp-core 35.0.0", + "sp-runtime 40.0.0", ] [[package]] name = "substrate-prometheus-endpoint" -version = "0.17.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0d8fe06b03b8a291c09507c42f92a2c2c10dd3d62975d02c7f64a92d87bfe09b" +version = "0.17.1" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ - "hyper 0.14.29", + "http-body-util", + "hyper 1.5.2", + "hyper-util", "log", "prometheus", - "thiserror", + "thiserror 1.0.69", "tokio", ] [[package]] name = "substrate-state-machine" -version = "1.15.0" -source = "git+https://github.com/r0gue-io/ismp?branch=polkadot-v1.14.0#f95ee188c3b73ca3c4d6319ab85cff12fe757c4c" +version = "1.15.3" +source = "git+https://github.com/r0gue-io/ismp?branch=polkadot-stable2412#144c98de434ebd6732283b0585c1942c64577873" dependencies = [ - "frame-support", + "frame-support 39.0.0", "hash-db", "ismp", "pallet-ismp", "parity-scale-codec", - "primitive-types", + "primitive-types 0.13.1", "scale-info", "serde", - "sp-consensus-aura", - "sp-runtime", - "sp-trie", + "sp-consensus-aura 0.41.0", + "sp-consensus-babe 0.41.0", + "sp-runtime 40.0.0", + "sp-trie 38.0.0", ] [[package]] name = "substrate-state-trie-migration-rpc" -version = "35.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "df246ac77a641b23068e8c49cff4dfbaefc78405f80c9589a10909e02d525141" +version = "40.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ - "jsonrpsee", + "jsonrpsee 0.24.7", "parity-scale-codec", "sc-client-api", "sc-rpc-api", "serde", - "sp-core", - "sp-runtime", - "sp-state-machine", - "sp-trie", + "sp-core 35.0.0", + "sp-runtime 40.0.0", + "sp-state-machine 0.44.0", + "sp-trie 38.0.0", "trie-db", ] @@ -16235,26 +19625,47 @@ name = "substrate-wasm-builder" version = "23.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7dc993ad871b63fbba60362f3ea86583f5e7e1256e8fdcb3b5b249c9ead354bf" +dependencies = [ + "build-helper", + "cargo_metadata 0.15.4", + "console", + "filetime", + "parity-wasm", + "polkavm-linker 0.9.2", + "sp-maybe-compressed-blob 11.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "strum 0.26.3", + "tempfile", + "toml 0.8.19", + "walkdir", + "wasm-opt", +] + +[[package]] +name = "substrate-wasm-builder" +version = "25.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "array-bytes", "build-helper", "cargo_metadata 0.15.4", "console", "filetime", - "frame-metadata", + "frame-metadata 18.0.0", + "jobserver", "merkleized-metadata", "parity-scale-codec", "parity-wasm", - "polkavm-linker", + "polkavm-linker 0.9.2", "sc-executor", - "sp-core", - "sp-io", - "sp-maybe-compressed-blob", - "sp-tracing", - "sp-version", - "strum 0.26.2", + "shlex", + "sp-core 35.0.0", + "sp-io 39.0.0", + "sp-maybe-compressed-blob 11.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-tracing 17.0.1 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-version 38.0.0", + "strum 0.26.3", "tempfile", - "toml 0.8.14", + "toml 0.8.19", "walkdir", "wasm-opt", ] @@ -16267,9 +19678,9 @@ checksum = "2d67a5a62ba6e01cb2192ff309324cb4875d0c451d55fe2319433abe7a05a8ee" [[package]] name = "subtle" -version = "2.5.0" +version = "2.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc" +checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" [[package]] name = "subtle-ng" @@ -16277,6 +19688,159 @@ version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "734676eb262c623cec13c3155096e08d1f8f29adce39ba17948b18dad1e54142" +[[package]] +name = "subxt" +version = "0.37.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a160cba1edbf3ec4fbbeaea3f1a185f70448116a6bccc8276bb39adb3b3053bd" +dependencies = [ + "async-trait", + "derive-where", + "either", + "frame-metadata 16.0.0", + "futures", + "hex", + "impl-serde 0.4.0", + "instant", + "jsonrpsee 0.22.5", + "parity-scale-codec", + "primitive-types 0.12.2", + "reconnecting-jsonrpsee-ws-client", + "scale-bits 0.6.0", + "scale-decode 0.13.1", + "scale-encode 0.7.2", + "scale-info", + "scale-value", + "serde", + "serde_json", + "sp-crypto-hashing 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "subxt-core", + "subxt-lightclient", + "subxt-macro", + "subxt-metadata", + "thiserror 1.0.69", + "tokio-util", + "tracing", + "url", +] + +[[package]] +name = "subxt-codegen" +version = "0.37.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d703dca0905cc5272d7cc27a4ac5f37dcaae7671acc7fef0200057cc8c317786" +dependencies = [ + "frame-metadata 16.0.0", + "heck 0.5.0", + "hex", + "jsonrpsee 0.22.5", + "parity-scale-codec", + "proc-macro2", + "quote", + "scale-info", + "scale-typegen", + "subxt-metadata", + "syn 2.0.90", + "thiserror 1.0.69", + "tokio", +] + +[[package]] +name = "subxt-core" +version = "0.37.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3af3b36405538a36b424d229dc908d1396ceb0994c90825ce928709eac1a159a" +dependencies = [ + "base58", + "blake2 0.10.6", + "derive-where", + "frame-metadata 16.0.0", + "hashbrown 0.14.5", + "hex", + "impl-serde 0.4.0", + "parity-scale-codec", + "primitive-types 0.12.2", + "scale-bits 0.6.0", + "scale-decode 0.13.1", + "scale-encode 0.7.2", + "scale-info", + "scale-value", + "serde", + "serde_json", + "sp-crypto-hashing 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "subxt-metadata", + "tracing", +] + +[[package]] +name = "subxt-lightclient" +version = "0.37.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9d9406fbdb9548c110803cb8afa750f8b911d51eefdf95474b11319591d225d9" +dependencies = [ + "futures", + "futures-util", + "serde", + "serde_json", + "smoldot-light 0.14.0", + "thiserror 1.0.69", + "tokio", + "tokio-stream", + "tracing", +] + +[[package]] +name = "subxt-macro" +version = "0.37.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1c195f803d70687e409aba9be6c87115b5da8952cd83c4d13f2e043239818fcd" +dependencies = [ + "darling 0.20.10", + "parity-scale-codec", + "proc-macro-error", + "quote", + "scale-typegen", + "subxt-codegen", + "syn 2.0.90", +] + +[[package]] +name = "subxt-metadata" +version = "0.37.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "738be5890fdeff899bbffff4d9c0f244fe2a952fb861301b937e3aa40ebb55da" +dependencies = [ + "frame-metadata 16.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)", +] + +[[package]] +name = "subxt-signer" +version = "0.37.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f49888ae6ae90fe01b471193528eea5bd4ed52d8eecd2d13f4a2333b87388850" +dependencies = [ + "bip32", + "bip39", + "cfg-if", + "hex", + "hmac 0.12.1", + "keccak-hash", + "parity-scale-codec", + "pbkdf2", + "regex", + "schnorrkel 0.11.4", + "secp256k1", + "secrecy", + "sha2 0.10.8", + "sp-crypto-hashing 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "subxt-core", + "zeroize", +] + [[package]] name = "syn" version = "1.0.109" @@ -16290,9 +19854,9 @@ dependencies = [ [[package]] name = "syn" -version = "2.0.96" +version = "2.0.90" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d5d0adab1ae378d7f53bdebc67a39f1f151407ef230f0ce2883572f5d8985c80" +checksum = "919d3b74a5dd0ccd15aeb8f93e7006bd9e14c295087c9896a110f490752bcf31" dependencies = [ "proc-macro2", "quote", @@ -16319,25 +19883,25 @@ checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[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.6.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", @@ -16346,36 +19910,36 @@ dependencies = [ [[package]] name = "system-parachains-constants" version = "1.0.0" -source = "git+https://github.com/paseo-network/runtimes/?tag=v1.3.3#871469acf97f0f233d0d50ebf80b414305a5c055" +source = "git+https://github.com/paseo-network/runtimes?tag=v1.3.4#313b81aa2b2cb076b4f99c9b2bea040a8bcf709f" dependencies = [ - "frame-support", - "parachains-common", + "frame-support 36.0.1", + "parachains-common 15.0.0", "paseo-runtime-constants", - "polkadot-core-primitives", - "polkadot-primitives", + "polkadot-core-primitives 14.0.0", + "polkadot-primitives 14.0.0", "smallvec", - "sp-core", - "sp-runtime", - "sp-std", - "staging-xcm 14.1.0", + "sp-core 34.0.0", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "staging-xcm 14.0.3", ] [[package]] name = "system-parachains-constants" version = "1.0.0" -source = "git+https://github.com/polkadot-fellows/runtimes?tag=v1.3.3#55bd514d60311b67cb11400a545cb64ce7a87c0e" +source = "git+https://github.com/polkadot-fellows/runtimes?tag=v1.3.4#3b18d942c766c7f358da50608b44edbe218284a4" dependencies = [ - "frame-support", + "frame-support 36.0.1", "kusama-runtime-constants", - "parachains-common", - "polkadot-core-primitives", - "polkadot-primitives", + "parachains-common 15.0.0", + "polkadot-core-primitives 14.0.0", + "polkadot-primitives 14.0.0", "polkadot-runtime-constants", "smallvec", - "sp-core", - "sp-runtime", - "sp-std", - "staging-xcm 14.1.0", + "sp-core 34.0.0", + "sp-runtime 38.0.1", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "staging-xcm 14.0.3", ] [[package]] @@ -16386,20 +19950,21 @@ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" [[package]] name = "target-lexicon" -version = "0.12.14" +version = "0.12.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e1fc403891a21bcfb7c37834ba66a547a8f402146eba7265b5a6d88059c9ff2f" +checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1" [[package]] name = "tempfile" -version = "3.10.1" +version = "3.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1" +checksum = "28cce251fcbc87fac86a866eeb0d6c2d536fc16d06f184bb61aeae11aa4cee0c" dependencies = [ "cfg-if", - "fastrand 2.1.0", - "rustix 0.38.34", - "windows-sys 0.52.0", + "fastrand 2.3.0", + "once_cell", + "rustix 0.38.42", + "windows-sys 0.59.0", ] [[package]] @@ -16423,12 +19988,12 @@ dependencies = [ [[package]] name = "terminal_size" -version = "0.3.0" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "21bebf2b7c9e0a515f6e0f8c51dc0f8e4696391e6f1ff30379559f8365fb0df7" +checksum = "5352447f921fda68cf61b4101566c0bdb5104eff6804d0678e5227580ab6a4e9" dependencies = [ - "rustix 0.38.34", - "windows-sys 0.48.0", + "rustix 0.38.42", + "windows-sys 0.59.0", ] [[package]] @@ -16439,27 +20004,35 @@ checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76" [[package]] name = "testnet-parachains-constants" -version = "8.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ad78d2dae5b039af1b1dc70ee765fb2d98d64c5e2a8bf1dc00d25c930a62f01d" +version = "11.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ - "cumulus-primitives-core", - "frame-support", - "polkadot-core-primitives", + "cumulus-primitives-core 0.17.0", + "frame-support 39.0.0", + "polkadot-core-primitives 16.0.0", "rococo-runtime-constants", "smallvec", - "sp-runtime", - "staging-xcm 14.1.0", + "sp-runtime 40.0.0", + "staging-xcm 15.0.1", "westend-runtime-constants", ] [[package]] name = "thiserror" -version = "1.0.61" +version = "1.0.69" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c546c80d6be4bc6a00c0f01730c08df82eaa7a7a61f11d656526506112cc1709" +checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" dependencies = [ - "thiserror-impl", + "thiserror-impl 1.0.69", +] + +[[package]] +name = "thiserror" +version = "2.0.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "08f5383f3e0071702bf93ab5ee99b52d26936be9dedd9413067cbdcddcb6141a" +dependencies = [ + "thiserror-impl 2.0.8", ] [[package]] @@ -16479,18 +20052,29 @@ checksum = "e4c60d69f36615a077cc7663b9cb8e42275722d23e58a7fa3d2c7f2915d09d04" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", +] + +[[package]] +name = "thiserror-impl" +version = "1.0.69" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.90", ] [[package]] name = "thiserror-impl" -version = "1.0.61" +version = "2.0.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "46c3384250002a6d5af4d114f2845d37b57521033f30d5c3f46c4d70e1197533" +checksum = "f2f357fcec90b3caef6623a099691be676d033b40a058ac95d2a6ade6fa0c943" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -16518,19 +20102,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" @@ -16554,9 +20125,9 @@ dependencies = [ [[package]] name = "time" -version = "0.3.36" +version = "0.3.37" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885" +checksum = "35e7868883861bd0e56d9ac6efcaaca0d6d5d82a2a7ec8209ff492c07cf37b21" dependencies = [ "deranged", "itoa", @@ -16575,9 +20146,9 @@ checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" [[package]] name = "time-macros" -version = "0.2.18" +version = "0.2.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf" +checksum = "2834e6017e3e5e4b9834939793b282bc03b37a3336245fa820e35e233e2a85de" dependencies = [ "num-conv", "time-core", @@ -16604,9 +20175,9 @@ dependencies = [ [[package]] name = "tinyvec" -version = "1.6.0" +version = "1.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" +checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938" dependencies = [ "tinyvec_macros", ] @@ -16619,32 +20190,31 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.38.0" +version = "1.42.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ba4f4a02a7a80d6f274636f0aa95c7e383b912d41fe721a31f29e29698585a4a" +checksum = "5cec9b21b0450273377fc97bd4c33a8acffc8c996c987a7c5b319a0083707551" dependencies = [ "backtrace", "bytes", "libc", "mio", - "num_cpus", "parking_lot 0.12.3", "pin-project-lite", "signal-hook-registry", - "socket2 0.5.7", + "socket2 0.5.8", "tokio-macros", - "windows-sys 0.48.0", + "windows-sys 0.52.0", ] [[package]] name = "tokio-macros" -version = "2.3.0" +version = "2.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f5ae998a069d4b5aba8ee9dad856af7d520c3699e6159b185c2acd48155d39a" +checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -16659,20 +20229,30 @@ dependencies = [ [[package]] name = "tokio-rustls" -version = "0.26.0" +version = "0.25.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c7bc40d0e5a97695bb96e27995cd3a08538541b0a846f65bba7a359f36700d4" +checksum = "775e0c0f0adb3a2f22a00c4745d728b479985fc15ee7ca6a2608388c5569860f" dependencies = [ - "rustls 0.23.10", + "rustls 0.22.4", "rustls-pki-types", "tokio", ] +[[package]] +name = "tokio-rustls" +version = "0.26.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5f6d0975eaace0cf0fcadee4e4aaa5da15b5c079146f2cffb67c113be122bf37" +dependencies = [ + "rustls 0.23.20", + "tokio", +] + [[package]] name = "tokio-stream" -version = "0.1.15" +version = "0.1.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "267ac89e0bec6e691e5813911606935d77c476ff49024f98abcea3e7b15e37af" +checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047" dependencies = [ "futures-core", "pin-project-lite", @@ -16697,9 +20277,9 @@ dependencies = [ [[package]] name = "tokio-util" -version = "0.7.11" +version = "0.7.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9cf6b47b3771c49ac75ad09a6162f53ad4b8088b76ac60e8ec1455b31a189fe1" +checksum = "d7fcaa8d55a2bdd6b83ace262b016eca0d79ee02818c5c1bcdf0305114081078" dependencies = [ "bytes", "futures-core", @@ -16720,47 +20300,36 @@ dependencies = [ [[package]] name = "toml" -version = "0.8.14" +version = "0.8.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6f49eb2ab21d2f26bd6db7bf383edc527a7ebaee412d17af4d40fdccd442f335" +checksum = "a1ed1f98e3fdc28d6d910e6737ae6ab1a93bf1985935a1193e68f93eeb68d24e" dependencies = [ "serde", "serde_spanned", "toml_datetime", - "toml_edit 0.22.14", + "toml_edit", ] [[package]] name = "toml_datetime" -version = "0.6.6" +version = "0.6.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4badfd56924ae69bcc9039335b2e017639ce3f9b001c393c1b2d1ef846ce2cbf" +checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41" dependencies = [ "serde", ] [[package]] name = "toml_edit" -version = "0.21.1" +version = "0.22.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6a8534fd7f78b5405e860340ad6575217ce99f38d4d5c8f2442cb5ecb50090e1" +checksum = "4ae48d6208a266e853d946088ed816055e556cc6028c5e8e2b84d9fa5dd7c7f5" dependencies = [ - "indexmap 2.2.6", - "toml_datetime", - "winnow 0.5.40", -] - -[[package]] -name = "toml_edit" -version = "0.22.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f21c7aaf97f1bd9ca9d4f9e73b0a6c74bd5afef56f2bc931943a6e1c37e04e38" -dependencies = [ - "indexmap 2.2.6", + "indexmap 2.7.0", "serde", "serde_spanned", "toml_datetime", - "winnow 0.6.13", + "winnow", ] [[package]] @@ -16773,7 +20342,6 @@ dependencies = [ "futures-util", "pin-project", "pin-project-lite", - "tokio", "tower-layer", "tower-service", "tracing", @@ -16785,9 +20353,9 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1e9cd434a998747dd2c4276bc96ee2e0c7a2eadf3cae88e52be55a05fa9053f5" dependencies = [ - "bitflags 2.5.0", + "bitflags 2.6.0", "bytes", - "http 1.1.0", + "http 1.2.0", "http-body 1.0.1", "http-body-util", "pin-project-lite", @@ -16797,21 +20365,21 @@ dependencies = [ [[package]] name = "tower-layer" -version = "0.3.2" +version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0" +checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" [[package]] name = "tower-service" -version = "0.3.2" +version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" +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", @@ -16821,20 +20389,20 @@ dependencies = [ [[package]] name = "tracing-attributes" -version = "0.1.27" +version = "0.1.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" +checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] name = "tracing-core" -version = "0.1.32" +version = "0.1.33" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" +checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c" dependencies = [ "once_cell", "valuable", @@ -16852,12 +20420,11 @@ dependencies = [ [[package]] name = "tracing-gum" -version = "14.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d07f52b2b1a1c1c21094bd0b6fdcf1b7dbe785b937b30e82dba688d55d988efb" +version = "17.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "coarsetime", - "polkadot-primitives", + "polkadot-primitives 17.0.0", "tracing", "tracing-gum-proc-macro", ] @@ -16865,25 +20432,13 @@ dependencies = [ [[package]] name = "tracing-gum-proc-macro" version = "5.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0f074568687ffdfd0adb6005aa8d1d96840197f2c159f80471285f08694cf0ce" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ "expander", - "proc-macro-crate 3.1.0", + "proc-macro-crate 3.2.0", "proc-macro2", "quote", - "syn 2.0.96", -] - -[[package]] -name = "tracing-log" -version = "0.1.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f751112709b4e791d8ce53e32c4ed2d353565a795ce84da2285393f41557bdf2" -dependencies = [ - "log", - "once_cell", - "tracing-core", + "syn 2.0.90", ] [[package]] @@ -16897,45 +20452,13 @@ dependencies = [ "tracing-core", ] -[[package]] -name = "tracing-serde" -version = "0.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bc6b213177105856957181934e4920de57730fc69bf42c37ee5bb664d406d9e1" -dependencies = [ - "serde", - "tracing-core", -] - -[[package]] -name = "tracing-subscriber" -version = "0.2.25" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0e0d2eaa99c3c2e41547cfa109e910a68ea03823cccad4a0525dcbc9b01e8c71" -dependencies = [ - "ansi_term", - "chrono", - "lazy_static", - "matchers 0.0.1", - "regex", - "serde", - "serde_json", - "sharded-slab", - "smallvec", - "thread_local", - "tracing", - "tracing-core", - "tracing-log 0.1.4", - "tracing-serde", -] - [[package]] name = "tracing-subscriber" -version = "0.3.18" +version = "0.3.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b" +checksum = "e8189decb5ac0fa7bc8b96b7cb9b2701d60d48805aca84a238004d665fcc4008" dependencies = [ - "matchers 0.1.0", + "matchers", "nu-ansi-term", "once_cell", "parking_lot 0.12.3", @@ -16943,9 +20466,10 @@ dependencies = [ "sharded-slab", "smallvec", "thread_local", + "time", "tracing", "tracing-core", - "tracing-log 0.2.0", + "tracing-log", ] [[package]] @@ -16988,7 +20512,7 @@ dependencies = [ "rand", "smallvec", "socket2 0.4.10", - "thiserror", + "thiserror 1.0.69", "tinyvec", "tokio", "tracing", @@ -17004,7 +20528,7 @@ dependencies = [ "async-trait", "cfg-if", "data-encoding", - "enum-as-inner 0.6.0", + "enum-as-inner 0.6.1", "futures-channel", "futures-io", "futures-util", @@ -17013,7 +20537,7 @@ dependencies = [ "once_cell", "rand", "smallvec", - "thiserror", + "thiserror 1.0.69", "tinyvec", "tokio", "tracing", @@ -17035,7 +20559,7 @@ dependencies = [ "rand", "resolv-conf", "smallvec", - "thiserror", + "thiserror 1.0.69", "tokio", "tracing", "trust-dns-proto 0.23.2", @@ -17068,7 +20592,7 @@ dependencies = [ "rand", "rustls 0.21.12", "sha1", - "thiserror", + "thiserror 1.0.69", "url", "utf-8", ] @@ -17099,9 +20623,9 @@ checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" [[package]] name = "ucd-trie" -version = "0.1.6" +version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ed646292ffc8188ef8ea4d1e0e0150fb15a5c2e12ad9b8fc191ae7a8a7f3c4b9" +checksum = "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971" [[package]] name = "uint" @@ -17115,17 +20639,35 @@ dependencies = [ "static_assertions", ] +[[package]] +name = "uint" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "909988d098b2f738727b161a106cfc7cab00c539c2687a8836f8e565976fb53e" +dependencies = [ + "byteorder", + "crunchy", + "hex", + "static_assertions", +] + +[[package]] +name = "unarray" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94" + [[package]] name = "unicode-bidi" -version = "0.3.15" +version = "0.3.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75" +checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5" [[package]] name = "unicode-ident" -version = "1.0.12" +version = "1.0.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" +checksum = "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83" [[package]] name = "unicode-normalization" @@ -17138,15 +20680,21 @@ dependencies = [ [[package]] name = "unicode-width" -version = "0.1.13" +version = "0.1.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af" + +[[package]] +name = "unicode-width" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0336d538f7abc86d282a4189614dfaa90810dfc2c6f6427eaf88e16311dd225d" +checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd" [[package]] name = "unicode-xid" -version = "0.2.4" +version = "0.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c" +checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853" [[package]] name = "universal-hash" @@ -17155,7 +20703,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea" dependencies = [ "crypto-common", - "subtle 2.5.0", + "subtle 2.6.1", ] [[package]] @@ -17194,12 +20742,12 @@ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" [[package]] name = "url" -version = "2.5.1" +version = "2.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f7c25da092f0a868cdf09e8674cd3b7ef3a7d92a24253e663a2fb85e2496de56" +checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60" dependencies = [ "form_urlencoded", - "idna 1.0.0", + "idna 1.0.3", "percent-encoding", "serde", ] @@ -17230,9 +20778,9 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" [[package]] name = "uzers" -version = "0.11.3" +version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "76d283dc7e8c901e79e32d077866eaf599156cbf427fffa8289aecc52c5c3f63" +checksum = "4df81ff504e7d82ad53e95ed1ad5b72103c11253f39238bcc0235b90768a97dd" dependencies = [ "libc", "log", @@ -17252,9 +20800,9 @@ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" [[package]] name = "version_check" -version = "0.9.4" +version = "0.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" +checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" [[package]] name = "void" @@ -17264,9 +20812,9 @@ checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d" [[package]] name = "w3f-bls" -version = "0.1.4" +version = "0.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c5da5fa2c6afa2c9158eaa7cd9aee249765eb32b5fb0c63ad8b9e79336a47ec" +checksum = "70a3028804c8bbae2a97a15b71ffc0e308c4b01a520994aafa77d56e94e19024" dependencies = [ "ark-bls12-377", "ark-bls12-381", @@ -17282,7 +20830,7 @@ dependencies = [ "rand_core", "sha2 0.10.8", "sha3", - "thiserror", + "thiserror 1.0.69", "zeroize", ] @@ -17328,46 +20876,47 @@ dependencies = [ [[package]] name = "wasm-bindgen" -version = "0.2.92" +version = "0.2.99" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8" +checksum = "a474f6281d1d70c17ae7aa6a613c87fce69a127e2624002df63dcb39d6cf6396" dependencies = [ "cfg-if", + "once_cell", "wasm-bindgen-macro", ] [[package]] name = "wasm-bindgen-backend" -version = "0.2.92" +version = "0.2.99" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da" +checksum = "5f89bb38646b4f81674e8f5c3fb81b562be1fd936d84320f3264486418519c79" dependencies = [ "bumpalo", "log", - "once_cell", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-futures" -version = "0.4.42" +version = "0.4.49" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "76bc14366121efc8dbb487ab05bcc9d346b3b5ec0eaa76e46594cabbe51762c0" +checksum = "38176d9b44ea84e9184eff0bc34cc167ed044f816accfe5922e54d84cf48eca2" dependencies = [ "cfg-if", "js-sys", + "once_cell", "wasm-bindgen", "web-sys", ] [[package]] name = "wasm-bindgen-macro" -version = "0.2.92" +version = "0.2.99" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726" +checksum = "2cc6181fd9a7492eef6fef1f33961e3695e4579b9872a6f7c83aee556666d4fe" dependencies = [ "quote", "wasm-bindgen-macro-support", @@ -17375,22 +20924,32 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro-support" -version = "0.2.92" +version = "0.2.99" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7" +checksum = "30d7a95b763d3c45903ed6c81f156801839e5ee968bb07e534c44df0fcd330c2" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", "wasm-bindgen-backend", "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-shared" -version = "0.2.92" +version = "0.2.99" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "943aab3fdaaa029a6e0271b35ea10b72b943135afe9bffca82384098ad0e06a6" + +[[package]] +name = "wasm-encoder" +version = "0.220.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96" +checksum = "ebf48234b389415b226a4daef6562933d38c7b28a8b8f64c5c4130dad1561ab7" +dependencies = [ + "leb128", + "wasmparser 0.220.0", +] [[package]] name = "wasm-instrument" @@ -17412,7 +20971,7 @@ dependencies = [ "strum 0.24.1", "strum_macros 0.24.3", "tempfile", - "thiserror", + "thiserror 1.0.69", "wasm-opt-cxx-sys", "wasm-opt-sys", ] @@ -17475,7 +21034,7 @@ version = "0.32.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "50386c99b9c32bd2ed71a55b6dd4040af2580530fae8bdb9a6576571a80d0cca" dependencies = [ - "arrayvec 0.7.4", + "arrayvec 0.7.6", "multi-stash", "num-derive", "num-traits", @@ -17537,6 +21096,20 @@ dependencies = [ "url", ] +[[package]] +name = "wasmparser" +version = "0.220.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e246c2772ce3ebc83f89a2d4487ac5794cad6c309b2071818a88c7db7c36d87b" +dependencies = [ + "ahash 0.8.11", + "bitflags 2.6.0", + "hashbrown 0.14.5", + "indexmap 2.7.0", + "semver 1.0.24", + "serde", +] + [[package]] name = "wasmparser-nostd" version = "0.100.2" @@ -17565,7 +21138,7 @@ dependencies = [ "rayon", "serde", "target-lexicon", - "wasmparser", + "wasmparser 0.102.0", "wasmtime-cache", "wasmtime-cranelift", "wasmtime-environ", @@ -17619,8 +21192,8 @@ dependencies = [ "log", "object 0.30.4", "target-lexicon", - "thiserror", - "wasmparser", + "thiserror 1.0.69", + "wasmparser 0.102.0", "wasmtime-cranelift-shared", "wasmtime-environ", ] @@ -17654,8 +21227,8 @@ dependencies = [ "object 0.30.4", "serde", "target-lexicon", - "thiserror", - "wasmparser", + "thiserror 1.0.69", + "wasmparser 0.102.0", "wasmtime-types", ] @@ -17737,15 +21310,15 @@ checksum = "a4f6fffd2a1011887d57f07654dd112791e872e3ff4a2e626aee8059ee17f06f" dependencies = [ "cranelift-entity", "serde", - "thiserror", - "wasmparser", + "thiserror 1.0.69", + "wasmparser 0.102.0", ] [[package]] name = "web-sys" -version = "0.3.69" +version = "0.3.76" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef" +checksum = "04dd7223427d52553d3702c004d3b2fe07c148165faa56313cb00211e31c12bc" dependencies = [ "js-sys", "wasm-bindgen", @@ -17769,167 +21342,156 @@ checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1" [[package]] name = "webpki-roots" -version = "0.26.3" +version = "0.26.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bd7c23921eeb1713a4e851530e9b9756e4fb0e89978582942612524cf09f01cd" +checksum = "5d642ff16b7e79272ae451b7322067cdc17cadf68c23264be9d94a32319efe7e" dependencies = [ "rustls-pki-types", ] [[package]] name = "westend-runtime" -version = "15.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56b8918bb9fe4938757d4f003b7fa26598a632e350feac4e7477bb6b36e2f2af" +version = "20.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ - "binary-merkle-tree", + "binary-merkle-tree 16.0.0", "bitvec", - "frame-benchmarking", - "frame-election-provider-support", - "frame-executive", - "frame-metadata-hash-extension", - "frame-support", - "frame-system", - "frame-system-benchmarking", - "frame-system-rpc-runtime-api", - "frame-try-runtime", - "hex-literal 0.4.1", - "log", - "pallet-asset-rate", - "pallet-authority-discovery", - "pallet-authorship", - "pallet-babe", - "pallet-bags-list", - "pallet-balances", - "pallet-beefy", - "pallet-beefy-mmr", + "frame-benchmarking 39.0.0", + "frame-election-provider-support 39.0.0", + "frame-executive 39.0.0", + "frame-metadata-hash-extension 0.7.0", + "frame-support 39.0.0", + "frame-system 39.0.0", + "frame-system-benchmarking 39.0.0", + "frame-system-rpc-runtime-api 35.0.0", + "frame-try-runtime 0.45.0", + "hex-literal", + "log", + "pallet-asset-rate 18.0.0", + "pallet-authority-discovery 39.0.0", + "pallet-authorship 39.0.0", + "pallet-babe 39.0.0", + "pallet-bags-list 38.0.0", + "pallet-balances 40.0.0", + "pallet-beefy 40.0.0", + "pallet-beefy-mmr 40.0.0", "pallet-collective", - "pallet-conviction-voting", - "pallet-delegated-staking", + "pallet-conviction-voting 39.0.0", + "pallet-delegated-staking 6.0.0", "pallet-democracy", - "pallet-election-provider-multi-phase", - "pallet-election-provider-support-benchmarking", + "pallet-election-provider-multi-phase 38.0.0", + "pallet-election-provider-support-benchmarking 38.0.0", "pallet-elections-phragmen", - "pallet-fast-unstake", - "pallet-grandpa", - "pallet-identity", - "pallet-indices", + "pallet-fast-unstake 38.0.0", + "pallet-grandpa 39.0.0", + "pallet-identity 39.0.0", + "pallet-indices 39.0.0", "pallet-membership", - "pallet-message-queue", - "pallet-mmr", - "pallet-multisig", - "pallet-nomination-pools", - "pallet-nomination-pools-benchmarking", - "pallet-nomination-pools-runtime-api", - "pallet-offences", - "pallet-offences-benchmarking", - "pallet-preimage", - "pallet-proxy", + "pallet-message-queue 42.0.0", + "pallet-migrations", + "pallet-mmr 39.0.0", + "pallet-multisig 39.0.0", + "pallet-nomination-pools 37.0.0", + "pallet-nomination-pools-benchmarking 37.0.0", + "pallet-nomination-pools-runtime-api 35.0.0", + "pallet-offences 38.0.0", + "pallet-offences-benchmarking 39.0.0", + "pallet-parameters 0.10.0", + "pallet-preimage 39.0.0", + "pallet-proxy 39.0.0", "pallet-recovery", - "pallet-referenda", + "pallet-referenda 39.0.0", "pallet-root-testing", - "pallet-scheduler", - "pallet-session", - "pallet-session-benchmarking", + "pallet-scheduler 40.0.0", + "pallet-session 39.0.0", + "pallet-session-benchmarking 39.0.0", "pallet-society", - "pallet-staking", - "pallet-staking-reward-curve", - "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-vesting", - "pallet-whitelist", - "pallet-xcm", - "pallet-xcm-benchmarks", - "parity-scale-codec", - "polkadot-parachain-primitives", - "polkadot-primitives", - "polkadot-runtime-common", - "polkadot-runtime-parachains", + "pallet-staking 39.0.0", + "pallet-staking-runtime-api 25.0.0", + "pallet-state-trie-migration 42.0.0", + "pallet-sudo 39.0.0", + "pallet-timestamp 38.0.0", + "pallet-transaction-payment 39.0.0", + "pallet-transaction-payment-rpc-runtime-api 39.0.0", + "pallet-treasury 38.0.0", + "pallet-utility 39.0.0", + "pallet-vesting 39.0.0", + "pallet-whitelist 38.0.0", + "pallet-xcm 18.0.0", + "pallet-xcm-benchmarks 18.0.0", + "parity-scale-codec", + "polkadot-parachain-primitives 15.0.0", + "polkadot-primitives 17.0.0", + "polkadot-runtime-common 18.0.0", + "polkadot-runtime-parachains 18.0.0", "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-consensus-beefy", - "sp-core", - "sp-genesis-builder", - "sp-inherents", - "sp-io", - "sp-mmr-primitives", - "sp-npos-elections", - "sp-offchain", - "sp-runtime", - "sp-session", - "sp-staking", - "sp-std", - "sp-storage", - "sp-transaction-pool", - "sp-version", - "staging-xcm 14.1.0", - "staging-xcm-builder", - "staging-xcm-executor", - "substrate-wasm-builder", + "sp-api 35.0.0", + "sp-application-crypto 39.0.0", + "sp-arithmetic 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-authority-discovery 35.0.0", + "sp-block-builder 35.0.0", + "sp-consensus-babe 0.41.0", + "sp-consensus-beefy 23.0.0", + "sp-consensus-grandpa 22.0.0", + "sp-core 35.0.0", + "sp-genesis-builder 0.16.0", + "sp-inherents 35.0.0", + "sp-io 39.0.0", + "sp-keyring 40.0.0", + "sp-mmr-primitives 35.0.0", + "sp-npos-elections 35.0.0", + "sp-offchain 35.0.0", + "sp-runtime 40.0.0", + "sp-session 37.0.0", + "sp-staking 37.0.0", + "sp-storage 22.0.0", + "sp-transaction-pool 35.0.0", + "sp-version 38.0.0", + "staging-xcm 15.0.1", + "staging-xcm-builder 18.0.0", + "staging-xcm-executor 18.0.0", + "substrate-wasm-builder 25.0.0", "westend-runtime-constants", - "xcm-runtime-apis", + "xcm-runtime-apis 0.5.0", ] [[package]] name = "westend-runtime-constants" -version = "15.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8c7a91c27c398b11f7633cc2382cbba53b02e7196ebe8fff13c170e54a54e9d8" +version = "18.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ - "frame-support", - "polkadot-primitives", - "polkadot-runtime-common", + "frame-support 39.0.0", + "polkadot-primitives 17.0.0", + "polkadot-runtime-common 18.0.0", "smallvec", - "sp-core", - "sp-runtime", - "sp-weights", - "staging-xcm 14.1.0", - "staging-xcm-builder", -] - -[[package]] -name = "which" -version = "4.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7" -dependencies = [ - "either", - "home", - "once_cell", - "rustix 0.38.34", + "sp-core 35.0.0", + "sp-runtime 40.0.0", + "sp-weights 31.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "staging-xcm 15.0.1", + "staging-xcm-builder 18.0.0", ] [[package]] name = "which" -version = "6.0.3" +version = "7.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b4ee928febd44d98f2f459a4a79bd4d928591333a494a10a868418ac1b39cf1f" +checksum = "fb4a9e33648339dc1642b0e36e21b3385e6148e289226f657c809dee59df5028" dependencies = [ "either", - "home", - "rustix 0.38.34", + "env_home", + "rustix 0.38.42", "winsafe", ] [[package]] name = "wide" -version = "0.7.24" +version = "0.7.30" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8a040b111774ab63a19ef46bbc149398ab372b4ccdcfd719e9814dbd7dfd76c8" +checksum = "58e6db2670d2be78525979e9a5f9c69d296fd7d670549fe9ebf70f8708cb5019" dependencies = [ "bytemuck", "safe_arch", @@ -17959,11 +21521,11 @@ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" [[package]] name = "winapi-util" -version = "0.1.8" +version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4d4cc384e1e73b93bafa6fb4f1df8c41695c8a91cf9c4c64358067d15a7b6c6b" +checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb" dependencies = [ - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] @@ -17974,36 +21536,40 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "windows" -version = "0.51.1" +version = "0.53.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ca229916c5ee38c2f2bc1e9d8f04df975b4bd93f9955dc69fabb5d91270045c9" +checksum = "efc5cf48f83140dcaab716eeaea345f9e93d0018fb81162753a3f76c3397b538" dependencies = [ - "windows-core", - "windows-targets 0.48.5", + "windows-core 0.53.0", + "windows-targets 0.52.6", +] + +[[package]] +name = "windows-core" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" +dependencies = [ + "windows-targets 0.52.6", ] [[package]] name = "windows-core" -version = "0.51.1" +version = "0.53.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f1f8cf84f35d2db49a46868f947758c7a1138116f7fac3bc844f43ade1292e64" +checksum = "9dcc5b895a6377f1ab9fa55acedab1fd5ac0db66ad1e6c7f47e28a22e446a5dd" dependencies = [ - "windows-targets 0.48.5", + "windows-result", + "windows-targets 0.52.6", ] [[package]] -name = "windows-sys" -version = "0.42.0" +name = "windows-result" +version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" +checksum = "5e383302e8ec8515204254685643de10811af0ed97ea37210dc26fb0032647f8" dependencies = [ - "windows_aarch64_gnullvm 0.42.2", - "windows_aarch64_msvc 0.42.2", - "windows_i686_gnu 0.42.2", - "windows_i686_msvc 0.42.2", - "windows_x86_64_gnu 0.42.2", - "windows_x86_64_gnullvm 0.42.2", - "windows_x86_64_msvc 0.42.2", + "windows-targets 0.52.6", ] [[package]] @@ -18222,18 +21788,9 @@ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" [[package]] name = "winnow" -version = "0.5.40" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876" -dependencies = [ - "memchr", -] - -[[package]] -name = "winnow" -version = "0.6.13" +version = "0.6.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "59b5e5f6c299a3c7890b876a2a587f3115162487e704907d9b6cd29473052ba1" +checksum = "36c1fec1a2bb5866f07c25f68c26e565c4c200aebb96d7e55710c19d3e8ac49b" dependencies = [ "memchr", ] @@ -18300,7 +21857,7 @@ dependencies = [ "nom", "oid-registry 0.6.1", "rusticata-macros", - "thiserror", + "thiserror 1.0.69", "time", ] @@ -18315,45 +21872,44 @@ dependencies = [ "der-parser 9.0.0", "lazy_static", "nom", - "oid-registry 0.7.0", + "oid-registry 0.7.1", "rusticata-macros", - "thiserror", + "thiserror 1.0.69", "time", ] [[package]] name = "xcm-emulator" -version = "0.13.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "be630e9b41c5d19d227162afe4cf642be24058b179fb1edbfe132f6328c7bde8" +version = "0.17.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" dependencies = [ - "cumulus-pallet-parachain-system", - "cumulus-pallet-xcmp-queue", - "cumulus-primitives-core", - "cumulus-primitives-parachain-inherent", + "array-bytes", + "cumulus-pallet-parachain-system 0.18.0", + "cumulus-pallet-xcmp-queue 0.18.0", + "cumulus-primitives-core 0.17.0", + "cumulus-primitives-parachain-inherent 0.17.0", "cumulus-test-relay-sproof-builder", - "frame-support", - "frame-system", + "frame-support 39.0.0", + "frame-system 39.0.0", "impl-trait-for-tuples", - "lazy_static", "log", - "pallet-balances", - "pallet-message-queue", - "parachains-common", + "pallet-balances 40.0.0", + "pallet-message-queue 42.0.0", + "parachains-common 19.0.0", "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", - "sp-tracing", - "staging-xcm 14.1.0", - "staging-xcm-executor", + "polkadot-parachain-primitives 15.0.0", + "polkadot-primitives 17.0.0", + "polkadot-runtime-parachains 18.0.0", + "sp-arithmetic 26.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-core 35.0.0", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-io 39.0.0", + "sp-runtime 40.0.0", + "sp-std 14.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "sp-tracing 17.0.1 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "staging-xcm 15.0.1", + "staging-xcm-executor 18.0.0", ] [[package]] @@ -18365,19 +21921,30 @@ dependencies = [ "Inflector", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] name = "xcm-procedural" -version = "10.1.0" +version = "10.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "87fb4f14094d65c500a59bcf540cf42b99ee82c706edd6226a92e769ad60563e" +checksum = "09a95797c7b227a8466a65a16376bc275e1b8f2a5471325f00f6870314c45f9e" dependencies = [ "Inflector", "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", +] + +[[package]] +name = "xcm-procedural" +version = "11.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "Inflector", + "proc-macro2", + "quote", + "syn 2.0.90", ] [[package]] @@ -18386,21 +21953,35 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "30fffcd9128a46abd836c37dd001c2cbe122aeb8904cd7b9bac8358564fb7b56" dependencies = [ - "frame-support", + "frame-support 36.0.1", + "parity-scale-codec", + "scale-info", + "sp-api 33.0.0", + "sp-std 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "sp-weights 31.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "staging-xcm 14.0.3", + "staging-xcm-executor 15.0.0", +] + +[[package]] +name = "xcm-runtime-apis" +version = "0.5.0" +source = "git+https://github.com/paritytech/polkadot-sdk?branch=stable2412#efefe3e2ceb36acd533c56beff33b96eae43140c" +dependencies = [ + "frame-support 39.0.0", "parity-scale-codec", "scale-info", - "sp-api", - "sp-std", - "sp-weights", - "staging-xcm 14.1.0", - "staging-xcm-executor", + "sp-api 35.0.0", + "sp-weights 31.0.0 (git+https://github.com/paritytech/polkadot-sdk?branch=stable2412)", + "staging-xcm 15.0.1", + "staging-xcm-executor 18.0.0", ] [[package]] name = "xml-rs" -version = "0.8.21" +version = "0.8.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "539a77ee7c0de333dcc6da69b177380a0b81e0dacfa4f7344c465a36871ee601" +checksum = "ea8b391c9a790b496184c29f7f93b9ed5b16abb306c05415b68bcc16e4d06432" [[package]] name = "xmltree" @@ -18432,6 +22013,12 @@ dependencies = [ "static_assertions", ] +[[package]] +name = "yap" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ff4524214bc4629eba08d78ceb1d6507070cc0bcbbed23af74e19e6e924a24cf" + [[package]] name = "yasna" version = "0.5.2" @@ -18443,9 +22030,9 @@ dependencies = [ [[package]] name = "yoke" -version = "0.7.4" +version = "0.7.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6c5b1314b079b0930c31e3af543d8ee1757b1951ae1e1565ec704403a7240ca5" +checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40" dependencies = [ "serde", "stable_deref_trait", @@ -18455,54 +22042,55 @@ dependencies = [ [[package]] name = "yoke-derive" -version = "0.7.4" +version = "0.7.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "28cc31741b18cb6f1d5ff12f5b7523e3d6eb0852bbbad19d73905511d9849b95" +checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", "synstructure 0.13.1", ] [[package]] name = "zerocopy" -version = "0.7.34" +version = "0.7.35" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ae87e3fcd617500e5d106f0380cf7b77f3c6092aae37191433159dda23cfb087" +checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0" dependencies = [ + "byteorder", "zerocopy-derive", ] [[package]] name = "zerocopy-derive" -version = "0.7.34" +version = "0.7.35" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "15e934569e47891f7d9411f1a451d947a60e000ab3bd24fbb970f000387d1b3b" +checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] name = "zerofrom" -version = "0.1.4" +version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "91ec111ce797d0e0784a1116d0ddcdbea84322cd79e5d5ad173daeba4f93ab55" +checksum = "cff3ee08c995dee1859d998dea82f7374f2826091dd9cd47def953cae446cd2e" dependencies = [ "zerofrom-derive", ] [[package]] name = "zerofrom-derive" -version = "0.1.4" +version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0ea7b4a3637ea8669cedf0f1fd5c286a17f3de97b8dd5a70a6c167a1730e63a5" +checksum = "595eed982f7d355beb85837f651fa22e90b3c044842dc7f2c2842c086f295808" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", "synstructure 0.13.1", ] @@ -18523,7 +22111,7 @@ checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] @@ -18545,18 +22133,22 @@ checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6" dependencies = [ "proc-macro2", "quote", - "syn 2.0.96", + "syn 2.0.90", ] [[package]] name = "zip" -version = "0.6.6" +version = "2.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "760394e246e4c28189f19d488c058bf16f564016aefac5d32bb1f3b51d5e9261" +checksum = "ae9c1ea7b3a5e1f4b922ff856a129881167511563dc219869afe3787fc0c1a45" dependencies = [ - "byteorder", + "arbitrary", "crc32fast", "crossbeam-utils", + "displaydoc", + "indexmap 2.7.0", + "memchr", + "thiserror 2.0.8", ] [[package]] @@ -18599,9 +22191,9 @@ dependencies = [ [[package]] name = "zstd-sys" -version = "2.0.11+zstd.1.5.6" +version = "2.0.13+zstd.1.5.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75652c55c0b6f3e6f12eb786fe1bc960396bf05a1eb3bf1f3691c3610ac2e6d4" +checksum = "38ff0f21cfee8f97d94cef41359e0c89aa6113028ab0291aa8ca0038995a95aa" dependencies = [ "cc", "pkg-config", diff --git a/Cargo.toml b/Cargo.toml index e29e7fb7e..9a69ac65f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -34,34 +34,37 @@ members = [ resolver = "2" [workspace.dependencies] -clap = { version = "4.4.18", features = [ "derive" ] } +anyhow = { version = "1.0", default-features = false } +clap = { version = "4.5.10", features = [ "derive" ] } codec = { package = "parity-scale-codec", version = "3.6.12", default-features = false, features = [ "derive", ] } -contract-build = "4.1.1" +color-print = "0.3.4" +contract-build = "5.0.2" +docify = "0.2.8" enumflags2 = "0.7.9" env_logger = "0.11.5" -futures = "0.3.28" +futures = "0.3.30" hex = "0.4.3" hex-literal = "0.4.1" impl-trait-for-tuples = "0.2.2" -jsonrpsee = { version = "0.23.2", features = [ "server" ] } -log = { version = "0.4.21", default-features = false } +jsonrpsee = { version = "0.24.3", features = [ "server" ] } +log = { version = "0.4.22", default-features = false } rand = "0.8.5" scale-info = { version = "2.11.1", default-features = false, features = [ "derive", ] } -serde = "1.0.197" -serde_json = "1.0.114" +serde = "1.0.209" +serde_json = "1.0.127" smallvec = "1.11.2" -subxt = "0.34.0" -subxt-signer = "0.34.0" +subxt = "0.38.0" +subxt-signer = "0.38.0" tokio = { version = "1.36", features = [ "macros", "rt-multi-thread", "time" ] } -tracing-subscriber = { version = "0.3", default-features = false } +tracing-subscriber = { version = "0.3.18", default-features = false } # Build -substrate-build-script-utils = "11.0.0" -substrate-wasm-builder = "23.0.0" +substrate-build-script-utils = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412" } +substrate-wasm-builder = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412" } # Local pallet-api = { path = "pallets/api", default-features = false } @@ -74,126 +77,124 @@ pop-runtime-mainnet = { path = "runtime/mainnet", default-features = true } # de pop-runtime-testnet = { path = "runtime/testnet", default-features = true } # default-features=true required for `-p pop-node` builds # Substrate -frame-benchmarking = { version = "36.0.0", default-features = false } -frame-benchmarking-cli = "40.0.0" -frame-executive = { version = "36.0.0", default-features = false } -frame-metadata-hash-extension = { version = "0.4.0", default-features = false } -frame-support = { version = "36.0.0", default-features = false } -frame-support-procedural = { version = "=30.0.1", default-features = false } -frame-system = { version = "36.1.0", default-features = false } -frame-system-benchmarking = { version = "36.0.0", default-features = false } -frame-system-rpc-runtime-api = { version = "33.0.0", default-features = false } -frame-try-runtime = { version = "0.42.0", default-features = false } -pallet-assets = { version = "37.0.0", default-features = false } -pallet-aura = { version = "35.0.0", default-features = false } -pallet-authorship = { version = "36.0.0", default-features = false } -pallet-balances = { version = "37.0.0", default-features = false } -pallet-contracts = { version = "35.0.0", default-features = false } -pallet-message-queue = { version = "39.0.0", default-features = false } -pallet-multisig = { version = "36.0.0", default-features = false } -pallet-nft-fractionalization = { version = "18.0.0", default-features = false } -pallet-nfts-runtime-api = { version = "22.0.0", default-features = false } -pallet-preimage = { version = "36.0.0", default-features = false } -pallet-proxy = { version = "36.0.0", default-features = false } -pallet-scheduler = { version = "37.0.0", default-features = false } -pallet-session = { version = "36.0.0", default-features = false } -pallet-sudo = { version = "36.0.0", default-features = false } -pallet-timestamp = { version = "35.0.0", default-features = false } -pallet-transaction-payment = { version = "36.0.0", default-features = false } -pallet-transaction-payment-rpc = "38.0.0" -pallet-transaction-payment-rpc-runtime-api = { version = "36.0.0", default-features = false } -pallet-utility = { version = "36.0.0", default-features = false } -prometheus-endpoint = { version = "0.17.0", default-features = false, package = "substrate-prometheus-endpoint" } -sc-basic-authorship = "0.42.0" -sc-chain-spec = "35.0.0" -sc-cli = "0.44.0" -sc-client-api = "35.1.0" -sc-consensus = "0.41.0" -sc-executor = "0.39.0" -sc-network = "0.42.0" -sc-network-sync = "0.41.0" -sc-offchain = "37.0.0" -sc-rpc = "37.0.0" -sc-service = "0.43.0" -sc-sysinfo = "35.0.0" -sc-telemetry = "22.0.0" -sc-tracing = "35.0.0" -sc-transaction-pool = "35.0.0" -sc-transaction-pool-api = "35.0.0" -sp-api = { version = "33.0.0", default-features = false } -sp-authority-discovery = { version = "33.0.0", default-features = false } -sp-block-builder = { version = "33.0.0", default-features = false } -sp-blockchain = "35.1.0" -sp-consensus-aura = { version = "0.39.0", default-features = false } -sp-consensus-babe = { version = "0.39.0", default-features = false } -sp-consensus-beefy = { version = "20.0.0", default-features = false } -sp-consensus-grandpa = { version = "20.0.0", default-features = false } -sp-core = { version = "34.0.0", default-features = false } -sp-genesis-builder = { version = "0.14.0", default-features = false } -sp-inherents = { version = "33.0.0", default-features = false } -sp-io = { version = "37.0.0", default-features = false } -sp-keystore = "0.40.0" -sp-mmr-primitives = { version = "33.0.0", default-features = false } -sp-offchain = { version = "33.0.0", default-features = false } -sp-runtime = { version = "38.0.0", default-features = false } -sp-session = { version = "34.0.0", default-features = false } -sp-std = { version = "14.0.0", default-features = false } -sp-timestamp = "33.0.0" -sp-transaction-pool = { version = "33.0.0", default-features = false } -sp-version = { version = "36.0.0", default-features = false } -substrate-frame-rpc-system = "36.0.0" +frame-benchmarking = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +frame-benchmarking-cli = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412" } +frame-executive = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +frame-metadata-hash-extension = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +frame-support = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +frame-system = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +frame-system-benchmarking = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +frame-try-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +pallet-assets = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +pallet-aura = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +pallet-authorship = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +pallet-balances = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +pallet-contracts = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +pallet-message-queue = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +pallet-multisig = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +pallet-nft-fractionalization = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +pallet-nfts-runtime-api = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +pallet-preimage = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +pallet-proxy = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +pallet-scheduler = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +pallet-session = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +pallet-sudo = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +pallet-timestamp = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +pallet-transaction-payment = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +pallet-utility = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +prometheus-endpoint = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false, package = "substrate-prometheus-endpoint" } +sc-basic-authorship = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412" } +sc-chain-spec = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412" } +sc-cli = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412" } +sc-client-api = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412" } +sc-consensus = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412" } +sc-executor = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412" } +sc-network = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412" } +sc-network-sync = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412" } +sc-offchain = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412" } +sc-rpc = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412" } +sc-service = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412" } +sc-sysinfo = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412" } +sc-telemetry = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412" } +sc-tracing = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412" } +sc-transaction-pool = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412" } +sc-transaction-pool-api = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412" } +sp-api = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +sp-authority-discovery = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +sp-block-builder = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +sp-blockchain = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412" } +sp-consensus-aura = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +sp-consensus-babe = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +sp-consensus-beefy = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +sp-consensus-grandpa = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +sp-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +sp-genesis-builder = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +sp-inherents = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +sp-io = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +sp-keyring = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +sp-keystore = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412" } +sp-mmr-primitives = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +sp-offchain = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +sp-session = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +sp-std = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +sp-timestamp = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412" } +sp-transaction-pool = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +sp-version = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +substrate-frame-rpc-system = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412" } # Polkadot -pallet-xcm = { version = "15.0.0", default-features = false } -polkadot-cli = "15.0.0" -polkadot-parachain-primitives = { version = "13.0.0", default-features = false } -polkadot-primitives = { version = "14.0.0", default-features = false } -polkadot-runtime-common = { version = "15.0.0", default-features = false } -polkadot-runtime-parachains = { version = "15.0.3", default-features = false } -rococo-runtime = { version = "15.0.0", default-features = false } -rococo-runtime-constants = { version = "15.0.0", default-features = false } -xcm = { version = "14.0.3", package = "staging-xcm", default-features = false } -xcm-builder = { version = "15.0.0", package = "staging-xcm-builder", default-features = false } -xcm-executor = { version = "15.0.0", package = "staging-xcm-executor", default-features = false } +pallet-xcm = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +polkadot-cli = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412" } +polkadot-parachain-primitives = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +polkadot-runtime-parachains = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +rococo-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +rococo-runtime-constants = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +xcm = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", package = "staging-xcm", default-features = false } +xcm-builder = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", package = "staging-xcm-builder", default-features = false } +xcm-executor = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", package = "staging-xcm-executor", default-features = false } # Cumulus -asset-hub-rococo-runtime = { version = "0.19.0", default-features = false } -asset-test-utils = { version = "15.0.0", default-features = false } -color-print = "0.3.4" -cumulus-client-cli = "0.15.0" -cumulus-client-collator = "0.15.0" -cumulus-client-consensus-aura = "0.15.0" -cumulus-client-consensus-common = "0.15.0" -cumulus-client-consensus-proposer = "0.14.0" -cumulus-client-service = "0.15.0" -cumulus-pallet-aura-ext = { version = "0.15.0", default-features = false } -cumulus-pallet-parachain-system = { version = "0.15.0", default-features = false } -cumulus-pallet-session-benchmarking = { version = "17.0.0", default-features = false } -cumulus-pallet-xcm = { version = "0.15.0", default-features = false } -cumulus-pallet-xcmp-queue = { version = "0.15.0", default-features = false } -cumulus-primitives-aura = { version = "0.14.0", default-features = false } -cumulus-primitives-core = { version = "0.14.0", default-features = false } -cumulus-primitives-parachain-inherent = "0.14.0" -cumulus-primitives-storage-weight-reclaim = { version = "6.0.2", default-features = false } -cumulus-primitives-utility = { version = "0.15.0", default-features = false } -cumulus-relay-chain-interface = "0.15.0" -emulated-integration-tests-common = { version = "11.0.0", default-features = false } -pallet-collator-selection = { version = "17.0.0", default-features = false } -parachain-info = { version = "0.15.0", package = "staging-parachain-info", default-features = false } -parachains-common = { version = "15.0.0", default-features = false } +asset-test-utils = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +cumulus-client-cli = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412" } +cumulus-client-collator = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412" } +cumulus-client-consensus-aura = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412" } +cumulus-client-consensus-common = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412" } +cumulus-client-consensus-proposer = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412" } +cumulus-client-service = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412" } +cumulus-pallet-aura-ext = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +cumulus-pallet-parachain-system = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +cumulus-pallet-session-benchmarking = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +cumulus-pallet-xcm = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +cumulus-pallet-xcmp-queue = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +cumulus-primitives-aura = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +cumulus-primitives-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +cumulus-primitives-parachain-inherent = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412" } +cumulus-primitives-storage-weight-reclaim = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +cumulus-primitives-utility = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +cumulus-relay-chain-interface = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412" } +emulated-integration-tests-common = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +pallet-collator-selection = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } +parachain-info = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", package = "staging-parachain-info", default-features = false } +parachains-common = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } # Runtimes -asset-hub-paseo-runtime = { git = "https://github.com/paseo-network/runtimes/", tag = "v1.3.3", default-features = false } -asset-hub-westend-runtime = { version = "0.23.0", default-features = false } -paseo-runtime = { git = "https://github.com/paseo-network/runtimes/", tag = "v1.3.3", default-features = false } -paseo-runtime-constants = { git = "https://github.com/paseo-network/runtimes/", tag = "v1.3.3", default-features = false } -westend-runtime = { version = "15.0.0", default-features = false } -westend-runtime-constants = { version = "15.0.0", default-features = false } +asset-hub-paseo-runtime = { git = "https://github.com/paseo-network/runtimes", default-features = false, tag = "v1.3.4" } +asset-hub-westend-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412" } +paseo-runtime = { git = "https://github.com/paseo-network/runtimes", default-features = false, tag = "v1.3.4" } +paseo-runtime-constants = { git = "https://github.com/paseo-network/runtimes", default-features = false, tag = "v1.3.4" } +westend-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412" } +westend-runtime-constants = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2412", default-features = false } -ismp = { git = "https://github.com/r0gue-io/ismp", branch = "polkadot-v1.14.0", default-features = false } -ismp-parachain = { git = "https://github.com/r0gue-io/ismp", branch = "polkadot-v1.14.0", default-features = false } -ismp-parachain-inherent = { git = "https://github.com/r0gue-io/ismp", branch = "polkadot-v1.14.0", default-features = false } -ismp-parachain-runtime-api = { git = "https://github.com/r0gue-io/ismp", branch = "polkadot-v1.14.0", default-features = false } -pallet-ismp = { git = "https://github.com/r0gue-io/ismp", branch = "polkadot-v1.14.0", default-features = false } -pallet-ismp-rpc = { git = "https://github.com/r0gue-io/ismp", branch = "polkadot-v1.14.0", default-features = false } -pallet-ismp-runtime-api = { git = "https://github.com/r0gue-io/ismp", branch = "polkadot-v1.14.0", default-features = false } +ismp = { git = "https://github.com/r0gue-io/ismp", branch = "polkadot-stable2412", default-features = false } +ismp-parachain = { git = "https://github.com/r0gue-io/ismp", branch = "polkadot-stable2412", default-features = false } +ismp-parachain-inherent = { git = "https://github.com/r0gue-io/ismp", branch = "polkadot-stable2412", default-features = false } +ismp-parachain-runtime-api = { git = "https://github.com/r0gue-io/ismp", branch = "polkadot-stable2412", default-features = false } +pallet-ismp = { git = "https://github.com/r0gue-io/ismp", branch = "polkadot-stable2412", default-features = false } +pallet-ismp-rpc = { git = "https://github.com/r0gue-io/ismp", branch = "polkadot-stable2412", default-features = false } +pallet-ismp-runtime-api = { git = "https://github.com/r0gue-io/ismp", branch = "polkadot-stable2412", default-features = false } diff --git a/extension/Cargo.toml b/extension/Cargo.toml index 6ca5e071f..8bb1b08d3 100644 --- a/extension/Cargo.toml +++ b/extension/Cargo.toml @@ -53,6 +53,7 @@ std = [ "pallet-balances/std", "pallet-contracts/std", "pallet-timestamp/std", + "scale-info/std", "sp-core/std", "sp-io/std", "sp-runtime/std", diff --git a/extension/src/functions.rs b/extension/src/functions.rs index 73a5fdf9c..2bbfb5293 100644 --- a/extension/src/functions.rs +++ b/extension/src/functions.rs @@ -50,7 +50,7 @@ impl< // Charge weight before dispatch. let dispatch_info = call.get_dispatch_info(); log::debug!(target: Logger::LOG_TARGET, "pre-dispatch info: dispatch_info={dispatch_info:?}"); - let charged = env.charge_weight(dispatch_info.weight)?; + let charged = env.charge_weight(dispatch_info.call_weight)?; log::debug!(target: Logger::LOG_TARGET, "pre-dispatch weight charged: charged={charged:?}"); // Contract is the origin by default. let origin = RawOrigin::Signed(env.ext().address().clone()); @@ -324,7 +324,7 @@ mod tests { assert_eq!( env.charged(), read_from_buffer_weight(encoded_call.len() as u32) + - call.get_dispatch_info().weight + call.get_dispatch_info().call_weight ); } @@ -363,7 +363,7 @@ mod tests { assert_eq!( env.charged(), read_from_buffer_weight(encoded_call.len() as u32) + - call.get_dispatch_info().weight + call.get_dispatch_info().call_weight ); }) } @@ -384,11 +384,11 @@ mod tests { pallet_contracts::Error::::NoMigrationPerformed.into(); assert_eq!(DispatchCall::execute(&mut env).err().unwrap(), expected); // Ensure pre-dispatch weight is weight function + weight limit - assert_eq!(call.get_dispatch_info().weight, migrate_weight + weight_limit); + assert_eq!(call.get_dispatch_info().call_weight, migrate_weight + weight_limit); assert_eq!( env.charged(), read_from_buffer_weight(encoded_call.len() as u32) + - call.get_dispatch_info().weight - + call.get_dispatch_info().call_weight - extra_weight ); }) diff --git a/extension/src/lib.rs b/extension/src/lib.rs index c2480c061..a9010ca7f 100644 --- a/extension/src/lib.rs +++ b/extension/src/lib.rs @@ -157,7 +157,7 @@ mod extension { env.charged(), overhead_weight(encoded_call.len() as u32) + read_from_buffer_weight(encoded_call.len() as u32) + - call.get_dispatch_info().weight + call.get_dispatch_info().call_weight ); }); } diff --git a/extension/src/mock.rs b/extension/src/mock.rs index c085aebe8..fb6b92c99 100644 --- a/extension/src/mock.rs +++ b/extension/src/mock.rs @@ -101,6 +101,7 @@ impl pallet_contracts::Config for Test { type MaxDebugBufferLen = ConstU32<{ 2 * 1024 * 1024 }>; type MaxDelegateDependencies = MaxDelegateDependencies; type MaxStorageKeyLen = ConstU32<128>; + type MaxTransientStorageSize = ConstU32<{ 1024 * 1024 }>; type Migrations = (); // crate::migration::codegen::BenchMigrations; type Randomness = Test; diff --git a/integration-tests/Cargo.toml b/integration-tests/Cargo.toml index 04c650369..93d37669b 100644 --- a/integration-tests/Cargo.toml +++ b/integration-tests/Cargo.toml @@ -42,7 +42,7 @@ emulated-integration-tests-common.workspace = true # Runtimes asset-hub-paseo-runtime = { workspace = true, optional = true } -asset-hub-westend-runtime = { workspace = true, optional = true } +asset-hub-westend-runtime = { workspace = true, optional = true, default-features = true } paseo-runtime = { workspace = true, optional = true } paseo-runtime-constants = { workspace = true, optional = true } westend-runtime = { workspace = true, optional = true } @@ -71,8 +71,10 @@ runtime-benchmarks = [ "pallet-assets/runtime-benchmarks", "pallet-balances/runtime-benchmarks", "pallet-message-queue/runtime-benchmarks", + "pallet-xcm/runtime-benchmarks", "paseo-runtime?/runtime-benchmarks", "polkadot-primitives/runtime-benchmarks", + "polkadot-runtime-parachains/runtime-benchmarks", "pop-runtime-common/runtime-benchmarks", "pop-runtime-devnet/runtime-benchmarks", "pop-runtime-mainnet/runtime-benchmarks", @@ -84,6 +86,8 @@ runtime-benchmarks = [ std = [ "asset-hub-paseo-runtime?/std", "asset-hub-westend-runtime?/std", + "asset-test-utils/std", + "codec/std", "cumulus-primitives-core/std", "frame-support/std", "pallet-assets/std", @@ -104,6 +108,7 @@ std = [ "sp-consensus-grandpa/std", "sp-core/std", "sp-runtime/std", + "tracing-subscriber/std", "westend-runtime-constants?/std", "westend-runtime?/std", "xcm-executor/std", diff --git a/integration-tests/src/chains/asset_hub/genesis.rs b/integration-tests/src/chains/asset_hub/genesis.rs index e6269c8de..b61d2308f 100644 --- a/integration-tests/src/chains/asset_hub/genesis.rs +++ b/integration-tests/src/chains/asset_hub/genesis.rs @@ -42,6 +42,7 @@ pub(crate) fn genesis() -> Storage { ) }) .collect(), + ..Default::default() }, polkadot_xcm: PolkadotXcmConfig { safe_xcm_version: Some(SAFE_XCM_VERSION), diff --git a/integration-tests/src/chains/asset_hub/mod.rs b/integration-tests/src/chains/asset_hub/mod.rs index 13d086b76..b15a86657 100644 --- a/integration-tests/src/chains/asset_hub/mod.rs +++ b/integration-tests/src/chains/asset_hub/mod.rs @@ -38,5 +38,5 @@ decl_test_parachains! { impl_accounts_helpers_for_parachain!(AssetHub); impl_assert_events_helpers_for_parachain!(AssetHub); impl_assets_helpers_for_parachain!(AssetHub); -impl_foreign_assets_helpers_for_parachain!(AssetHub, xcm::v3::Location); +impl_foreign_assets_helpers_for_parachain!(AssetHub, xcm::v5::Location); impl_xcm_helpers_for_parachain!(AssetHub); diff --git a/integration-tests/src/chains/pop_network/genesis.rs b/integration-tests/src/chains/pop_network/genesis.rs index 801690972..d4ecf0904 100644 --- a/integration-tests/src/chains/pop_network/genesis.rs +++ b/integration-tests/src/chains/pop_network/genesis.rs @@ -31,6 +31,7 @@ pub(crate) fn genesis() -> Storage { ) }) .collect(), + ..Default::default() }, polkadot_xcm: runtime::PolkadotXcmConfig { safe_xcm_version: Some(SAFE_XCM_VERSION), diff --git a/integration-tests/src/chains/relay/genesis.rs b/integration-tests/src/chains/relay/genesis.rs index 2db07b5a4..c7c2ec2da 100644 --- a/integration-tests/src/chains/relay/genesis.rs +++ b/integration-tests/src/chains/relay/genesis.rs @@ -1,10 +1,10 @@ use emulated_integration_tests_common::{ - accounts, build_genesis_storage, get_from_seed, get_host_config, validators, + accounts, build_genesis_storage, get_host_config, validators, }; use polkadot_primitives::{AssignmentId, Balance, ValidatorId, LOWEST_PUBLIC_ID}; use sp_authority_discovery::AuthorityId as AuthorityDiscoveryId; use sp_consensus_babe::AuthorityId as BabeId; -use sp_consensus_beefy::ecdsa_crypto::AuthorityId as BeefyId; +use sp_consensus_beefy::{ecdsa_crypto::AuthorityId as BeefyId, test_utils::Keyring}; use sp_consensus_grandpa::AuthorityId as GrandpaId; use sp_core::storage::Storage; @@ -38,11 +38,12 @@ pub(crate) fn genesis() -> Storage { x.4.clone(), x.5.clone(), x.6.clone(), - get_from_seed::("Alice"), + Keyring::Alice.into(), ), ) }) .collect::>(), + ..Default::default() }, babe: BabeConfig { authorities: Default::default(), diff --git a/node/Cargo.toml b/node/Cargo.toml index 4948cb183..ec2d3a3b3 100644 --- a/node/Cargo.toml +++ b/node/Cargo.toml @@ -13,6 +13,7 @@ version = "0.2.0-alpha" [dependencies] clap.workspace = true codec.workspace = true +docify.workspace = true futures.workspace = true jsonrpsee = { workspace = true, features = [ "server" ] } log.workspace = true @@ -51,7 +52,9 @@ sp-block-builder.workspace = true sp-blockchain.workspace = true sp-consensus-aura.workspace = true sp-core.workspace = true +sp-genesis-builder = { workspace = true, default-features = true } sp-io.workspace = true +sp-keyring.workspace = true sp-keystore.workspace = true sp-offchain.workspace = true sp-runtime.workspace = true @@ -92,6 +95,7 @@ substrate-build-script-utils.workspace = true pallet-multisig.workspace = true [features] +default = [ "std" ] runtime-benchmarks = [ "cumulus-primitives-core/runtime-benchmarks", "frame-benchmarking-cli/runtime-benchmarks", @@ -105,6 +109,32 @@ runtime-benchmarks = [ "sc-service/runtime-benchmarks", "sp-runtime/runtime-benchmarks", ] +std = [ + "codec/std", + "cumulus-primitives-aura/std", + "cumulus-primitives-core/std", + "frame-benchmarking/std", + "ismp-parachain-runtime-api/std", + "ismp-parachain/std", + "log/std", + "pallet-ismp-runtime-api/std", + "pallet-multisig/std", + "polkadot-primitives/std", + "pop-runtime-common/std", + "pop-runtime-devnet/std", + "pop-runtime-mainnet/std", + "pop-runtime-testnet/std", + "sp-api/std", + "sp-block-builder/std", + "sp-consensus-aura/std", + "sp-core/std", + "sp-io/std", + "sp-offchain/std", + "sp-runtime/std", + "sp-session/std", + "sp-transaction-pool/std", + "xcm/std", +] try-runtime = [ "polkadot-cli/try-runtime", "pop-runtime-devnet/try-runtime", diff --git a/node/src/chain_spec.rs b/node/src/chain_spec.rs index 64dc6368a..661e0dbe8 100644 --- a/node/src/chain_spec.rs +++ b/node/src/chain_spec.rs @@ -1,11 +1,11 @@ use cumulus_primitives_core::ParaId; -use pop_runtime_common::{AccountId, AuraId, Signature}; +use pop_runtime_common::{AccountId, AuraId}; use pop_runtime_mainnet::SudoAddress; use sc_chain_spec::{ChainSpecExtension, ChainSpecGroup}; use sc_service::ChainType; use serde::{Deserialize, Serialize}; -use sp_core::{crypto::Ss58Codec, sr25519, Pair, Public}; -use sp_runtime::traits::{IdentifyAccount, Verify}; +use sp_core::crypto::Ss58Codec; +pub use sp_keyring::sr25519::Keyring; /// Specialized `ChainSpec` for the development parachain runtime. pub type DevnetChainSpec = sc_service::GenericChainSpec; @@ -25,13 +25,6 @@ pub(crate) enum Relay { Polkadot, } -/// Helper function to generate a crypto pair from seed -pub fn get_from_seed(seed: &str) -> ::Public { - TPublic::Pair::from_string(&format!("//{}", seed), None) - .expect("static values are valid; qed") - .public() -} - /// The extensions for the [`ChainSpec`]. #[derive(Debug, Clone, PartialEq, Serialize, Deserialize, ChainSpecGroup, ChainSpecExtension)] pub struct Extensions { @@ -50,23 +43,6 @@ impl Extensions { } } -type AccountPublic = ::Signer; - -/// Generate collator keys from seed. -/// -/// This function's return type must always match the session keys of the chain in tuple format. -pub fn get_collator_keys_from_seed(seed: &str) -> AuraId { - get_from_seed::(seed) -} - -/// Helper function to generate an account ID from seed -pub fn get_account_id_from_seed(seed: &str) -> AccountId -where - AccountPublic: From<::Public>, -{ - AccountPublic::from(get_from_seed::(seed)).into_account() -} - /// Generate the session keys from individual elements. /// /// The input must be a tuple of individual keys (a single arg for now since we have just one key). @@ -117,7 +93,7 @@ fn configure_for_relay( } } -pub fn development_config(relay: Relay) -> DevnetChainSpec { +pub fn development_chain_spec(relay: Relay) -> DevnetChainSpec { // Give your base currency a unit name and decimal places let mut properties = sc_chain_spec::Properties::new(); let (extensions, para_id) = configure_for_relay(relay, &mut properties); @@ -132,16 +108,10 @@ pub fn development_config(relay: Relay) -> DevnetChainSpec { .with_genesis_config_patch(devnet_genesis( // initial collators. vec![ - ( - get_account_id_from_seed::("Alice"), - get_collator_keys_from_seed("Alice"), - ), - ( - get_account_id_from_seed::("Bob"), - get_collator_keys_from_seed("Bob"), - ), + (Keyring::Alice.to_account_id(), Keyring::Alice.public().into()), + (Keyring::Bob.to_account_id(), Keyring::Bob.public().into()), ], - get_account_id_from_seed::("Alice"), + Keyring::Alice.to_account_id(), para_id.into(), )) .with_protocol_id("pop-devnet") @@ -149,7 +119,7 @@ pub fn development_config(relay: Relay) -> DevnetChainSpec { .build() } -pub fn testnet_config(relay: Relay) -> TestnetChainSpec { +pub fn testnet_chain_spec(relay: Relay) -> TestnetChainSpec { // Give your base currency a unit name and decimal places let mut properties = sc_chain_spec::Properties::new(); let (extensions, para_id) = configure_for_relay(relay, &mut properties); @@ -195,7 +165,7 @@ pub fn testnet_config(relay: Relay) -> TestnetChainSpec { .build() } -pub fn mainnet_config(relay: Relay) -> MainnetChainSpec { +pub fn mainnet_chain_spec(relay: Relay) -> MainnetChainSpec { let mut properties = sc_chain_spec::Properties::new(); let (extensions, para_id) = configure_for_relay(relay, &mut properties); diff --git a/node/src/command.rs b/node/src/command.rs index 3a8c8b2c4..6d21e3736 100644 --- a/node/src/command.rs +++ b/node/src/command.rs @@ -1,4 +1,4 @@ -use std::{net::SocketAddr, path::PathBuf}; +use std::path::PathBuf; use cumulus_client_service::storage_proof_size::HostFunctions as ReclaimHostFunctions; use cumulus_primitives_core::ParaId; @@ -7,7 +7,7 @@ use log::info; use pop_runtime_common::Block; use sc_cli::{ ChainSpec, CliConfiguration, DefaultConfigurationValues, ImportParams, KeystoreParams, - NetworkParams, Result, SharedParams, SubstrateCli, + NetworkParams, Result, RpcEndpoint, SharedParams, SubstrateCli, }; use sc_service::config::{BasePath, PrometheusConfig}; use sp_runtime::traits::HashingFor; @@ -73,11 +73,11 @@ impl RuntimeResolver for PathBuf { fn load_spec(id: &str) -> std::result::Result, String> { Ok(match id { "dev" | "devnet" | "dev-paseo" => - Box::new(chain_spec::development_config(Relay::PaseoLocal)), - "test" | "testnet" | "pop-paseo" => Box::new(chain_spec::testnet_config(Relay::Paseo)), + Box::new(chain_spec::development_chain_spec(Relay::PaseoLocal)), + "test" | "testnet" | "pop-paseo" => Box::new(chain_spec::testnet_chain_spec(Relay::Paseo)), "pop" | "mainnet" | "pop-polkadot" | "pop-network" => - Box::new(chain_spec::mainnet_config(Relay::Polkadot)), - "" | "local" => Box::new(chain_spec::development_config(Relay::PaseoLocal)), + Box::new(chain_spec::mainnet_chain_spec(Relay::Polkadot)), + "" | "local" => Box::new(chain_spec::development_chain_spec(Relay::PaseoLocal)), path => { let path: PathBuf = path.into(); match path.runtime() { @@ -346,10 +346,15 @@ pub fn run() -> Result<()> { runner.run_node_until_exit(|config| async move { let hwbench = (!cli.no_hardware_benchmarks) - .then_some(config.database.path().map(|database_path| { - let _ = std::fs::create_dir_all(database_path); - sc_sysinfo::gather_hwbench(Some(database_path)) - })) + .then(|| { + config.database.path().map(|database_path| { + let _ = std::fs::create_dir_all(database_path); + sc_sysinfo::gather_hwbench( + Some(database_path), + &SUBSTRATE_REFERENCE_HARDWARE, + ) + }) + }) .flatten(); let para_id = chain_spec::Extensions::try_get(&*config.chain_spec) @@ -470,7 +475,7 @@ impl CliConfiguration for RelayChainCli { .or_else(|| self.base_path.clone().map(Into::into))) } - fn rpc_addr(&self, default_listen_port: u16) -> Result> { + fn rpc_addr(&self, default_listen_port: u16) -> Result>> { self.base.base.rpc_addr(default_listen_port) } @@ -482,15 +487,9 @@ impl CliConfiguration for RelayChainCli { self.base.base.prometheus_config(default_listen_port, chain_spec) } - fn init( - &self, - _support_url: &String, - _impl_version: &String, - _logger_hook: F, - _config: &sc_service::Configuration, - ) -> Result<()> + fn init(&self, _support_url: &String, _impl_version: &String, _logger_hook: F) -> Result<()> where - F: FnOnce(&mut sc_cli::LoggerBuilder, &sc_service::Configuration), + F: FnOnce(&mut sc_cli::LoggerBuilder), { unreachable!("PolkadotCli is never initialized; qed"); } diff --git a/node/src/rpc.rs b/node/src/rpc.rs index 24e6783db..c44e8d6de 100644 --- a/node/src/rpc.rs +++ b/node/src/rpc.rs @@ -10,7 +10,6 @@ use std::sync::Arc; use pallet_transaction_payment_rpc::{TransactionPayment, TransactionPaymentApiServer}; use pop_runtime_common::{AccountId, Balance, Block, Nonce}; use sc_client_api::{AuxStore, BlockBackend, ProofProvider}; -pub use sc_rpc::DenyUnsafe; use sc_transaction_pool_api::TransactionPool; use sp_api::ProvideRuntimeApi; use sp_block_builder::BlockBuilder; @@ -28,8 +27,6 @@ pub struct FullDeps { pub client: Arc, /// Transaction pool instance. pub pool: Arc

, - /// Whether to deny unsafe calls - pub deny_unsafe: DenyUnsafe, /// Backend used by the node. pub backend: Arc, } @@ -57,9 +54,9 @@ where B::State: sc_client_api::StateBackend>, { let mut module = RpcExtension::new(()); - let FullDeps { client, pool, deny_unsafe, backend: _ } = deps; + let FullDeps { client, pool, backend: _ } = deps; - module.merge(System::new(client.clone(), pool, deny_unsafe).into_rpc())?; + module.merge(System::new(client.clone(), pool).into_rpc())?; module.merge(TransactionPayment::new(client.clone()).into_rpc())?; Ok(module) @@ -89,9 +86,9 @@ where B::State: sc_client_api::StateBackend>, { let mut module = RpcExtension::new(()); - let FullDeps { client, pool, deny_unsafe, backend } = deps; + let FullDeps { client, pool, backend } = deps; - module.merge(System::new(client.clone(), pool, deny_unsafe).into_rpc())?; + module.merge(System::new(client.clone(), pool).into_rpc())?; module.merge(TransactionPayment::new(client.clone()).into_rpc())?; use pallet_ismp_rpc::{IsmpApiServer, IsmpRpcHandler}; diff --git a/node/src/service.rs b/node/src/service.rs index 02638f299..157e465c0 100644 --- a/node/src/service.rs +++ b/node/src/service.rs @@ -6,6 +6,7 @@ use std::{sync::Arc, time::Duration}; use cumulus_client_cli::CollatorOptions; // Cumulus Imports use cumulus_client_collator::service::CollatorService; +#[docify::export(lookahead_collator)] use cumulus_client_consensus_aura::collators::lookahead::{self as aura, Params as AuraParams}; use cumulus_client_consensus_common::ParachainBlockImport as TParachainBlockImport; use cumulus_client_consensus_proposer::Proposer; @@ -13,6 +14,7 @@ use cumulus_client_service::{ build_network, build_relay_chain_interface, prepare_node_config, start_relay_chain_tasks, BuildNetworkParams, CollatorSybilResistance, DARecoveryProfile, StartRelayChainTasksParams, }; +#[docify::export(cumulus_primitives)] use cumulus_primitives_core::{ relay_chain::{CollatorPair, ValidationCode}, ParaId, @@ -27,7 +29,6 @@ use sc_client_api::Backend; use sc_consensus::ImportQueue; use sc_executor::{HeapAllocStrategy, WasmExecutor, DEFAULT_HEAP_ALLOC_STRATEGY}; use sc_network::NetworkBlock; -use sc_network_sync::SyncingService; use sc_service::{Configuration, PartialComponents, TFullBackend, TFullClient, TaskManager}; use sc_telemetry::{Telemetry, TelemetryHandle, TelemetryWorker, TelemetryWorkerHandle}; use sc_transaction_pool_api::OffchainTransactionPoolFactory; @@ -59,7 +60,7 @@ type Service = PartialComponents< ParachainBackend, (), sc_consensus::DefaultImportQueue, - sc_transaction_pool::FullPool>, + sc_transaction_pool::TransactionPoolHandle>, (ParachainBlockImport, Option, Option), >; @@ -88,15 +89,16 @@ where .transpose()?; let heap_pages = config + .executor .default_heap_pages .map_or(DEFAULT_HEAP_ALLOC_STRATEGY, |h| HeapAllocStrategy::Static { extra_pages: h as _ }); let executor = ParachainExecutor::builder() - .with_execution_method(config.wasm_method) + .with_execution_method(config.executor.wasm_method) .with_onchain_heap_alloc_strategy(heap_pages) .with_offchain_heap_alloc_strategy(heap_pages) - .with_max_runtime_instances(config.max_runtime_instances) - .with_runtime_cache_size(config.runtime_cache_size) + .with_max_runtime_instances(config.executor.max_runtime_instances) + .with_runtime_cache_size(config.executor.runtime_cache_size) .build(); let (client, backend, keystore_container, task_manager) = @@ -115,12 +117,15 @@ where telemetry }); - let transaction_pool = sc_transaction_pool::BasicPool::new_full( - config.transaction_pool.clone(), - config.role.is_authority().into(), - config.prometheus_registry(), - task_manager.spawn_essential_handle(), - client.clone(), + let transaction_pool = Arc::from( + sc_transaction_pool::Builder::new( + task_manager.spawn_essential_handle(), + client.clone(), + config.role.is_authority().into(), + ) + .with_options(config.transaction_pool.clone()) + .with_prometheus(config.prometheus_registry()) + .build(), ); let block_import = ParachainBlockImport::::new(client.clone(), backend.clone()); @@ -168,8 +173,7 @@ where Option, &TaskManager, Arc, - Arc>>, - Arc>, + Arc>>, KeystorePtr, Duration, ParaId, @@ -182,11 +186,13 @@ where let params = new_partial::(¶chain_config)?; let (block_import, mut telemetry, telemetry_worker_handle) = params.other; + + let prometheus_registry = parachain_config.prometheus_registry().cloned(); let net_config = sc_network::config::FullNetworkConfiguration::< _, _, sc_network::NetworkWorker, - >::new(¶chain_config.network); + >::new(¶chain_config.network, prometheus_registry.clone()); let client = params.client.clone(); let backend = params.backend.clone(); @@ -204,7 +210,6 @@ where .map_err(|e| sc_service::Error::Application(Box::new(e) as Box<_>))?; let validator = parachain_config.role.is_authority(); - let prometheus_registry = parachain_config.prometheus_registry().cloned(); let transaction_pool = params.transaction_pool.clone(); let import_queue_service = params.import_queue.service(); @@ -225,9 +230,7 @@ where if parachain_config.offchain_worker.enabled { use futures::FutureExt; - task_manager.spawn_handle().spawn( - "offchain-workers-runner", - "offchain-work", + let offchain_workers = sc_offchain::OffchainWorkers::new(sc_offchain::OffchainWorkerOptions { runtime_api_provider: client.clone(), keystore: Some(params.keystore_container.keystore()), @@ -239,9 +242,11 @@ where is_validator: parachain_config.role.is_authority(), enable_http_requests: false, custom_extensions: move |_| vec![], - }) - .run(client.clone(), task_manager.spawn_handle()) - .boxed(), + })?; + task_manager.spawn_handle().spawn( + "offchain-workers-runner", + "offchain-work", + offchain_workers.run(client.clone(), task_manager.spawn_handle()).boxed(), ); } @@ -250,12 +255,11 @@ where let backend = backend.clone(); let transaction_pool = transaction_pool.clone(); - Box::new(move |deny_unsafe, _| { + Box::new(move |_| { let deps = crate::rpc::FullDeps { client: client.clone(), pool: transaction_pool.clone(), backend: backend.clone(), - deny_unsafe, }; crate::rpc::create_full(deps).map_err(Into::into) @@ -282,7 +286,7 @@ where // Here you can check whether the hardware meets your chains' requirements. Putting a link // in there and swapping out the requirements for your own are probably a good idea. The // requirements for a para-chain are dictated by its relay-chain. - if SUBSTRATE_REFERENCE_HARDWARE.check_hardware(&hwbench).is_err() && validator { + if SUBSTRATE_REFERENCE_HARDWARE.check_hardware(&hwbench, false).is_err() && validator { log::warn!( "⚠️ The hardware does not meet the minimal requirements for role 'Authority'." ); @@ -336,7 +340,6 @@ where &task_manager, relay_chain_interface, transaction_pool, - sync_service, params.keystore_container.keystore(), relay_chain_slot_duration, para_id, @@ -392,8 +395,9 @@ fn start_consensus( telemetry: Option, task_manager: &TaskManager, relay_chain_interface: Arc, - transaction_pool: Arc>>, - sync_oracle: Arc>, + transaction_pool: Arc< + sc_transaction_pool::TransactionPoolHandle>, + >, keystore: KeystorePtr, relay_chain_slot_duration: Duration, para_id: ParaId, @@ -455,7 +459,6 @@ where code_hash_provider: move |block_hash| { client.code_at(block_hash).ok().map(|c| ValidationCode::from(c).hash()) }, - sync_oracle, keystore, collator_key, para_id, @@ -467,10 +470,9 @@ where reinitialize: false, }; - let fut = - aura::run::( - params, - ); + let fut = aura::run::( + params, + ); task_manager.spawn_essential_handle().spawn("aura", None, fut); Ok(()) diff --git a/pallets/api/Cargo.toml b/pallets/api/Cargo.toml index 55a007895..db655d296 100644 --- a/pallets/api/Cargo.toml +++ b/pallets/api/Cargo.toml @@ -45,6 +45,7 @@ std = [ "frame-benchmarking/std", "frame-support/std", "frame-system/std", + "log/std", "pallet-assets/std", "pallet-balances/std", "pop-chain-extension/std", diff --git a/pallets/api/src/fungibles/tests.rs b/pallets/api/src/fungibles/tests.rs index f5c560bb7..1c7b9f752 100644 --- a/pallets/api/src/fungibles/tests.rs +++ b/pallets/api/src/fungibles/tests.rs @@ -2,7 +2,7 @@ use codec::Encode; use frame_support::{ assert_noop, assert_ok, dispatch::WithPostDispatchInfo, - sp_runtime::{traits::Zero, DispatchError::BadOrigin}, + sp_runtime::{traits::Zero, DispatchError::BadOrigin, TokenError}, traits::fungibles::{ approvals::Inspect as ApprovalInspect, metadata::Inspect as MetadataInspect, Inspect, }, @@ -341,7 +341,7 @@ fn start_destroy_works() { // Check that the token is not live after starting the destroy process. assert_noop!( Assets::mint(signed(ALICE), token, ALICE, 10 * UNIT), - AssetsError::AssetNotLive + TokenError::UnknownAsset ); }); } diff --git a/pallets/api/src/mock.rs b/pallets/api/src/mock.rs index 42c8bf0e2..6ea06d2c5 100644 --- a/pallets/api/src/mock.rs +++ b/pallets/api/src/mock.rs @@ -67,6 +67,7 @@ impl frame_system::Config for Test { impl pallet_balances::Config for Test { type AccountStore = System; type Balance = Balance; + type DoneSlashHandler = (); type DustRemoval = (); type ExistentialDeposit = ConstU128<1>; type FreezeIdentifier = (); diff --git a/pallets/nfts/src/benchmarking.rs b/pallets/nfts/src/benchmarking.rs index 4b680f606..a04580a87 100644 --- a/pallets/nfts/src/benchmarking.rs +++ b/pallets/nfts/src/benchmarking.rs @@ -75,7 +75,7 @@ fn mint_item, I: 'static>( let item_exists = Item::::contains_key(collection, item); let item_config = ItemConfigOf::::get(collection, item); if item_exists { - return (item, caller, caller_lookup) + return (item, caller, caller_lookup); } else if let Some(item_config) = item_config { assert_ok!(Nfts::::force_mint( SystemOrigin::Signed(caller.clone()).into(), diff --git a/pallets/nfts/src/common_functions.rs b/pallets/nfts/src/common_functions.rs index f27a90290..1636e8c5e 100644 --- a/pallets/nfts/src/common_functions.rs +++ b/pallets/nfts/src/common_functions.rs @@ -69,7 +69,7 @@ impl, I: 'static> Pallet { signer: &T::AccountId, ) -> DispatchResult { if signature.verify(&**data, signer) { - return Ok(()) + return Ok(()); } // NOTE: for security reasons modern UIs implicitly wrap the data requested to sign into diff --git a/pallets/nfts/src/features/transfer.rs b/pallets/nfts/src/features/transfer.rs index 9f5dc77b4..4dac73ac3 100644 --- a/pallets/nfts/src/features/transfer.rs +++ b/pallets/nfts/src/features/transfer.rs @@ -153,7 +153,7 @@ impl, I: 'static> Pallet { // Check if the `origin` is the current owner of the collection. ensure!(origin == details.owner, Error::::NoPermission); if details.owner == new_owner { - return Ok(()) + return Ok(()); } // Move the deposit to the new owner. @@ -228,7 +228,7 @@ impl, I: 'static> Pallet { Collection::::try_mutate(collection, |maybe_details| { let details = maybe_details.as_mut().ok_or(Error::::UnknownCollection)?; if details.owner == owner { - return Ok(()) + return Ok(()); } // Move the deposit to the new owner. diff --git a/pallets/nfts/src/impl_nonfungibles.rs b/pallets/nfts/src/impl_nonfungibles.rs index e8fa4457a..a0bf71b55 100644 --- a/pallets/nfts/src/impl_nonfungibles.rs +++ b/pallets/nfts/src/impl_nonfungibles.rs @@ -254,7 +254,7 @@ impl, I: 'static> Mutate<::AccountId, ItemConfig Self::do_burn(*collection, *item, |d| { if let Some(check_owner) = maybe_check_owner { if &d.owner != check_owner { - return Err(Error::::NoPermission.into()) + return Err(Error::::NoPermission.into()); } } Ok(()) @@ -423,7 +423,7 @@ impl, I: 'static> Transfer for Pallet { Self::has_system_attribute(collection, item, PalletAttributes::TransferDisabled)?; // Can't lock the item twice if transfer_disabled { - return Err(Error::::ItemLocked.into()) + return Err(Error::::ItemLocked.into()); } >::set_attribute( diff --git a/pallets/nfts/src/lib.rs b/pallets/nfts/src/lib.rs index 8d9c77fad..2526d8366 100644 --- a/pallets/nfts/src/lib.rs +++ b/pallets/nfts/src/lib.rs @@ -1166,7 +1166,7 @@ pub mod pallet { if T::Currency::reserve(&details.deposit.account, deposit - old).is_err() { // NOTE: No alterations made to collection_details in this iteration so // far, so this is OK to do. - continue + continue; } }, _ => continue, diff --git a/pop-api/Cargo.lock b/pop-api/Cargo.lock index 2acc212f7..1812771ef 100644 --- a/pop-api/Cargo.lock +++ b/pop-api/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" @@ -2517,11 +2517,12 @@ dependencies = [ [[package]] name = "sp-io" -version = "37.0.0" +version = "38.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5036cad2e48d41f5caf6785226c8be1a7db15bec14a9fd7aa6cca84f34cf689f" +checksum = "59ef7eb561bb4839cc8424ce58c5ea236cbcca83f26fcc0426d8decfe8aa97d4" dependencies = [ "bytes", + "docify", "ed25519-dalek", "libsecp256k1", "log", @@ -2535,7 +2536,6 @@ dependencies = [ "sp-keystore", "sp-runtime-interface", "sp-state-machine", - "sp-std", "sp-tracing", "sp-trie", "tracing", @@ -2601,9 +2601,9 @@ dependencies = [ [[package]] name = "sp-state-machine" -version = "0.42.0" +version = "0.43.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "211e528aa6e902261a343f7b40840aa3d66fe4ad3aadbd04a035f10baf96dbc5" +checksum = "930104d6ae882626e8880d9b1578da9300655d337a3ffb45e130c608b6c89660" dependencies = [ "hash-db", "log", @@ -2653,9 +2653,9 @@ dependencies = [ [[package]] name = "sp-trie" -version = "36.0.0" +version = "37.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "841d717c0f465f5371569e6fdc25b6f32d47c15d6e4c92b3b779e1c9b18b951d" +checksum = "6282aef9f4b6ecd95a67a45bcdb67a71f4a4155c09a53c10add4ffe823db18cd" dependencies = [ "ahash", "hash-db", diff --git a/pop-api/Cargo.toml b/pop-api/Cargo.toml index cb491fef1..94bd9a05c 100644 --- a/pop-api/Cargo.toml +++ b/pop-api/Cargo.toml @@ -8,7 +8,7 @@ version = "0.0.0" [dependencies] ink = { version = "5.1.0", default-features = false } pop-primitives = { path = "../primitives", default-features = false } -sp-io = { version = "37.0.0", default-features = false, features = [ +sp-io = { version = "38.0.0", default-features = false, features = [ "disable_allocator", "disable_oom", "disable_panic_handler", diff --git a/pop-api/integration-tests/contracts/create_token_in_constructor/Cargo.lock b/pop-api/integration-tests/contracts/create_token_in_constructor/Cargo.lock index 11b547f55..3d37c56c8 100644 --- a/pop-api/integration-tests/contracts/create_token_in_constructor/Cargo.lock +++ b/pop-api/integration-tests/contracts/create_token_in_constructor/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" @@ -2525,11 +2525,12 @@ dependencies = [ [[package]] name = "sp-io" -version = "37.0.0" +version = "38.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5036cad2e48d41f5caf6785226c8be1a7db15bec14a9fd7aa6cca84f34cf689f" +checksum = "59ef7eb561bb4839cc8424ce58c5ea236cbcca83f26fcc0426d8decfe8aa97d4" dependencies = [ "bytes", + "docify", "ed25519-dalek", "libsecp256k1", "log", @@ -2543,7 +2544,6 @@ dependencies = [ "sp-keystore", "sp-runtime-interface", "sp-state-machine", - "sp-std", "sp-tracing", "sp-trie", "tracing", @@ -2609,9 +2609,9 @@ dependencies = [ [[package]] name = "sp-state-machine" -version = "0.42.0" +version = "0.43.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "211e528aa6e902261a343f7b40840aa3d66fe4ad3aadbd04a035f10baf96dbc5" +checksum = "930104d6ae882626e8880d9b1578da9300655d337a3ffb45e130c608b6c89660" dependencies = [ "hash-db", "log", @@ -2661,9 +2661,9 @@ dependencies = [ [[package]] name = "sp-trie" -version = "36.0.0" +version = "37.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "841d717c0f465f5371569e6fdc25b6f32d47c15d6e4c92b3b779e1c9b18b951d" +checksum = "6282aef9f4b6ecd95a67a45bcdb67a71f4a4155c09a53c10add4ffe823db18cd" dependencies = [ "ahash", "hash-db", diff --git a/pop-api/integration-tests/contracts/create_token_in_constructor/Cargo.toml b/pop-api/integration-tests/contracts/create_token_in_constructor/Cargo.toml index da5854c42..f1b7fb67f 100755 --- a/pop-api/integration-tests/contracts/create_token_in_constructor/Cargo.toml +++ b/pop-api/integration-tests/contracts/create_token_in_constructor/Cargo.toml @@ -1,4 +1,5 @@ [package] +authors = [ "R0GUE " ] edition = "2021" name = "create_token_in_constructor" version = "0.1.0" diff --git a/pop-api/integration-tests/contracts/fungibles/Cargo.lock b/pop-api/integration-tests/contracts/fungibles/Cargo.lock index fd95f6c02..a071901fe 100644 --- a/pop-api/integration-tests/contracts/fungibles/Cargo.lock +++ b/pop-api/integration-tests/contracts/fungibles/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" @@ -2525,11 +2525,12 @@ dependencies = [ [[package]] name = "sp-io" -version = "37.0.0" +version = "38.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5036cad2e48d41f5caf6785226c8be1a7db15bec14a9fd7aa6cca84f34cf689f" +checksum = "59ef7eb561bb4839cc8424ce58c5ea236cbcca83f26fcc0426d8decfe8aa97d4" dependencies = [ "bytes", + "docify", "ed25519-dalek", "libsecp256k1", "log", @@ -2543,7 +2544,6 @@ dependencies = [ "sp-keystore", "sp-runtime-interface", "sp-state-machine", - "sp-std", "sp-tracing", "sp-trie", "tracing", @@ -2609,9 +2609,9 @@ dependencies = [ [[package]] name = "sp-state-machine" -version = "0.42.0" +version = "0.43.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "211e528aa6e902261a343f7b40840aa3d66fe4ad3aadbd04a035f10baf96dbc5" +checksum = "930104d6ae882626e8880d9b1578da9300655d337a3ffb45e130c608b6c89660" dependencies = [ "hash-db", "log", @@ -2661,9 +2661,9 @@ dependencies = [ [[package]] name = "sp-trie" -version = "36.0.0" +version = "37.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "841d717c0f465f5371569e6fdc25b6f32d47c15d6e4c92b3b779e1c9b18b951d" +checksum = "6282aef9f4b6ecd95a67a45bcdb67a71f4a4155c09a53c10add4ffe823db18cd" dependencies = [ "ahash", "hash-db", diff --git a/pop-api/integration-tests/contracts/fungibles/Cargo.toml b/pop-api/integration-tests/contracts/fungibles/Cargo.toml index ce96b8c7b..80b71a4b0 100755 --- a/pop-api/integration-tests/contracts/fungibles/Cargo.toml +++ b/pop-api/integration-tests/contracts/fungibles/Cargo.toml @@ -1,4 +1,5 @@ [package] +authors = [ "R0GUE " ] edition = "2021" name = "fungibles" version = "0.1.0" diff --git a/pop-api/integration-tests/src/fungibles/mod.rs b/pop-api/integration-tests/src/fungibles/mod.rs index aa2048a93..dfcf540c7 100644 --- a/pop-api/integration-tests/src/fungibles/mod.rs +++ b/pop-api/integration-tests/src/fungibles/mod.rs @@ -514,9 +514,9 @@ fn mint_works() { assert_eq!(balance_after_mint, balance_before_mint + amount); // Account can not hold more tokens than Balance::MAX. assert_eq!(mint(&addr, token, &BOB, Balance::MAX,), Err(Arithmetic(Overflow))); - // Token is not live, i.e. frozen or being destroyed. + // Token is being destroyed. assets::start_destroy(&addr, token); - assert_eq!(mint(&addr, token, &BOB, amount), Err(Module { index: 52, error: [16, 0] })); + assert_eq!(mint(&addr, token, &BOB, amount), Err(Token(UnknownAsset))); }); } diff --git a/primitives/src/lib.rs b/primitives/src/lib.rs index 8298fc5dd..9a138d18c 100644 --- a/primitives/src/lib.rs +++ b/primitives/src/lib.rs @@ -66,6 +66,8 @@ pub mod v0 { Unavailable = 12, /// Root origin is not allowed. RootNotAllowed = 13, + /// An error related to tries. + Trie(TrieError) = 14, /// Decoding failed. DecodingFailed = 254, /// An unknown error occurred. This variant captures any unexpected errors that the @@ -158,6 +160,44 @@ pub mod v0 { /// A transactional layer was expected, but does not exist. NoLayer, } + + /// A runtime friendly error type for tries. + // https://docs.rs/sp-runtime/latest/sp_runtime/proving_trie/enum.TrieError.html + #[derive(Encode, Decode, Debug)] + #[cfg_attr(test, derive(Sequence))] + #[cfg_attr(feature = "std", derive(TypeInfo, Eq, PartialEq, Clone))] + pub enum TrieError { + /// Attempted to create a trie with a state root not in the DB. + InvalidStateRoot, + /// Trie item not found in the database, + IncompleteDatabase, + /// A value was found in the trie with a nibble key that was not byte-aligned. + ValueAtIncompleteKey, + /// Corrupt Trie item. + DecoderError, + /// Hash is not value. + InvalidHash, + /// The statement being verified contains multiple key-value pairs with the same key. + DuplicateKey, + /// The proof contains at least one extraneous node. + ExtraneousNode, + /// The proof contains at least one extraneous value which should have been omitted + /// from the proof. + ExtraneousValue, + /// The proof contains at least one extraneous hash reference the should have been + /// omitted. + ExtraneousHashReference, + /// The proof contains an invalid child reference that exceeds the hash length. + InvalidChildReference, + /// The proof indicates that an expected value was not found in the trie. + ValueMismatch, + /// The proof is missing trie nodes required to verify. + IncompleteProof, + /// The root hash computed from the proof is incorrect. + RootMismatch, + /// One of the proof nodes could not be decoded. + DecodeError, + } } #[cfg(test)] diff --git a/runtime/common/Cargo.toml b/runtime/common/Cargo.toml index 395abd246..07aa2935a 100644 --- a/runtime/common/Cargo.toml +++ b/runtime/common/Cargo.toml @@ -12,21 +12,30 @@ version = "0.0.0" targets = [ "x86_64-unknown-linux-gnu" ] [dependencies] -codec = { workspace = true, default-features = false, features = [ "derive" ] } -scale-info = { workspace = true, default-features = false, features = [ "derive" ] } +codec = { workspace = true, features = [ "derive" ] } +docify.workspace = true +scale-info = { workspace = true, features = [ "derive" ] } # Substrate -frame-support = { workspace = true, default-features = false } -sp-runtime = { workspace = true, default-features = false } -sp-std = { workspace = true, default-features = false } +frame-support.workspace = true +sp-runtime.workspace = true -parachains-common = { workspace = true, default-features = false } -polkadot-primitives = { workspace = true, default-features = false } +parachains-common.workspace = true +polkadot-primitives.workspace = true [features] default = [ "std" ] runtime-benchmarks = [ "frame-support/runtime-benchmarks", + "parachains-common/runtime-benchmarks", + "polkadot-primitives/runtime-benchmarks", "sp-runtime/runtime-benchmarks", ] -std = [ "frame-support/std", "sp-runtime/std" ] +std = [ + "codec/std", + "frame-support/std", + "parachains-common/std", + "polkadot-primitives/std", + "scale-info/std", + "sp-runtime/std", +] diff --git a/runtime/common/src/lib.rs b/runtime/common/src/lib.rs index f20ea377e..e0890ee3f 100644 --- a/runtime/common/src/lib.rs +++ b/runtime/common/src/lib.rs @@ -9,25 +9,28 @@ use sp_runtime::Perbill; /// Nonce for an account pub type Nonce = u32; -/// This determines the average expected block time that we are targeting. -/// Blocks will be produced at a minimum duration defined by `SLOT_DURATION`. -/// `SLOT_DURATION` is picked up by `pallet_timestamp` which is in turn picked -/// up by `pallet_aura` to implement `fn slot_duration()`. -/// -/// Change this to adjust the block time. -pub const MILLISECS_PER_BLOCK: u64 = 6000; - -// NOTE: Currently it is not possible to change the slot duration after the chain has started. -// Attempting to do so will brick block production. -pub const SLOT_DURATION: u64 = MILLISECS_PER_BLOCK; - -/// Relay chain slot duration, in milliseconds. -// Value is 6000 millisecs. If `MILLISECS_PER_BLOCK` changes this needs addressing. -pub const RELAY_CHAIN_SLOT_DURATION_MILLIS: u32 = 6000; +#[docify::export] +mod block_times { + /// This determines the average expected block time that we are targeting. + /// Blocks will be produced at a minimum duration defined by `SLOT_DURATION`. + /// `SLOT_DURATION` is picked up by `pallet_timestamp` which is in turn picked + /// up by `pallet_aura` to implement `fn slot_duration()`. + /// + /// Change this to adjust the block time. + pub const MILLISECS_PER_BLOCK: u64 = 6000; + /// The duration of a slot. + // NOTE: Currently it is not possible to change the slot duration after the chain has started. + // Attempting to do so will brick block production. + pub const SLOT_DURATION: u64 = MILLISECS_PER_BLOCK; +} +pub use block_times::*; // Time is measured by number of blocks. +/// A minute, measured by number of blocks. pub const MINUTES: BlockNumber = 60_000 / (MILLISECS_PER_BLOCK as BlockNumber); +/// An hour, measured by number of blocks. pub const HOURS: BlockNumber = MINUTES * 60; +/// A day, measured by number of blocks. pub const DAYS: BlockNumber = HOURS * 24; /// We assume that ~5% of the block weight is consumed by `on_initialize` handlers. This is @@ -39,30 +42,37 @@ pub const AVERAGE_ON_INITIALIZE_RATIO: Perbill = Perbill::from_percent(5); pub const NORMAL_DISPATCH_RATIO: Perbill = Perbill::from_percent(75); /// We allow for 2 seconds of compute with a 6-second average block. +#[docify::export(max_block_weight)] pub const MAXIMUM_BLOCK_WEIGHT: Weight = Weight::from_parts(WEIGHT_REF_TIME_PER_SECOND.saturating_mul(2), MAX_POV_SIZE as u64); -// Unit = the base number of indivisible units for balances +/// A unit of the native asset. pub const UNIT: Balance = 10_000_000_000; // 10 decimals +/// A milli-unit of the native asset. +pub const MILLI_UNIT: Balance = UNIT / 1_000; // 10_000_000 +/// A micro-unit of the native asset. +pub const MICRO_UNIT: Balance = UNIT / 1_000_000; // 10_000 -pub const MILLIUNIT: Balance = UNIT / 1_000; // 10_000_000 -pub const MICROUNIT: Balance = UNIT / 1_000_000; // 10_000 - -// Deposits +/// Deposits. pub const fn deposit(items: u32, bytes: u32) -> Balance { - (items as Balance * UNIT + (bytes as Balance) * (5 * MILLIUNIT / 100)) / 10 + (items as Balance * UNIT + (bytes as Balance) * (5 * MILLI_UNIT / 100)) / 10 } /// The existential deposit. Set to 1/1_000 of the Connected Relay Chain. -pub const EXISTENTIAL_DEPOSIT: Balance = MILLIUNIT; - -// Async backing -/// Maximum number of blocks simultaneously accepted by the Runtime, not yet included -/// into the relay chain. -pub const UNINCLUDED_SEGMENT_CAPACITY: u32 = 3; - -/// How many parachain blocks are processed by the relay chain per parent. Limits the -/// number of blocks authored per slot. -pub const BLOCK_PROCESSING_VELOCITY: u32 = 1; +pub const EXISTENTIAL_DEPOSIT: Balance = MILLI_UNIT; + +#[docify::export] +mod async_backing_params { + /// Maximum number of blocks simultaneously accepted by the Runtime, not yet included + /// into the relay chain. + pub const UNINCLUDED_SEGMENT_CAPACITY: u32 = 3; + /// How many parachain blocks are processed by the relay chain per parent. Limits the + /// number of blocks authored per slot. + pub const BLOCK_PROCESSING_VELOCITY: u32 = 1; + /// Relay chain slot duration, in milliseconds. + // Value is 6000 millisecs. If `MILLISECS_PER_BLOCK` changes this needs addressing. + pub const RELAY_CHAIN_SLOT_DURATION_MILLIS: u32 = 6000; +} +pub use async_backing_params::*; /// Proxy commons for Pop runtimes pub mod proxy { diff --git a/runtime/devnet/Cargo.toml b/runtime/devnet/Cargo.toml index 2b4fe41c9..41e875184 100644 --- a/runtime/devnet/Cargo.toml +++ b/runtime/devnet/Cargo.toml @@ -12,10 +12,12 @@ version = "0.1.0" targets = [ "x86_64-unknown-linux-gnu" ] [build-dependencies] -substrate-wasm-builder.workspace = true +substrate-wasm-builder = { workspace = true, optional = true } [dependencies] +anyhow.workspace = true codec.workspace = true +docify.workspace = true hex-literal.workspace = true log.workspace = true scale-info.workspace = true @@ -23,6 +25,7 @@ smallvec.workspace = true # Local pallet-api.workspace = true +pallet-nfts.workspace = true pop-chain-extension.workspace = true pop-primitives.workspace = true pop-runtime-common.workspace = true @@ -44,7 +47,6 @@ pallet-contracts.workspace = true pallet-message-queue.workspace = true pallet-multisig.workspace = true pallet-nft-fractionalization.workspace = true -pallet-nfts.workspace = true pallet-nfts-runtime-api.workspace = true pallet-preimage.workspace = true pallet-proxy.workspace = true @@ -66,7 +68,6 @@ sp-mmr-primitives.workspace = true sp-offchain.workspace = true sp-runtime.workspace = true sp-session.workspace = true -sp-std.workspace = true sp-transaction-pool.workspace = true sp-version.workspace = true @@ -117,6 +118,7 @@ std = [ "cumulus-primitives-core/std", "cumulus-primitives-storage-weight-reclaim/std", "cumulus-primitives-utility/std", + "enumflags2/std", "frame-benchmarking/std", "frame-executive/std", "frame-metadata-hash-extension/std", @@ -168,12 +170,13 @@ std = [ "sp-genesis-builder/std", "sp-inherents/std", "sp-io/std", + "sp-mmr-primitives/std", "sp-offchain/std", "sp-runtime/std", "sp-session/std", - "sp-std/std", "sp-transaction-pool/std", "sp-version/std", + "substrate-wasm-builder", "xcm-builder/std", "xcm-executor/std", "xcm/std", @@ -194,6 +197,7 @@ runtime-benchmarks = [ "pallet-balances/runtime-benchmarks", "pallet-collator-selection/runtime-benchmarks", "pallet-contracts/runtime-benchmarks", + "pallet-ismp/runtime-benchmarks", "pallet-message-queue/runtime-benchmarks", "pallet-multisig/runtime-benchmarks", "pallet-nft-fractionalization/runtime-benchmarks", @@ -203,6 +207,7 @@ runtime-benchmarks = [ "pallet-scheduler/runtime-benchmarks", "pallet-sudo/runtime-benchmarks", "pallet-timestamp/runtime-benchmarks", + "pallet-transaction-payment/runtime-benchmarks", "pallet-utility/runtime-benchmarks", "pallet-xcm/runtime-benchmarks", "parachains-common/runtime-benchmarks", diff --git a/runtime/devnet/src/config/api/mod.rs b/runtime/devnet/src/config/api/mod.rs index 035a6014f..8d635b0c5 100644 --- a/runtime/devnet/src/config/api/mod.rs +++ b/runtime/devnet/src/config/api/mod.rs @@ -1,3 +1,4 @@ +use alloc::vec::Vec; use core::marker::PhantomData; use codec::Decode; @@ -7,7 +8,6 @@ pub(crate) use pallet_api::Extension; use pallet_api::{extension::*, Read}; use sp_core::ConstU8; use sp_runtime::DispatchError; -use sp_std::vec::Vec; use versioning::*; use crate::{ diff --git a/runtime/devnet/src/config/api/versioning.rs b/runtime/devnet/src/config/api/versioning.rs index daa2a0a9d..d88c84c70 100644 --- a/runtime/devnet/src/config/api/versioning.rs +++ b/runtime/devnet/src/config/api/versioning.rs @@ -103,7 +103,9 @@ struct V0Error(pop_primitives::v0::Error); impl From for V0Error { fn from(error: DispatchError) -> Self { use pop_primitives::v0::*; - use sp_runtime::{ArithmeticError::*, TokenError::*, TransactionalError::*}; + use sp_runtime::{ + proving_trie::TrieError::*, ArithmeticError::*, TokenError::*, TransactionalError::*, + }; use DispatchError::*; // Mappings exist here to avoid taking a dependency of sp_runtime on pop-primitives Self(match error { @@ -157,6 +159,22 @@ impl From for V0Error { Corruption => Error::Corruption, Unavailable => Error::Unavailable, RootNotAllowed => Error::RootNotAllowed, + Trie(error) => Error::Trie(match error { + InvalidStateRoot => TrieError::InvalidStateRoot, + IncompleteDatabase => TrieError::IncompleteDatabase, + ValueAtIncompleteKey => TrieError::ValueAtIncompleteKey, + DecoderError => TrieError::DecoderError, + InvalidHash => TrieError::InvalidHash, + DuplicateKey => TrieError::DuplicateKey, + ExtraneousNode => TrieError::ExtraneousNode, + ExtraneousValue => TrieError::ExtraneousValue, + ExtraneousHashReference => TrieError::ExtraneousHashReference, + InvalidChildReference => TrieError::InvalidChildReference, + ValueMismatch => TrieError::ValueMismatch, + IncompleteProof => TrieError::IncompleteProof, + RootMismatch => TrieError::RootMismatch, + DecodeError => TrieError::DecodeError, + }), }) } } diff --git a/runtime/devnet/src/config/contracts.rs b/runtime/devnet/src/config/contracts.rs index b3701498f..f4c4215f1 100644 --- a/runtime/devnet/src/config/contracts.rs +++ b/runtime/devnet/src/config/contracts.rs @@ -1,3 +1,5 @@ +use core::marker::PhantomData; + use frame_support::{ parameter_types, traits::{ConstBool, ConstU32, Nothing, Randomness}, @@ -14,6 +16,7 @@ fn schedule() -> pallet_contracts::Schedule { pallet_contracts::Schedule { limits: pallet_contracts::Limits { runtime_memory: 1024 * 1024 * 1024, + validator_runtime_memory: 2 * 1024 * 1024 * 1024, ..Default::default() }, ..Default::default() @@ -22,7 +25,7 @@ fn schedule() -> pallet_contracts::Schedule { // randomness-collective-flip is insecure. Provide dummy randomness as placeholder for the // deprecated trait. https://github.com/paritytech/polkadot-sdk/blob/9bf1a5e23884921498b381728bfddaae93f83744/substrate/frame/contracts/mock-network/src/parachain/contracts_config.rs#L45 -pub struct DummyRandomness(sp_std::marker::PhantomData); +pub struct DummyRandomness(PhantomData); impl Randomness> for DummyRandomness { fn random(_subject: &[u8]) -> (T::Hash, BlockNumberFor) { @@ -65,6 +68,7 @@ impl pallet_contracts::Config for Runtime { type MaxDebugBufferLen = ConstU32<{ 2 * 1024 * 1024 }>; type MaxDelegateDependencies = ConstU32<32>; type MaxStorageKeyLen = ConstU32<128>; + type MaxTransientStorageSize = ConstU32<{ 1024 * 1024 }>; type Migrations = (); type Randomness = DummyRandomness; type RuntimeCall = RuntimeCall; diff --git a/runtime/devnet/src/config/ismp.rs b/runtime/devnet/src/config/ismp.rs index 896b996f9..3b0693e8c 100644 --- a/runtime/devnet/src/config/ismp.rs +++ b/runtime/devnet/src/config/ismp.rs @@ -1,8 +1,9 @@ +use alloc::{boxed::Box, vec::Vec}; + use frame_support::traits::Get; use frame_system::EnsureRoot; -use ismp::{error::Error, host::StateMachine, module::IsmpModule, router::IsmpRouter}; +use ismp::{host::StateMachine, module::IsmpModule, router::IsmpRouter}; use ismp_parachain::ParachainConsensusClient; -use sp_std::prelude::*; use crate::{ AccountId, Balance, Balances, Ismp, IsmpParachain, ParachainInfo, Runtime, RuntimeEvent, @@ -16,7 +17,7 @@ impl pallet_ismp::Config for Runtime { type Coprocessor = Coprocessor; type Currency = Balances; type HostStateMachine = HostStateMachine; - type Mmr = pallet_ismp::NoOpMmrTree; + type OffchainDB = (); type Router = Router; type RuntimeEvent = RuntimeEvent; type TimestampProvider = Timestamp; @@ -45,7 +46,7 @@ impl Get for HostStateMachine { #[derive(Default)] pub struct Router; impl IsmpRouter for Router { - fn module_for_id(&self, id: Vec) -> Result, Error> { - Err(Error::ModuleNotFound(id)) + fn module_for_id(&self, id: Vec) -> Result, anyhow::Error> { + Err(anyhow::anyhow!("Module not found: {:?}", id)) } } diff --git a/runtime/devnet/src/lib.rs b/runtime/devnet/src/lib.rs index caeb44142..b51d120fe 100644 --- a/runtime/devnet/src/lib.rs +++ b/runtime/devnet/src/lib.rs @@ -10,6 +10,10 @@ include!(concat!(env!("OUT_DIR"), "/wasm_binary.rs")); pub mod config; mod weights; +extern crate alloc; + +use alloc::{borrow::Cow, vec::Vec}; + // ISMP imports use ::ismp::{ consensus::{ConsensusClientId, StateMachineHeight, StateMachineId}, @@ -41,7 +45,7 @@ use frame_system::{ }; use pallet_api::fungibles; use pallet_balances::Call as BalancesCall; -use pallet_ismp::mmr::{Leaf, Proof, ProofKeys}; +use pallet_ismp::offchain::{Leaf, Proof, ProofKeys}; use pallet_xcm::{EnsureXcm, IsVoiceOfBody}; use parachains_common::message_queue::{NarrowOriginToSibling, ParaIdToSibling}; use polkadot_runtime_common::xcm_sender::NoPriceForMessageDelivery; @@ -49,8 +53,8 @@ use polkadot_runtime_common::xcm_sender::NoPriceForMessageDelivery; use polkadot_runtime_common::{BlockHashCount, SlowAdjustingFeeUpdate}; pub use pop_runtime_common::{ deposit, AuraId, Balance, BlockNumber, Hash, Nonce, Signature, AVERAGE_ON_INITIALIZE_RATIO, - BLOCK_PROCESSING_VELOCITY, DAYS, EXISTENTIAL_DEPOSIT, HOURS, MAXIMUM_BLOCK_WEIGHT, MICROUNIT, - MILLIUNIT, MINUTES, NORMAL_DISPATCH_RATIO, RELAY_CHAIN_SLOT_DURATION_MILLIS, SLOT_DURATION, + BLOCK_PROCESSING_VELOCITY, DAYS, EXISTENTIAL_DEPOSIT, HOURS, MAXIMUM_BLOCK_WEIGHT, MICRO_UNIT, + MILLI_UNIT, MINUTES, NORMAL_DISPATCH_RATIO, RELAY_CHAIN_SLOT_DURATION_MILLIS, SLOT_DURATION, UNINCLUDED_SEGMENT_CAPACITY, UNIT, }; use smallvec::smallvec; @@ -59,13 +63,12 @@ use sp_core::{crypto::KeyTypeId, Get, OpaqueMetadata, H256}; #[cfg(any(feature = "std", test))] pub use sp_runtime::BuildStorage; use sp_runtime::{ - create_runtime_str, generic, impl_opaque_keys, + generic, impl_opaque_keys, traits::{BlakeTwo256, Block as BlockT, IdentifyAccount, Verify}, transaction_validity::{TransactionSource, TransactionValidity}, ApplyExtrinsicResult, }; pub use sp_runtime::{ExtrinsicInclusionMode, MultiAddress, Perbill, Permill}; -use sp_std::prelude::*; #[cfg(feature = "std")] use sp_version::NativeVersion; use sp_version::RuntimeVersion; @@ -92,13 +95,13 @@ pub type SignedBlock = generic::SignedBlock; /// BlockId type as expected by this runtime. pub type BlockId = generic::BlockId; -/// The SignedExtension to the basic transaction logic. -pub type SignedExtra = ( +/// The extension to the basic transaction logic. +pub type TxExtension = ( frame_system::CheckNonZeroSender, frame_system::CheckSpecVersion, frame_system::CheckTxVersion, frame_system::CheckGenesis, - frame_system::CheckEra, + frame_system::CheckMortality, frame_system::CheckNonce, frame_system::CheckWeight, pallet_transaction_payment::ChargeTransactionPayment, @@ -108,7 +111,13 @@ pub type SignedExtra = ( /// Unchecked extrinsic type as expected by this runtime. pub type UncheckedExtrinsic = - generic::UncheckedExtrinsic; + generic::UncheckedExtrinsic; + +/// All migrations of the runtime, aside from the ones declared in the pallets. +/// +/// This can be a tuple of types, each implementing `OnRuntimeUpgrade`. +#[allow(unused_parens)] +type Migrations = (); /// Executive: handles dispatch to the various modules. pub type Executive = frame_executive::Executive< @@ -117,6 +126,7 @@ pub type Executive = frame_executive::Executive< frame_system::ChainContext, Runtime, AllPalletsWithSystem, + Migrations, >; /// Handles converting a weight scalar to a fee value, based on the scale and granularity of the @@ -136,7 +146,7 @@ impl WeightToFeePolynomial for WeightToFee { fn polynomial() -> WeightToFeeCoefficients { // in Rococo, extrinsic base weight (smallest non-zero weight) is mapped to 1 MILLIUNIT: // we map to 1/10 of that, or 1/10 MILLIUNIT - let p = MILLIUNIT / 10; + let p = MILLI_UNIT / 10; let q = 100 * Balance::from(ExtrinsicBaseWeight::get().ref_time()); smallvec![WeightToFeeCoefficient { degree: 1, @@ -177,15 +187,15 @@ impl_opaque_keys! { #[sp_version::runtime_version] pub const VERSION: RuntimeVersion = RuntimeVersion { - spec_name: create_runtime_str!("pop"), - impl_name: create_runtime_str!("pop"), + spec_name: Cow::Borrowed("pop"), + impl_name: Cow::Borrowed("pop"), authoring_version: 1, #[allow(clippy::zero_prefixed_literal)] spec_version: 00_01_00, impl_version: 0, apis: RUNTIME_API_VERSIONS, transaction_version: 1, - state_version: 1, + system_version: 1, }; type EventRecord = frame_system::EventRecord< @@ -311,6 +321,7 @@ impl pallet_balances::Config for Runtime { type AccountStore = System; /// The type for recording an account's balance. type Balance = Balance; + type DoneSlashHandler = (); type DustRemoval = (); type ExistentialDeposit = ExistentialDeposit; type FreezeIdentifier = RuntimeFreezeReason; @@ -327,7 +338,7 @@ impl pallet_balances::Config for Runtime { parameter_types! { /// Relay Chain `TransactionByteFee` / 10 - pub const TransactionByteFee: Balance = 10 * MICROUNIT; + pub const TransactionByteFee: Balance = 10 * MICRO_UNIT; } impl pallet_transaction_payment::Config for Runtime { @@ -336,6 +347,7 @@ impl pallet_transaction_payment::Config for Runtime { type OnChargeTransaction = pallet_transaction_payment::FungibleAdapter; type OperationalFeeMultiplier = ConstU8<5>; type RuntimeEvent = RuntimeEvent; + type WeightInfo = (); type WeightToFee = WeightToFee; } @@ -351,6 +363,7 @@ parameter_types! { pub const RelayOrigin: AggregateMessageOrigin = AggregateMessageOrigin::Parent; } +#[docify::export] type ConsensusHook = cumulus_pallet_aura_ext::FixedVelocityConsensusHook< Runtime, RELAY_CHAIN_SLOT_DURATION_MILLIS, @@ -367,6 +380,7 @@ impl cumulus_pallet_parachain_system::Config for Runtime { type ReservedDmpWeight = ReservedDmpWeight; type ReservedXcmpWeight = ReservedXcmpWeight; type RuntimeEvent = RuntimeEvent; + type SelectCore = cumulus_pallet_parachain_system::DefaultCoreSelector; type SelfParaId = parachain_info::Pallet; type WeightInfo = (); type XcmpMessageHandler = XcmpQueue; @@ -439,6 +453,7 @@ impl pallet_session::Config for Runtime { type WeightInfo = (); } +#[docify::export(aura_config)] impl pallet_aura::Config for Runtime { type AllowMultipleBlocksPerSlot = ConstBool; type AuthorityId = AuraId; @@ -656,11 +671,27 @@ mod benches { ); } +// We move some impls outside so we can easily use them with `docify`. +impl Runtime { + #[docify::export] + fn impl_slot_duration() -> sp_consensus_aura::SlotDuration { + sp_consensus_aura::SlotDuration::from_millis(SLOT_DURATION) + } + + #[docify::export] + fn impl_can_build_upon( + included_hash: ::Hash, + slot: cumulus_primitives_aura::Slot, + ) -> bool { + ConsensusHook::can_build_upon(included_hash, slot) + } +} + impl_runtime_apis! { impl sp_consensus_aura::AuraApi for Runtime { fn slot_duration() -> sp_consensus_aura::SlotDuration { - sp_consensus_aura::SlotDuration::from_millis(SLOT_DURATION) + Runtime::impl_slot_duration() } fn authorities() -> Vec { @@ -867,7 +898,7 @@ impl_runtime_apis! { included_hash: ::Hash, slot: cumulus_primitives_aura::Slot, ) -> bool { - ConsensusHook::can_build_upon(included_hash, slot) + Runtime::impl_can_build_upon(included_hash, slot) } } @@ -960,7 +991,7 @@ impl_runtime_apis! { fn dispatch_benchmark( config: frame_benchmarking::BenchmarkConfig - ) -> Result, sp_runtime::RuntimeString> { + ) -> Result, alloc::string::String> { use frame_benchmarking::{BenchmarkError, Benchmarking, BenchmarkBatch}; use frame_system_benchmarking::Pallet as SystemBench; @@ -1065,10 +1096,9 @@ impl_runtime_apis! { IsmpParachain::current_relay_chain_state() } } - - } +#[docify::export(register_validate_block)] cumulus_pallet_parachain_system::register_validate_block! { Runtime = Runtime, BlockExecutor = cumulus_pallet_aura_ext::BlockExecutor::, diff --git a/runtime/mainnet/Cargo.toml b/runtime/mainnet/Cargo.toml index 4a9d89e39..3f7bf4c04 100644 --- a/runtime/mainnet/Cargo.toml +++ b/runtime/mainnet/Cargo.toml @@ -16,6 +16,7 @@ substrate-wasm-builder.workspace = true [dependencies] codec.workspace = true +docify.workspace = true log.workspace = true scale-info.workspace = true smallvec.workspace = true @@ -56,7 +57,6 @@ sp-io.workspace = true sp-offchain.workspace = true sp-runtime.workspace = true sp-session.workspace = true -sp-std.workspace = true sp-transaction-pool.workspace = true sp-version.workspace = true @@ -100,6 +100,7 @@ std = [ "cumulus-primitives-core/std", "cumulus-primitives-storage-weight-reclaim/std", "cumulus-primitives-utility/std", + "enumflags2/std", "frame-benchmarking/std", "frame-executive/std", "frame-metadata-hash-extension/std", @@ -140,7 +141,6 @@ std = [ "sp-offchain/std", "sp-runtime/std", "sp-session/std", - "sp-std/std", "sp-transaction-pool/std", "sp-version/std", "xcm-builder/std", @@ -167,6 +167,7 @@ runtime-benchmarks = [ "pallet-scheduler/runtime-benchmarks", "pallet-sudo/runtime-benchmarks", "pallet-timestamp/runtime-benchmarks", + "pallet-transaction-payment/runtime-benchmarks", "pallet-utility/runtime-benchmarks", "pallet-xcm/runtime-benchmarks", "parachains-common/runtime-benchmarks", diff --git a/runtime/mainnet/src/config/xcm.rs b/runtime/mainnet/src/config/xcm.rs index ead937362..eda9ed731 100644 --- a/runtime/mainnet/src/config/xcm.rs +++ b/runtime/mainnet/src/config/xcm.rs @@ -16,10 +16,10 @@ use xcm_builder::{ AccountId32Aliases, AllowKnownQueryResponses, AllowSubscriptionsFrom, AllowTopLevelPaidExecutionFrom, EnsureXcmOrigin, FixedWeightBounds, FrameTransactionalProcessor, FungibleAdapter, IsConcrete, ParentIsPreset, RelayChainAsNative, - SiblingParachainAsNative, SiblingParachainConvertsVia, SignedAccountId32AsNative, - SignedToAccountId32, SovereignSignedViaLocation, TakeWeightCredit, TrailingSetTopicAsId, - UsingComponents, WithComputedOrigin, WithUniqueTopic, XcmFeeManagerFromComponents, - XcmFeeToAccount, + SendXcmFeeToAccount, SiblingParachainAsNative, SiblingParachainConvertsVia, + SignedAccountId32AsNative, SignedToAccountId32, SovereignSignedViaLocation, TakeWeightCredit, + TrailingSetTopicAsId, UsingComponents, WithComputedOrigin, WithUniqueTopic, + XcmFeeManagerFromComponents, }; use xcm_executor::XcmExecutor; @@ -136,7 +136,7 @@ impl xcm_executor::Config for XcmConfig { type CallDispatcher = RuntimeCall; type FeeManager = XcmFeeManagerFromComponents< WaivedLocations, - XcmFeeToAccount, + SendXcmFeeToAccount, >; type HrmpChannelAcceptedHandler = (); type HrmpChannelClosingHandler = (); diff --git a/runtime/mainnet/src/lib.rs b/runtime/mainnet/src/lib.rs index 536396afa..e46850240 100644 --- a/runtime/mainnet/src/lib.rs +++ b/runtime/mainnet/src/lib.rs @@ -9,6 +9,10 @@ include!(concat!(env!("OUT_DIR"), "/wasm_binary.rs")); pub mod config; mod weights; +extern crate alloc; + +use alloc::{borrow::Cow, vec::Vec}; + use config::xcm::{RelayLocation, XcmOriginToTransactDispatchOrigin}; use cumulus_pallet_parachain_system::RelayNumberMonotonicallyIncreases; use cumulus_primitives_core::{AggregateMessageOrigin, ParaId}; @@ -37,8 +41,8 @@ use polkadot_runtime_common::xcm_sender::NoPriceForMessageDelivery; use polkadot_runtime_common::{BlockHashCount, SlowAdjustingFeeUpdate}; pub use pop_runtime_common::{ AuraId, Balance, BlockNumber, Hash, Nonce, Signature, AVERAGE_ON_INITIALIZE_RATIO, - BLOCK_PROCESSING_VELOCITY, DAYS, EXISTENTIAL_DEPOSIT, HOURS, MAXIMUM_BLOCK_WEIGHT, MICROUNIT, - MILLIUNIT, MINUTES, NORMAL_DISPATCH_RATIO, RELAY_CHAIN_SLOT_DURATION_MILLIS, SLOT_DURATION, + BLOCK_PROCESSING_VELOCITY, DAYS, EXISTENTIAL_DEPOSIT, HOURS, MAXIMUM_BLOCK_WEIGHT, MICRO_UNIT, + MILLI_UNIT, MINUTES, NORMAL_DISPATCH_RATIO, RELAY_CHAIN_SLOT_DURATION_MILLIS, SLOT_DURATION, UNINCLUDED_SEGMENT_CAPACITY, UNIT, }; use sp_api::impl_runtime_apis; @@ -49,13 +53,12 @@ use sp_core::{ #[cfg(any(feature = "std", test))] pub use sp_runtime::BuildStorage; use sp_runtime::{ - create_runtime_str, generic, impl_opaque_keys, + generic, impl_opaque_keys, traits::{BlakeTwo256, Block as BlockT, IdentifyAccount, Verify}, transaction_validity::{TransactionSource, TransactionValidity}, ApplyExtrinsicResult, }; pub use sp_runtime::{ExtrinsicInclusionMode, MultiAddress, Perbill, Permill}; -use sp_std::prelude::*; #[cfg(feature = "std")] use sp_version::NativeVersion; use sp_version::RuntimeVersion; @@ -83,12 +86,12 @@ pub type SignedBlock = generic::SignedBlock; pub type BlockId = generic::BlockId; /// The SignedExtension to the basic transaction logic. -pub type SignedExtra = ( +pub type TxExtension = ( frame_system::CheckNonZeroSender, frame_system::CheckSpecVersion, frame_system::CheckTxVersion, frame_system::CheckGenesis, - frame_system::CheckEra, + frame_system::CheckMortality, frame_system::CheckNonce, frame_system::CheckWeight, pallet_transaction_payment::ChargeTransactionPayment, @@ -98,10 +101,13 @@ pub type SignedExtra = ( /// Unchecked extrinsic type as expected by this runtime. pub type UncheckedExtrinsic = - generic::UncheckedExtrinsic; + generic::UncheckedExtrinsic; -/// Migrations to apply on runtime upgrade. -pub type Migrations = (); +/// All migrations of the runtime, aside from the ones declared in the pallets. +/// +/// This can be a tuple of types, each implementing `OnRuntimeUpgrade`. +#[allow(unused_parens)] +type Migrations = (); /// Executive: handles dispatch to the various modules. pub type Executive = frame_executive::Executive< @@ -128,11 +134,11 @@ pub mod fee { WeightToFeeCoefficients, WeightToFeePolynomial, }, }; - use pop_runtime_common::{Balance, MILLIUNIT}; + use pop_runtime_common::{Balance, MILLI_UNIT}; use smallvec::smallvec; pub use sp_runtime::Perbill; - pub const CENTS: Balance = MILLIUNIT * 10; // 100_000_000 + pub const CENTS: Balance = MILLI_UNIT * 10; // 100_000_000 pub const MILLICENTS: Balance = CENTS / 1_000; // 100_000 /// Cost of every transaction byte at Polkadot system parachains. @@ -233,15 +239,15 @@ impl_opaque_keys! { #[sp_version::runtime_version] pub const VERSION: RuntimeVersion = RuntimeVersion { - spec_name: create_runtime_str!("pop"), - impl_name: create_runtime_str!("pop"), + spec_name: Cow::Borrowed("pop"), + impl_name: Cow::Borrowed("pop"), authoring_version: 1, #[allow(clippy::zero_prefixed_literal)] spec_version: 00_01_00, impl_version: 0, apis: RUNTIME_API_VERSIONS, transaction_version: 1, - state_version: 1, + system_version: 1, }; /// The version information used to identify this runtime when compiled natively. @@ -353,6 +359,7 @@ impl pallet_balances::Config for Runtime { type AccountStore = System; /// The type for recording an account's balance. type Balance = Balance; + type DoneSlashHandler = (); type DustRemoval = (); type ExistentialDeposit = ExistentialDeposit; type FreezeIdentifier = RuntimeFreezeReason; @@ -380,6 +387,7 @@ impl pallet_transaction_payment::Config for Runtime { pallet_transaction_payment::FungibleAdapter>; type OperationalFeeMultiplier = ConstU8<5>; type RuntimeEvent = RuntimeEvent; + type WeightInfo = (); type WeightToFee = fee::WeightToFee; } @@ -395,6 +403,7 @@ parameter_types! { pub const RelayOrigin: AggregateMessageOrigin = AggregateMessageOrigin::Parent; } +#[docify::export] type ConsensusHook = cumulus_pallet_aura_ext::FixedVelocityConsensusHook< Runtime, RELAY_CHAIN_SLOT_DURATION_MILLIS, @@ -411,6 +420,7 @@ impl cumulus_pallet_parachain_system::Config for Runtime { type ReservedDmpWeight = ReservedDmpWeight; type ReservedXcmpWeight = ReservedXcmpWeight; type RuntimeEvent = RuntimeEvent; + type SelectCore = cumulus_pallet_parachain_system::DefaultCoreSelector; type SelfParaId = parachain_info::Pallet; type WeightInfo = (); type XcmpMessageHandler = XcmpQueue; @@ -483,6 +493,7 @@ impl pallet_session::Config for Runtime { type WeightInfo = (); } +#[docify::export(aura_config)] impl pallet_aura::Config for Runtime { type AllowMultipleBlocksPerSlot = ConstBool; type AuthorityId = AuraId; @@ -677,11 +688,27 @@ mod benches { ); } +// We move some impls outside so we can easily use them with `docify`. +impl Runtime { + #[docify::export] + fn impl_slot_duration() -> sp_consensus_aura::SlotDuration { + sp_consensus_aura::SlotDuration::from_millis(SLOT_DURATION) + } + + #[docify::export] + fn impl_can_build_upon( + included_hash: ::Hash, + slot: cumulus_primitives_aura::Slot, + ) -> bool { + ConsensusHook::can_build_upon(included_hash, slot) + } +} + impl_runtime_apis! { impl sp_consensus_aura::AuraApi for Runtime { fn slot_duration() -> sp_consensus_aura::SlotDuration { - sp_consensus_aura::SlotDuration::from_millis(SLOT_DURATION) + Runtime::impl_slot_duration() } fn authorities() -> Vec { @@ -712,7 +739,7 @@ impl_runtime_apis! { Runtime::metadata_at_version(version) } - fn metadata_versions() -> sp_std::vec::Vec { + fn metadata_versions() -> Vec { Runtime::metadata_versions() } } @@ -821,7 +848,7 @@ impl_runtime_apis! { included_hash: ::Hash, slot: cumulus_primitives_aura::Slot, ) -> bool { - ConsensusHook::can_build_upon(included_hash, slot) + Runtime::impl_can_build_upon(included_hash, slot) } } @@ -870,12 +897,12 @@ impl_runtime_apis! { fn dispatch_benchmark( config: frame_benchmarking::BenchmarkConfig - ) -> Result, sp_runtime::RuntimeString> { + ) -> Result, alloc::string::String> { use frame_benchmarking::{BenchmarkError, Benchmarking, BenchmarkBatch}; use frame_system_benchmarking::Pallet as SystemBench; impl frame_system_benchmarking::Config for Runtime { - fn setup_set_code_requirements(code: &sp_std::vec::Vec) -> Result<(), BenchmarkError> { + fn setup_set_code_requirements(code: &Vec) -> Result<(), BenchmarkError> { ParachainSystem::initialize_for_set_code_benchmark(code.len() as u32); Ok(()) } @@ -915,6 +942,7 @@ impl_runtime_apis! { } } +#[docify::export(register_validate_block)] cumulus_pallet_parachain_system::register_validate_block! { Runtime = Runtime, BlockExecutor = cumulus_pallet_aura_ext::BlockExecutor::, @@ -980,8 +1008,8 @@ mod tests { fn units_are_correct() { // UNIT should have 10 decimals assert_eq!(UNIT, 10_000_000_000); - assert_eq!(MILLIUNIT, 10_000_000); - assert_eq!(MICROUNIT, 10_000); + assert_eq!(MILLI_UNIT, 10_000_000); + assert_eq!(MICRO_UNIT, 10_000); // fee specific units assert_eq!(fee::CENTS, 100_000_000); diff --git a/runtime/testnet/Cargo.toml b/runtime/testnet/Cargo.toml index 909f870a4..0784c8941 100644 --- a/runtime/testnet/Cargo.toml +++ b/runtime/testnet/Cargo.toml @@ -16,6 +16,7 @@ substrate-wasm-builder.workspace = true [dependencies] codec.workspace = true +docify.workspace = true hex-literal.workspace = true log.workspace = true scale-info.workspace = true @@ -65,7 +66,6 @@ sp-io.workspace = true sp-offchain.workspace = true sp-runtime.workspace = true sp-session.workspace = true -sp-std.workspace = true sp-transaction-pool.workspace = true sp-version.workspace = true @@ -109,6 +109,7 @@ std = [ "cumulus-primitives-core/std", "cumulus-primitives-storage-weight-reclaim/std", "cumulus-primitives-utility/std", + "enumflags2/std", "frame-benchmarking/std", "frame-executive/std", "frame-metadata-hash-extension/std", @@ -158,7 +159,6 @@ std = [ "sp-offchain/std", "sp-runtime/std", "sp-session/std", - "sp-std/std", "sp-transaction-pool/std", "sp-version/std", "xcm-builder/std", @@ -190,6 +190,7 @@ runtime-benchmarks = [ "pallet-scheduler/runtime-benchmarks", "pallet-sudo/runtime-benchmarks", "pallet-timestamp/runtime-benchmarks", + "pallet-transaction-payment/runtime-benchmarks", "pallet-utility/runtime-benchmarks", "pallet-xcm/runtime-benchmarks", "parachains-common/runtime-benchmarks", diff --git a/runtime/testnet/src/config/api/mod.rs b/runtime/testnet/src/config/api/mod.rs index 035a6014f..8d635b0c5 100644 --- a/runtime/testnet/src/config/api/mod.rs +++ b/runtime/testnet/src/config/api/mod.rs @@ -1,3 +1,4 @@ +use alloc::vec::Vec; use core::marker::PhantomData; use codec::Decode; @@ -7,7 +8,6 @@ pub(crate) use pallet_api::Extension; use pallet_api::{extension::*, Read}; use sp_core::ConstU8; use sp_runtime::DispatchError; -use sp_std::vec::Vec; use versioning::*; use crate::{ diff --git a/runtime/testnet/src/config/api/versioning.rs b/runtime/testnet/src/config/api/versioning.rs index daa2a0a9d..d88c84c70 100644 --- a/runtime/testnet/src/config/api/versioning.rs +++ b/runtime/testnet/src/config/api/versioning.rs @@ -103,7 +103,9 @@ struct V0Error(pop_primitives::v0::Error); impl From for V0Error { fn from(error: DispatchError) -> Self { use pop_primitives::v0::*; - use sp_runtime::{ArithmeticError::*, TokenError::*, TransactionalError::*}; + use sp_runtime::{ + proving_trie::TrieError::*, ArithmeticError::*, TokenError::*, TransactionalError::*, + }; use DispatchError::*; // Mappings exist here to avoid taking a dependency of sp_runtime on pop-primitives Self(match error { @@ -157,6 +159,22 @@ impl From for V0Error { Corruption => Error::Corruption, Unavailable => Error::Unavailable, RootNotAllowed => Error::RootNotAllowed, + Trie(error) => Error::Trie(match error { + InvalidStateRoot => TrieError::InvalidStateRoot, + IncompleteDatabase => TrieError::IncompleteDatabase, + ValueAtIncompleteKey => TrieError::ValueAtIncompleteKey, + DecoderError => TrieError::DecoderError, + InvalidHash => TrieError::InvalidHash, + DuplicateKey => TrieError::DuplicateKey, + ExtraneousNode => TrieError::ExtraneousNode, + ExtraneousValue => TrieError::ExtraneousValue, + ExtraneousHashReference => TrieError::ExtraneousHashReference, + InvalidChildReference => TrieError::InvalidChildReference, + ValueMismatch => TrieError::ValueMismatch, + IncompleteProof => TrieError::IncompleteProof, + RootMismatch => TrieError::RootMismatch, + DecodeError => TrieError::DecodeError, + }), }) } } diff --git a/runtime/testnet/src/config/contracts.rs b/runtime/testnet/src/config/contracts.rs index b3701498f..11c10becb 100644 --- a/runtime/testnet/src/config/contracts.rs +++ b/runtime/testnet/src/config/contracts.rs @@ -1,3 +1,5 @@ +use core::marker::PhantomData; + use frame_support::{ parameter_types, traits::{ConstBool, ConstU32, Nothing, Randomness}, @@ -14,6 +16,7 @@ fn schedule() -> pallet_contracts::Schedule { pallet_contracts::Schedule { limits: pallet_contracts::Limits { runtime_memory: 1024 * 1024 * 1024, + validator_runtime_memory: 2 * 1024 * 1024 * 1024, ..Default::default() }, ..Default::default() @@ -22,7 +25,7 @@ fn schedule() -> pallet_contracts::Schedule { // randomness-collective-flip is insecure. Provide dummy randomness as placeholder for the // deprecated trait. https://github.com/paritytech/polkadot-sdk/blob/9bf1a5e23884921498b381728bfddaae93f83744/substrate/frame/contracts/mock-network/src/parachain/contracts_config.rs#L45 -pub struct DummyRandomness(sp_std::marker::PhantomData); +pub struct DummyRandomness(PhantomData); impl Randomness> for DummyRandomness { fn random(_subject: &[u8]) -> (T::Hash, BlockNumberFor) { @@ -65,7 +68,8 @@ impl pallet_contracts::Config for Runtime { type MaxDebugBufferLen = ConstU32<{ 2 * 1024 * 1024 }>; type MaxDelegateDependencies = ConstU32<32>; type MaxStorageKeyLen = ConstU32<128>; - type Migrations = (); + type MaxTransientStorageSize = ConstU32<{ 1024 * 1024 }>; + type Migrations = (pallet_contracts::migration::v16::Migration,); type Randomness = DummyRandomness; type RuntimeCall = RuntimeCall; type RuntimeEvent = RuntimeEvent; diff --git a/runtime/testnet/src/lib.rs b/runtime/testnet/src/lib.rs index 2585ab0b0..a2a1b891d 100644 --- a/runtime/testnet/src/lib.rs +++ b/runtime/testnet/src/lib.rs @@ -10,6 +10,10 @@ include!(concat!(env!("OUT_DIR"), "/wasm_binary.rs")); pub mod config; mod weights; +extern crate alloc; + +use alloc::{borrow::Cow, vec::Vec}; + use config::xcm::{RelayLocation, XcmOriginToTransactDispatchOrigin}; use cumulus_pallet_parachain_system::RelayNumberMonotonicallyIncreases; use cumulus_primitives_core::{AggregateMessageOrigin, ParaId}; @@ -42,8 +46,8 @@ use polkadot_runtime_common::xcm_sender::NoPriceForMessageDelivery; use polkadot_runtime_common::{BlockHashCount, SlowAdjustingFeeUpdate}; pub use pop_runtime_common::{ deposit, AuraId, Balance, BlockNumber, Hash, Nonce, Signature, AVERAGE_ON_INITIALIZE_RATIO, - BLOCK_PROCESSING_VELOCITY, DAYS, EXISTENTIAL_DEPOSIT, HOURS, MAXIMUM_BLOCK_WEIGHT, MICROUNIT, - MILLIUNIT, MINUTES, NORMAL_DISPATCH_RATIO, RELAY_CHAIN_SLOT_DURATION_MILLIS, SLOT_DURATION, + BLOCK_PROCESSING_VELOCITY, DAYS, EXISTENTIAL_DEPOSIT, HOURS, MAXIMUM_BLOCK_WEIGHT, MICRO_UNIT, + MILLI_UNIT, MINUTES, NORMAL_DISPATCH_RATIO, RELAY_CHAIN_SLOT_DURATION_MILLIS, SLOT_DURATION, UNINCLUDED_SEGMENT_CAPACITY, UNIT, }; use smallvec::smallvec; @@ -52,13 +56,12 @@ use sp_core::{crypto::KeyTypeId, OpaqueMetadata}; #[cfg(any(feature = "std", test))] pub use sp_runtime::BuildStorage; use sp_runtime::{ - create_runtime_str, generic, impl_opaque_keys, + generic, impl_opaque_keys, traits::{BlakeTwo256, Block as BlockT, IdentifyAccount, Verify}, transaction_validity::{TransactionSource, TransactionValidity}, ApplyExtrinsicResult, }; pub use sp_runtime::{ExtrinsicInclusionMode, MultiAddress, Perbill, Permill}; -use sp_std::prelude::*; #[cfg(feature = "std")] use sp_version::NativeVersion; use sp_version::RuntimeVersion; @@ -86,12 +89,12 @@ pub type SignedBlock = generic::SignedBlock; pub type BlockId = generic::BlockId; /// The SignedExtension to the basic transaction logic. -pub type SignedExtra = ( +pub type TxExtension = ( frame_system::CheckNonZeroSender, frame_system::CheckSpecVersion, frame_system::CheckTxVersion, frame_system::CheckGenesis, - frame_system::CheckEra, + frame_system::CheckMortality, frame_system::CheckNonce, frame_system::CheckWeight, pallet_transaction_payment::ChargeTransactionPayment, @@ -101,9 +104,11 @@ pub type SignedExtra = ( /// Unchecked extrinsic type as expected by this runtime. pub type UncheckedExtrinsic = - generic::UncheckedExtrinsic; + generic::UncheckedExtrinsic; /// Migrations to apply on runtime upgrade. +/// +/// This can be a tuple of types, each implementing `OnRuntimeUpgrade`. pub type Migrations = ( cumulus_pallet_xcmp_queue::migration::v5::MigrateV4ToV5, // Permanent. @@ -138,7 +143,7 @@ impl WeightToFeePolynomial for WeightToFee { fn polynomial() -> WeightToFeeCoefficients { // in Rococo, extrinsic base weight (smallest non-zero weight) is mapped to 1 MILLIUNIT: // we map to 1/10 of that, or 1/10 MILLIUNIT - let p = MILLIUNIT / 10; + let p = MILLI_UNIT / 10; let q = 100 * Balance::from(ExtrinsicBaseWeight::get().ref_time()); smallvec![WeightToFeeCoefficient { degree: 1, @@ -179,15 +184,15 @@ impl_opaque_keys! { #[sp_version::runtime_version] pub const VERSION: RuntimeVersion = RuntimeVersion { - spec_name: create_runtime_str!("pop"), - impl_name: create_runtime_str!("pop"), + spec_name: Cow::Borrowed("pop"), + impl_name: Cow::Borrowed("pop"), authoring_version: 1, #[allow(clippy::zero_prefixed_literal)] spec_version: 00_04_02, impl_version: 0, apis: RUNTIME_API_VERSIONS, transaction_version: 1, - state_version: 1, + system_version: 1, }; type EventRecord = frame_system::EventRecord< @@ -313,6 +318,7 @@ impl pallet_balances::Config for Runtime { type AccountStore = System; /// The type for recording an account's balance. type Balance = Balance; + type DoneSlashHandler = (); type DustRemoval = (); type ExistentialDeposit = ExistentialDeposit; type FreezeIdentifier = RuntimeFreezeReason; @@ -329,7 +335,7 @@ impl pallet_balances::Config for Runtime { parameter_types! { /// Relay Chain `TransactionByteFee` / 10 - pub const TransactionByteFee: Balance = 10 * MICROUNIT; + pub const TransactionByteFee: Balance = 10 * MICRO_UNIT; } impl pallet_transaction_payment::Config for Runtime { @@ -338,6 +344,7 @@ impl pallet_transaction_payment::Config for Runtime { type OnChargeTransaction = pallet_transaction_payment::FungibleAdapter; type OperationalFeeMultiplier = ConstU8<5>; type RuntimeEvent = RuntimeEvent; + type WeightInfo = (); type WeightToFee = WeightToFee; } @@ -353,6 +360,7 @@ parameter_types! { pub const RelayOrigin: AggregateMessageOrigin = AggregateMessageOrigin::Parent; } +#[docify::export] type ConsensusHook = cumulus_pallet_aura_ext::FixedVelocityConsensusHook< Runtime, RELAY_CHAIN_SLOT_DURATION_MILLIS, @@ -369,6 +377,7 @@ impl cumulus_pallet_parachain_system::Config for Runtime { type ReservedDmpWeight = ReservedDmpWeight; type ReservedXcmpWeight = ReservedXcmpWeight; type RuntimeEvent = RuntimeEvent; + type SelectCore = cumulus_pallet_parachain_system::DefaultCoreSelector; type SelfParaId = parachain_info::Pallet; type WeightInfo = (); type XcmpMessageHandler = XcmpQueue; @@ -446,6 +455,7 @@ impl pallet_session::Config for Runtime { type WeightInfo = (); } +#[docify::export(aura_config)] impl pallet_aura::Config for Runtime { type AllowMultipleBlocksPerSlot = ConstBool; type AuthorityId = AuraId; @@ -658,11 +668,27 @@ mod benches { ); } +// We move some impls outside so we can easily use them with `docify`. +impl Runtime { + #[docify::export] + fn impl_slot_duration() -> sp_consensus_aura::SlotDuration { + sp_consensus_aura::SlotDuration::from_millis(SLOT_DURATION) + } + + #[docify::export] + fn impl_can_build_upon( + included_hash: ::Hash, + slot: cumulus_primitives_aura::Slot, + ) -> bool { + ConsensusHook::can_build_upon(included_hash, slot) + } +} + impl_runtime_apis! { impl sp_consensus_aura::AuraApi for Runtime { fn slot_duration() -> sp_consensus_aura::SlotDuration { - sp_consensus_aura::SlotDuration::from_millis(SLOT_DURATION) + Runtime::impl_slot_duration() } fn authorities() -> Vec { @@ -693,7 +719,7 @@ impl_runtime_apis! { Runtime::metadata_at_version(version) } - fn metadata_versions() -> sp_std::vec::Vec { + fn metadata_versions() -> Vec { Runtime::metadata_versions() } } @@ -869,7 +895,7 @@ impl_runtime_apis! { included_hash: ::Hash, slot: cumulus_primitives_aura::Slot, ) -> bool { - ConsensusHook::can_build_upon(included_hash, slot) + Runtime::impl_can_build_upon(included_hash, slot) } } @@ -962,12 +988,12 @@ impl_runtime_apis! { fn dispatch_benchmark( config: frame_benchmarking::BenchmarkConfig - ) -> Result, sp_runtime::RuntimeString> { + ) -> Result, alloc::string::String> { use frame_benchmarking::{BenchmarkError, Benchmarking, BenchmarkBatch}; use frame_system_benchmarking::Pallet as SystemBench; impl frame_system_benchmarking::Config for Runtime { - fn setup_set_code_requirements(code: &sp_std::vec::Vec) -> Result<(), BenchmarkError> { + fn setup_set_code_requirements(code: &Vec) -> Result<(), BenchmarkError> { ParachainSystem::initialize_for_set_code_benchmark(code.len() as u32); Ok(()) } @@ -1007,6 +1033,7 @@ impl_runtime_apis! { } } +#[docify::export(register_validate_block)] cumulus_pallet_parachain_system::register_validate_block! { Runtime = Runtime, BlockExecutor = cumulus_pallet_aura_ext::BlockExecutor::,