From 844a7dfbbff59c5165028f165f3aadd215b90a27 Mon Sep 17 00:00:00 2001 From: Vedhavyas Singareddi <7549475+vedhavyas@users.noreply.github.com> Date: Fri, 27 Mar 2026 15:18:58 +0530 Subject: [PATCH 1/2] upgrade polkadot-sdk and frontier to stable2506 Polkadot SDK fork: subspace-v13 (8 custom commits on stable2506) Frontier: upstream stable2506 (b70f725a8) Breaking changes addressed: - sp-io ABI: replace PassBy/Codec with explicit wrapper types (PassFatPointerAndDecode, PassPointerAndReadCopy, AllocateAndReturnByCodec) - EnsureInherentsAreFirst removed: domain executive aligned with upstream frame_executive structure (inline inherent check in apply_extrinsics) - RuntimeEvent removed from pallet configs (moved to trait bound) - frame_system::initialize() strict sequential block numbers: guard check_extrinsics_and_do_pre_dispatch, fix test and benchmark helpers - Backend::state_at() gains TrieCacheContext parameter - memory-db 0.32 -> 0.34 with explicit sp_trie::RandomState for WASM - NetworkConfiguration gains min_peers_to_start_warp_sync - sc_service::Configuration gains warm_up_trie_cache - StorageCmd::run gains trie_cache parameter - try_sqrt -> checked_sqrt, create_inherent -> create_bare - workspace lints for substrate_runtime cfg (set by wasm-builder) - skip frame-storage-access-test-runtime wasm build in benchmarks (upstream bug: with_current_project() fails outside polkadot-sdk workspace) --- Cargo.lock | 1365 ++++++++++++----- Cargo.toml | 301 ++-- crates/pallet-domains/src/benchmarking.rs | 5 +- crates/pallet-domains/src/lib.rs | 6 +- crates/pallet-domains/src/mock.rs | 5 +- crates/pallet-domains/src/runtime_registry.rs | 2 +- crates/pallet-domains/src/tests.rs | 3 +- crates/pallet-rewards/src/lib.rs | 5 +- crates/pallet-rewards/src/mock.rs | 1 - crates/pallet-subspace/src/lib.rs | 5 +- crates/pallet-subspace/src/mock.rs | 5 +- crates/pallet-transaction-fees/src/lib.rs | 5 +- crates/sp-consensus-subspace/Cargo.toml | 3 + crates/sp-consensus-subspace/src/lib.rs | 28 +- crates/sp-domains-fraud-proof/Cargo.toml | 3 + .../benches/fraud_proof_verification.rs | 5 +- .../src/execution_prover.rs | 4 +- crates/sp-domains-fraud-proof/src/lib.rs | 14 - .../src/runtime_interface.rs | 66 +- .../src/storage_proof.rs | 6 - crates/sp-domains/Cargo.toml | 4 + crates/sp-domains/src/lib.rs | 6 - crates/sp-domains/src/offline_operators.rs | 2 +- .../src/proof_provider_and_verifier.rs | 10 +- crates/sp-domains/src/storage.rs | 7 +- crates/sp-subspace-mmr/Cargo.toml | 3 + .../sp-subspace-mmr/src/runtime_interface.rs | 17 +- crates/subspace-malicious-operator/src/lib.rs | 1 + crates/subspace-node/src/main.rs | 2 +- crates/subspace-runtime/Cargo.toml | 3 + crates/subspace-runtime/src/lib.rs | 20 +- .../src/weights/pallet_domains.rs | 219 ++- crates/subspace-service/src/config.rs | 4 + .../client/block-builder/src/custom_api.rs | 2 +- domains/client/block-preprocessor/src/lib.rs | 4 +- domains/client/domain-operator/src/tests.rs | 5 +- domains/pallets/auto-id/src/lib.rs | 3 +- domains/pallets/auto-id/src/tests.rs | 1 - domains/pallets/domain-sudo/src/lib.rs | 3 +- domains/pallets/executive/src/lib.rs | 73 +- domains/pallets/executive/src/mock.rs | 1 - domains/pallets/messenger/src/lib.rs | 3 +- domains/pallets/messenger/src/mock.rs | 2 - domains/pallets/transporter/src/lib.rs | 55 +- domains/pallets/transporter/src/mock.rs | 2 - domains/primitives/auto-id/Cargo.toml | 3 + domains/primitives/auto-id/src/lib.rs | 10 - .../auto-id/src/runtime_interface.rs | 11 +- .../messenger-host-functions/Cargo.toml | 3 + .../messenger-host-functions/src/lib.rs | 7 - .../src/runtime_interface.rs | 6 +- domains/runtime/auto-id/Cargo.toml | 3 + domains/runtime/auto-id/src/lib.rs | 24 +- domains/runtime/evm/Cargo.toml | 3 + domains/runtime/evm/src/lib.rs | 25 +- domains/service/src/config.rs | 3 + domains/test/runtime/auto-id/Cargo.toml | 3 + domains/test/runtime/auto-id/src/lib.rs | 24 +- domains/test/runtime/evm/Cargo.toml | 3 + domains/test/runtime/evm/src/lib.rs | 24 +- domains/test/service/src/lib.rs | 1 + scripts/runtime-benchmark.sh | 5 + test/subspace-test-runtime/Cargo.toml | 3 + test/subspace-test-runtime/src/lib.rs | 10 +- test/subspace-test-service/src/lib.rs | 1 + 65 files changed, 1496 insertions(+), 965 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 49110715bf6..cf477732d1f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -484,7 +484,7 @@ dependencies = [ "ark-std 0.5.0", "educe", "fnv", - "hashbrown 0.15.2", + "hashbrown 0.15.5", "itertools 0.13.0", "num-bigint", "num-integer", @@ -615,7 +615,7 @@ dependencies = [ "ark-std 0.5.0", "educe", "fnv", - "hashbrown 0.15.2", + "hashbrown 0.15.5", ] [[package]] @@ -1255,7 +1255,7 @@ checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" [[package]] name = "binary-merkle-tree" version = "16.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "hash-db", "log", @@ -1713,6 +1713,7 @@ dependencies = [ "iana-time-zone", "js-sys", "num-traits", + "serde", "wasm-bindgen", "windows-targets 0.52.6", ] @@ -1982,12 +1983,6 @@ version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6" -[[package]] -name = "constcat" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd7e35aee659887cbfb97aaf227ac12cad1a9d7c71e55ff3376839ed4e282d08" - [[package]] name = "convert_case" version = "0.4.0" @@ -2370,8 +2365,8 @@ dependencies = [ [[package]] name = "cumulus-client-parachain-inherent" -version = "0.17.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "0.18.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2380,7 +2375,8 @@ dependencies = [ "cumulus-test-relay-sproof-builder", "parity-scale-codec", "sc-client-api", - "sp-crypto-hashing 0.1.0 (git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed)", + "sc-consensus-babe", + "sp-crypto-hashing 0.1.0 (git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e)", "sp-inherents", "sp-runtime", "sp-state-machine", @@ -2388,10 +2384,59 @@ dependencies = [ "tracing", ] +[[package]] +name = "cumulus-pallet-parachain-system" +version = "0.21.2" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +dependencies = [ + "array-bytes", + "bytes", + "cumulus-pallet-parachain-system-proc-macro", + "cumulus-primitives-core", + "cumulus-primitives-parachain-inherent", + "cumulus-primitives-proof-size-hostfunction", + "environmental", + "frame-benchmarking", + "frame-support", + "frame-system", + "hashbrown 0.15.5", + "impl-trait-for-tuples", + "log", + "pallet-message-queue", + "parity-scale-codec", + "polkadot-parachain-primitives", + "polkadot-runtime-parachains", + "scale-info", + "sp-consensus-babe", + "sp-core", + "sp-externalities", + "sp-inherents", + "sp-io", + "sp-runtime", + "sp-state-machine", + "sp-std", + "sp-trie", + "sp-version", + "staging-xcm", + "staging-xcm-builder", + "trie-db", +] + +[[package]] +name = "cumulus-pallet-parachain-system-proc-macro" +version = "0.6.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +dependencies = [ + "proc-macro-crate 3.2.0", + "proc-macro2", + "quote", + "syn 2.0.111", +] + [[package]] name = "cumulus-primitives-core" -version = "0.18.1" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "0.19.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "parity-scale-codec", "polkadot-core-primitives", @@ -2402,12 +2447,13 @@ dependencies = [ "sp-runtime", "sp-trie", "staging-xcm", + "tracing", ] [[package]] name = "cumulus-primitives-parachain-inherent" -version = "0.18.1" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "0.19.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2420,8 +2466,8 @@ dependencies = [ [[package]] name = "cumulus-primitives-proof-size-hostfunction" -version = "0.12.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "0.13.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "sp-externalities", "sp-runtime-interface", @@ -2430,8 +2476,8 @@ dependencies = [ [[package]] name = "cumulus-primitives-storage-weight-reclaim" -version = "11.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "12.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "cumulus-primitives-core", "cumulus-primitives-proof-size-hostfunction", @@ -2447,8 +2493,8 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-interface" -version = "0.23.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "0.24.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2457,6 +2503,7 @@ dependencies = [ "parity-scale-codec", "polkadot-overseer", "sc-client-api", + "sc-network", "sp-api", "sp-blockchain", "sp-state-machine", @@ -2466,8 +2513,8 @@ dependencies = [ [[package]] name = "cumulus-test-relay-sproof-builder" -version = "0.19.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "0.20.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "cumulus-primitives-core", "parity-scale-codec", @@ -2554,8 +2601,18 @@ version = "0.20.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6f63b86c8a8826a49b8c21f08a2d07338eec8d900540f8630dc76284be802989" dependencies = [ - "darling_core", - "darling_macro", + "darling_core 0.20.10", + "darling_macro 0.20.10", +] + +[[package]] +name = "darling" +version = "0.21.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0" +dependencies = [ + "darling_core 0.21.3", + "darling_macro 0.21.3", ] [[package]] @@ -2572,13 +2629,38 @@ dependencies = [ "syn 2.0.111", ] +[[package]] +name = "darling_core" +version = "0.21.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4" +dependencies = [ + "fnv", + "ident_case", + "proc-macro2", + "quote", + "strsim", + "syn 2.0.111", +] + [[package]] name = "darling_macro" version = "0.20.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806" dependencies = [ - "darling_core", + "darling_core 0.20.10", + "quote", + "syn 2.0.111", +] + +[[package]] +name = "darling_macro" +version = "0.21.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81" +dependencies = [ + "darling_core 0.21.3", "quote", "syn 2.0.111", ] @@ -3452,9 +3534,9 @@ dependencies = [ [[package]] name = "env_filter" -version = "0.1.2" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4f2c92ceda6ceec50f43169f9ee8424fe2db276791afde7b2cd8bc084cb376ab" +checksum = "1bf3c259d255ca70051b30e2e95b5446cdb8949ac4cd22c0d7fd634d89f568e2" dependencies = [ "log", "regex", @@ -3843,7 +3925,7 @@ dependencies = [ [[package]] name = "fc-api" version = "1.0.0-dev" -source = "git+https://github.com/polkadot-evm/frontier?rev=7d1cff7f13828b563752ad8a71458cab1ea42009#7d1cff7f13828b563752ad8a71458cab1ea42009" +source = "git+https://github.com/polkadot-evm/frontier?rev=b70f725a84c1b6b7e56c9e7381d35863829a7a3c#b70f725a84c1b6b7e56c9e7381d35863829a7a3c" dependencies = [ "async-trait", "fp-storage", @@ -3855,7 +3937,7 @@ dependencies = [ [[package]] name = "fc-consensus" version = "2.0.0-dev" -source = "git+https://github.com/polkadot-evm/frontier?rev=7d1cff7f13828b563752ad8a71458cab1ea42009#7d1cff7f13828b563752ad8a71458cab1ea42009" +source = "git+https://github.com/polkadot-evm/frontier?rev=b70f725a84c1b6b7e56c9e7381d35863829a7a3c#b70f725a84c1b6b7e56c9e7381d35863829a7a3c" dependencies = [ "async-trait", "fp-consensus", @@ -3871,7 +3953,7 @@ dependencies = [ [[package]] name = "fc-db" version = "2.0.0-dev" -source = "git+https://github.com/polkadot-evm/frontier?rev=7d1cff7f13828b563752ad8a71458cab1ea42009#7d1cff7f13828b563752ad8a71458cab1ea42009" +source = "git+https://github.com/polkadot-evm/frontier?rev=b70f725a84c1b6b7e56c9e7381d35863829a7a3c#b70f725a84c1b6b7e56c9e7381d35863829a7a3c" dependencies = [ "async-trait", "fc-api", @@ -3890,7 +3972,7 @@ dependencies = [ [[package]] name = "fc-mapping-sync" version = "2.0.0-dev" -source = "git+https://github.com/polkadot-evm/frontier?rev=7d1cff7f13828b563752ad8a71458cab1ea42009#7d1cff7f13828b563752ad8a71458cab1ea42009" +source = "git+https://github.com/polkadot-evm/frontier?rev=b70f725a84c1b6b7e56c9e7381d35863829a7a3c#b70f725a84c1b6b7e56c9e7381d35863829a7a3c" dependencies = [ "fc-db", "fc-storage", @@ -3911,7 +3993,7 @@ dependencies = [ [[package]] name = "fc-rpc" version = "2.0.0-dev" -source = "git+https://github.com/polkadot-evm/frontier?rev=7d1cff7f13828b563752ad8a71458cab1ea42009#7d1cff7f13828b563752ad8a71458cab1ea42009" +source = "git+https://github.com/polkadot-evm/frontier?rev=b70f725a84c1b6b7e56c9e7381d35863829a7a3c#b70f725a84c1b6b7e56c9e7381d35863829a7a3c" dependencies = [ "ethereum", "ethereum-types", @@ -3961,7 +4043,7 @@ dependencies = [ [[package]] name = "fc-rpc-core" version = "1.1.0-dev" -source = "git+https://github.com/polkadot-evm/frontier?rev=7d1cff7f13828b563752ad8a71458cab1ea42009#7d1cff7f13828b563752ad8a71458cab1ea42009" +source = "git+https://github.com/polkadot-evm/frontier?rev=b70f725a84c1b6b7e56c9e7381d35863829a7a3c#b70f725a84c1b6b7e56c9e7381d35863829a7a3c" dependencies = [ "ethereum", "ethereum-types", @@ -3970,13 +4052,13 @@ dependencies = [ "rustc-hex", "serde", "serde_json", - "sp-crypto-hashing 0.1.0 (git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e)", ] [[package]] name = "fc-storage" version = "1.0.0-dev" -source = "git+https://github.com/polkadot-evm/frontier?rev=7d1cff7f13828b563752ad8a71458cab1ea42009#7d1cff7f13828b563752ad8a71458cab1ea42009" +source = "git+https://github.com/polkadot-evm/frontier?rev=b70f725a84c1b6b7e56c9e7381d35863829a7a3c#b70f725a84c1b6b7e56c9e7381d35863829a7a3c" dependencies = [ "ethereum", "ethereum-types", @@ -4098,10 +4180,16 @@ version = "1.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" +[[package]] +name = "foldhash" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2" + [[package]] name = "fork-tree" version = "13.0.1" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "parity-scale-codec", ] @@ -4128,7 +4216,7 @@ dependencies = [ [[package]] name = "fp-account" version = "1.0.0-dev" -source = "git+https://github.com/polkadot-evm/frontier?rev=7d1cff7f13828b563752ad8a71458cab1ea42009#7d1cff7f13828b563752ad8a71458cab1ea42009" +source = "git+https://github.com/polkadot-evm/frontier?rev=b70f725a84c1b6b7e56c9e7381d35863829a7a3c#b70f725a84c1b6b7e56c9e7381d35863829a7a3c" dependencies = [ "hex", "impl-serde", @@ -4140,14 +4228,13 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-runtime-interface", "staging-xcm", ] [[package]] name = "fp-consensus" version = "2.0.0-dev" -source = "git+https://github.com/polkadot-evm/frontier?rev=7d1cff7f13828b563752ad8a71458cab1ea42009#7d1cff7f13828b563752ad8a71458cab1ea42009" +source = "git+https://github.com/polkadot-evm/frontier?rev=b70f725a84c1b6b7e56c9e7381d35863829a7a3c#b70f725a84c1b6b7e56c9e7381d35863829a7a3c" dependencies = [ "ethereum", "parity-scale-codec", @@ -4158,7 +4245,7 @@ dependencies = [ [[package]] name = "fp-ethereum" version = "1.0.0-dev" -source = "git+https://github.com/polkadot-evm/frontier?rev=7d1cff7f13828b563752ad8a71458cab1ea42009#7d1cff7f13828b563752ad8a71458cab1ea42009" +source = "git+https://github.com/polkadot-evm/frontier?rev=b70f725a84c1b6b7e56c9e7381d35863829a7a3c#b70f725a84c1b6b7e56c9e7381d35863829a7a3c" dependencies = [ "ethereum", "ethereum-types", @@ -4170,7 +4257,7 @@ dependencies = [ [[package]] name = "fp-evm" version = "3.0.0-dev" -source = "git+https://github.com/polkadot-evm/frontier?rev=7d1cff7f13828b563752ad8a71458cab1ea42009#7d1cff7f13828b563752ad8a71458cab1ea42009" +source = "git+https://github.com/polkadot-evm/frontier?rev=b70f725a84c1b6b7e56c9e7381d35863829a7a3c#b70f725a84c1b6b7e56c9e7381d35863829a7a3c" dependencies = [ "environmental", "evm", @@ -4186,7 +4273,7 @@ dependencies = [ [[package]] name = "fp-rpc" version = "3.0.0-dev" -source = "git+https://github.com/polkadot-evm/frontier?rev=7d1cff7f13828b563752ad8a71458cab1ea42009#7d1cff7f13828b563752ad8a71458cab1ea42009" +source = "git+https://github.com/polkadot-evm/frontier?rev=b70f725a84c1b6b7e56c9e7381d35863829a7a3c#b70f725a84c1b6b7e56c9e7381d35863829a7a3c" dependencies = [ "ethereum", "ethereum-types", @@ -4202,7 +4289,7 @@ dependencies = [ [[package]] name = "fp-self-contained" version = "1.0.0-dev" -source = "git+https://github.com/polkadot-evm/frontier?rev=7d1cff7f13828b563752ad8a71458cab1ea42009#7d1cff7f13828b563752ad8a71458cab1ea42009" +source = "git+https://github.com/polkadot-evm/frontier?rev=b70f725a84c1b6b7e56c9e7381d35863829a7a3c#b70f725a84c1b6b7e56c9e7381d35863829a7a3c" dependencies = [ "frame-support", "parity-scale-codec", @@ -4214,7 +4301,7 @@ dependencies = [ [[package]] name = "fp-storage" version = "2.0.0" -source = "git+https://github.com/polkadot-evm/frontier?rev=7d1cff7f13828b563752ad8a71458cab1ea42009#7d1cff7f13828b563752ad8a71458cab1ea42009" +source = "git+https://github.com/polkadot-evm/frontier?rev=b70f725a84c1b6b7e56c9e7381d35863829a7a3c#b70f725a84c1b6b7e56c9e7381d35863829a7a3c" dependencies = [ "parity-scale-codec", "serde", @@ -4228,8 +4315,8 @@ checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa" [[package]] name = "frame-benchmarking" -version = "40.2.1" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "41.0.1" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "frame-support", "frame-support-procedural", @@ -4252,8 +4339,8 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" -version = "48.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "49.1.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "Inflector", "array-bytes", @@ -4262,7 +4349,9 @@ dependencies = [ "comfy-table", "cumulus-client-parachain-inherent", "cumulus-primitives-proof-size-hostfunction", + "env_filter", "frame-benchmarking", + "frame-storage-access-test-runtime", "frame-support", "frame-system", "gethostname", @@ -4281,6 +4370,8 @@ dependencies = [ "sc-client-api", "sc-client-db", "sc-executor", + "sc-executor-common", + "sc-executor-wasmtime", "sc-runtime-utilities", "sc-service", "sc-sysinfo", @@ -4297,6 +4388,7 @@ dependencies = [ "sp-io", "sp-keystore", "sp-runtime", + "sp-runtime-interface", "sp-state-machine", "sp-storage", "sp-timestamp", @@ -4312,11 +4404,11 @@ dependencies = [ [[package]] name = "frame-decode" -version = "0.5.1" +version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6027a409bac4fe95b4d107f965fcdbc252fc89d884a360d076b3070b6128c094" +checksum = "a7cb8796f93fa038f979a014234d632e9688a120e745f936e2635123c77537f7" dependencies = [ - "frame-metadata 17.0.0", + "frame-metadata 20.0.0", "parity-scale-codec", "scale-decode", "scale-info", @@ -4324,10 +4416,38 @@ dependencies = [ "sp-crypto-hashing 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "frame-election-provider-solution-type" +version = "16.1.1" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +dependencies = [ + "proc-macro-crate 3.2.0", + "proc-macro2", + "quote", + "syn 2.0.111", +] + +[[package]] +name = "frame-election-provider-support" +version = "41.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +dependencies = [ + "frame-election-provider-solution-type", + "frame-support", + "frame-system", + "parity-scale-codec", + "scale-info", + "sp-arithmetic", + "sp-core", + "sp-npos-elections", + "sp-runtime", + "sp-std", +] + [[package]] name = "frame-executive" -version = "40.0.1" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "41.0.2" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "aquamarine", "frame-support", @@ -4344,9 +4464,9 @@ dependencies = [ [[package]] name = "frame-metadata" -version = "17.0.0" +version = "20.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "701bac17e9b55e0f95067c428ebcb46496587f08e8cf4ccc0fe5903bea10dbb8" +checksum = "26de808fa6461f2485dc51811aefed108850064994fb4a62b3ac21ffa62ac8df" dependencies = [ "cfg-if", "parity-scale-codec", @@ -4356,9 +4476,9 @@ dependencies = [ [[package]] name = "frame-metadata" -version = "20.0.0" +version = "23.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26de808fa6461f2485dc51811aefed108850064994fb4a62b3ac21ffa62ac8df" +checksum = "9ba5be0edbdb824843a0f9c6f0906ecfc66c5316218d74457003218b24909ed0" dependencies = [ "cfg-if", "parity-scale-codec", @@ -4366,10 +4486,24 @@ dependencies = [ "serde", ] +[[package]] +name = "frame-storage-access-test-runtime" +version = "0.2.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +dependencies = [ + "cumulus-pallet-parachain-system", + "parity-scale-codec", + "sp-core", + "sp-runtime", + "sp-state-machine", + "sp-trie", + "substrate-wasm-builder", +] + [[package]] name = "frame-support" -version = "40.1.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "41.0.1" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "aquamarine", "array-bytes", @@ -4377,7 +4511,7 @@ dependencies = [ "bitflags 1.3.2", "docify", "environmental", - "frame-metadata 20.0.0", + "frame-metadata 23.0.1", "frame-support-procedural", "impl-trait-for-tuples", "k256", @@ -4409,8 +4543,8 @@ dependencies = [ [[package]] name = "frame-support-procedural" -version = "33.0.1" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "34.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "Inflector", "cfg-expr", @@ -4423,14 +4557,14 @@ dependencies = [ "proc-macro-warning", "proc-macro2", "quote", - "sp-crypto-hashing 0.1.0 (git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e)", "syn 2.0.111", ] [[package]] name = "frame-support-procedural-tools" version = "13.0.1" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate 3.2.0", @@ -4442,7 +4576,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "12.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "proc-macro2", "quote", @@ -4451,8 +4585,8 @@ dependencies = [ [[package]] name = "frame-system" -version = "40.2.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "41.0.2" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "cfg-if", "docify", @@ -4470,8 +4604,8 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" -version = "40.0.1" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "41.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "frame-benchmarking", "frame-support", @@ -4484,8 +4618,8 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" -version = "36.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "37.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "docify", "parity-scale-codec", @@ -4494,8 +4628,8 @@ dependencies = [ [[package]] name = "frame-try-runtime" -version = "0.46.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "0.47.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "frame-support", "parity-scale-codec", @@ -4949,11 +5083,13 @@ dependencies = [ [[package]] name = "hashbrown" -version = "0.15.2" +version = "0.15.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289" +checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" dependencies = [ "allocator-api2", + "equivalent", + "foldhash", ] [[package]] @@ -5622,7 +5758,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e" dependencies = [ "equivalent", - "hashbrown 0.15.2", + "hashbrown 0.15.5", ] [[package]] @@ -6887,11 +7023,13 @@ dependencies = [ [[package]] name = "memory-db" -version = "0.32.0" +version = "0.34.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "808b50db46293432a45e63bc15ea51e0ab4c0a1647b8eb114e31a3e698dd6fbe" +checksum = "7e300c54e3239a86f9c61cc63ab0f03862eb40b1c6e065dc6fd6ceaeff6da93d" dependencies = [ + "foldhash", "hash-db", + "hashbrown 0.15.5", ] [[package]] @@ -6976,8 +7114,8 @@ dependencies = [ [[package]] name = "mmr-gadget" -version = "45.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "46.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "futures", "log", @@ -6995,8 +7133,8 @@ dependencies = [ [[package]] name = "mmr-rpc" -version = "40.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "41.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -7354,6 +7492,15 @@ version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "38bf9645c8b145698bb0b18a4637dcacbc421ea49bef2317e4fd8065a387cf21" +[[package]] +name = "ntapi" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3b335231dfd352ffb0f8017f3b6027a4917f7df785ea2143d8af2adc66980ae" +dependencies = [ + "winapi", +] + [[package]] name = "nu-ansi-term" version = "0.50.1" @@ -7662,6 +7809,52 @@ dependencies = [ "syn 2.0.111", ] +[[package]] +name = "pallet-asset-conversion" +version = "23.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +dependencies = [ + "frame-benchmarking", + "frame-support", + "frame-system", + "log", + "parity-scale-codec", + "scale-info", + "sp-api", + "sp-arithmetic", + "sp-core", + "sp-io", + "sp-runtime", +] + +[[package]] +name = "pallet-authority-discovery" +version = "41.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +dependencies = [ + "frame-support", + "frame-system", + "pallet-session", + "parity-scale-codec", + "scale-info", + "sp-application-crypto", + "sp-authority-discovery", + "sp-runtime", +] + +[[package]] +name = "pallet-authorship" +version = "41.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +dependencies = [ + "frame-support", + "frame-system", + "impl-trait-for-tuples", + "parity-scale-codec", + "scale-info", + "sp-runtime", +] + [[package]] name = "pallet-auto-id" version = "0.1.0" @@ -7682,10 +7875,33 @@ dependencies = [ "x509-parser 0.16.0", ] +[[package]] +name = "pallet-babe" +version = "41.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +dependencies = [ + "frame-benchmarking", + "frame-support", + "frame-system", + "log", + "pallet-authorship", + "pallet-session", + "pallet-timestamp", + "parity-scale-codec", + "scale-info", + "sp-application-crypto", + "sp-consensus-babe", + "sp-core", + "sp-io", + "sp-runtime", + "sp-session", + "sp-staking", +] + [[package]] name = "pallet-balances" -version = "41.1.1" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "42.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "docify", "frame-benchmarking", @@ -7714,10 +7930,28 @@ dependencies = [ "sp-std", ] +[[package]] +name = "pallet-broker" +version = "0.20.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +dependencies = [ + "bitvec", + "frame-benchmarking", + "frame-support", + "frame-system", + "log", + "parity-scale-codec", + "scale-info", + "sp-api", + "sp-arithmetic", + "sp-core", + "sp-runtime", +] + [[package]] name = "pallet-collective" -version = "40.1.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "41.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "docify", "frame-benchmarking", @@ -7733,8 +7967,8 @@ dependencies = [ [[package]] name = "pallet-democracy" -version = "40.1.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "41.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "frame-benchmarking", "frame-support", @@ -7816,7 +8050,7 @@ dependencies = [ [[package]] name = "pallet-ethereum" version = "4.0.0-dev" -source = "git+https://github.com/polkadot-evm/frontier?rev=7d1cff7f13828b563752ad8a71458cab1ea42009#7d1cff7f13828b563752ad8a71458cab1ea42009" +source = "git+https://github.com/polkadot-evm/frontier?rev=b70f725a84c1b6b7e56c9e7381d35863829a7a3c#b70f725a84c1b6b7e56c9e7381d35863829a7a3c" dependencies = [ "ethereum", "ethereum-types", @@ -7839,7 +8073,7 @@ dependencies = [ [[package]] name = "pallet-evm" version = "6.0.0-dev" -source = "git+https://github.com/polkadot-evm/frontier?rev=7d1cff7f13828b563752ad8a71458cab1ea42009#7d1cff7f13828b563752ad8a71458cab1ea42009" +source = "git+https://github.com/polkadot-evm/frontier?rev=b70f725a84c1b6b7e56c9e7381d35863829a7a3c#b70f725a84c1b6b7e56c9e7381d35863829a7a3c" dependencies = [ "cumulus-primitives-storage-weight-reclaim", "environmental", @@ -7864,7 +8098,7 @@ dependencies = [ [[package]] name = "pallet-evm-chain-id" version = "1.0.0-dev" -source = "git+https://github.com/polkadot-evm/frontier?rev=7d1cff7f13828b563752ad8a71458cab1ea42009#7d1cff7f13828b563752ad8a71458cab1ea42009" +source = "git+https://github.com/polkadot-evm/frontier?rev=b70f725a84c1b6b7e56c9e7381d35863829a7a3c#b70f725a84c1b6b7e56c9e7381d35863829a7a3c" dependencies = [ "frame-support", "frame-system", @@ -7875,7 +8109,7 @@ dependencies = [ [[package]] name = "pallet-evm-precompile-modexp" version = "2.0.0-dev" -source = "git+https://github.com/polkadot-evm/frontier?rev=7d1cff7f13828b563752ad8a71458cab1ea42009#7d1cff7f13828b563752ad8a71458cab1ea42009" +source = "git+https://github.com/polkadot-evm/frontier?rev=b70f725a84c1b6b7e56c9e7381d35863829a7a3c#b70f725a84c1b6b7e56c9e7381d35863829a7a3c" dependencies = [ "fp-evm", "num", @@ -7884,7 +8118,7 @@ dependencies = [ [[package]] name = "pallet-evm-precompile-sha3fips" version = "2.0.0-dev" -source = "git+https://github.com/polkadot-evm/frontier?rev=7d1cff7f13828b563752ad8a71458cab1ea42009#7d1cff7f13828b563752ad8a71458cab1ea42009" +source = "git+https://github.com/polkadot-evm/frontier?rev=b70f725a84c1b6b7e56c9e7381d35863829a7a3c#b70f725a84c1b6b7e56c9e7381d35863829a7a3c" dependencies = [ "fp-evm", "tiny-keccak", @@ -7893,7 +8127,7 @@ dependencies = [ [[package]] name = "pallet-evm-precompile-simple" version = "2.0.0-dev" -source = "git+https://github.com/polkadot-evm/frontier?rev=7d1cff7f13828b563752ad8a71458cab1ea42009#7d1cff7f13828b563752ad8a71458cab1ea42009" +source = "git+https://github.com/polkadot-evm/frontier?rev=b70f725a84c1b6b7e56c9e7381d35863829a7a3c#b70f725a84c1b6b7e56c9e7381d35863829a7a3c" dependencies = [ "fp-evm", "ripemd", @@ -7926,6 +8160,25 @@ dependencies = [ "subspace-runtime-primitives", ] +[[package]] +name = "pallet-message-queue" +version = "44.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +dependencies = [ + "environmental", + "frame-benchmarking", + "frame-support", + "frame-system", + "log", + "parity-scale-codec", + "scale-info", + "sp-arithmetic", + "sp-core", + "sp-io", + "sp-runtime", + "sp-weights", +] + [[package]] name = "pallet-messenger" version = "0.1.0" @@ -7952,8 +8205,8 @@ dependencies = [ [[package]] name = "pallet-mmr" -version = "40.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "41.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "log", "parity-scale-codec", @@ -7964,8 +8217,8 @@ dependencies = [ [[package]] name = "pallet-multisig" -version = "40.1.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "41.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "log", "parity-scale-codec", @@ -7975,8 +8228,8 @@ dependencies = [ [[package]] name = "pallet-preimage" -version = "40.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "41.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "frame-benchmarking", "frame-support", @@ -8024,8 +8277,8 @@ dependencies = [ [[package]] name = "pallet-scheduler" -version = "41.2.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "42.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "docify", "frame-benchmarking", @@ -8039,6 +8292,49 @@ dependencies = [ "sp-weights", ] +[[package]] +name = "pallet-session" +version = "41.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +dependencies = [ + "frame-support", + "frame-system", + "impl-trait-for-tuples", + "log", + "pallet-timestamp", + "parity-scale-codec", + "scale-info", + "sp-core", + "sp-io", + "sp-runtime", + "sp-session", + "sp-staking", + "sp-state-machine", + "sp-trie", +] + +[[package]] +name = "pallet-staking" +version = "41.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +dependencies = [ + "frame-benchmarking", + "frame-election-provider-support", + "frame-support", + "frame-system", + "log", + "pallet-authorship", + "pallet-session", + "parity-scale-codec", + "rand_chacha 0.3.1", + "scale-info", + "serde", + "sp-application-crypto", + "sp-io", + "sp-runtime", + "sp-staking", +] + [[package]] name = "pallet-storage-overlay-checks" version = "0.1.0" @@ -8100,8 +8396,8 @@ dependencies = [ [[package]] name = "pallet-sudo" -version = "40.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "41.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "docify", "frame-benchmarking", @@ -8115,8 +8411,8 @@ dependencies = [ [[package]] name = "pallet-timestamp" -version = "39.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "40.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "docify", "frame-benchmarking", @@ -8126,7 +8422,6 @@ dependencies = [ "parity-scale-codec", "scale-info", "sp-inherents", - "sp-io", "sp-runtime", "sp-storage", "sp-timestamp", @@ -8145,8 +8440,8 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" -version = "40.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "41.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "frame-benchmarking", "frame-support", @@ -8154,15 +8449,14 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-core", "sp-io", "sp-runtime", ] [[package]] name = "pallet-transaction-payment-rpc" -version = "43.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "44.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -8177,8 +8471,8 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" -version = "40.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "41.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -8210,8 +8504,8 @@ dependencies = [ [[package]] name = "pallet-utility" -version = "40.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "41.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "frame-benchmarking", "frame-support", @@ -8531,8 +8825,8 @@ dependencies = [ [[package]] name = "polkadot-core-primitives" -version = "17.1.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "18.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "parity-scale-codec", "scale-info", @@ -8542,8 +8836,8 @@ dependencies = [ [[package]] name = "polkadot-node-metrics" -version = "23.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "24.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "bs58", "futures", @@ -8559,8 +8853,8 @@ dependencies = [ [[package]] name = "polkadot-node-network-protocol" -version = "23.1.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "24.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "async-channel 1.9.0", "async-trait", @@ -8584,8 +8878,8 @@ dependencies = [ [[package]] name = "polkadot-node-primitives" -version = "19.1.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "20.1.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "bitvec", "bounded-vec", @@ -8608,8 +8902,8 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-types" -version = "23.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "24.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "async-trait", "derive_more 0.99.18", @@ -8636,8 +8930,8 @@ dependencies = [ [[package]] name = "polkadot-overseer" -version = "23.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "24.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "async-trait", "futures", @@ -8656,8 +8950,8 @@ dependencies = [ [[package]] name = "polkadot-parachain-primitives" -version = "16.1.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "17.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "bounded-collections", "derive_more 0.99.18", @@ -8672,10 +8966,11 @@ dependencies = [ [[package]] name = "polkadot-primitives" -version = "18.2.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "19.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "bitvec", + "bounded-collections", "hex-literal", "log", "parity-scale-codec", @@ -8699,18 +8994,69 @@ dependencies = [ ] [[package]] -name = "polkadot-sdk" -version = "0.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eb819108697967452fa6d8d96ab4c0d48cbaa423b3156499dcb24f1cf95d6775" +name = "polkadot-runtime-metrics" +version = "21.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ - "sp-crypto-hashing 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "bs58", + "frame-benchmarking", + "parity-scale-codec", + "polkadot-primitives", + "sp-tracing", +] + +[[package]] +name = "polkadot-runtime-parachains" +version = "20.0.3" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +dependencies = [ + "bitflags 1.3.2", + "bitvec", + "frame-benchmarking", + "frame-election-provider-support", + "frame-support", + "frame-system", + "impl-trait-for-tuples", + "log", + "pallet-authority-discovery", + "pallet-authorship", + "pallet-babe", + "pallet-balances", + "pallet-broker", + "pallet-message-queue", + "pallet-mmr", + "pallet-session", + "pallet-staking", + "pallet-timestamp", + "parity-scale-codec", + "polkadot-core-primitives", + "polkadot-parachain-primitives", + "polkadot-primitives", + "polkadot-runtime-metrics", + "rand 0.8.5", + "rand_chacha 0.3.1", + "scale-info", + "serde", + "sp-api", + "sp-application-crypto", + "sp-arithmetic", + "sp-core", + "sp-inherents", + "sp-io", + "sp-keystore", + "sp-runtime", + "sp-session", + "sp-staking", + "sp-std", + "staging-xcm", + "staging-xcm-executor", + "static_assertions", ] [[package]] name = "polkadot-sdk-frame" -version = "0.9.1" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "0.10.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "docify", "frame-benchmarking", @@ -8744,8 +9090,8 @@ dependencies = [ [[package]] name = "polkadot-statement-table" -version = "19.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "20.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "parity-scale-codec", "polkadot-primitives", @@ -8754,9 +9100,9 @@ dependencies = [ [[package]] name = "polkavm" -version = "0.18.0" +version = "0.24.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dd044ab1d3b11567ab6b98ca71259a992b4034220d5972988a0e96518e5d343d" +checksum = "f2a01db119bb3a86572c0641ba6e7c9786fbd2ac89c25b43b688c4e353787526" dependencies = [ "libc", "log", @@ -8767,18 +9113,18 @@ dependencies = [ [[package]] name = "polkavm-assembler" -version = "0.18.0" +version = "0.24.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eaad38dc420bfed79e6f731471c973ce5ff5e47ab403e63cf40358fef8a6368f" +checksum = "eea6105f3f344abe0bf0151d67b3de6f5d24353f2393355ecf3f5f6e06d7fd0b" dependencies = [ "log", ] [[package]] name = "polkavm-common" -version = "0.18.0" +version = "0.24.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "31ff33982a807d8567645d4784b9b5d7ab87bcb494f534a57cadd9012688e102" +checksum = "d91ed9e5af472f729fcf3b3c1cf17508ddbb3505259dd6e2ee0fb5a29e105d22" dependencies = [ "log", "polkavm-assembler", @@ -8786,18 +9132,18 @@ dependencies = [ [[package]] name = "polkavm-derive" -version = "0.18.0" +version = "0.24.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c2eb703f3b6404c13228402e98a5eae063fd16b8f58afe334073ec105ee4117e" +checksum = "176144f8661117ea95fa7cf868c9a62d6b143e8a2ebcb7582464c3faade8669a" dependencies = [ "polkavm-derive-impl-macro", ] [[package]] name = "polkavm-derive-impl" -version = "0.18.1" +version = "0.24.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2f2116a92e6e96220a398930f4c8a6cda1264206f3e2034fc9982bfd93f261f7" +checksum = "c5a21844afdfcc10c92b9ef288ccb926211af27478d1730fcd55e4aec710179d" dependencies = [ "polkavm-common", "proc-macro2", @@ -8807,9 +9153,9 @@ dependencies = [ [[package]] name = "polkavm-derive-impl-macro" -version = "0.18.0" +version = "0.24.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "48c16669ddc7433e34c1007d31080b80901e3e8e523cb9d4b441c3910cf9294b" +checksum = "ba0ef0f17ad81413ea1ca5b1b67553aedf5650c88269b673d3ba015c83bc2651" dependencies = [ "polkavm-derive-impl", "syn 2.0.111", @@ -8817,9 +9163,9 @@ dependencies = [ [[package]] name = "polkavm-linker" -version = "0.18.0" +version = "0.24.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e9bfe793b094d9ea5c99b7c43ba46e277b0f8f48f4bbfdbabf8d3ebf701a4bd3" +checksum = "06c95a521a1331024ebe5823ffdfba9ea6df40b934b0804049d5171887579806" dependencies = [ "dirs", "gimli 0.31.1", @@ -8833,9 +9179,9 @@ dependencies = [ [[package]] name = "polkavm-linux-raw" -version = "0.18.0" +version = "0.24.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "23eff02c070c70f31878a3d915e88a914ecf3e153741e2fb572dde28cce20fde" +checksum = "4ec0b13e26ec7234dba213ca17118c70c562809bdce0eefe84f92613d5c8da26" [[package]] name = "polling" @@ -8899,7 +9245,7 @@ dependencies = [ [[package]] name = "precompile-utils" version = "0.1.0" -source = "git+https://github.com/polkadot-evm/frontier?rev=7d1cff7f13828b563752ad8a71458cab1ea42009#7d1cff7f13828b563752ad8a71458cab1ea42009" +source = "git+https://github.com/polkadot-evm/frontier?rev=b70f725a84c1b6b7e56c9e7381d35863829a7a3c#b70f725a84c1b6b7e56c9e7381d35863829a7a3c" dependencies = [ "environmental", "evm", @@ -8923,14 +9269,14 @@ dependencies = [ [[package]] name = "precompile-utils-macro" version = "0.1.0" -source = "git+https://github.com/polkadot-evm/frontier?rev=7d1cff7f13828b563752ad8a71458cab1ea42009#7d1cff7f13828b563752ad8a71458cab1ea42009" +source = "git+https://github.com/polkadot-evm/frontier?rev=b70f725a84c1b6b7e56c9e7381d35863829a7a3c#b70f725a84c1b6b7e56c9e7381d35863829a7a3c" dependencies = [ "case", "num_enum 0.7.3", "prettyplease", "proc-macro2", "quote", - "sp-crypto-hashing 0.1.0 (git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e)", "syn 2.0.111", ] @@ -10077,8 +10423,8 @@ dependencies = [ [[package]] name = "sc-allocator" -version = "31.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "32.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "log", "sp-core", @@ -10088,8 +10434,8 @@ dependencies = [ [[package]] name = "sc-authority-discovery" -version = "0.50.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "0.51.1" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "async-trait", "futures", @@ -10104,6 +10450,8 @@ dependencies = [ "sc-client-api", "sc-network", "sc-network-types", + "serde", + "serde_json", "sp-api", "sp-authority-discovery", "sp-blockchain", @@ -10112,12 +10460,13 @@ dependencies = [ "sp-runtime", "substrate-prometheus-endpoint", "thiserror 1.0.64", + "tokio", ] [[package]] name = "sc-basic-authorship" -version = "0.49.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "0.50.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "futures", "log", @@ -10137,8 +10486,8 @@ dependencies = [ [[package]] name = "sc-block-builder" -version = "0.44.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "0.45.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "parity-scale-codec", "sp-api", @@ -10152,8 +10501,8 @@ dependencies = [ [[package]] name = "sc-chain-spec" -version = "43.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "44.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "array-bytes", "docify", @@ -10168,7 +10517,7 @@ dependencies = [ "serde_json", "sp-blockchain", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e)", "sp-genesis-builder", "sp-io", "sp-runtime", @@ -10179,7 +10528,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "12.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "proc-macro-crate 3.2.0", "proc-macro2", @@ -10189,8 +10538,8 @@ dependencies = [ [[package]] name = "sc-cli" -version = "0.52.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "0.53.1" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "array-bytes", "chrono", @@ -10231,8 +10580,8 @@ dependencies = [ [[package]] name = "sc-client-api" -version = "39.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "40.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "fnv", "futures", @@ -10257,8 +10606,8 @@ dependencies = [ [[package]] name = "sc-client-db" -version = "0.46.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "0.47.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "hash-db", "kvdb", @@ -10278,12 +10627,14 @@ dependencies = [ "sp-runtime", "sp-state-machine", "sp-trie", + "substrate-prometheus-endpoint", + "sysinfo", ] [[package]] name = "sc-consensus" -version = "0.49.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "0.50.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "async-trait", "futures", @@ -10303,10 +10654,59 @@ dependencies = [ "thiserror 1.0.64", ] +[[package]] +name = "sc-consensus-babe" +version = "0.51.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +dependencies = [ + "async-trait", + "fork-tree", + "futures", + "log", + "num-bigint", + "num-rational", + "num-traits", + "parity-scale-codec", + "parking_lot 0.12.3", + "sc-client-api", + "sc-consensus", + "sc-consensus-epochs", + "sc-consensus-slots", + "sc-telemetry", + "sc-transaction-pool-api", + "sp-api", + "sp-application-crypto", + "sp-block-builder", + "sp-blockchain", + "sp-consensus", + "sp-consensus-babe", + "sp-consensus-slots", + "sp-core", + "sp-crypto-hashing 0.1.0 (git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e)", + "sp-inherents", + "sp-keystore", + "sp-runtime", + "substrate-prometheus-endpoint", + "thiserror 1.0.64", +] + +[[package]] +name = "sc-consensus-epochs" +version = "0.50.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +dependencies = [ + "fork-tree", + "parity-scale-codec", + "sc-client-api", + "sc-consensus", + "sp-blockchain", + "sp-runtime", +] + [[package]] name = "sc-consensus-slots" -version = "0.49.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "0.50.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "async-trait", "futures", @@ -10435,8 +10835,8 @@ dependencies = [ [[package]] name = "sc-executor" -version = "0.42.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "0.43.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "parity-scale-codec", "parking_lot 0.12.3", @@ -10458,8 +10858,8 @@ dependencies = [ [[package]] name = "sc-executor-common" -version = "0.38.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "0.39.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "polkavm", "sc-allocator", @@ -10471,8 +10871,8 @@ dependencies = [ [[package]] name = "sc-executor-polkavm" -version = "0.35.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "0.36.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "log", "polkavm", @@ -10482,8 +10882,8 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" -version = "0.38.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "0.39.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "anyhow", "log", @@ -10498,8 +10898,8 @@ dependencies = [ [[package]] name = "sc-informant" -version = "0.49.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "0.50.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "console", "futures", @@ -10514,8 +10914,8 @@ dependencies = [ [[package]] name = "sc-keystore" -version = "35.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "36.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "array-bytes", "parking_lot 0.12.3", @@ -10528,8 +10928,8 @@ dependencies = [ [[package]] name = "sc-mixnet" -version = "0.20.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "0.21.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "array-bytes", "arrayvec 0.7.6", @@ -10556,8 +10956,8 @@ dependencies = [ [[package]] name = "sc-network" -version = "0.50.1" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "0.51.2" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -10606,8 +11006,8 @@ dependencies = [ [[package]] name = "sc-network-common" -version = "0.48.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "0.49.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "bitflags 1.3.2", "parity-scale-codec", @@ -10616,8 +11016,8 @@ dependencies = [ [[package]] name = "sc-network-gossip" -version = "0.50.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "0.51.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "ahash", "futures", @@ -10635,8 +11035,8 @@ dependencies = [ [[package]] name = "sc-network-light" -version = "0.49.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "0.50.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -10656,8 +11056,8 @@ dependencies = [ [[package]] name = "sc-network-sync" -version = "0.49.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "0.50.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -10691,8 +11091,8 @@ dependencies = [ [[package]] name = "sc-network-transactions" -version = "0.49.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "0.50.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "array-bytes", "futures", @@ -10710,8 +11110,8 @@ dependencies = [ [[package]] name = "sc-network-types" -version = "0.16.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "0.17.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "bs58", "bytes", @@ -10723,14 +11123,16 @@ dependencies = [ "multiaddr 0.18.2", "multihash 0.19.1", "rand 0.8.5", + "serde", + "serde_with", "thiserror 1.0.64", "zeroize", ] [[package]] name = "sc-offchain" -version = "45.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "46.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "bytes", "fnv", @@ -10793,7 +11195,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.20.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -10801,8 +11203,8 @@ dependencies = [ [[package]] name = "sc-rpc" -version = "45.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "46.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "futures", "jsonrpsee", @@ -10833,8 +11235,8 @@ dependencies = [ [[package]] name = "sc-rpc-api" -version = "0.49.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "0.50.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -10853,8 +11255,8 @@ dependencies = [ [[package]] name = "sc-rpc-server" -version = "22.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "23.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "dyn-clone", "forwarded-header-value", @@ -10877,8 +11279,8 @@ dependencies = [ [[package]] name = "sc-rpc-spec-v2" -version = "0.50.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "0.51.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "array-bytes", "futures", @@ -10910,14 +11312,14 @@ dependencies = [ [[package]] name = "sc-runtime-utilities" -version = "0.2.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "0.3.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "parity-scale-codec", "sc-executor", "sc-executor-common", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e)", "sp-state-machine", "sp-wasm-interface", "thiserror 1.0.64", @@ -10925,8 +11327,8 @@ dependencies = [ [[package]] name = "sc-service" -version = "0.51.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "0.52.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "async-trait", "directories", @@ -10989,8 +11391,8 @@ dependencies = [ [[package]] name = "sc-state-db" -version = "0.38.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "0.39.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "log", "parity-scale-codec", @@ -11000,8 +11402,8 @@ dependencies = [ [[package]] name = "sc-storage-monitor" -version = "0.24.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "0.25.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "clap", "fs4 0.7.0", @@ -11058,8 +11460,8 @@ dependencies = [ [[package]] name = "sc-sysinfo" -version = "42.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "43.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "derive_more 0.99.18", "futures", @@ -11072,14 +11474,14 @@ dependencies = [ "serde", "serde_json", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e)", "sp-io", ] [[package]] name = "sc-telemetry" -version = "28.1.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "29.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "chrono", "futures", @@ -11097,11 +11499,12 @@ dependencies = [ [[package]] name = "sc-tracing" -version = "39.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "40.0.2" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "chrono", "console", + "frame-metadata 23.0.1", "is-terminal", "libc", "log", @@ -11117,6 +11520,7 @@ dependencies = [ "sp-rpc", "sp-runtime", "sp-tracing", + "sp-trie", "thiserror 1.0.64", "tracing", "tracing-log", @@ -11126,7 +11530,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "11.1.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "proc-macro-crate 3.2.0", "proc-macro2", @@ -11136,8 +11540,8 @@ dependencies = [ [[package]] name = "sc-transaction-pool" -version = "39.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "40.1.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "async-trait", "futures", @@ -11145,7 +11549,6 @@ dependencies = [ "indexmap 2.9.0", "itertools 0.11.0", "linked-hash-map", - "log", "parity-scale-codec", "parking_lot 0.12.3", "sc-client-api", @@ -11155,7 +11558,7 @@ dependencies = [ "sp-api", "sp-blockchain", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e)", "sp-runtime", "sp-tracing", "sp-transaction-pool", @@ -11168,8 +11571,8 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" -version = "39.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "40.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "async-trait", "futures", @@ -11185,8 +11588,8 @@ dependencies = [ [[package]] name = "sc-utils" -version = "18.0.1" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "19.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "async-channel 1.9.0", "futures", @@ -11199,9 +11602,9 @@ dependencies = [ [[package]] name = "scale-bits" -version = "0.6.0" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e57b1e7f6b65ed1f04e79a85a57d755ad56d76fdf1e9bddcc9ae14f71fcdcf54" +checksum = "27243ab0d2d6235072b017839c5f0cd1a3b1ce45c0f7a715363b0c7d36c76c94" dependencies = [ "parity-scale-codec", "scale-info", @@ -11211,26 +11614,26 @@ dependencies = [ [[package]] name = "scale-decode" -version = "0.14.0" +version = "0.16.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f8ae9cc099ae85ff28820210732b00f019546f36f33225f509fe25d5816864a0" +checksum = "8d6ed61699ad4d54101ab5a817169259b5b0efc08152f8632e61482d8a27ca3d" dependencies = [ - "derive_more 1.0.0", "parity-scale-codec", "primitive-types", "scale-bits", "scale-decode-derive", "scale-type-resolver", "smallvec", + "thiserror 2.0.12", ] [[package]] name = "scale-decode-derive" -version = "0.14.0" +version = "0.16.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5ed9401effa946b493f9f84dc03714cca98119b230497df6f3df6b84a2b03648" +checksum = "65cb245f7fdb489e7ba43a616cbd34427fe3ba6fe0edc1d0d250085e6c84f3ec" dependencies = [ - "darling", + "darling 0.20.10", "proc-macro2", "quote", "syn 2.0.111", @@ -11238,26 +11641,26 @@ dependencies = [ [[package]] name = "scale-encode" -version = "0.8.0" +version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f9271284d05d0749c40771c46180ce89905fd95aa72a2a2fddb4b7c0aa424db" +checksum = "f2a976d73564a59e482b74fd5d95f7518b79ca8c8ca5865398a4d629dd15ee50" dependencies = [ - "derive_more 1.0.0", "parity-scale-codec", "primitive-types", "scale-bits", "scale-encode-derive", "scale-type-resolver", "smallvec", + "thiserror 2.0.12", ] [[package]] name = "scale-encode-derive" -version = "0.8.0" +version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "102fbc6236de6c53906c0b262f12c7aa69c2bdc604862c12728f5f4d370bc137" +checksum = "17020f2d59baabf2ddcdc20a4e567f8210baf089b8a8d4785f5fd5e716f92038" dependencies = [ - "darling", + "darling 0.20.10", "proc-macro-crate 3.2.0", "proc-macro2", "quote", @@ -11302,34 +11705,33 @@ dependencies = [ [[package]] name = "scale-typegen" -version = "0.9.0" +version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0dc4c70c7fea2eef1740f0081d3fe385d8bee1eef11e9272d3bec7dc8e5438e0" +checksum = "05c61b6b706a3eaad63b506ab50a1d2319f817ae01cf753adcc3f055f9f0fcd6" dependencies = [ "proc-macro2", "quote", "scale-info", "syn 2.0.111", - "thiserror 1.0.64", + "thiserror 2.0.12", ] [[package]] name = "scale-value" -version = "0.17.0" +version = "0.18.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f5e0ef2a0ee1e02a69ada37feb87ea1616ce9808aca072befe2d3131bf28576e" +checksum = "b3b64809a541e8d5a59f7a9d67cc700cdf5d7f907932a83a0afdedc90db07ccb" dependencies = [ "base58", "blake2 0.10.6", - "derive_more 1.0.0", "either", "parity-scale-codec", "scale-bits", "scale-decode", "scale-encode", - "scale-info", "scale-type-resolver", "serde", + "thiserror 2.0.12", "yap", ] @@ -11668,6 +12070,34 @@ dependencies = [ "serde", ] +[[package]] +name = "serde_with" +version = "3.14.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c522100790450cf78eeac1507263d0a350d4d5b30df0c8e1fe051a10c22b376e" +dependencies = [ + "base64 0.22.1", + "chrono", + "hex", + "serde", + "serde_derive", + "serde_json", + "serde_with_macros", + "time", +] + +[[package]] +name = "serde_with_macros" +version = "3.14.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "327ada00f7d64abaac1e55a6911e90cf665aa051b9a561c7006c157f4633135e" +dependencies = [ + "darling 0.21.3", + "proc-macro2", + "quote", + "syn 2.0.111", +] + [[package]] name = "serdect" version = "0.2.0" @@ -11988,8 +12418,8 @@ dependencies = [ [[package]] name = "sp-api" -version = "36.0.1" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "37.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "docify", "hash-db", @@ -12010,8 +12440,8 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" -version = "22.0.1" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "23.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "Inflector", "blake2 0.10.6", @@ -12024,8 +12454,8 @@ dependencies = [ [[package]] name = "sp-application-crypto" -version = "40.1.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "41.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "parity-scale-codec", "scale-info", @@ -12036,8 +12466,8 @@ dependencies = [ [[package]] name = "sp-arithmetic" -version = "26.1.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "27.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "docify", "integer-sqrt", @@ -12050,8 +12480,8 @@ dependencies = [ [[package]] name = "sp-authority-discovery" -version = "36.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "37.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "parity-scale-codec", "scale-info", @@ -12075,8 +12505,8 @@ dependencies = [ [[package]] name = "sp-block-builder" -version = "36.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "37.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "sp-api", "sp-inherents", @@ -12096,8 +12526,8 @@ dependencies = [ [[package]] name = "sp-blockchain" -version = "39.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "40.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "futures", "parity-scale-codec", @@ -12115,8 +12545,8 @@ dependencies = [ [[package]] name = "sp-consensus" -version = "0.42.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "0.43.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "async-trait", "futures", @@ -12129,8 +12559,8 @@ dependencies = [ [[package]] name = "sp-consensus-aura" -version = "0.42.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "0.43.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "async-trait", "parity-scale-codec", @@ -12145,8 +12575,8 @@ dependencies = [ [[package]] name = "sp-consensus-babe" -version = "0.42.1" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "0.43.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "async-trait", "parity-scale-codec", @@ -12163,8 +12593,8 @@ dependencies = [ [[package]] name = "sp-consensus-beefy" -version = "24.1.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "25.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "parity-scale-codec", "scale-info", @@ -12172,7 +12602,7 @@ dependencies = [ "sp-api", "sp-application-crypto", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e)", "sp-io", "sp-keystore", "sp-mmr-primitives", @@ -12183,8 +12613,8 @@ dependencies = [ [[package]] name = "sp-consensus-grandpa" -version = "23.1.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "24.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "finality-grandpa", "log", @@ -12200,8 +12630,8 @@ dependencies = [ [[package]] name = "sp-consensus-slots" -version = "0.42.1" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "0.43.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "parity-scale-codec", "scale-info", @@ -12239,8 +12669,8 @@ dependencies = [ [[package]] name = "sp-core" -version = "36.1.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "37.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "ark-vrf", "array-bytes", @@ -12248,7 +12678,7 @@ dependencies = [ "blake2 0.10.6", "bounded-collections", "bs58", - "dyn-clonable", + "dyn-clone", "ed25519-zebra", "futures", "hash-db", @@ -12270,7 +12700,8 @@ dependencies = [ "secp256k1 0.28.2", "secrecy 0.8.0", "serde", - "sp-crypto-hashing 0.1.0 (git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed)", + "sha2 0.10.8", + "sp-crypto-hashing 0.1.0 (git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e)", "sp-debug-derive", "sp-externalities", "sp-runtime-interface", @@ -12301,7 +12732,7 @@ dependencies = [ [[package]] name = "sp-crypto-hashing" version = "0.1.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "blake2b_simd", "byteorder", @@ -12314,17 +12745,17 @@ dependencies = [ [[package]] name = "sp-crypto-hashing-proc-macro" version = "0.1.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "quote", - "sp-crypto-hashing 0.1.0 (git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e)", "syn 2.0.111", ] [[package]] name = "sp-database" version = "10.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "kvdb", "parking_lot 0.12.3", @@ -12333,7 +12764,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "14.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "proc-macro2", "quote", @@ -12486,7 +12917,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.30.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "environmental", "parity-scale-codec", @@ -12495,8 +12926,8 @@ dependencies = [ [[package]] name = "sp-genesis-builder" -version = "0.17.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "0.18.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "parity-scale-codec", "scale-info", @@ -12507,8 +12938,8 @@ dependencies = [ [[package]] name = "sp-inherents" -version = "36.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "37.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -12520,8 +12951,8 @@ dependencies = [ [[package]] name = "sp-io" -version = "40.0.1" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "41.0.1" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "bytes", "docify", @@ -12533,7 +12964,7 @@ dependencies = [ "rustversion", "secp256k1 0.28.2", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e)", "sp-externalities", "sp-keystore", "sp-runtime-interface", @@ -12546,8 +12977,8 @@ dependencies = [ [[package]] name = "sp-keyring" -version = "41.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "42.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "sp-core", "sp-runtime", @@ -12556,8 +12987,8 @@ dependencies = [ [[package]] name = "sp-keystore" -version = "0.42.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "0.43.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "parity-scale-codec", "parking_lot 0.12.3", @@ -12568,7 +12999,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "11.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "thiserror 1.0.64", "zstd 0.12.4", @@ -12615,18 +13046,18 @@ dependencies = [ [[package]] name = "sp-metadata-ir" -version = "0.10.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "0.11.1" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ - "frame-metadata 20.0.0", + "frame-metadata 23.0.1", "parity-scale-codec", "scale-info", ] [[package]] name = "sp-mixnet" -version = "0.14.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "0.15.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "parity-scale-codec", "scale-info", @@ -12636,8 +13067,8 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" -version = "36.1.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "37.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "log", "parity-scale-codec", @@ -12651,6 +13082,19 @@ dependencies = [ "thiserror 1.0.64", ] +[[package]] +name = "sp-npos-elections" +version = "37.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +dependencies = [ + "parity-scale-codec", + "scale-info", + "serde", + "sp-arithmetic", + "sp-core", + "sp-runtime", +] + [[package]] name = "sp-objects" version = "0.1.0" @@ -12661,8 +13105,8 @@ dependencies = [ [[package]] name = "sp-offchain" -version = "36.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "37.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "sp-api", "sp-core", @@ -12672,7 +13116,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "13.0.2" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "backtrace", "regex", @@ -12680,8 +13124,8 @@ dependencies = [ [[package]] name = "sp-rpc" -version = "34.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "35.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "rustc-hash 1.1.0", "serde", @@ -12690,8 +13134,8 @@ dependencies = [ [[package]] name = "sp-runtime" -version = "41.1.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "42.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "binary-merkle-tree", "docify", @@ -12719,8 +13163,8 @@ dependencies = [ [[package]] name = "sp-runtime-interface" -version = "29.0.1" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "30.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -12738,8 +13182,8 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" -version = "18.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "19.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "Inflector", "expander", @@ -12751,8 +13195,8 @@ dependencies = [ [[package]] name = "sp-session" -version = "38.1.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "39.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "parity-scale-codec", "scale-info", @@ -12765,8 +13209,8 @@ dependencies = [ [[package]] name = "sp-staking" -version = "38.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "39.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -12778,8 +13222,8 @@ dependencies = [ [[package]] name = "sp-state-machine" -version = "0.45.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "0.46.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "hash-db", "log", @@ -12798,8 +13242,8 @@ dependencies = [ [[package]] name = "sp-statement-store" -version = "20.1.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "21.2.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "aes-gcm", "curve25519-dalek", @@ -12812,7 +13256,7 @@ dependencies = [ "sp-api", "sp-application-crypto", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e)", "sp-externalities", "sp-runtime", "sp-runtime-interface", @@ -12823,12 +13267,12 @@ dependencies = [ [[package]] name = "sp-std" version = "14.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" [[package]] name = "sp-storage" version = "22.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "impl-serde", "parity-scale-codec", @@ -12857,8 +13301,8 @@ dependencies = [ [[package]] name = "sp-timestamp" -version = "36.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "37.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "async-trait", "parity-scale-codec", @@ -12870,7 +13314,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "17.1.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "parity-scale-codec", "tracing", @@ -12880,8 +13324,8 @@ dependencies = [ [[package]] name = "sp-transaction-pool" -version = "36.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "37.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "sp-api", "sp-runtime", @@ -12889,8 +13333,8 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" -version = "36.1.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "37.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "async-trait", "parity-scale-codec", @@ -12903,11 +13347,13 @@ dependencies = [ [[package]] name = "sp-trie" -version = "39.1.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "40.0.1" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "ahash", + "foldhash", "hash-db", + "hashbrown 0.15.5", "memory-db", "nohash-hasher", "parity-scale-codec", @@ -12917,6 +13363,7 @@ dependencies = [ "schnellru", "sp-core", "sp-externalities", + "substrate-prometheus-endpoint", "thiserror 1.0.64", "tracing", "trie-db", @@ -12925,8 +13372,8 @@ dependencies = [ [[package]] name = "sp-version" -version = "39.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "40.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "impl-serde", "parity-scale-codec", @@ -12943,7 +13390,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "15.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "parity-scale-codec", "proc-macro-warning", @@ -12954,8 +13401,8 @@ dependencies = [ [[package]] name = "sp-wasm-interface" -version = "21.0.1" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "22.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "anyhow", "impl-trait-for-tuples", @@ -12966,8 +13413,8 @@ dependencies = [ [[package]] name = "sp-weights" -version = "31.1.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "32.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "bounded-collections", "parity-scale-codec", @@ -13044,8 +13491,8 @@ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" [[package]] name = "staging-xcm" -version = "16.2.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "17.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "array-bytes", "bounded-collections", @@ -13063,6 +13510,50 @@ dependencies = [ "xcm-procedural", ] +[[package]] +name = "staging-xcm-builder" +version = "21.1.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +dependencies = [ + "environmental", + "frame-support", + "frame-system", + "impl-trait-for-tuples", + "pallet-asset-conversion", + "pallet-transaction-payment", + "parity-scale-codec", + "polkadot-parachain-primitives", + "scale-info", + "sp-arithmetic", + "sp-core", + "sp-io", + "sp-runtime", + "sp-weights", + "staging-xcm", + "staging-xcm-executor", + "tracing", +] + +[[package]] +name = "staging-xcm-executor" +version = "20.0.2" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +dependencies = [ + "environmental", + "frame-benchmarking", + "frame-support", + "impl-trait-for-tuples", + "parity-scale-codec", + "scale-info", + "sp-arithmetic", + "sp-core", + "sp-io", + "sp-runtime", + "sp-weights", + "staging-xcm", + "tracing", +] + [[package]] name = "static_assertions" version = "1.1.0" @@ -14058,12 +14549,12 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "11.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" [[package]] name = "substrate-frame-rpc-system" -version = "44.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "45.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "docify", "frame-system-rpc-runtime-api", @@ -14082,8 +14573,8 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" -version = "0.17.3" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "0.17.6" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "http-body-util", "hyper", @@ -14097,7 +14588,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "array-bytes", "async-trait", @@ -14121,8 +14612,8 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" -version = "26.0.1" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "27.0.1" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "build-helper", "cargo_metadata", @@ -14154,20 +14645,17 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" [[package]] name = "subxt" -version = "0.38.1" +version = "0.41.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1c17d7ec2359d33133b63c97e28c8b7cd3f0a5bc6ce567ae3aef9d9e85be3433" +checksum = "03459d84546def5e1d0d22b162754609f18e031522b0319b53306f5829de9c09" dependencies = [ "async-trait", "derive-where", "either", - "frame-metadata 17.0.0", + "frame-metadata 20.0.0", "futures", "hex", - "impl-serde", - "jsonrpsee", "parity-scale-codec", - "polkadot-sdk", "primitive-types", "scale-bits", "scale-decode", @@ -14176,11 +14664,13 @@ dependencies = [ "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.64", + "subxt-rpcs", + "thiserror 2.0.12", "tokio", "tokio-util", "tracing", @@ -14190,9 +14680,9 @@ dependencies = [ [[package]] name = "subxt-codegen" -version = "0.38.1" +version = "0.41.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6550ef451c77db6e3bc7c56fb6fe1dca9398a2c8fc774b127f6a396a769b9c5b" +checksum = "324c52c09919fec8c22a4b572a466878322e99fe14a9e3d50d6c3700a226ec25" dependencies = [ "heck 0.5.0", "parity-scale-codec", @@ -14202,26 +14692,25 @@ dependencies = [ "scale-typegen", "subxt-metadata", "syn 2.0.111", - "thiserror 1.0.64", + "thiserror 2.0.12", ] [[package]] name = "subxt-core" -version = "0.38.1" +version = "0.41.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cb7a1bc6c9c1724971636a66e3225a7253cdb35bb6efb81524a6c71c04f08c59" +checksum = "66ef00be9d64885ec94e478a58e4e39d222024b20013ae7df4fc6ece545391aa" dependencies = [ "base58", "blake2 0.10.6", "derive-where", "frame-decode", - "frame-metadata 17.0.0", + "frame-metadata 20.0.0", "hashbrown 0.14.5", "hex", "impl-serde", "keccak-hash", "parity-scale-codec", - "polkadot-sdk", "primitive-types", "scale-bits", "scale-decode", @@ -14230,22 +14719,24 @@ dependencies = [ "scale-value", "serde", "serde_json", + "sp-crypto-hashing 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "subxt-metadata", + "thiserror 2.0.12", "tracing", ] [[package]] name = "subxt-lightclient" -version = "0.38.1" +version = "0.41.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "89ebc9131da4d0ba1f7814495b8cc79698798ccd52cacd7bcefe451e415bd945" +checksum = "ce07c2515b2e63b85ec3043fe4461b287af0615d4832c2fe6e81ba780b906bc0" dependencies = [ "futures", "futures-util", "serde", "serde_json", "smoldot-light", - "thiserror 1.0.64", + "thiserror 2.0.12", "tokio", "tokio-stream", "tracing", @@ -14253,11 +14744,11 @@ dependencies = [ [[package]] name = "subxt-macro" -version = "0.38.1" +version = "0.41.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7819c5e09aae0319981ee853869f2fcd1fac4db8babd0d004c17161297aadc05" +checksum = "7c2c8da275a620dd676381d72395dfea91f0a6cd849665b4f1d0919371850701" dependencies = [ - "darling", + "darling 0.20.10", "parity-scale-codec", "proc-macro-error2", "quote", @@ -14269,23 +14760,47 @@ dependencies = [ [[package]] name = "subxt-metadata" -version = "0.38.1" +version = "0.41.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aacd4e7484fef58deaa2dcb32d94753a864b208a668c0dd0c28be1d8abeeadb2" +checksum = "fff4591673600c4388e21305788282414d26c791b4dee21b7cb0b19c10076f98" dependencies = [ "frame-decode", - "frame-metadata 17.0.0", + "frame-metadata 20.0.0", "hashbrown 0.14.5", "parity-scale-codec", - "polkadot-sdk", "scale-info", + "sp-crypto-hashing 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "thiserror 2.0.12", +] + +[[package]] +name = "subxt-rpcs" +version = "0.41.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4ba7494d250d65dc3439365ac5e8e0fbb9c3992e6e84b7aa01d69e082249b8b8" +dependencies = [ + "derive-where", + "frame-metadata 20.0.0", + "futures", + "hex", + "impl-serde", + "jsonrpsee", + "parity-scale-codec", + "primitive-types", + "serde", + "serde_json", + "subxt-core", + "subxt-lightclient", + "thiserror 2.0.12", + "tracing", + "url", ] [[package]] name = "subxt-signer" -version = "0.38.1" +version = "0.41.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d680352d04665b1e4eb6f9d2a54b800c4d8e1b20478e69be1b7d975b08d9fc34" +checksum = "4a2370298a210ed1df26152db7209a85e0ed8cfbce035309c3b37f7b61755377" dependencies = [ "base64 0.22.1", "bip32", @@ -14297,7 +14812,6 @@ dependencies = [ "keccak-hash", "parity-scale-codec", "pbkdf2", - "polkadot-sdk", "regex", "schnorrkel", "scrypt", @@ -14306,19 +14820,21 @@ dependencies = [ "serde", "serde_json", "sha2 0.10.8", + "sp-crypto-hashing 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "subxt-core", + "thiserror 2.0.12", "zeroize", ] [[package]] name = "subxt-utils-fetchmetadata" -version = "0.38.1" +version = "0.41.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a3c53bc3eeaacc143a2f29ace4082edd2edaccab37b69ad20befba9fb00fdb3d" +checksum = "fc868b55fe2303788dc7703457af390111940c3da4714b510983284501780ed5" dependencies = [ "hex", "parity-scale-codec", - "thiserror 1.0.64", + "thiserror 2.0.12", ] [[package]] @@ -14384,6 +14900,21 @@ dependencies = [ "syn 2.0.111", ] +[[package]] +name = "sysinfo" +version = "0.30.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0a5b4ddaee55fb2bea2bf0e5000747e5f5c0de765e5a5ff87f4cd106439f4bb3" +dependencies = [ + "cfg-if", + "core-foundation-sys", + "libc", + "ntapi", + "once_cell", + "rayon", + "windows 0.52.0", +] + [[package]] name = "system-configuration" version = "0.6.1" @@ -14871,8 +15402,8 @@ dependencies = [ [[package]] name = "tracing-gum" -version = "19.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +version = "20.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "coarsetime", "polkadot-primitives", @@ -14883,7 +15414,7 @@ dependencies = [ [[package]] name = "tracing-gum-proc-macro" version = "5.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "expander", "proc-macro-crate 3.2.0", @@ -15215,9 +15746,9 @@ checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d" [[package]] name = "w3f-bls" -version = "0.1.4" +version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c5da5fa2c6afa2c9158eaa7cd9aee249765eb32b5fb0c63ad8b9e79336a47ec" +checksum = "e6bfb937b3d12077654a9e43e32a4e9c20177dd9fea0f3aba673e7840bb54f32" dependencies = [ "ark-bls12-377", "ark-bls12-381 0.4.0", @@ -15226,14 +15757,12 @@ dependencies = [ "ark-serialize 0.4.2", "ark-serialize-derive 0.4.2", "arrayref", - "constcat", "digest 0.10.7", "rand 0.8.5", "rand_chacha 0.3.1", "rand_core 0.6.4", "sha2 0.10.8", "sha3", - "thiserror 1.0.64", "zeroize", ] @@ -15845,6 +16374,16 @@ dependencies = [ "windows-targets 0.48.5", ] +[[package]] +name = "windows" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e48a53791691ab099e5e2ad123536d0fff50652600abaf43bbf952894110d0be" +dependencies = [ + "windows-core 0.52.0", + "windows-targets 0.52.6", +] + [[package]] name = "windows" version = "0.61.3" @@ -16328,7 +16867,7 @@ dependencies = [ [[package]] name = "xcm-procedural" version = "11.0.2" -source = "git+https://github.com/subspace/polkadot-sdk?rev=1a4f892900ab0eba51f729cca4caeaab0627efed#1a4f892900ab0eba51f729cca4caeaab0627efed" +source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" dependencies = [ "Inflector", "proc-macro2", @@ -16390,9 +16929,9 @@ checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049" [[package]] name = "yap" -version = "0.11.0" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ff4524214bc4629eba08d78ceb1d6507070cc0bcbbed23af74e19e6e924a24cf" +checksum = "bfe269e7b803a5e8e20cbd97860e136529cd83bf2c9c6d37b142467e7e1f051f" [[package]] name = "yasna" diff --git a/Cargo.toml b/Cargo.toml index ca30826eabc..878bceaa9b2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,11 @@ [workspace.package] edition = "2024" +[workspace.lints.rust] +# `substrate_runtime` is a cfg condition set by substrate-wasm-builder and used by +# `#[runtime_interface]` macro in polkadot-sdk (replaced `cfg(feature = "std")` in stable2506) +unexpected_cfgs = { level = "warn", check-cfg = ['cfg(substrate_runtime)'] } + [workspace] resolver = "2" members = [ @@ -53,7 +58,7 @@ core_affinity = "0.8.1" cpufeatures = "0.2.17" criterion = { version = "0.5.1", default-features = false } cross-domain-message-gossip = { version = "0.1.0", path = "domains/client/cross-domain-message-gossip" } -cumulus-primitives-proof-size-hostfunction = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed", default-features = false } +cumulus-primitives-proof-size-hostfunction = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } derive_more = { version = "1.0.0", default-features = false } domain-block-builder = { version = "0.1.0", path = "domains/client/block-builder", default-features = false } domain-block-preprocessor = { version = "0.1.0", path = "domains/client/block-preprocessor", default-features = false } @@ -74,24 +79,24 @@ event-listener = "5.3.1" event-listener-primitives = "2.0.1" evm-domain-runtime = { version = "0.1.0", path = "domains/runtime/evm" } evm-domain-test-runtime = { version = "0.1.0", path = "domains/test/runtime/evm" } -fc-consensus = { version = "2.0.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "7d1cff7f13828b563752ad8a71458cab1ea42009" } -fc-db = { version = "2.0.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "7d1cff7f13828b563752ad8a71458cab1ea42009", default-features = false } -fc-mapping-sync = { version = "2.0.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "7d1cff7f13828b563752ad8a71458cab1ea42009", default-features = false } -fc-rpc = { version = "2.0.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "7d1cff7f13828b563752ad8a71458cab1ea42009", default-features = false } -fc-rpc-core = { version = "1.1.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "7d1cff7f13828b563752ad8a71458cab1ea42009" } -fc-storage = { version = "1.0.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "7d1cff7f13828b563752ad8a71458cab1ea42009" } +fc-consensus = { version = "2.0.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "b70f725a84c1b6b7e56c9e7381d35863829a7a3c" } +fc-db = { version = "2.0.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "b70f725a84c1b6b7e56c9e7381d35863829a7a3c", default-features = false } +fc-mapping-sync = { version = "2.0.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "b70f725a84c1b6b7e56c9e7381d35863829a7a3c", default-features = false } +fc-rpc = { version = "2.0.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "b70f725a84c1b6b7e56c9e7381d35863829a7a3c", default-features = false } +fc-rpc-core = { version = "1.1.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "b70f725a84c1b6b7e56c9e7381d35863829a7a3c" } +fc-storage = { version = "1.0.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "b70f725a84c1b6b7e56c9e7381d35863829a7a3c" } fdlimit = "0.3.0" -fp-account = { version = "1.0.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "7d1cff7f13828b563752ad8a71458cab1ea42009", default-features = false } -fp-evm = { version = "3.0.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "7d1cff7f13828b563752ad8a71458cab1ea42009", default-features = false } -fp-rpc = { version = "3.0.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "7d1cff7f13828b563752ad8a71458cab1ea42009", default-features = false } -fp-self-contained = { version = "1.0.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "7d1cff7f13828b563752ad8a71458cab1ea42009", default-features = false } -frame-benchmarking = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed", default-features = false } -frame-benchmarking-cli = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed", default-features = false } -frame-executive = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed", default-features = false } -frame-support = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed", default-features = false } -frame-system = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed", default-features = false } -frame-system-benchmarking = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed", default-features = false } -frame-system-rpc-runtime-api = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed", default-features = false } +fp-account = { version = "1.0.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "b70f725a84c1b6b7e56c9e7381d35863829a7a3c", default-features = false } +fp-evm = { version = "3.0.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "b70f725a84c1b6b7e56c9e7381d35863829a7a3c", default-features = false } +fp-rpc = { version = "3.0.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "b70f725a84c1b6b7e56c9e7381d35863829a7a3c", default-features = false } +fp-self-contained = { version = "1.0.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "b70f725a84c1b6b7e56c9e7381d35863829a7a3c", default-features = false } +frame-benchmarking = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } +frame-benchmarking-cli = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } +frame-executive = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } +frame-support = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } +frame-system = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } +frame-system-benchmarking = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } +frame-system-rpc-runtime-api = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } fs2 = "0.4.3" fs4 = "0.9.1" futures = "0.3.31" @@ -108,10 +113,10 @@ libp2p-swarm-test = { version = "0.6.0", git = "https://github.com/subspace/rust libsecp256k1 = "0.7.1" log = { version = "0.4.22", default-features = false } memmap2 = "0.9.5" -memory-db = { version = "0.32.0", default-features = false } +memory-db = { version = "0.34.0", default-features = false } mimalloc = "0.1.43" -mmr-gadget = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -mmr-rpc = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } +mmr-gadget = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +mmr-rpc = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } multihash = "0.19.1" nohash-hasher = "0.2.0" num-traits = { version = "0.2.18", default-features = false } @@ -119,43 +124,43 @@ num_cpus = "1.16.0" num_enum = { version = "0.5.3", default-features = false } ouroboros = "0.18.4" pallet-auto-id = { version = "0.1.0", path = "domains/pallets/auto-id", default-features = false } -pallet-balances = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed", default-features = false } +pallet-balances = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } pallet-block-fees = { version = "0.1.0", path = "domains/pallets/block-fees", default-features = false } -pallet-collective = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed", default-features = false } -pallet-democracy = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed", default-features = false } +pallet-collective = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } +pallet-democracy = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } pallet-domain-id = { version = "0.1.0", path = "domains/pallets/domain-id", default-features = false } pallet-domain-sudo = { version = "0.1.0", path = "domains/pallets/domain-sudo", default-features = false } pallet-domains = { version = "0.1.0", path = "crates/pallet-domains", default-features = false } -pallet-ethereum = { version = "4.0.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "7d1cff7f13828b563752ad8a71458cab1ea42009", default-features = false } -pallet-evm = { version = "6.0.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "7d1cff7f13828b563752ad8a71458cab1ea42009", default-features = false } -pallet-evm-chain-id = { version = "1.0.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "7d1cff7f13828b563752ad8a71458cab1ea42009", default-features = false } -pallet-evm-precompile-modexp = { version = "2.0.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "7d1cff7f13828b563752ad8a71458cab1ea42009", default-features = false } -pallet-evm-precompile-sha3fips = { version = "2.0.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "7d1cff7f13828b563752ad8a71458cab1ea42009", default-features = false } -pallet-evm-precompile-simple = { version = "2.0.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "7d1cff7f13828b563752ad8a71458cab1ea42009", default-features = false } +pallet-ethereum = { version = "4.0.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "b70f725a84c1b6b7e56c9e7381d35863829a7a3c", default-features = false } +pallet-evm = { version = "6.0.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "b70f725a84c1b6b7e56c9e7381d35863829a7a3c", default-features = false } +pallet-evm-chain-id = { version = "1.0.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "b70f725a84c1b6b7e56c9e7381d35863829a7a3c", default-features = false } +pallet-evm-precompile-modexp = { version = "2.0.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "b70f725a84c1b6b7e56c9e7381d35863829a7a3c", default-features = false } +pallet-evm-precompile-sha3fips = { version = "2.0.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "b70f725a84c1b6b7e56c9e7381d35863829a7a3c", default-features = false } +pallet-evm-precompile-simple = { version = "2.0.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "b70f725a84c1b6b7e56c9e7381d35863829a7a3c", default-features = false } pallet-evm-tracker = { version = "0.1.0", path = "domains/pallets/evm-tracker", default-features = false } pallet-messenger = { version = "0.1.0", path = "domains/pallets/messenger", default-features = false } -pallet-mmr = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed", default-features = false } -pallet-multisig = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed", default-features = false } -pallet-preimage = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed", default-features = false } +pallet-mmr = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } +pallet-multisig = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } +pallet-preimage = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } pallet-rewards = { version = "0.1.0", path = "crates/pallet-rewards", default-features = false } pallet-runtime-configs = { version = "0.1.0", path = "crates/pallet-runtime-configs", default-features = false } -pallet-scheduler = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed", default-features = false } +pallet-scheduler = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } pallet-storage-overlay-checks = { version = "0.1.0", path = "domains/test/pallets/storage_overlay_checks", default-features = false } pallet-subspace = { version = "0.1.0", path = "crates/pallet-subspace", default-features = false } pallet-subspace-mmr = { version = "0.1.0", path = "crates/pallet-subspace-mmr", default-features = false } -pallet-sudo = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed", default-features = false } -pallet-timestamp = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed", default-features = false } +pallet-sudo = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } +pallet-timestamp = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } pallet-transaction-fees = { version = "0.1.0", path = "crates/pallet-transaction-fees", default-features = false } -pallet-transaction-payment = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed", default-features = false } -pallet-transaction-payment-rpc = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed", default-features = false } +pallet-transaction-payment = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } +pallet-transaction-payment-rpc = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } pallet-transporter = { version = "0.1.0", path = "domains/pallets/transporter", default-features = false } -pallet-utility = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed", default-features = false } +pallet-utility = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } parity-scale-codec = { version = "3.7.5", default-features = false } parking_lot = "0.12.2" pem = "3.0.4" pin-project = "1.1.5" -precompile-utils = { version = "0.1.0", git = "https://github.com/polkadot-evm/frontier", rev = "7d1cff7f13828b563752ad8a71458cab1ea42009", default-features = false } +precompile-utils = { version = "0.1.0", git = "https://github.com/polkadot-evm/frontier", rev = "b70f725a84c1b6b7e56c9e7381d35863829a7a3c", default-features = false } prometheus = { version = "0.13.0", default-features = false } prometheus-client = "0.23.1" prop-test = "0.1.1" @@ -168,42 +173,42 @@ ring = "0.17.8" rlp = "0.6" rs_merkle = { version = "1.4.2", default-features = false } rust-kzg-blst = { git = "https://github.com/grandinetech/rust-kzg", rev = "8f5f1a0f73b3c529c77cb880ff8d265830c7d7ac", default-features = false } -sc-basic-authorship = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -sc-block-builder = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -sc-chain-spec = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -sc-cli = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed", default-features = false } -sc-client-api = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -sc-client-db = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -sc-consensus = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -sc-consensus-slots = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } +sc-basic-authorship = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sc-block-builder = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sc-chain-spec = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sc-cli = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } +sc-client-api = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sc-client-db = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sc-consensus = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sc-consensus-slots = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } sc-consensus-subspace = { version = "0.1.0", path = "crates/sc-consensus-subspace" } sc-consensus-subspace-rpc = { version = "0.1.0", path = "crates/sc-consensus-subspace-rpc" } sc-domains = { version = "0.1.0", path = "crates/sc-domains" } -sc-executor = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed", default-features = false } -sc-informant = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -sc-keystore = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -sc-network = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -sc-network-common = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -sc-network-gossip = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -sc-network-sync = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed", default-features = false } -sc-network-transactions = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -sc-offchain = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } +sc-executor = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } +sc-informant = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sc-keystore = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sc-network = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sc-network-common = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sc-network-gossip = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sc-network-sync = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } +sc-network-transactions = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sc-offchain = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } sc-proof-of-time = { version = "0.1.0", path = "crates/sc-proof-of-time" } -sc-rpc = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -sc-rpc-api = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -sc-rpc-server = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -sc-service = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed", default-features = false } -sc-state-db = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -sc-storage-monitor = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed", default-features = false } +sc-rpc = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sc-rpc-api = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sc-rpc-server = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sc-service = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } +sc-state-db = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sc-storage-monitor = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } sc-subspace-block-relay = { version = "0.1.0", path = "crates/sc-subspace-block-relay" } sc-subspace-chain-specs = { version = "0.1.0", path = "crates/sc-subspace-chain-specs" } sc-subspace-sync-common = { version = "0.1.0", path = "shared/sc-subspace-sync-common", default-features = false } -sc-sysinfo = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed", default-features = false } -sc-telemetry = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -sc-tracing = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -sc-transaction-pool = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -sc-transaction-pool-api = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -sc-utils = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } +sc-sysinfo = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } +sc-telemetry = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sc-tracing = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sc-transaction-pool = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sc-transaction-pool-api = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sc-utils = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } scale-info = { version = "2.11.6", default-features = false } schnellru = "0.2.4" schnorrkel = { version = "0.11.4", default-features = false } @@ -212,48 +217,48 @@ serde = { version = "1.0.216", default-features = false } serde-big-array = "0.5.1" serde_json = "1.0.133" sha2 = { version = "0.10.7", default-features = false } -sp-api = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed", default-features = false } -sp-application-crypto = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed", default-features = false } -sp-arithmetic = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed", default-features = false } +sp-api = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } +sp-application-crypto = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } +sp-arithmetic = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } sp-auto-id = { version = "0.1.0", path = "domains/primitives/auto-id", default-features = false } -sp-block-builder = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed", default-features = false } +sp-block-builder = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } sp-block-fees = { version = "0.1.0", path = "domains/primitives/block-fees", default-features = false } -sp-blockchain = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed", default-features = false } -sp-consensus = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -sp-consensus-slots = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed", default-features = false } +sp-blockchain = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } +sp-consensus = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sp-consensus-slots = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } sp-consensus-subspace = { version = "0.1.0", path = "crates/sp-consensus-subspace", default-features = false } -sp-core = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed", default-features = false } +sp-core = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } sp-domain-digests = { version = "0.1.0", path = "domains/primitives/digests", default-features = false } sp-domain-sudo = { version = "0.1.0", path = "domains/primitives/domain-sudo", default-features = false } sp-domains = { version = "0.1.0", path = "crates/sp-domains", default-features = false } sp-domains-fraud-proof = { version = "0.1.0", path = "crates/sp-domains-fraud-proof", default-features = false } sp-evm-tracker = { version = "0.1.0", path = "domains/primitives/evm-tracker", default-features = false } sp-executive = { version = "0.1.0", path = "domains/primitives/executive", default-features = false } -sp-externalities = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed", default-features = false } +sp-externalities = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } sp-evm-precompiles = { version = "0.1.0", path = "domains/primitives/evm-precompiles", default-features = false } -sp-genesis-builder = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed", default-features = false } -sp-inherents = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed", default-features = false } -sp-io = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed", default-features = false } -sp-keyring = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -sp-keystore = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } +sp-genesis-builder = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } +sp-inherents = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } +sp-io = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } +sp-keyring = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sp-keystore = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } sp-messenger = { version = "0.1.0", path = "domains/primitives/messenger", default-features = false } sp-messenger-host-functions = { version = "0.1.0", path = "domains/primitives/messenger-host-functions", default-features = false } -sp-mmr-primitives = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed", default-features = false } +sp-mmr-primitives = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } sp-objects = { version = "0.1.0", path = "crates/sp-objects", default-features = false } -sp-offchain = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed", default-features = false } -sp-runtime = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed", default-features = false } -sp-runtime-interface = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed", default-features = false } -sp-session = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed", default-features = false } -sp-state-machine = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed", default-features = false } -sp-std = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed", default-features = false } -sp-storage = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed", default-features = false } +sp-offchain = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } +sp-runtime = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } +sp-runtime-interface = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } +sp-session = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } +sp-state-machine = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } +sp-std = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } +sp-storage = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } sp-subspace-mmr = { version = "0.1.0", path = "crates/sp-subspace-mmr", default-features = false } -sp-timestamp = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed", default-features = false } -sp-tracing = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed", default-features = false } -sp-transaction-pool = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed", default-features = false } -sp-trie = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed", default-features = false } -sp-version = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed", default-features = false } -sp-weights = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed", default-features = false } +sp-timestamp = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } +sp-tracing = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } +sp-transaction-pool = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } +sp-trie = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } +sp-version = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } +sp-weights = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } spin = "0.9.7" sppark = { version = "0.1.8", git = "https://github.com/autonomys/sppark", rev = "b2a181eb99c8200f1a604f04122551ea39fbf63f" } ss58-registry = "1.51.0" @@ -282,11 +287,11 @@ subspace-test-runtime = { version = "0.1.0", path = "test/subspace-test-runtime" subspace-test-service = { version = "0.1.0", path = "test/subspace-test-service" } subspace-verification = { version = "0.1.0", path = "crates/subspace-verification", default-features = false } substrate-bip39 = "0.6.0" -substrate-build-script-utils = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -substrate-frame-rpc-system = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -substrate-prometheus-endpoint = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -substrate-test-client = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -substrate-wasm-builder = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } +substrate-build-script-utils = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +substrate-frame-rpc-system = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +substrate-prometheus-endpoint = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +substrate-test-client = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +substrate-wasm-builder = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } supports-color = "3.0.1" tempfile = "3.13.0" thiserror = { version = "2.0.0", default-features = false } @@ -385,51 +390,51 @@ lto = "fat" # Reason: We need to patch substrate dependency of frontier to our fork # TODO: Remove if/when we are using upstream substrate instead of fork [patch."https://github.com/paritytech/polkadot-sdk.git"] -cumulus-primitives-storage-weight-reclaim = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -frame-benchmarking = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -frame-support = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -frame-system = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -sc-block-builder = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -sc-client-db = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -sc-consensus = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -sc-consensus-slots = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -sc-client-api = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -sc-network = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -sc-network-common = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -sc-network-sync = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -sc-rpc = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -sc-service = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -sc-telemetry = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -sc-transaction-pool = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -sc-transaction-pool-api = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -sc-utils = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -sp-api = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -sp-application-crypto = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -sp-arithmetic = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -sp-block-builder = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -sp-blockchain = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -sp-consensus = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -sp-consensus-slots = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -sp-core = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -sp-crypto-hashing = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -sp-database = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -sp-debug-derive = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -sp-externalities = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -sp-inherents = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -sp-io = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -sp-keystore = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -sp-runtime = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -sp-runtime-interface = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -sp-state-machine = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -sp-std = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -sp-storage = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -sp-timestamp = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -sp-trie = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -sp-version = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -sp-weights = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -staging-xcm = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -substrate-prometheus-endpoint = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } -xcm-procedural = { git = "https://github.com/subspace/polkadot-sdk", rev = "1a4f892900ab0eba51f729cca4caeaab0627efed" } +cumulus-primitives-storage-weight-reclaim = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +frame-benchmarking = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +frame-support = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +frame-system = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sc-block-builder = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sc-client-db = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sc-consensus = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sc-consensus-slots = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sc-client-api = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sc-network = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sc-network-common = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sc-network-sync = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sc-rpc = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sc-service = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sc-telemetry = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sc-transaction-pool = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sc-transaction-pool-api = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sc-utils = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sp-api = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sp-application-crypto = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sp-arithmetic = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sp-block-builder = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sp-blockchain = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sp-consensus = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sp-consensus-slots = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sp-core = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sp-crypto-hashing = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sp-database = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sp-debug-derive = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sp-externalities = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sp-inherents = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sp-io = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sp-keystore = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sp-runtime = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sp-runtime-interface = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sp-state-machine = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sp-std = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sp-storage = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sp-timestamp = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sp-trie = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sp-version = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sp-weights = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +staging-xcm = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +substrate-prometheus-endpoint = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +xcm-procedural = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } [patch."https://github.com/subspace/polkadot-sdk.git"] # De-duplicate extra copy that comes from Substrate repo diff --git a/crates/pallet-domains/src/benchmarking.rs b/crates/pallet-domains/src/benchmarking.rs index 2599306b8dc..e6cd418bbdb 100644 --- a/crates/pallet-domains/src/benchmarking.rs +++ b/crates/pallet-domains/src/benchmarking.rs @@ -1474,7 +1474,10 @@ mod benchmarks { if let Some(parent_block_number) = block_number.checked_sub(&One::one()) { Domains::::on_finalize(parent_block_number); } - System::::set_block_number(block_number); + // Set to parent block number so initialize() sees strictly sequential increment + if let Some(parent_block_number) = block_number.checked_sub(&One::one()) { + System::::set_block_number(parent_block_number); + } System::::initialize(&block_number, &parent_hash, &Default::default()); BlockRandomness::::put(Randomness::default()); Domains::::on_initialize(block_number); diff --git a/crates/pallet-domains/src/lib.rs b/crates/pallet-domains/src/lib.rs index 15022c7eb40..3039020f80f 100644 --- a/crates/pallet-domains/src/lib.rs +++ b/crates/pallet-domains/src/lib.rs @@ -327,9 +327,9 @@ mod pallet { use subspace_runtime_primitives::StorageFee; #[pallet::config] - pub trait Config: frame_system::Config + From> { - type RuntimeEvent: From> + IsType<::RuntimeEvent>; - + pub trait Config: + frame_system::Config + From, RuntimeEvent: From>> + { /// Origin for domain call. type DomainOrigin: EnsureOrigin; diff --git a/crates/pallet-domains/src/mock.rs b/crates/pallet-domains/src/mock.rs index 38c8aa4e43a..7db19c89567 100644 --- a/crates/pallet-domains/src/mock.rs +++ b/crates/pallet-domains/src/mock.rs @@ -53,6 +53,7 @@ pub(crate) type AccountId = u128; #[derive_impl(frame_system::config_preludes::TestDefaultConfig)] impl frame_system::Config for Test { + type RuntimeEvent = RuntimeEvent; type Block = Block; type Hash = Hash; type AccountId = AccountId; @@ -122,6 +123,7 @@ parameter_types! { #[derive_impl(pallet_balances::config_preludes::TestDefaultConfig as pallet_balances::DefaultConfig)] impl pallet_balances::Config for Test { + type RuntimeEvent = RuntimeEvent; type Balance = Balance; type ExistentialDeposit = ExistentialDeposit; type AccountStore = System; @@ -243,7 +245,6 @@ impl sp_domains::DomainsTransfersTracker for MockDomainsTransfersTracke } impl crate::Config for Test { - type RuntimeEvent = RuntimeEvent; type DomainHash = sp_core::H256; type Balance = Balance; type DomainHeader = DomainHeader; @@ -303,7 +304,6 @@ impl domain_pallet_executive::ExtrinsicStorageFees for ExtrinsicStorageFee } impl domain_pallet_executive::Config for Test { - type RuntimeEvent = RuntimeEvent; type WeightInfo = (); type Currency = Balances; type LengthToFee = IdentityFee; @@ -341,7 +341,6 @@ parameter_types! { } impl pallet_subspace::Config for Test { - type RuntimeEvent = RuntimeEvent; type SubspaceOrigin = pallet_subspace::EnsureSubspaceOrigin; type BlockAuthoringDelay = BlockAuthoringDelay; type PotEntropyInjectionInterval = PotEntropyInjectionInterval; diff --git a/crates/pallet-domains/src/runtime_registry.rs b/crates/pallet-domains/src/runtime_registry.rs index 3815ea73f97..f7867cd2ada 100644 --- a/crates/pallet-domains/src/runtime_registry.rs +++ b/crates/pallet-domains/src/runtime_registry.rs @@ -317,7 +317,7 @@ pub(crate) fn do_upgrade_runtimes(at: BlockNumberFor) { frame_system::Pallet::::deposit_log(DigestItem::domain_runtime_upgrade(runtime_id)); // deposit event to signal runtime upgrade is complete - frame_system::Pallet::::deposit_event(::RuntimeEvent::from( + frame_system::Pallet::::deposit_event(::RuntimeEvent::from( Event::DomainRuntimeUpgraded { runtime_id }, )); } diff --git a/crates/pallet-domains/src/tests.rs b/crates/pallet-domains/src/tests.rs index 7ef04ee869f..d983535cde7 100644 --- a/crates/pallet-domains/src/tests.rs +++ b/crates/pallet-domains/src/tests.rs @@ -199,7 +199,8 @@ pub(crate) fn run_to_block(block_number: BlockNumberFor, parent_ha frame_system::Pallet::::finalize(); // Initialize current block - frame_system::Pallet::::set_block_number(block_number); + // set_block_number to parent so that initialize() sees the correct previous block + frame_system::Pallet::::set_block_number(block_number - One::one()); frame_system::Pallet::::initialize(&block_number, &parent_hash, &Default::default()); // on_initialize() does not run on the genesis block if block_number > Zero::zero() { diff --git a/crates/pallet-rewards/src/lib.rs b/crates/pallet-rewards/src/lib.rs index 12afbefeed9..3ff8f96e918 100644 --- a/crates/pallet-rewards/src/lib.rs +++ b/crates/pallet-rewards/src/lib.rs @@ -71,10 +71,7 @@ mod pallet { pub struct Pallet(_); #[pallet::config] - pub trait Config: frame_system::Config { - /// `pallet-rewards` events - type RuntimeEvent: From> + IsType<::RuntimeEvent>; - + pub trait Config: frame_system::Config>> { type Currency: Currency; /// Number of blocks over which to compute average blockspace usage diff --git a/crates/pallet-rewards/src/mock.rs b/crates/pallet-rewards/src/mock.rs index ff1f662a5c9..6bd656aee9a 100644 --- a/crates/pallet-rewards/src/mock.rs +++ b/crates/pallet-rewards/src/mock.rs @@ -61,7 +61,6 @@ impl FindVotingRewardAddresses for MockFindVotingR } impl crate::Config for Test { - type RuntimeEvent = RuntimeEvent; type Currency = Balances; type AvgBlockspaceUsageNumBlocks = ConstU32<10>; type TransactionByteFee = ConstU128<1>; diff --git a/crates/pallet-subspace/src/lib.rs b/crates/pallet-subspace/src/lib.rs index 367379be995..b86388166e4 100644 --- a/crates/pallet-subspace/src/lib.rs +++ b/crates/pallet-subspace/src/lib.rs @@ -182,10 +182,7 @@ pub mod pallet { #[pallet::config] #[pallet::disable_frame_system_supertrait_check] - pub trait Config: frame_system::Config { - /// The overarching event type. - type RuntimeEvent: From> + IsType<::RuntimeEvent>; - + pub trait Config: frame_system::Config>> { /// Origin for subspace call. type SubspaceOrigin: EnsureOrigin; diff --git a/crates/pallet-subspace/src/mock.rs b/crates/pallet-subspace/src/mock.rs index 2420e9b9b46..d42b4d1bb03 100644 --- a/crates/pallet-subspace/src/mock.rs +++ b/crates/pallet-subspace/src/mock.rs @@ -128,7 +128,6 @@ parameter_types! { } impl Config for Test { - type RuntimeEvent = RuntimeEvent; type SubspaceOrigin = pallet_subspace::EnsureSubspaceOrigin; type BlockAuthoringDelay = BlockAuthoringDelay; type PotEntropyInjectionInterval = PotEntropyInjectionInterval; @@ -186,6 +185,10 @@ pub fn go_to_block( ); System::reset_events(); + // Set block number to block-1 so that initialize() sees the correct previous block. + // This is needed because initialize() now asserts strictly sequential block numbers, + // but tests may skip blocks to simulate missed slots. + frame_system::Pallet::::set_block_number(block - 1); System::initialize(&block, &parent_hash, &pre_digest); Subspace::on_initialize(block); diff --git a/crates/pallet-transaction-fees/src/lib.rs b/crates/pallet-transaction-fees/src/lib.rs index 008ce89288d..11f39b0f4c7 100644 --- a/crates/pallet-transaction-fees/src/lib.rs +++ b/crates/pallet-transaction-fees/src/lib.rs @@ -39,10 +39,7 @@ mod pallet { use subspace_runtime_primitives::{BlockTransactionByteFee, FindBlockRewardAddress}; #[pallet::config] - pub trait Config: frame_system::Config { - /// `pallet-transaction-fees` events - type RuntimeEvent: From> + IsType<::RuntimeEvent>; - + pub trait Config: frame_system::Config>> { /// Minimum desired number of replicas of the blockchain to be stored by the network, /// impacts storage fees. #[pallet::constant] diff --git a/crates/sp-consensus-subspace/Cargo.toml b/crates/sp-consensus-subspace/Cargo.toml index 767894723c8..d3fea644a91 100644 --- a/crates/sp-consensus-subspace/Cargo.toml +++ b/crates/sp-consensus-subspace/Cargo.toml @@ -65,3 +65,6 @@ std = [ ] runtime-benchmarks = [] + +[lints] +workspace = true diff --git a/crates/sp-consensus-subspace/src/lib.rs b/crates/sp-consensus-subspace/src/lib.rs index 1bb385a234e..d3dda3a7a2b 100644 --- a/crates/sp-consensus-subspace/src/lib.rs +++ b/crates/sp-consensus-subspace/src/lib.rs @@ -20,8 +20,10 @@ use sp_core::H256; use sp_io::hashing; use sp_runtime::traits::NumberFor; use sp_runtime::{ConsensusEngineId, Justification}; -use sp_runtime_interface::pass_by::PassBy; -use sp_runtime_interface::{pass_by, runtime_interface}; +use sp_runtime_interface::pass_by::{ + AllocateAndReturnByCodec, PassFatPointerAndDecode, PassPointerAndReadCopy, +}; +use sp_runtime_interface::runtime_interface; use sp_std::num::NonZeroU32; use sp_weights::Weight; use subspace_core_primitives::hashes::Blake3Hash; @@ -366,10 +368,6 @@ impl From<&Solution> for WrappedSolution { } } -impl PassBy for WrappedSolution { - type PassBy = pass_by::Codec; -} - /// Wrapped solution verification parameters for the purposes of runtime interface. #[derive(Debug, Encode, Decode)] pub struct WrappedVerifySolutionParams<'a>(Cow<'a, VerifySolutionParams>); @@ -381,10 +379,6 @@ impl<'a> From<&'a VerifySolutionParams> for WrappedVerifySolutionParams<'a> { } } -impl PassBy for WrappedVerifySolutionParams<'_> { - type PassBy = pass_by::Codec; -} - /// Wrapped proof of time output for the purposes of runtime interface. #[derive(Debug, Encode, Decode)] pub struct WrappedPotOutput(PotOutput); @@ -396,10 +390,6 @@ impl From for WrappedPotOutput { } } -impl PassBy for WrappedPotOutput { - type PassBy = pass_by::Codec; -} - #[cfg(feature = "std")] sp_externalities::decl_extension! { /// A KZG extension. @@ -454,10 +444,10 @@ pub trait Consensus { /// success. fn verify_solution( &mut self, - solution: WrappedSolution, + solution: PassFatPointerAndDecode, slot: SlotNumber, - params: WrappedVerifySolutionParams<'_>, - ) -> Result { + params: PassFatPointerAndDecode>, + ) -> AllocateAndReturnByCodec> { // TODO: we need to conditional compile for benchmarks here since // benchmark externalities does not provide custom extensions. // Remove this once the issue is resolved: https://github.com/paritytech/polkadot-sdk/issues/137 @@ -512,9 +502,9 @@ pub trait Consensus { /// fork of the chain. fn is_proof_of_time_valid( &mut self, - parent_hash: BlockHash, + parent_hash: PassPointerAndReadCopy, slot: SlotNumber, - proof_of_time: WrappedPotOutput, + proof_of_time: PassFatPointerAndDecode, quick_verification: bool, ) -> bool { // TODO: we need to conditional compile for benchmarks here since diff --git a/crates/sp-domains-fraud-proof/Cargo.toml b/crates/sp-domains-fraud-proof/Cargo.toml index 1b8ad08f4d7..98f71f37907 100644 --- a/crates/sp-domains-fraud-proof/Cargo.toml +++ b/crates/sp-domains-fraud-proof/Cargo.toml @@ -109,3 +109,6 @@ runtime-benchmarks = [ [[bench]] name = "fraud_proof_verification" harness = false + +[lints] +workspace = true diff --git a/crates/sp-domains-fraud-proof/benches/fraud_proof_verification.rs b/crates/sp-domains-fraud-proof/benches/fraud_proof_verification.rs index f7b1a67ed41..0289b885c62 100644 --- a/crates/sp-domains-fraud-proof/benches/fraud_proof_verification.rs +++ b/crates/sp-domains-fraud-proof/benches/fraud_proof_verification.rs @@ -150,7 +150,10 @@ fn mmr_proof_and_runtime_code_proof_verification(c: &mut Criterion) { let mut overlay = OverlayedChanges::default(); let state = ferdie .backend - .state_at(ferdie.client.info().best_hash) + .state_at( + ferdie.client.info().best_hash, + sc_client_api::TrieCacheContext::Trusted, + ) .unwrap(); let mut ext = Ext::new(&mut overlay, &state, None); diff --git a/crates/sp-domains-fraud-proof/src/execution_prover.rs b/crates/sp-domains-fraud-proof/src/execution_prover.rs index 250cc9a55d1..7d0b1753342 100644 --- a/crates/sp-domains-fraud-proof/src/execution_prover.rs +++ b/crates/sp-domains-fraud-proof/src/execution_prover.rs @@ -46,7 +46,9 @@ where call_data: &[u8], delta_changes: Option<(BackendTransaction>, Block::Hash)>, ) -> sp_blockchain::Result { - let state = self.backend.state_at(at)?; + let state = self + .backend + .state_at(at, sc_client_api::TrieCacheContext::Trusted)?; let trie_backend = state.as_trie_backend(); diff --git a/crates/sp-domains-fraud-proof/src/lib.rs b/crates/sp-domains-fraud-proof/src/lib.rs index f6d510ab0a8..bac5966e6d1 100644 --- a/crates/sp-domains-fraud-proof/src/lib.rs +++ b/crates/sp-domains-fraud-proof/src/lib.rs @@ -40,8 +40,6 @@ use sp_domains::{DomainAllowlistUpdates, PermissionedActionAllowedBy}; use sp_runtime::OpaqueExtrinsic; use sp_runtime::traits::{Header as HeaderT, NumberFor}; use sp_runtime::transaction_validity::{InvalidTransaction, TransactionValidity}; -use sp_runtime_interface::pass_by; -use sp_runtime_interface::pass_by::PassBy; use subspace_core_primitives::U256; use subspace_runtime_primitives::{Balance, Moment}; @@ -108,10 +106,6 @@ pub struct DomainInherentExtrinsicData { Option>, } -impl PassBy for DomainInherentExtrinsicData { - type PassBy = pass_by::Codec; -} - #[derive(Debug, Decode, Encode, TypeInfo, PartialEq, Eq, Clone)] pub struct DomainInherentExtrinsic { domain_timestamp_extrinsic: Vec, @@ -128,10 +122,6 @@ pub enum DomainStorageKeyRequest { Transfers, } -impl PassBy for DomainStorageKeyRequest { - type PassBy = pass_by::Codec; -} - #[derive(Debug, Decode, Encode, TypeInfo, PartialEq, Eq, Clone)] pub enum StatelessDomainRuntimeCall { IsTxInRange { @@ -144,10 +134,6 @@ pub enum StatelessDomainRuntimeCall { IsValidDomainSudoCall(Vec), } -impl PassBy for StatelessDomainRuntimeCall { - type PassBy = pass_by::Codec; -} - sp_api::decl_runtime_apis! { /// API necessary for fraud proof. #[api_version(2)] diff --git a/crates/sp-domains-fraud-proof/src/runtime_interface.rs b/crates/sp-domains-fraud-proof/src/runtime_interface.rs index 4a85e8970e5..00fae6c7eba 100644 --- a/crates/sp-domains-fraud-proof/src/runtime_interface.rs +++ b/crates/sp-domains-fraud-proof/src/runtime_interface.rs @@ -14,6 +14,10 @@ use sp_core::H256; #[cfg(feature = "std")] use sp_externalities::ExternalitiesExt; use sp_runtime::OpaqueExtrinsic; +use sp_runtime_interface::pass_by::{ + AllocateAndReturnByCodec, PassFatPointerAndDecode, PassFatPointerAndRead, + PassPointerAndReadCopy, +}; use sp_runtime_interface::runtime_interface; use sp_weights::Weight; @@ -23,9 +27,9 @@ pub trait FraudProofRuntimeInterface { /// Derive the bundle digest for the given bundle body. fn derive_bundle_digest( &mut self, - domain_runtime_code: Vec, - bundle_body: Vec, - ) -> Option { + domain_runtime_code: PassFatPointerAndDecode>, + bundle_body: PassFatPointerAndDecode>, + ) -> AllocateAndReturnByCodec> { self.extension::() .expect("No `FraudProofExtension` associated for the current context!") .derive_bundle_digest(domain_runtime_code, bundle_body) @@ -34,13 +38,13 @@ pub trait FraudProofRuntimeInterface { /// Check the execution proof with also included domain block id. fn execution_proof_check( &mut self, - domain_block_id: (BlockNumber, H256), - pre_state_root: H256, - encoded_proof: Vec, - execution_method: &str, - call_data: &[u8], - domain_runtime_code: Vec, - ) -> Option> { + domain_block_id: PassFatPointerAndDecode<(BlockNumber, H256)>, + pre_state_root: PassPointerAndReadCopy, + encoded_proof: PassFatPointerAndDecode>, + execution_method: PassFatPointerAndRead<&str>, + call_data: PassFatPointerAndRead<&[u8]>, + domain_runtime_code: PassFatPointerAndDecode>, + ) -> AllocateAndReturnByCodec>> { self.extension::() .expect("No `FraudProofExtension` associated for the current context!") .execution_proof_check( @@ -55,12 +59,12 @@ pub trait FraudProofRuntimeInterface { fn check_extrinsics_in_single_context( &mut self, - domain_runtime_code: Vec, - domain_block_id: (BlockNumber, H256), - domain_block_state_root: H256, - bundle_extrinsics: Vec, - encoded_proof: Vec, - ) -> Option> { + domain_runtime_code: PassFatPointerAndDecode>, + domain_block_id: PassFatPointerAndDecode<(BlockNumber, H256)>, + domain_block_state_root: PassPointerAndReadCopy, + bundle_extrinsics: PassFatPointerAndDecode>, + encoded_proof: PassFatPointerAndDecode>, + ) -> AllocateAndReturnByCodec>> { self.extension::() .expect("No `FraudProofExtension` associated for the current context!") .check_extrinsics_in_single_context( @@ -74,9 +78,9 @@ pub trait FraudProofRuntimeInterface { fn construct_domain_inherent_extrinsic( &mut self, - domain_runtime_code: Vec, - domain_inherent_extrinsic_data: DomainInherentExtrinsicData, - ) -> Option { + domain_runtime_code: PassFatPointerAndDecode>, + domain_inherent_extrinsic_data: PassFatPointerAndDecode, + ) -> AllocateAndReturnByCodec> { self.extension::() .expect("No `FraudProofExtension` associated for the current context!") .construct_domain_inherent_extrinsic( @@ -87,9 +91,9 @@ pub trait FraudProofRuntimeInterface { fn domain_storage_key( &mut self, - domain_runtime_code: Vec, - req: DomainStorageKeyRequest, - ) -> Option> { + domain_runtime_code: PassFatPointerAndDecode>, + req: PassFatPointerAndDecode, + ) -> AllocateAndReturnByCodec>> { self.extension::() .expect("No `FraudProofExtension` associated for the current context!") .domain_storage_key(domain_runtime_code, req) @@ -97,9 +101,9 @@ pub trait FraudProofRuntimeInterface { fn domain_runtime_call( &mut self, - domain_runtime_code: Vec, - call: StatelessDomainRuntimeCall, - ) -> Option { + domain_runtime_code: PassFatPointerAndDecode>, + call: PassFatPointerAndDecode, + ) -> AllocateAndReturnByCodec> { self.extension::() .expect("No `FraudProofExtension` associated for the current context!") .domain_runtime_call(domain_runtime_code, call) @@ -107,9 +111,9 @@ pub trait FraudProofRuntimeInterface { fn bundle_weight( &mut self, - domain_runtime_code: Vec, - bundle_body: Vec, - ) -> Option { + domain_runtime_code: PassFatPointerAndDecode>, + bundle_body: PassFatPointerAndDecode>, + ) -> AllocateAndReturnByCodec> { self.extension::() .expect("No `FraudProofExtension` associated for the current context!") .bundle_weight(domain_runtime_code, bundle_body) @@ -117,9 +121,9 @@ pub trait FraudProofRuntimeInterface { fn extract_xdm_mmr_proof( &mut self, - domain_runtime_code: Vec, - opaque_extrinsic: Vec, - ) -> Option>> { + domain_runtime_code: PassFatPointerAndDecode>, + opaque_extrinsic: PassFatPointerAndDecode>, + ) -> AllocateAndReturnByCodec>>> { self.extension::() .expect("No `FraudProofExtension` associated for the current context!") .extract_xdm_mmr_proof(domain_runtime_code, opaque_extrinsic) diff --git a/crates/sp-domains-fraud-proof/src/storage_proof.rs b/crates/sp-domains-fraud-proof/src/storage_proof.rs index 3445ae628b5..c99296b83fd 100644 --- a/crates/sp-domains-fraud-proof/src/storage_proof.rs +++ b/crates/sp-domains-fraud-proof/src/storage_proof.rs @@ -12,8 +12,6 @@ use sp_domains::{ RuntimeId, RuntimeObject, }; use sp_runtime::traits::{Block as BlockT, HashingFor, Header as HeaderT, NumberFor, Zero}; -use sp_runtime_interface::pass_by; -use sp_runtime_interface::pass_by::PassBy; use sp_std::marker::PhantomData; use sp_std::vec::Vec; use sp_trie::StorageProof; @@ -402,10 +400,6 @@ pub struct InherentExtrinsicData { pub consensus_transaction_byte_fee: Balance, } -impl PassBy for InherentExtrinsicData { - type PassBy = pass_by::Codec; -} - #[derive(Clone, Debug, Decode, Encode, Eq, PartialEq, TypeInfo, DecodeWithMemTracking)] pub struct InvalidInherentExtrinsicDataProof(StorageProof); diff --git a/crates/sp-domains/Cargo.toml b/crates/sp-domains/Cargo.toml index 89f0d0c96f4..c636c366b87 100644 --- a/crates/sp-domains/Cargo.toml +++ b/crates/sp-domains/Cargo.toml @@ -51,6 +51,7 @@ std = [ "domain-runtime-primitives/std", "frame-support/std", "hash-db/std", + "memory-db/std", "parity-scale-codec/std", "rand/std", "rand_chacha/std", @@ -73,3 +74,6 @@ std = [ "trie-db/std", ] runtime-benchmarks = [] + +[lints] +workspace = true diff --git a/crates/sp-domains/src/lib.rs b/crates/sp-domains/src/lib.rs index 3d670fa725a..a9e4141e4ac 100644 --- a/crates/sp-domains/src/lib.rs +++ b/crates/sp-domains/src/lib.rs @@ -47,8 +47,6 @@ use sp_core::sr25519::vrf::{VrfPreOutput, VrfProof}; use sp_runtime::generic::OpaqueDigestItemId; use sp_runtime::traits::{CheckedAdd, Hash as HashT, Header as HeaderT, NumberFor}; use sp_runtime::{Digest, DigestItem, Percent}; -use sp_runtime_interface::pass_by; -use sp_runtime_interface::pass_by::PassBy; use sp_std::collections::btree_map::BTreeMap; use sp_std::fmt::{Display, Formatter}; use sp_trie::TrieLayout; @@ -199,10 +197,6 @@ impl Display for DomainId { } } -impl PassBy for DomainId { - type PassBy = pass_by::Codec; -} - /// Identifier of a chain. #[derive( Clone, diff --git a/crates/sp-domains/src/offline_operators.rs b/crates/sp-domains/src/offline_operators.rs index 6e051678335..30fbdf18968 100644 --- a/crates/sp-domains/src/offline_operators.rs +++ b/crates/sp-domains/src/offline_operators.rs @@ -119,7 +119,7 @@ fn chernoff_threshold_fp( let t = FixedU128::from(2u128) .saturating_mul(mu) .saturating_mul(ln_one_over_tau) - .try_sqrt()?; + .checked_sqrt()?; // r = floor( μ - t ), clamped to [0, S] Some( diff --git a/crates/sp-domains/src/proof_provider_and_verifier.rs b/crates/sp-domains/src/proof_provider_and_verifier.rs index 73a0f67c311..cc8b226a77a 100644 --- a/crates/sp-domains/src/proof_provider_and_verifier.rs +++ b/crates/sp-domains/src/proof_provider_and_verifier.rs @@ -23,7 +23,7 @@ use sp_trie::{LayoutV1, StorageProof, read_trie_value}; #[cfg(feature = "std")] use std::collections::BTreeSet; #[cfg(feature = "std")] -use trie_db::{DBValue, TrieDBMutBuilder, TrieLayout, TrieMut}; +use trie_db::{TrieDBMutBuilder, TrieLayout, TrieMut}; /// Verification error. #[derive(Debug, PartialEq, Eq, Encode, Decode, PalletError, TypeInfo, DecodeWithMemTracking)] @@ -111,11 +111,7 @@ impl StorageProofVerifier { } #[cfg(feature = "std")] -type MemoryDB = memory_db::MemoryDB< - ::Hash, - memory_db::HashKey<::Hash>, - DBValue, ->; +type MemoryDB = sp_trie::MemoryDB<::Hash>; /// Type that provides utilities to generate the storage proof. #[cfg(feature = "std")] @@ -156,7 +152,7 @@ where (db, root) }; - let backend = TrieBackendBuilder::new(db, root).build(); + let backend = TrieBackendBuilder::<_, ::Hash>::new(db, root).build(); let key = Compact(index).encode(); prove_read(backend, &[key]).ok() } diff --git a/crates/sp-domains/src/storage.rs b/crates/sp-domains/src/storage.rs index c2b2e6d4c36..891705d27b8 100644 --- a/crates/sp-domains/src/storage.rs +++ b/crates/sp-domains/src/storage.rs @@ -17,18 +17,19 @@ use sp_core::storage::{Storage, StorageChild}; use sp_runtime::StateVersion; use sp_state_machine::{Backend, TrieBackend, TrieBackendBuilder}; use sp_std::collections::btree_map::BTreeMap; -use sp_trie::{LayoutV0, MemoryDB, empty_trie_root}; +use sp_trie::{LayoutV0, MemoryDB, RandomState, empty_trie_root}; /// Create a new empty instance of in-memory backend. /// /// NOTE: this function is port from `sp_state_machine::in_memory_backend::new_in_mem` which is -/// only export for `std` but we need to use it in `no_std` +/// only exported behind `#[cfg(not(substrate_runtime))]` but we need to use it in runtime context. +/// We must use `sp_trie::RandomState` explicitly so the `TrieBackendStorage` impl matches. fn new_in_mem() -> TrieBackend, H> where H: Hasher, H::Out: Codec + Ord, { - let db = MemoryDB::default(); + let db = MemoryDB::with_hasher(RandomState::default()); // V1 is same as V0 for an empty trie. TrieBackendBuilder::new(db, empty_trie_root::>()).build() } diff --git a/crates/sp-subspace-mmr/Cargo.toml b/crates/sp-subspace-mmr/Cargo.toml index 0e75572a015..8199968f835 100644 --- a/crates/sp-subspace-mmr/Cargo.toml +++ b/crates/sp-subspace-mmr/Cargo.toml @@ -49,3 +49,6 @@ runtime-benchmarks = [ "sp-runtime/runtime-benchmarks", "subspace-runtime-primitives/runtime-benchmarks", ] + +[lints] +workspace = true diff --git a/crates/sp-subspace-mmr/src/runtime_interface.rs b/crates/sp-subspace-mmr/src/runtime_interface.rs index 2034411c15f..55ad939b4c2 100644 --- a/crates/sp-subspace-mmr/src/runtime_interface.rs +++ b/crates/sp-subspace-mmr/src/runtime_interface.rs @@ -10,6 +10,9 @@ use sp_core::H256; #[cfg(all(feature = "std", not(feature = "runtime-benchmarks")))] use sp_externalities::ExternalitiesExt; use sp_mmr_primitives::EncodableOpaqueLeaf; +use sp_runtime_interface::pass_by::{ + AllocateAndReturnByCodec, PassFatPointerAndDecode, PassPointerAndReadCopy, +}; use sp_runtime_interface::runtime_interface; use subspace_core_primitives::BlockNumber; @@ -17,7 +20,10 @@ use subspace_core_primitives::BlockNumber; #[runtime_interface] pub trait SubspaceMmrRuntimeInterface { /// Returns the MMR leaf for the given consensus block. - fn get_mmr_leaf_data(&mut self, consensus_block_hash: H256) -> Option { + fn get_mmr_leaf_data( + &mut self, + consensus_block_hash: PassPointerAndReadCopy, + ) -> AllocateAndReturnByCodec> { #[cfg(not(feature = "runtime-benchmarks"))] { self.extension::() @@ -38,7 +44,10 @@ pub trait SubspaceMmrRuntimeInterface { } /// Returns the consensus block hash for a given block number. - fn consensus_block_hash(&mut self, block_number: BlockNumber) -> Option { + fn consensus_block_hash( + &mut self, + block_number: BlockNumber, + ) -> AllocateAndReturnByCodec> { #[cfg(not(feature = "runtime-benchmarks"))] { self.extension::() @@ -68,8 +77,8 @@ pub trait DomainMmrRuntimeInterface { /// Verifies the given MMR proof using the leaves provided. fn verify_mmr_proof( &mut self, - leaves: Vec, - encoded_proof: Vec, + leaves: PassFatPointerAndDecode>, + encoded_proof: PassFatPointerAndDecode>, ) -> bool { #[cfg(not(feature = "runtime-benchmarks"))] { diff --git a/crates/subspace-malicious-operator/src/lib.rs b/crates/subspace-malicious-operator/src/lib.rs index 09abea3dfe4..e36bfca2e19 100644 --- a/crates/subspace-malicious-operator/src/lib.rs +++ b/crates/subspace-malicious-operator/src/lib.rs @@ -290,5 +290,6 @@ pub fn create_malicious_operator_configuration( announce_block: domain_cli_args.announce_block()?, role, base_path, + warm_up_trie_cache: None, }) } diff --git a/crates/subspace-node/src/main.rs b/crates/subspace-node/src/main.rs index 854a8f3d215..981badf471a 100644 --- a/crates/subspace-node/src/main.rs +++ b/crates/subspace-node/src/main.rs @@ -266,7 +266,7 @@ fn main() -> Result<(), Error> { let db = backend.expose_db(); let storage = backend.expose_storage(); - cmd.run(config, client, db, storage) + cmd.run(config, client, db, storage, None) } BenchmarkCmd::Overhead(_cmd) => { todo!("Not implemented") diff --git a/crates/subspace-runtime/Cargo.toml b/crates/subspace-runtime/Cargo.toml index 702816a1826..50f6612f6d4 100644 --- a/crates/subspace-runtime/Cargo.toml +++ b/crates/subspace-runtime/Cargo.toml @@ -165,3 +165,6 @@ runtime-benchmarks = [ "sp-subspace-mmr/runtime-benchmarks", "subspace-runtime-primitives/runtime-benchmarks", ] + +[lints] +workspace = true diff --git a/crates/subspace-runtime/src/lib.rs b/crates/subspace-runtime/src/lib.rs index 72c1a5c96a3..a518c9d4cbd 100644 --- a/crates/subspace-runtime/src/lib.rs +++ b/crates/subspace-runtime/src/lib.rs @@ -204,6 +204,7 @@ pub type SS58Prefix = ConstU16<6094>; // Configure FRAME pallets to include in runtime. impl frame_system::Config for Runtime { + type RuntimeEvent = RuntimeEvent; /// The basic call filter to use in dispatchable. /// /// `Everything` is used here as we use the signed extension @@ -230,7 +231,6 @@ impl frame_system::Config for Runtime { /// The block type. type Block = Block; /// The ubiquitous event type. - type RuntimeEvent = RuntimeEvent; /// The ubiquitous origin type. type RuntimeOrigin = RuntimeOrigin; /// Maximum number of block number to block hash mappings to keep (oldest pruned first). @@ -291,7 +291,6 @@ impl Get for ConfirmationDepthK { } impl pallet_subspace::Config for Runtime { - type RuntimeEvent = RuntimeEvent; type SubspaceOrigin = pallet_subspace::EnsureSubspaceOrigin; type BlockAuthoringDelay = BlockAuthoringDelay; type PotEntropyInjectionInterval = PotEntropyInjectionInterval; @@ -372,6 +371,7 @@ impl VariantCount for HoldIdentifierWrapper { } impl pallet_balances::Config for Runtime { + type RuntimeEvent = RuntimeEvent; type RuntimeFreezeReason = RuntimeFreezeReason; type MaxLocks = ConstU32<50>; type MaxReserves = (); @@ -379,7 +379,6 @@ impl pallet_balances::Config for Runtime { /// The type for recording an account's balance. type Balance = Balance; /// The ubiquitous event type. - type RuntimeEvent = RuntimeEvent; type DustRemoval = (); type ExistentialDeposit = ExistentialDeposit; type AccountStore = System; @@ -402,7 +401,6 @@ parameter_types! { } impl pallet_transaction_fees::Config for Runtime { - type RuntimeEvent = RuntimeEvent; type MinReplicationFactor = ConstU16; type CreditSupply = CreditSupply; type TotalSpacePledged = TotalSpacePledged; @@ -533,6 +531,7 @@ pub type HalfCouncil = EnsureProportionAtLeast for Runtime { + type RuntimeEvent = RuntimeEvent; type DefaultVote = pallet_collective::PrimeDefaultVote; type MaxMembers = ConstU32<100>; type MaxProposalWeight = MaxProposalWeight; @@ -540,7 +539,6 @@ impl pallet_collective::Config for Runtime { /// Duration of voting for a given council motion. type MotionDuration = CouncilMotionDuration; type Proposal = RuntimeCall; - type RuntimeEvent = RuntimeEvent; type RuntimeOrigin = RuntimeOrigin; type SetMembersOrigin = EnsureRootOr; type WeightInfo = weights::pallet_collective::WeightInfo; @@ -559,6 +557,7 @@ parameter_types! { } impl pallet_preimage::Config for Runtime { + type RuntimeEvent = RuntimeEvent; type Consideration = HoldConsideration< AccountId, Balances, @@ -567,7 +566,6 @@ impl pallet_preimage::Config for Runtime { >; type Currency = Balances; type ManagerOrigin = EnsureRoot; - type RuntimeEvent = RuntimeEvent; type WeightInfo = weights::pallet_preimage::WeightInfo; } @@ -588,13 +586,13 @@ parameter_types! { // Invalid domain runtime calls will be rejected by the domain runtime extrinsic format checks, // even if they are scheduled/democratized in the subspace runtime. impl pallet_scheduler::Config for Runtime { + type RuntimeEvent = RuntimeEvent; type MaxScheduledPerBlock = ConstU32<50>; type MaximumWeight = MaximumSchedulerWeight; type OriginPrivilegeCmp = EqualPrivilegeOnly; type PalletsOrigin = OriginCaller; type Preimages = Preimage; type RuntimeCall = RuntimeCall; - type RuntimeEvent = RuntimeEvent; type RuntimeOrigin = RuntimeOrigin; type ScheduleOrigin = EnsureRoot; type WeightInfo = weights::pallet_scheduler::WeightInfo; @@ -619,6 +617,7 @@ impl_get_council_democracy_field_block_number! {VotingPeriod, democracy_voting_p // TODO: update params for mainnnet impl pallet_democracy::Config for Runtime { + type RuntimeEvent = RuntimeEvent; type BlacklistOrigin = EnsureRoot; /// To cancel a proposal before it has been passed and slash its backers, must be root. type CancelProposalOrigin = EnsureRoot; @@ -660,7 +659,6 @@ impl pallet_democracy::Config for Runtime { type MinimumDeposit = ConstU128<{ 1000 * AI3 }>; type PalletsOrigin = OriginCaller; type Preimages = Preimage; - type RuntimeEvent = RuntimeEvent; type Scheduler = Scheduler; /// Handler for the unbalanced reduction when slashing a preimage deposit. type Slash = DemocracySlash; @@ -773,7 +771,6 @@ impl sp_messenger::DomainRegistration for DomainRegistration { } impl pallet_messenger::Config for Runtime { - type RuntimeEvent = RuntimeEvent; type SelfChainId = SelfChainId; fn get_endpoint_handler(endpoint: &Endpoint) -> Option>> { @@ -825,7 +822,7 @@ impl frame_system::offchain::CreateInherent for Runtime where RuntimeCall: From, { - fn create_inherent(call: Self::RuntimeCall) -> Self::Extrinsic { + fn create_bare(call: Self::RuntimeCall) -> Self::Extrinsic { UncheckedExtrinsic::new_bare(call) } } @@ -845,7 +842,6 @@ parameter_types! { } impl pallet_transporter::Config for Runtime { - type RuntimeEvent = RuntimeEvent; type SelfChainId = SelfChainId; type SelfEndpointId = TransporterEndpointId; type Currency = Balances; @@ -955,7 +951,6 @@ impl sp_domains::OnChainRewards for OnChainRewards { } impl pallet_domains::Config for Runtime { - type RuntimeEvent = RuntimeEvent; type DomainOrigin = pallet_domains::EnsureDomainOrigin; type DomainHash = DomainHash; type Balance = Balance; @@ -1005,7 +1000,6 @@ parameter_types! { } impl pallet_rewards::Config for Runtime { - type RuntimeEvent = RuntimeEvent; type Currency = Balances; type AvgBlockspaceUsageNumBlocks = AvgBlockspaceUsageNumBlocks; type TransactionByteFee = TransactionByteFee; diff --git a/crates/subspace-runtime/src/weights/pallet_domains.rs b/crates/subspace-runtime/src/weights/pallet_domains.rs index 204957d3d8d..bd9a3563da0 100644 --- a/crates/subspace-runtime/src/weights/pallet_domains.rs +++ b/crates/subspace-runtime/src/weights/pallet_domains.rs @@ -1,23 +1,23 @@ //! Autogenerated weights for `pallet_domains` //! -//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 46.2.0 -//! DATE: 2025-10-15, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 49.1.0 +//! DATE: 2026-03-27, STEPS: `2`, REPEAT: `1`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `protocol-team-testing`, CPU: `AMD Ryzen 5 3600 6-Core Processor` +//! HOSTNAME: `macmini`, CPU: `` //! WASM-EXECUTION: `Compiled`, CHAIN: `None`, DB CACHE: 1024 // Executed Command: -// ./target/production/subspace-node +// ./target/release/subspace-node // benchmark // pallet -// --runtime=./target/production/wbuild/subspace-runtime/subspace_runtime.compact.compressed.wasm +// --runtime=./target/release/wbuild/subspace-runtime/subspace_runtime.compact.compressed.wasm // --extrinsic=* // --wasm-execution=compiled // --genesis-builder=none // --heap-pages=4096 -// --steps=50 -// --repeat=20 +// --steps=2 +// --repeat=1 // --pallet=pallet_domains // --output=./crates/subspace-runtime/src/weights/pallet_domains.rs @@ -76,8 +76,8 @@ impl pallet_domains::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1931` // Estimated: `12821` - // Minimum execution time: 143_267_000 picoseconds. - Weight::from_parts(146_787_000, 0) + // Minimum execution time: 118_000_000 picoseconds. + Weight::from_parts(118_000_000, 0) .saturating_add(Weight::from_parts(0, 12821)) .saturating_add(T::DbWeight::get().reads(22)) .saturating_add(T::DbWeight::get().writes(17)) @@ -90,8 +90,8 @@ impl pallet_domains::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1092` // Estimated: `4557` - // Minimum execution time: 28_839_000 picoseconds. - Weight::from_parts(31_030_000, 0) + // Minimum execution time: 23_000_000 picoseconds. + Weight::from_parts(23_000_000, 0) .saturating_add(Weight::from_parts(0, 4557)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -109,20 +109,15 @@ impl pallet_domains::WeightInfo for WeightInfo { /// Storage: `Domains::DomainStakingSummary` (r:1 w:1) /// Proof: `Domains::DomainStakingSummary` (`max_values`: None, `max_size`: None, mode: `Measured`) /// The range of component `n` is `[1, 100]`. - fn handle_bad_receipt(n: u32, ) -> Weight { + fn handle_bad_receipt(_n: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `1001 + n * (192 ±0)` - // Estimated: `4466 + n * (2667 ±0)` - // Minimum execution time: 48_829_000 picoseconds. - Weight::from_parts(50_859_000, 0) - .saturating_add(Weight::from_parts(0, 4466)) - // Standard Error: 36_224 - .saturating_add(Weight::from_parts(14_965_948, 0).saturating_mul(n.into())) - .saturating_add(T::DbWeight::get().reads(4)) - .saturating_add(T::DbWeight::get().reads((2_u64).saturating_mul(n.into()))) - .saturating_add(T::DbWeight::get().writes(4)) - .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(n.into()))) - .saturating_add(Weight::from_parts(0, 2667).saturating_mul(n.into())) + // Measured: `996 + n * (192 ±0)` + // Estimated: `268731` + // Minimum execution time: 38_000_000 picoseconds. + Weight::from_parts(1_486_000_000, 0) + .saturating_add(Weight::from_parts(0, 268731)) + .saturating_add(T::DbWeight::get().reads(204)) + .saturating_add(T::DbWeight::get().writes(104)) } /// Storage: `Domains::Operators` (r:200 w:100) /// Proof: `Domains::Operators` (`max_values`: None, `max_size`: None, mode: `Measured`) @@ -132,29 +127,27 @@ impl pallet_domains::WeightInfo for WeightInfo { /// Proof: `Domains::DomainStakingSummary` (`max_values`: None, `max_size`: None, mode: `Measured`) /// Storage: `Domains::PendingSlashes` (r:1 w:1) /// Proof: `Domains::PendingSlashes` (`max_values`: None, `max_size`: None, mode: `Measured`) - /// Storage: `Domains::AccumulatedTreasuryFunds` (r:1 w:1) - /// Proof: `Domains::AccumulatedTreasuryFunds` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) /// The range of component `n` is `[1, 100]`. /// The range of component `s` is `[0, 100]`. fn confirm_domain_block(n: u32, s: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `0 + n * (364 ±0) + s * (223 ±0)` - // Estimated: `270426 + n * (2588 ±0) + s * (976 ±0)` - // Minimum execution time: 1_493_428_000 picoseconds. - Weight::from_parts(1_501_198_000, 0) + // Measured: `0 + n * (384 ±0) + s * (225 ±0)` + // Estimated: `270426 + n * (2603 ±0) + s * (1077 ±79)` + // Minimum execution time: 1_370_000_000 picoseconds. + Weight::from_parts(1_370_000_000, 0) .saturating_add(Weight::from_parts(0, 270426)) - // Standard Error: 263_059 - .saturating_add(Weight::from_parts(12_406_325, 0).saturating_mul(n.into())) - // Standard Error: 263_301 - .saturating_add(Weight::from_parts(9_421_703, 0).saturating_mul(s.into())) - .saturating_add(T::DbWeight::get().reads(3)) + // Standard Error: 7_737_932 + .saturating_add(Weight::from_parts(14_165_053, 0).saturating_mul(n.into())) + // Standard Error: 7_738_061 + .saturating_add(Weight::from_parts(8_792_747, 0).saturating_mul(s.into())) + .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads((2_u64).saturating_mul(n.into()))) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(s.into()))) - .saturating_add(T::DbWeight::get().writes(3)) + .saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(n.into()))) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(s.into()))) - .saturating_add(Weight::from_parts(0, 2588).saturating_mul(n.into())) - .saturating_add(Weight::from_parts(0, 976).saturating_mul(s.into())) + .saturating_add(Weight::from_parts(0, 2603).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(0, 1077).saturating_mul(s.into())) } /// Storage: `Domains::DomainStakingSummary` (r:1 w:1) /// Proof: `Domains::DomainStakingSummary` (`max_values`: None, `max_size`: None, mode: `Measured`) @@ -165,20 +158,15 @@ impl pallet_domains::WeightInfo for WeightInfo { /// Storage: `Domains::LatestSubmittedER` (r:100 w:0) /// Proof: `Domains::LatestSubmittedER` (`max_values`: None, `max_size`: None, mode: `Measured`) /// The range of component `n` is `[1, 100]`. - fn operator_reward_tax_and_restake(n: u32, ) -> Weight { + fn operator_reward_tax_and_restake(_n: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `464 + n * (208 ±0)` - // Estimated: `3929 + n * (2683 ±0)` - // Minimum execution time: 28_310_000 picoseconds. - Weight::from_parts(36_693_887, 0) - .saturating_add(Weight::from_parts(0, 3929)) - // Standard Error: 13_243 - .saturating_add(Weight::from_parts(5_041_426, 0).saturating_mul(n.into())) - .saturating_add(T::DbWeight::get().reads(2)) - .saturating_add(T::DbWeight::get().reads((2_u64).saturating_mul(n.into()))) - .saturating_add(T::DbWeight::get().writes(1)) - .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(n.into()))) - .saturating_add(Weight::from_parts(0, 2683).saturating_mul(n.into())) + // Measured: `460 + n * (208 ±0)` + // Estimated: `269794` + // Minimum execution time: 18_000_000 picoseconds. + Weight::from_parts(429_000_000, 0) + .saturating_add(Weight::from_parts(0, 269794)) + .saturating_add(T::DbWeight::get().reads(202)) + .saturating_add(T::DbWeight::get().writes(101)) } /// Storage: `Domains::PendingSlashes` (r:1 w:1) /// Proof: `Domains::PendingSlashes` (`max_values`: None, `max_size`: None, mode: `Measured`) @@ -203,20 +191,15 @@ impl pallet_domains::WeightInfo for WeightInfo { /// Storage: `Domains::OperatorIdOwner` (r:0 w:1) /// Proof: `Domains::OperatorIdOwner` (`max_values`: None, `max_size`: None, mode: `Measured`) /// The range of component `n` is `[0, 9]`. - fn slash_operator(n: u32, ) -> Weight { + fn slash_operator(_n: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `1352 + n * (341 ±0)` - // Estimated: `8799 + n * (2816 ±0)` - // Minimum execution time: 167_876_000 picoseconds. - Weight::from_parts(182_260_408, 0) - .saturating_add(Weight::from_parts(0, 8799)) - // Standard Error: 86_235 - .saturating_add(Weight::from_parts(62_612_061, 0).saturating_mul(n.into())) - .saturating_add(T::DbWeight::get().reads(14)) - .saturating_add(T::DbWeight::get().reads((5_u64).saturating_mul(n.into()))) - .saturating_add(T::DbWeight::get().writes(12)) - .saturating_add(T::DbWeight::get().writes((4_u64).saturating_mul(n.into()))) - .saturating_add(Weight::from_parts(0, 2816).saturating_mul(n.into())) + // Measured: `1294 + n * (347 ±0)` + // Estimated: `32636` + // Minimum execution time: 161_000_000 picoseconds. + Weight::from_parts(716_000_000, 0) + .saturating_add(Weight::from_parts(0, 32636)) + .saturating_add(T::DbWeight::get().reads(59)) + .saturating_add(T::DbWeight::get().writes(48)) } /// Storage: `Domains::DomainStakingSummary` (r:1 w:1) /// Proof: `Domains::DomainStakingSummary` (`max_values`: None, `max_size`: None, mode: `Measured`) @@ -224,7 +207,7 @@ impl pallet_domains::WeightInfo for WeightInfo { /// Proof: `Subspace::BlockSlots` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) /// Storage: `Domains::EpochStartSlot` (r:1 w:1) /// Proof: `Domains::EpochStartSlot` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) - /// Storage: `Domains::OperatorBundleCountInEpoch` (r:1 w:0) + /// Storage: `Domains::OperatorBundleCountInEpoch` (r:512 w:0) /// Proof: `Domains::OperatorBundleCountInEpoch` (`max_values`: None, `max_size`: None, mode: `Measured`) /// Storage: `Domains::DomainRegistry` (r:1 w:0) /// Proof: `Domains::DomainRegistry` (`max_values`: None, `max_size`: None, mode: `Measured`) @@ -243,18 +226,15 @@ impl pallet_domains::WeightInfo for WeightInfo { /// Storage: `Domains::OperatorEpochSharePrice` (r:0 w:512) /// Proof: `Domains::OperatorEpochSharePrice` (`max_values`: None, `max_size`: None, mode: `Measured`) /// The range of component `p` is `[0, 512]`. - fn finalize_domain_epoch_staking(p: u32, ) -> Weight { + fn finalize_domain_epoch_staking(_p: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `108279` - // Estimated: `1376469` - // Minimum execution time: 3_292_159_000 picoseconds. - Weight::from_parts(3_429_844_051, 0) - .saturating_add(Weight::from_parts(0, 1376469)) - // Standard Error: 6_943 - .saturating_add(Weight::from_parts(2_494_754, 0).saturating_mul(p.into())) - .saturating_add(T::DbWeight::get().reads(1032)) - .saturating_add(T::DbWeight::get().writes(3)) - .saturating_add(T::DbWeight::get().writes((2_u64).saturating_mul(p.into()))) + // Measured: `108253` + // Estimated: `1376443` + // Minimum execution time: 3_347_000_000 picoseconds. + Weight::from_parts(4_573_000_000, 0) + .saturating_add(Weight::from_parts(0, 1376443)) + .saturating_add(T::DbWeight::get().reads(1543)) + .saturating_add(T::DbWeight::get().writes(1027)) } /// Storage: `Domains::NextRuntimeId` (r:1 w:1) /// Proof: `Domains::NextRuntimeId` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) @@ -264,8 +244,8 @@ impl pallet_domains::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `1485` - // Minimum execution time: 21_076_570_000 picoseconds. - Weight::from_parts(21_305_945_000, 0) + // Minimum execution time: 20_555_000_000 picoseconds. + Weight::from_parts(20_555_000_000, 0) .saturating_add(Weight::from_parts(0, 1485)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) @@ -278,8 +258,8 @@ impl pallet_domains::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `2481066` // Estimated: `2484531` - // Minimum execution time: 22_573_128_000 picoseconds. - Weight::from_parts(22_732_705_000, 0) + // Minimum execution time: 21_329_000_000 picoseconds. + Weight::from_parts(21_329_000_000, 0) .saturating_add(Weight::from_parts(0, 2484531)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -318,8 +298,8 @@ impl pallet_domains::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `2481138` // Estimated: `2484603` - // Minimum execution time: 6_094_250_000 picoseconds. - Weight::from_parts(6_150_728_000, 0) + // Minimum execution time: 5_664_000_000 picoseconds. + Weight::from_parts(5_664_000_000, 0) .saturating_add(Weight::from_parts(0, 2484603)) .saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().writes(14)) @@ -346,8 +326,6 @@ impl pallet_domains::WeightInfo for WeightInfo { /// Proof: `Subspace::BlockSlots` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) /// Storage: `Domains::EpochStartSlot` (r:1 w:1) /// Proof: `Domains::EpochStartSlot` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) - /// Storage: `Domains::OperatorBundleCountInEpoch` (r:1 w:0) - /// Proof: `Domains::OperatorBundleCountInEpoch` (`max_values`: None, `max_size`: None, mode: `Measured`) /// Storage: `Domains::LatestSubmittedER` (r:1 w:0) /// Proof: `Domains::LatestSubmittedER` (`max_values`: None, `max_size`: None, mode: `Measured`) /// Storage: `Domains::InvalidBundleAuthors` (r:1 w:0) @@ -368,10 +346,10 @@ impl pallet_domains::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `684` // Estimated: `6196` - // Minimum execution time: 172_296_000 picoseconds. - Weight::from_parts(179_666_000, 0) + // Minimum execution time: 145_000_000 picoseconds. + Weight::from_parts(145_000_000, 0) .saturating_add(Weight::from_parts(0, 6196)) - .saturating_add(T::DbWeight::get().reads(17)) + .saturating_add(T::DbWeight::get().reads(16)) .saturating_add(T::DbWeight::get().writes(13)) } /// Storage: `Domains::Operators` (r:1 w:1) @@ -396,8 +374,8 @@ impl pallet_domains::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1261` // Estimated: `6196` - // Minimum execution time: 133_327_000 picoseconds. - Weight::from_parts(140_037_000, 0) + // Minimum execution time: 114_000_000 picoseconds. + Weight::from_parts(114_000_000, 0) .saturating_add(Weight::from_parts(0, 6196)) .saturating_add(T::DbWeight::get().reads(10)) .saturating_add(T::DbWeight::get().writes(7)) @@ -420,8 +398,8 @@ impl pallet_domains::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `711` // Estimated: `4176` - // Minimum execution time: 46_189_000 picoseconds. - Weight::from_parts(55_569_000, 0) + // Minimum execution time: 33_000_000 picoseconds. + Weight::from_parts(33_000_000, 0) .saturating_add(Weight::from_parts(0, 4176)) .saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().writes(3)) @@ -454,8 +432,8 @@ impl pallet_domains::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1455` // Estimated: `6196` - // Minimum execution time: 119_678_000 picoseconds. - Weight::from_parts(128_637_000, 0) + // Minimum execution time: 95_000_000 picoseconds. + Weight::from_parts(95_000_000, 0) .saturating_add(Weight::from_parts(0, 6196)) .saturating_add(T::DbWeight::get().reads(13)) .saturating_add(T::DbWeight::get().writes(7)) @@ -479,16 +457,15 @@ impl pallet_domains::WeightInfo for WeightInfo { /// Storage: `Domains::Deposits` (r:1 w:1) /// Proof: `Domains::Deposits` (`max_values`: None, `max_size`: None, mode: `Measured`) /// The range of component `w` is `[1, 32]`. - fn unlock_funds(w: u32, ) -> Weight { + fn unlock_funds(_w: u32, ) -> Weight { // Proof Size summary in bytes: // Measured: `1191 + w * (36 ±0)` - // Estimated: `4656 + w * (36 ±0)` - // Minimum execution time: 104_997_000 picoseconds. - Weight::from_parts(118_275_973, 0) - .saturating_add(Weight::from_parts(0, 4656)) + // Estimated: `5808` + // Minimum execution time: 92_000_000 picoseconds. + Weight::from_parts(94_000_000, 0) + .saturating_add(Weight::from_parts(0, 5808)) .saturating_add(T::DbWeight::get().reads(9)) .saturating_add(T::DbWeight::get().writes(5)) - .saturating_add(Weight::from_parts(0, 36).saturating_mul(w.into())) } /// Storage: `Domains::Operators` (r:1 w:1) /// Proof: `Domains::Operators` (`max_values`: None, `max_size`: None, mode: `Measured`) @@ -518,8 +495,8 @@ impl pallet_domains::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1362` // Estimated: `8799` - // Minimum execution time: 187_916_000 picoseconds. - Weight::from_parts(196_776_000, 0) + // Minimum execution time: 163_000_000 picoseconds. + Weight::from_parts(163_000_000, 0) .saturating_add(Weight::from_parts(0, 8799)) .saturating_add(T::DbWeight::get().reads(14)) .saturating_add(T::DbWeight::get().writes(9)) @@ -530,8 +507,8 @@ impl pallet_domains::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `526` // Estimated: `3991` - // Minimum execution time: 29_640_000 picoseconds. - Weight::from_parts(31_689_000, 0) + // Minimum execution time: 22_000_000 picoseconds. + Weight::from_parts(22_000_000, 0) .saturating_add(Weight::from_parts(0, 3991)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -542,8 +519,8 @@ impl pallet_domains::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `52` // Estimated: `6196` - // Minimum execution time: 36_199_000 picoseconds. - Weight::from_parts(36_729_000, 0) + // Minimum execution time: 39_000_000 picoseconds. + Weight::from_parts(39_000_000, 0) .saturating_add(Weight::from_parts(0, 6196)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -574,8 +551,8 @@ impl pallet_domains::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `773` // Estimated: `4238` - // Minimum execution time: 64_938_000 picoseconds. - Weight::from_parts(66_248_000, 0) + // Minimum execution time: 52_000_000 picoseconds. + Weight::from_parts(52_000_000, 0) .saturating_add(Weight::from_parts(0, 4238)) .saturating_add(T::DbWeight::get().reads(10)) .saturating_add(T::DbWeight::get().writes(7)) @@ -628,8 +605,8 @@ impl pallet_domains::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1467` // Estimated: `7407` - // Minimum execution time: 596_047_000 picoseconds. - Weight::from_parts(607_967_000, 0) + // Minimum execution time: 511_000_000 picoseconds. + Weight::from_parts(511_000_000, 0) .saturating_add(Weight::from_parts(0, 7407)) .saturating_add(T::DbWeight::get().reads(23)) .saturating_add(T::DbWeight::get().writes(2)) @@ -682,8 +659,8 @@ impl pallet_domains::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1497` // Estimated: `7437` - // Minimum execution time: 593_917_000 picoseconds. - Weight::from_parts(604_857_000, 0) + // Minimum execution time: 553_000_000 picoseconds. + Weight::from_parts(553_000_000, 0) .saturating_add(Weight::from_parts(0, 7437)) .saturating_add(T::DbWeight::get().reads(23)) .saturating_add(T::DbWeight::get().writes(2)) @@ -702,8 +679,8 @@ impl pallet_domains::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `2483106` // Estimated: `2489046` - // Minimum execution time: 1_446_039_000 picoseconds. - Weight::from_parts(1_478_279_000, 0) + // Minimum execution time: 1_224_000_000 picoseconds. + Weight::from_parts(1_224_000_000, 0) .saturating_add(Weight::from_parts(0, 2489046)) .saturating_add(T::DbWeight::get().reads(6)) } @@ -719,8 +696,8 @@ impl pallet_domains::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `644` // Estimated: `4109` - // Minimum execution time: 43_249_000 picoseconds. - Weight::from_parts(44_909_000, 0) + // Minimum execution time: 32_000_000 picoseconds. + Weight::from_parts(32_000_000, 0) .saturating_add(Weight::from_parts(0, 4109)) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) @@ -737,8 +714,8 @@ impl pallet_domains::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `614` // Estimated: `4079` - // Minimum execution time: 36_599_000 picoseconds. - Weight::from_parts(39_189_000, 0) + // Minimum execution time: 30_000_000 picoseconds. + Weight::from_parts(30_000_000, 0) .saturating_add(Weight::from_parts(0, 4079)) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) @@ -763,8 +740,8 @@ impl pallet_domains::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `744` // Estimated: `4209` - // Minimum execution time: 44_769_000 picoseconds. - Weight::from_parts(48_629_000, 0) + // Minimum execution time: 34_000_000 picoseconds. + Weight::from_parts(34_000_000, 0) .saturating_add(Weight::from_parts(0, 4209)) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(4)) @@ -799,8 +776,8 @@ impl pallet_domains::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1456` // Estimated: `6196` - // Minimum execution time: 119_118_000 picoseconds. - Weight::from_parts(124_598_000, 0) + // Minimum execution time: 94_000_000 picoseconds. + Weight::from_parts(94_000_000, 0) .saturating_add(Weight::from_parts(0, 6196)) .saturating_add(T::DbWeight::get().reads(14)) .saturating_add(T::DbWeight::get().writes(8)) diff --git a/crates/subspace-service/src/config.rs b/crates/subspace-service/src/config.rs index 8e5066799fb..57500d181eb 100644 --- a/crates/subspace-service/src/config.rs +++ b/crates/subspace-service/src/config.rs @@ -206,6 +206,8 @@ impl From for Configuration { ipfs_server: false, network_backend: NetworkBackendType::Libp2p, force_synced: configuration.network.force_synced, + // Subspace does not use warp sync + min_peers_to_start_warp_sync: None, }, // Not used on consensus chain keystore: KeystoreConfig::InMemory, @@ -268,6 +270,8 @@ impl From for Configuration { sc_service::Role::Full }, base_path: BasePath::new(configuration.base_path), + // Trie cache warm-up not needed — Subspace uses its own sync strategy + warm_up_trie_cache: None, } } } diff --git a/domains/client/block-builder/src/custom_api.rs b/domains/client/block-builder/src/custom_api.rs index ff8059c2d59..d0e0d438271 100644 --- a/domains/client/block-builder/src/custom_api.rs +++ b/domains/client/block-builder/src/custom_api.rs @@ -236,7 +236,7 @@ where backend: Arc, executor: Arc, ) -> Result { - let state = backend.state_at(parent_hash)?; + let state = backend.state_at(parent_hash, sc_client_api::TrieCacheContext::Trusted)?; let trie_backend = state.as_trie_backend(); let state_runtime_code = sp_state_machine::backend::BackendRuntimeCode::new(trie_backend); let sp_core::traits::RuntimeCode { diff --git a/domains/client/block-preprocessor/src/lib.rs b/domains/client/block-preprocessor/src/lib.rs index 59b46202d3c..930fd5ee157 100644 --- a/domains/client/block-preprocessor/src/lib.rs +++ b/domains/client/block-preprocessor/src/lib.rs @@ -291,7 +291,9 @@ where &self, parent_domain_hash: Block::Hash, ) -> sp_blockchain::Result> { - let state = self.backend.state_at(parent_domain_hash)?; + let state = self + .backend + .state_at(parent_domain_hash, sc_client_api::TrieCacheContext::Trusted)?; let trie_backend = state.as_trie_backend(); let state_runtime_code = sp_state_machine::backend::BackendRuntimeCode::new(trie_backend); let runtime_code = state_runtime_code diff --git a/domains/client/domain-operator/src/tests.rs b/domains/client/domain-operator/src/tests.rs index 32f875ebb86..708d89434f2 100644 --- a/domains/client/domain-operator/src/tests.rs +++ b/domains/client/domain-operator/src/tests.rs @@ -5012,7 +5012,10 @@ async fn set_new_code_should_work() { .await; let best_hash = alice.client.info().best_hash; - let state = alice.backend.state_at(best_hash).expect("Get state"); + let state = alice + .backend + .state_at(best_hash, sc_client_api::TrieCacheContext::Trusted) + .expect("Get state"); let trie_backend = state.as_trie_backend(); let state_runtime_code = sp_state_machine::backend::BackendRuntimeCode::new(trie_backend); let runtime_code = state_runtime_code.fetch_runtime_code().unwrap(); diff --git a/domains/pallets/auto-id/src/lib.rs b/domains/pallets/auto-id/src/lib.rs index f4d648ee1be..2ecfd2fee78 100644 --- a/domains/pallets/auto-id/src/lib.rs +++ b/domains/pallets/auto-id/src/lib.rs @@ -252,8 +252,7 @@ mod pallet { use frame_system::pallet_prelude::*; #[pallet::config] - pub trait Config: frame_system::Config { - type RuntimeEvent: From> + IsType<::RuntimeEvent>; + pub trait Config: frame_system::Config>> { type Time: Time; type Weights: WeightInfo; } diff --git a/domains/pallets/auto-id/src/tests.rs b/domains/pallets/auto-id/src/tests.rs index f1e8a68c3ba..8a2bdb3475b 100644 --- a/domains/pallets/auto-id/src/tests.rs +++ b/domains/pallets/auto-id/src/tests.rs @@ -44,7 +44,6 @@ impl Time for MockTime { } impl pallet_auto_id::Config for Test { - type RuntimeEvent = RuntimeEvent; type Time = MockTime; type Weights = (); } diff --git a/domains/pallets/domain-sudo/src/lib.rs b/domains/pallets/domain-sudo/src/lib.rs index 94ca47c938f..97a1a45b4e1 100644 --- a/domains/pallets/domain-sudo/src/lib.rs +++ b/domains/pallets/domain-sudo/src/lib.rs @@ -34,8 +34,7 @@ mod pallet { use sp_domain_sudo::{INHERENT_IDENTIFIER, InherentError, InherentType, IntoRuntimeCall}; #[pallet::config] - pub trait Config: frame_system::Config { - type RuntimeEvent: From> + IsType<::RuntimeEvent>; + pub trait Config: frame_system::Config>> { type RuntimeCall: Parameter + UnfilteredDispatchable + GetDispatchInfo; diff --git a/domains/pallets/executive/src/lib.rs b/domains/pallets/executive/src/lib.rs index 53f36e38c75..1421ec2698b 100644 --- a/domains/pallets/executive/src/lib.rs +++ b/domains/pallets/executive/src/lib.rs @@ -35,7 +35,6 @@ pub mod weights; #[cfg(not(feature = "std"))] extern crate alloc; -use frame_support::defensive_assert; use frame_support::dispatch::{ DispatchClass, DispatchErrorWithPostInfo, DispatchInfo, GetDispatchInfo, Pays, PostDispatchInfo, }; @@ -43,8 +42,8 @@ use frame_support::storage::with_storage_layer; use frame_support::traits::fungible::{Inspect, Mutate}; use frame_support::traits::tokens::{Fortitude, Precision, Preservation}; use frame_support::traits::{ - BeforeAllRuntimeMigrations, EnsureInherentsAreFirst, ExecuteBlock, Get, OffchainWorker, - OnFinalize, OnIdle, OnInitialize, OnPoll, OnRuntimeUpgrade, PostTransactions, + BeforeAllRuntimeMigrations, ExecuteBlock, Get, IsInherent, OffchainWorker, OnFinalize, OnIdle, + OnInitialize, OnPoll, OnRuntimeUpgrade, PostTransactions, }; use frame_support::weights::{Weight, WeightToFee}; use frame_system::pallet_prelude::*; @@ -97,8 +96,7 @@ mod pallet { use sp_executive::{INHERENT_IDENTIFIER, InherentError, InherentType}; #[pallet::config] - pub trait Config: frame_system::Config { - type RuntimeEvent: From> + IsType<::RuntimeEvent>; + pub trait Config: frame_system::Config>> { type WeightInfo: WeightInfo; type Currency: Mutate; type LengthToFee: WeightToFee>; @@ -209,7 +207,7 @@ pub struct Executive< ); impl< - ExecutiveConfig: Config + frame_system::Config + EnsureInherentsAreFirst>, + ExecutiveConfig: Config + frame_system::Config + IsInherent>, Context: Default, UnsignedValidator, AllPalletsWithSystem: OnRuntimeUpgrade @@ -248,7 +246,7 @@ where } impl< - ExecutiveConfig: Config + frame_system::Config + EnsureInherentsAreFirst>, + ExecutiveConfig: Config + frame_system::Config + IsInherent>, Context: Default, UnsignedValidator, AllPalletsWithSystem: OnRuntimeUpgrade @@ -300,8 +298,9 @@ where >::initialize_block(header) } - // TODO: https://github.com/paritytech/substrate/issues/10711 - fn initial_checks(block: &BlockOf) -> u32 { + /// Matches upstream `frame_executive::Executive::initial_checks`. + /// Only checks parent hash — inherent ordering is checked inline in `apply_extrinsics`. + fn initial_checks(block: &BlockOf) { sp_tracing::enter_span!(sp_tracing::Level::TRACE, "initial_checks"); let header = block.header(); @@ -314,37 +313,28 @@ where ) == *header.parent_hash(), "Parent hash should be valid.", ); - - match ExecutiveConfig::ensure_inherents_are_first(block) { - Ok(num) => num, - Err(i) => panic!("Invalid inherent position for extrinsic at index {i}"), - } } /// Wrapped `frame_executive::Executive::execute_block`. /// /// The purpose is to use our custom [`Executive::apply_extrinsic`] and /// the [`Executive::finalize_block`] logic. + /// + /// Matches upstream structure: `initial_checks` only validates parent hash, + /// inherent ordering is checked inline in `apply_extrinsics`. pub fn execute_block(block: BlockOf) { sp_io::init_tracing(); sp_tracing::within_span! { sp_tracing::info_span!("execute_block", ?block); // Execute `on_runtime_upgrade` and `on_initialize`. let mode = Self::initialize_block(block.header()); - let num_inherents = Self::initial_checks(&block) as usize; - let (header, extrinsics) = block.deconstruct(); - let num_extrinsics = extrinsics.len(); - - if mode == ExtrinsicInclusionMode::OnlyInherents && num_extrinsics > num_inherents { - // Invalid block - panic!("Only inherents are allowed in this block") - } + Self::initial_checks(&block); - Self::apply_extrinsics(extrinsics.into_iter()); + let (header, extrinsics) = block.deconstruct(); + Self::apply_extrinsics(mode, extrinsics.into_iter()); // In this case there were no transactions to trigger this state transition: if !>::inherents_applied() { - defensive_assert!(num_inherents == num_extrinsics); frame_executive::Executive::< ExecutiveConfig, BlockOf, @@ -358,19 +348,35 @@ where >::note_finished_extrinsics(); ::PostTransactions::post_transactions(); - Self::idle_and_finalize_hook(*header.number()); + Self::on_idle_hook(*header.number()); + Self::on_finalize_hook(*header.number()); Self::final_checks(&header); } } - /// Wrapped `frame_executive::Executive::apply_extrinsics`. - fn apply_extrinsics(extrinsics: impl Iterator>) { - extrinsics.into_iter().for_each(|e| { - if let Err(e) = Self::apply_extrinsic(e) { + /// Matches upstream `frame_executive::Executive::apply_extrinsics`. + /// Checks inherent ordering inline per-extrinsic. + fn apply_extrinsics( + mode: ExtrinsicInclusionMode, + extrinsics: impl Iterator>, + ) { + let mut first_non_inherent_idx = 0; + for (idx, uxt) in extrinsics.into_iter().enumerate() { + let is_inherent = ExecutiveConfig::is_inherent(&uxt); + if is_inherent { + if first_non_inherent_idx != idx { + panic!("Invalid inherent position for extrinsic at index {idx}"); + } + first_non_inherent_idx += 1; + } else if mode == ExtrinsicInclusionMode::OnlyInherents { + panic!("Only inherents are allowed in this block") + } + + if let Err(e) = Self::apply_extrinsic(uxt) { let err: &'static str = e.into(); panic!("{}", err) } - }); + } } /// Wrapped `frame_executive::Executive::finalize_block`. @@ -385,8 +391,8 @@ where >::finalize_block() } - /// Wrapped `frame_executive::Executive::on_idle_hook` and `frame_executive::Executive::on_finalize_hook` - fn idle_and_finalize_hook(block_number: NumberFor>) { + /// Matches upstream `frame_executive::Executive::on_idle_hook`. + fn on_idle_hook(block_number: NumberFor>) { let weight = >::block_weight(); let max_weight = <::BlockWeights as frame_support::traits::Get<_>>::get().max_block; let remaining_weight = max_weight.saturating_sub(weight.total()); @@ -398,7 +404,10 @@ where DispatchClass::Mandatory, ); } + } + /// Matches upstream `frame_executive::Executive::on_finalize_hook`. + fn on_finalize_hook(block_number: NumberFor>) { AllPalletsWithSystem::on_finalize(block_number); } diff --git a/domains/pallets/executive/src/mock.rs b/domains/pallets/executive/src/mock.rs index 890a15512d7..2db39e4e62e 100644 --- a/domains/pallets/executive/src/mock.rs +++ b/domains/pallets/executive/src/mock.rs @@ -64,7 +64,6 @@ impl crate::ExtrinsicStorageFees for ExtrinsicStorageFees { } impl Config for MockRuntime { - type RuntimeEvent = RuntimeEvent; type WeightInfo = (); type Currency = Balances; type LengthToFee = IdentityFee; diff --git a/domains/pallets/messenger/src/lib.rs b/domains/pallets/messenger/src/lib.rs index 956e973af99..9e0bea29243 100644 --- a/domains/pallets/messenger/src/lib.rs +++ b/domains/pallets/messenger/src/lib.rs @@ -201,8 +201,7 @@ mod pallet { use std::collections::BTreeSet; #[pallet::config] - pub trait Config: frame_system::Config { - type RuntimeEvent: From> + IsType<::RuntimeEvent>; + pub trait Config: frame_system::Config>> { /// Gets the chain_id that is treated as src_chain_id for outgoing messages. type SelfChainId: Get; /// function to fetch endpoint response handler by Endpoint. diff --git a/domains/pallets/messenger/src/mock.rs b/domains/pallets/messenger/src/mock.rs index 1712a0fde41..e01d2402603 100644 --- a/domains/pallets/messenger/src/mock.rs +++ b/domains/pallets/messenger/src/mock.rs @@ -105,7 +105,6 @@ macro_rules! impl_runtime { } impl crate::Config for $runtime { - type RuntimeEvent = RuntimeEvent; type SelfChainId = SelfChainId; type Currency = Balances; type WeightInfo = (); @@ -186,7 +185,6 @@ macro_rules! impl_runtime { } impl pallet_transporter::Config for $runtime { - type RuntimeEvent = RuntimeEvent; type SelfChainId = SelfChainId; type SelfEndpointId = TransporterEndpointId; type Currency = Balances; diff --git a/domains/pallets/transporter/src/lib.rs b/domains/pallets/transporter/src/lib.rs index 06edec00e39..1f8eb7c3b1a 100644 --- a/domains/pallets/transporter/src/lib.rs +++ b/domains/pallets/transporter/src/lib.rs @@ -103,10 +103,7 @@ mod pallet { use sp_runtime::traits::Convert; #[pallet::config] - pub trait Config: frame_system::Config { - /// Event type for this pallet. - type RuntimeEvent: From> + IsType<::RuntimeEvent>; - + pub trait Config: frame_system::Config>> { /// Gets the chain_id of the current execution environment. type SelfChainId: Get; @@ -421,14 +418,14 @@ mod pallet { match resp { Ok(_) => { // transfer is successful - frame_system::Pallet::::deposit_event( - Into::<::RuntimeEvent>::into( - Event::::OutgoingTransferSuccessful { - chain_id: dst_chain_id, - message_id, - }, - ), - ); + frame_system::Pallet::::deposit_event(Into::< + ::RuntimeEvent, + >::into( + Event::::OutgoingTransferSuccessful { + chain_id: dst_chain_id, + message_id, + }, + )); } Err(err) => { // transfer failed @@ -456,15 +453,15 @@ mod pallet { } let _imbalance = T::Currency::deposit_creating(&account_id, transfer.amount); - frame_system::Pallet::::deposit_event( - Into::<::RuntimeEvent>::into( - Event::::OutgoingTransferFailed { - chain_id: dst_chain_id, - message_id, - err, - }, - ), - ); + frame_system::Pallet::::deposit_event(Into::< + ::RuntimeEvent, + >::into( + Event::::OutgoingTransferFailed { + chain_id: dst_chain_id, + message_id, + err, + }, + )); } } @@ -662,13 +659,15 @@ impl Pallet { let _imbalance = T::Currency::deposit_creating(&account_id, req.amount); - frame_system::Pallet::::deposit_event(Into::<::RuntimeEvent>::into( - Event::::IncomingTransferSuccessful { - chain_id: src_chain_id, - message_id, - amount: req.amount, - }, - )); + frame_system::Pallet::::deposit_event( + Into::<::RuntimeEvent>::into( + Event::::IncomingTransferSuccessful { + chain_id: src_chain_id, + message_id, + amount: req.amount, + }, + ), + ); Ok(vec![]) } diff --git a/domains/pallets/transporter/src/mock.rs b/domains/pallets/transporter/src/mock.rs index bc2f8e98567..3ecf5028b14 100644 --- a/domains/pallets/transporter/src/mock.rs +++ b/domains/pallets/transporter/src/mock.rs @@ -95,7 +95,6 @@ impl pallet_messenger::HoldIdentifier for MockHoldIdentifier { } impl pallet_messenger::Config for MockRuntime { - type RuntimeEvent = RuntimeEvent; type SelfChainId = SelfChainId; type Currency = Balances; type WeightInfo = (); @@ -183,7 +182,6 @@ parameter_types! { } impl Config for MockRuntime { - type RuntimeEvent = RuntimeEvent; type SelfChainId = SelfChainId; type SelfEndpointId = SelfEndpointId; type Currency = Balances; diff --git a/domains/primitives/auto-id/Cargo.toml b/domains/primitives/auto-id/Cargo.toml index 9c6d583fe85..63e02daa04f 100644 --- a/domains/primitives/auto-id/Cargo.toml +++ b/domains/primitives/auto-id/Cargo.toml @@ -34,3 +34,6 @@ std = [ ] runtime-benchmarks = [] + +[lints] +workspace = true diff --git a/domains/primitives/auto-id/src/lib.rs b/domains/primitives/auto-id/src/lib.rs index 99a92718cb3..892f3b58fd6 100644 --- a/domains/primitives/auto-id/src/lib.rs +++ b/domains/primitives/auto-id/src/lib.rs @@ -30,8 +30,6 @@ use alloc::vec::Vec; use parity_scale_codec::{Decode, Encode}; use scale_info::TypeInfo; use sp_core::{DecodeWithMemTracking, U256}; -use sp_runtime_interface::pass_by; -use sp_runtime_interface::pass_by::PassBy; use subspace_runtime_primitives::Moment; /// Signature verification request. @@ -47,10 +45,6 @@ pub struct SignatureVerificationRequest { pub signature: Vec, } -impl PassBy for SignatureVerificationRequest { - type PassBy = pass_by::Codec; -} - /// Validity of a given certificate. #[derive(Debug, Decode, Encode, TypeInfo, PartialEq, Eq, Clone)] pub struct Validity { @@ -114,10 +108,6 @@ pub struct TbsCertificate { #[derive(Debug, Decode, Encode, TypeInfo, PartialEq, Eq, Clone, DecodeWithMemTracking)] pub struct DerVec(pub Vec); -impl PassBy for DerVec { - type PassBy = pass_by::Codec; -} - impl AsRef<[u8]> for DerVec { fn as_ref(&self) -> &[u8] { &self.0 diff --git a/domains/primitives/auto-id/src/runtime_interface.rs b/domains/primitives/auto-id/src/runtime_interface.rs index 45bb5fb0c43..3ff8d831e92 100644 --- a/domains/primitives/auto-id/src/runtime_interface.rs +++ b/domains/primitives/auto-id/src/runtime_interface.rs @@ -1,10 +1,14 @@ use crate::{DerVec, SignatureVerificationRequest, TbsCertificate}; +use sp_runtime_interface::pass_by::{AllocateAndReturnByCodec, PassFatPointerAndDecode}; use sp_runtime_interface::runtime_interface; /// AutoId runtime interface. #[runtime_interface] pub trait AutoIdRuntimeInterface { - fn verify_signature(&mut self, req: SignatureVerificationRequest) -> Option<()> { + fn verify_signature( + &mut self, + req: PassFatPointerAndDecode, + ) -> AllocateAndReturnByCodec> { // TODO: we need to conditional compile for benchmarks here since // benchmark externalities does not provide custom extensions. // Remove this once the issue is resolved: https://github.com/paritytech/polkadot-sdk/issues/137 @@ -24,7 +28,10 @@ pub trait AutoIdRuntimeInterface { } } - fn decode_tbs_certificate(&mut self, certificate: DerVec) -> Option { + fn decode_tbs_certificate( + &mut self, + certificate: PassFatPointerAndDecode, + ) -> AllocateAndReturnByCodec> { // TODO: we need to conditional compile for benchmarks here since // benchmark externalities does not provide custom extensions. // Remove this once the issue is resolved: https://github.com/paritytech/polkadot-sdk/issues/137 diff --git a/domains/primitives/messenger-host-functions/Cargo.toml b/domains/primitives/messenger-host-functions/Cargo.toml index 3b8ab2a744e..6b1f7913d0d 100644 --- a/domains/primitives/messenger-host-functions/Cargo.toml +++ b/domains/primitives/messenger-host-functions/Cargo.toml @@ -44,3 +44,6 @@ std = [ ] runtime-benchmarks = [] + +[lints] +workspace = true diff --git a/domains/primitives/messenger-host-functions/src/lib.rs b/domains/primitives/messenger-host-functions/src/lib.rs index 3a82be09b6d..ba02b229d5c 100644 --- a/domains/primitives/messenger-host-functions/src/lib.rs +++ b/domains/primitives/messenger-host-functions/src/lib.rs @@ -33,9 +33,6 @@ pub use runtime_interface::messenger_runtime_interface::get_storage_key; use scale_info::TypeInfo; use sp_domains::DomainId; use sp_messenger::messages::{ChainId, MessageKey}; -use sp_runtime_interface::pass_by; -use sp_runtime_interface::pass_by::PassBy; - #[derive(Debug, Decode, Encode, TypeInfo, PartialEq, Eq, Clone)] pub enum StorageKeyRequest { /// Request to get confirmed domain block storage key for given domain. @@ -51,7 +48,3 @@ pub enum StorageKeyRequest { message_key: MessageKey, }, } - -impl PassBy for StorageKeyRequest { - type PassBy = pass_by::Codec; -} diff --git a/domains/primitives/messenger-host-functions/src/runtime_interface.rs b/domains/primitives/messenger-host-functions/src/runtime_interface.rs index e1026e40e02..12f8dbd14fc 100644 --- a/domains/primitives/messenger-host-functions/src/runtime_interface.rs +++ b/domains/primitives/messenger-host-functions/src/runtime_interface.rs @@ -5,13 +5,17 @@ use crate::host_functions::MessengerExtension; use alloc::vec::Vec; #[cfg(feature = "std")] use sp_externalities::ExternalitiesExt; +use sp_runtime_interface::pass_by::{AllocateAndReturnByCodec, PassFatPointerAndDecode}; use sp_runtime_interface::runtime_interface; /// Messenger related runtime interface #[runtime_interface] pub trait MessengerRuntimeInterface { /// Returns the storage key. - fn get_storage_key(&mut self, req: StorageKeyRequest) -> Option> { + fn get_storage_key( + &mut self, + req: PassFatPointerAndDecode, + ) -> AllocateAndReturnByCodec>> { self.extension::() .expect("No `MessengerExtension` associated for the current context!") .get_storage_key(req) diff --git a/domains/runtime/auto-id/Cargo.toml b/domains/runtime/auto-id/Cargo.toml index f6e3364da1c..55a6768f546 100644 --- a/domains/runtime/auto-id/Cargo.toml +++ b/domains/runtime/auto-id/Cargo.toml @@ -132,3 +132,6 @@ runtime-benchmarks = [ "sp-storage", "sp-subspace-mmr/runtime-benchmarks", ] + +[lints] +workspace = true diff --git a/domains/runtime/auto-id/src/lib.rs b/domains/runtime/auto-id/src/lib.rs index 15c7a40a94d..38e0a1c9870 100644 --- a/domains/runtime/auto-id/src/lib.rs +++ b/domains/runtime/auto-id/src/lib.rs @@ -156,6 +156,7 @@ parameter_types! { } impl frame_system::Config for Runtime { + type RuntimeEvent = RuntimeEvent; /// The identifier used to distinguish between accounts. type AccountId = AccountId; /// The aggregated dispatch type that is available for extrinsics. @@ -173,7 +174,6 @@ impl frame_system::Config for Runtime { /// The block type. type Block = Block; /// The ubiquitous event type. - type RuntimeEvent = RuntimeEvent; /// The ubiquitous origin type. type RuntimeOrigin = RuntimeOrigin; /// Maximum number of block number to block hash mappings to keep (oldest pruned first). @@ -235,12 +235,12 @@ impl OnUnbalanced> for DustRemovalHandler { } impl pallet_balances::Config for Runtime { + type RuntimeEvent = RuntimeEvent; type RuntimeFreezeReason = RuntimeFreezeReason; type MaxLocks = MaxLocks; /// The type for recording an account's balance. type Balance = Balance; /// The ubiquitous event type. - type RuntimeEvent = RuntimeEvent; type DustRemoval = DustRemovalHandler; type ExistentialDeposit = ExistentialDeposit; type AccountStore = System; @@ -283,7 +283,6 @@ impl pallet_transaction_payment::Config for Runtime { } impl pallet_auto_id::Config for Runtime { - type RuntimeEvent = RuntimeEvent; type Time = Timestamp; type Weights = weights::pallet_auto_id::WeightInfo; } @@ -320,7 +319,6 @@ impl domain_pallet_executive::ExtrinsicStorageFees for ExtrinsicStorage } impl domain_pallet_executive::Config for Runtime { - type RuntimeEvent = RuntimeEvent; type WeightInfo = weights::domain_pallet_executive::WeightInfo; type Currency = Balances; type LengthToFee = ::LengthToFee; @@ -429,7 +427,6 @@ parameter_types! { const_assert!(MaxOutgoingMessages::get() >= 1); impl pallet_messenger::Config for Runtime { - type RuntimeEvent = RuntimeEvent; type SelfChainId = SelfChainId; fn get_endpoint_handler(endpoint: &Endpoint) -> Option>> { @@ -481,7 +478,6 @@ parameter_types! { } impl pallet_transporter::Config for Runtime { - type RuntimeEvent = RuntimeEvent; type SelfChainId = SelfChainId; type SelfEndpointId = TransporterEndpointId; type Currency = Balances; @@ -504,7 +500,6 @@ impl sp_domain_sudo::IntoRuntimeCall for IntoRuntimeCall { } impl pallet_domain_sudo::Config for Runtime { - type RuntimeEvent = RuntimeEvent; type RuntimeCall = RuntimeCall; type IntoRuntimeCall = IntoRuntimeCall; } @@ -967,11 +962,16 @@ impl_runtime_apis! { fn check_extrinsics_and_do_pre_dispatch(uxts: Vec>, block_number: BlockNumber, block_hash: BlockHashFor) -> Result<(), CheckExtrinsicsValidityError> { // Initializing block related storage required for validation - System::initialize( - &(block_number + BlockNumber::one()), - &block_hash, - &Default::default(), - ); + // Only initialize if not already at the expected block number, + // as this may be called multiple times with the same block_number + let next_block_number = block_number + BlockNumber::one(); + if System::block_number() != next_block_number { + System::initialize( + &next_block_number, + &block_hash, + &Default::default(), + ); + } for (extrinsic_index, uxt) in uxts.iter().enumerate() { check_transaction_and_do_pre_dispatch_inner(uxt).map_err(|e| { diff --git a/domains/runtime/evm/Cargo.toml b/domains/runtime/evm/Cargo.toml index a3106efad7d..b01ae6a0f9b 100644 --- a/domains/runtime/evm/Cargo.toml +++ b/domains/runtime/evm/Cargo.toml @@ -158,3 +158,6 @@ runtime-benchmarks = [ "sp-storage", "sp-subspace-mmr/runtime-benchmarks", ] + +[lints] +workspace = true diff --git a/domains/runtime/evm/src/lib.rs b/domains/runtime/evm/src/lib.rs index 798b6f6e2fc..4efe5b6ac64 100644 --- a/domains/runtime/evm/src/lib.rs +++ b/domains/runtime/evm/src/lib.rs @@ -337,6 +337,7 @@ parameter_types! { } impl frame_system::Config for Runtime { + type RuntimeEvent = RuntimeEvent; /// The identifier used to distinguish between accounts. type AccountId = AccountId; /// The aggregated dispatch type that is available for extrinsics. @@ -354,7 +355,6 @@ impl frame_system::Config for Runtime { /// The block type. type Block = Block; /// The ubiquitous event type. - type RuntimeEvent = RuntimeEvent; /// The ubiquitous origin type. type RuntimeOrigin = RuntimeOrigin; /// Maximum number of block number to block hash mappings to keep (oldest pruned first). @@ -416,12 +416,12 @@ impl OnUnbalanced> for DustRemovalHandler { } impl pallet_balances::Config for Runtime { + type RuntimeEvent = RuntimeEvent; type RuntimeFreezeReason = RuntimeFreezeReason; type MaxLocks = MaxLocks; /// The type for recording an account's balance. type Balance = Balance; /// The ubiquitous event type. - type RuntimeEvent = RuntimeEvent; type DustRemoval = DustRemovalHandler; type ExistentialDeposit = ExistentialDeposit; type AccountStore = System; @@ -495,7 +495,6 @@ impl domain_pallet_executive::ExtrinsicStorageFees for ExtrinsicStorage } impl domain_pallet_executive::Config for Runtime { - type RuntimeEvent = RuntimeEvent; type WeightInfo = weights::domain_pallet_executive::WeightInfo; type Currency = Balances; type LengthToFee = ::LengthToFee; @@ -605,7 +604,6 @@ parameter_types! { const_assert!(MaxOutgoingMessages::get() >= 1); impl pallet_messenger::Config for Runtime { - type RuntimeEvent = RuntimeEvent; type SelfChainId = SelfChainId; fn get_endpoint_handler(endpoint: &Endpoint) -> Option>> { @@ -657,7 +655,6 @@ parameter_types! { } impl pallet_transporter::Config for Runtime { - type RuntimeEvent = RuntimeEvent; type SelfChainId = SelfChainId; type SelfEndpointId = TransporterEndpointId; type Currency = Balances; @@ -755,7 +752,6 @@ impl pallet_evm::Config for Runtime { type WithdrawOrigin = EnsureAddressNever; type AddressMapping = IdentityAddressMapping; type Currency = Balances; - type RuntimeEvent = RuntimeEvent; type PrecompilesType = Precompiles; type PrecompilesValue = PrecompilesValue; type ChainId = EVMChainId; @@ -788,7 +784,6 @@ parameter_types! { } impl pallet_ethereum::Config for Runtime { - type RuntimeEvent = RuntimeEvent; type StateRoot = pallet_ethereum::IntermediateStateRoot; type PostLogContent = PostOnlyBlockHash; type ExtraDataLength = ConstU32<30>; @@ -818,7 +813,6 @@ impl sp_domain_sudo::IntoRuntimeCall for IntoRuntimeCall { } impl pallet_domain_sudo::Config for Runtime { - type RuntimeEvent = RuntimeEvent; type RuntimeCall = RuntimeCall; type IntoRuntimeCall = IntoRuntimeCall; } @@ -1432,11 +1426,16 @@ impl_runtime_apis! { fn check_extrinsics_and_do_pre_dispatch(uxts: Vec>, block_number: BlockNumber, block_hash: BlockHashFor) -> Result<(), CheckExtrinsicsValidityError> { // Initializing block related storage required for validation - System::initialize( - &(block_number + BlockNumber::one()), - &block_hash, - &Default::default(), - ); + // Only initialize if not already at the expected block number, + // as this may be called multiple times with the same block_number + let next_block_number = block_number + BlockNumber::one(); + if System::block_number() != next_block_number { + System::initialize( + &next_block_number, + &block_hash, + &Default::default(), + ); + } for (extrinsic_index, uxt) in uxts.iter().enumerate() { check_transaction_and_do_pre_dispatch_inner(uxt).map_err(|e| { diff --git a/domains/service/src/config.rs b/domains/service/src/config.rs index ac0ececef6f..35d0eaebe47 100644 --- a/domains/service/src/config.rs +++ b/domains/service/src/config.rs @@ -200,6 +200,8 @@ impl From for Configuration { ipfs_server: false, network_backend: NetworkBackendType::Libp2p, force_synced: configuration.network.force_synced, + // Domain nodes do not use warp sync + min_peers_to_start_warp_sync: None, }, // Not used on consensus chain keystore: configuration.keystore, @@ -261,6 +263,7 @@ impl From for Configuration { sc_service::Role::Full }, base_path: BasePath::new(configuration.base_path), + warm_up_trie_cache: None, } } } diff --git a/domains/test/runtime/auto-id/Cargo.toml b/domains/test/runtime/auto-id/Cargo.toml index fbd34706e7b..2f3a1715992 100644 --- a/domains/test/runtime/auto-id/Cargo.toml +++ b/domains/test/runtime/auto-id/Cargo.toml @@ -131,3 +131,6 @@ runtime-benchmarks = [ "sp-storage", "sp-subspace-mmr/runtime-benchmarks", ] + +[lints] +workspace = true diff --git a/domains/test/runtime/auto-id/src/lib.rs b/domains/test/runtime/auto-id/src/lib.rs index 9b4514f6397..abefe3ae811 100644 --- a/domains/test/runtime/auto-id/src/lib.rs +++ b/domains/test/runtime/auto-id/src/lib.rs @@ -154,6 +154,7 @@ parameter_types! { } impl frame_system::Config for Runtime { + type RuntimeEvent = RuntimeEvent; /// The identifier used to distinguish between accounts. type AccountId = AccountId; /// The aggregated dispatch type that is available for extrinsics. @@ -171,7 +172,6 @@ impl frame_system::Config for Runtime { /// The block type. type Block = Block; /// The ubiquitous event type. - type RuntimeEvent = RuntimeEvent; /// The ubiquitous origin type. type RuntimeOrigin = RuntimeOrigin; /// Maximum number of block number to block hash mappings to keep (oldest pruned first). @@ -233,12 +233,12 @@ impl OnUnbalanced> for DustRemovalHandler { } impl pallet_balances::Config for Runtime { + type RuntimeEvent = RuntimeEvent; type RuntimeFreezeReason = RuntimeFreezeReason; type MaxLocks = MaxLocks; /// The type for recording an account's balance. type Balance = Balance; /// The ubiquitous event type. - type RuntimeEvent = RuntimeEvent; type DustRemoval = DustRemovalHandler; type ExistentialDeposit = ExistentialDeposit; type AccountStore = System; @@ -280,7 +280,6 @@ impl pallet_transaction_payment::Config for Runtime { } impl pallet_auto_id::Config for Runtime { - type RuntimeEvent = RuntimeEvent; type Time = Timestamp; type Weights = pallet_auto_id::weights::SubstrateWeight; } @@ -317,7 +316,6 @@ impl domain_pallet_executive::ExtrinsicStorageFees for ExtrinsicStorage } impl domain_pallet_executive::Config for Runtime { - type RuntimeEvent = RuntimeEvent; type WeightInfo = domain_pallet_executive::weights::SubstrateWeight; type Currency = Balances; type LengthToFee = ::LengthToFee; @@ -426,7 +424,6 @@ parameter_types! { const_assert!(MaxOutgoingMessages::get() >= 1); impl pallet_messenger::Config for Runtime { - type RuntimeEvent = RuntimeEvent; type SelfChainId = SelfChainId; fn get_endpoint_handler(endpoint: &Endpoint) -> Option>> { @@ -475,7 +472,6 @@ parameter_types! { } impl pallet_transporter::Config for Runtime { - type RuntimeEvent = RuntimeEvent; type SelfChainId = SelfChainId; type SelfEndpointId = TransporterEndpointId; type Currency = Balances; @@ -498,7 +494,6 @@ impl sp_domain_sudo::IntoRuntimeCall for IntoRuntimeCall { } impl pallet_domain_sudo::Config for Runtime { - type RuntimeEvent = RuntimeEvent; type RuntimeCall = RuntimeCall; type IntoRuntimeCall = IntoRuntimeCall; } @@ -949,11 +944,16 @@ impl_runtime_apis! { fn check_extrinsics_and_do_pre_dispatch(uxts: Vec>, block_number: BlockNumber, block_hash: BlockHashFor) -> Result<(), CheckExtrinsicsValidityError> { // Initializing block related storage required for validation - System::initialize( - &(block_number + BlockNumber::one()), - &block_hash, - &Default::default(), - ); + // Only initialize if not already at the expected block number, + // as this may be called multiple times with the same block_number + let next_block_number = block_number + BlockNumber::one(); + if System::block_number() != next_block_number { + System::initialize( + &next_block_number, + &block_hash, + &Default::default(), + ); + } for (extrinsic_index, uxt) in uxts.iter().enumerate() { check_transaction_and_do_pre_dispatch_inner(uxt).map_err(|e| { diff --git a/domains/test/runtime/evm/Cargo.toml b/domains/test/runtime/evm/Cargo.toml index 6ce78c284fe..2e86dd2c5ae 100644 --- a/domains/test/runtime/evm/Cargo.toml +++ b/domains/test/runtime/evm/Cargo.toml @@ -134,3 +134,6 @@ std = [ ] # Internal implementation detail, enabled during building of wasm blob. wasm-builder = [] + +[lints] +workspace = true diff --git a/domains/test/runtime/evm/src/lib.rs b/domains/test/runtime/evm/src/lib.rs index 752015d38e3..1410ebd4c56 100644 --- a/domains/test/runtime/evm/src/lib.rs +++ b/domains/test/runtime/evm/src/lib.rs @@ -392,7 +392,6 @@ parameter_types! { } impl frame_system::Config for Runtime { - /// The ubiquitous event type. type RuntimeEvent = RuntimeEvent; /// The basic call filter to use in dispatchable. type BaseCallFilter = Everything; @@ -462,12 +461,12 @@ parameter_types! { } impl pallet_balances::Config for Runtime { + type RuntimeEvent = RuntimeEvent; type RuntimeFreezeReason = RuntimeFreezeReason; type MaxLocks = MaxLocks; /// The type for recording an account's balance. type Balance = Balance; /// The ubiquitous event type. - type RuntimeEvent = RuntimeEvent; type DustRemoval = (); type ExistentialDeposit = ExistentialDeposit; type AccountStore = System; @@ -539,7 +538,6 @@ impl domain_pallet_executive::ExtrinsicStorageFees for ExtrinsicStorage } impl domain_pallet_executive::Config for Runtime { - type RuntimeEvent = RuntimeEvent; type WeightInfo = domain_pallet_executive::weights::SubstrateWeight; type Currency = Balances; type LengthToFee = ::LengthToFee; @@ -648,7 +646,6 @@ impl sp_messenger::StorageKeys for StorageKeys { } impl pallet_messenger::Config for Runtime { - type RuntimeEvent = RuntimeEvent; type SelfChainId = SelfChainId; fn get_endpoint_handler(endpoint: &Endpoint) -> Option>> { @@ -697,7 +694,6 @@ parameter_types! { } impl pallet_transporter::Config for Runtime { - type RuntimeEvent = RuntimeEvent; type SelfChainId = SelfChainId; type SelfEndpointId = TransporterEndpointId; type Currency = Balances; @@ -799,7 +795,6 @@ impl pallet_evm::Config for Runtime { type WithdrawOrigin = EnsureAddressNever; type AddressMapping = IdentityAddressMapping; type Currency = Balances; - type RuntimeEvent = RuntimeEvent; type PrecompilesType = Precompiles; type PrecompilesValue = PrecompilesValue; type ChainId = EVMChainId; @@ -829,7 +824,6 @@ parameter_types! { } impl pallet_ethereum::Config for Runtime { - type RuntimeEvent = RuntimeEvent; type StateRoot = pallet_ethereum::IntermediateStateRoot; type PostLogContent = PostOnlyBlockHash; type ExtraDataLength = ConstU32<30>; @@ -859,7 +853,6 @@ impl sp_domain_sudo::IntoRuntimeCall for IntoRuntimeCall { } impl pallet_domain_sudo::Config for Runtime { - type RuntimeEvent = RuntimeEvent; type RuntimeCall = RuntimeCall; type IntoRuntimeCall = IntoRuntimeCall; } @@ -1450,11 +1443,16 @@ impl_runtime_apis! { block_number: BlockNumber, block_hash: BlockHashFor) -> Result<(), CheckExtrinsicsValidityError> { // Initializing block related storage required for validation - System::initialize( - &(block_number + BlockNumber::one()), - &block_hash, - &Default::default(), - ); + // Only initialize if not already at the expected block number, + // as this may be called multiple times with the same block_number + let next_block_number = block_number + BlockNumber::one(); + if System::block_number() != next_block_number { + System::initialize( + &next_block_number, + &block_hash, + &Default::default(), + ); + } for (extrinsic_index, uxt) in uxts.iter().enumerate() { check_transaction_and_do_pre_dispatch_inner(uxt).map_err(|e| { diff --git a/domains/test/service/src/lib.rs b/domains/test/service/src/lib.rs index d0b36610b7e..7357e0c06a4 100644 --- a/domains/test/service/src/lib.rs +++ b/domains/test/service/src/lib.rs @@ -199,6 +199,7 @@ pub fn node_config( data_path: base_path.path().into(), base_path, wasm_runtime_overrides: None, + warm_up_trie_cache: None, }) } diff --git a/scripts/runtime-benchmark.sh b/scripts/runtime-benchmark.sh index a104f04ba5e..28f7c08d9e3 100755 --- a/scripts/runtime-benchmark.sh +++ b/scripts/runtime-benchmark.sh @@ -14,6 +14,11 @@ # http://redsymbol.net/articles/unofficial-bash-strict-mode/ set -euo pipefail +# Skip WASM build for frame-storage-access-test-runtime (upstream polkadot-sdk test crate). +# Its wasm-builder panics when built outside the polkadot-sdk workspace. +# See: https://github.com/paritytech/polkadot-sdk/pull/8069 +export SKIP_FRAME_STORAGE_ACCESS_TEST_RUNTIME_WASM_BUILD=1 + PROFILE="production" FEATURES="runtime-benchmarks" CORE_BENCH_SETTINGS="--extrinsic=* --wasm-execution=compiled --genesis-builder=none --heap-pages=4096" diff --git a/test/subspace-test-runtime/Cargo.toml b/test/subspace-test-runtime/Cargo.toml index 5be8a27eb28..2a948cded35 100644 --- a/test/subspace-test-runtime/Cargo.toml +++ b/test/subspace-test-runtime/Cargo.toml @@ -139,3 +139,6 @@ runtime-benchmarks = [ "sp-runtime/runtime-benchmarks", "sp-subspace-mmr/runtime-benchmarks", ] + +[lints] +workspace = true diff --git a/test/subspace-test-runtime/src/lib.rs b/test/subspace-test-runtime/src/lib.rs index 2aebd3bf1bf..9ac0b430128 100644 --- a/test/subspace-test-runtime/src/lib.rs +++ b/test/subspace-test-runtime/src/lib.rs @@ -230,6 +230,7 @@ pub type SS58Prefix = ConstU16<6094>; // Configure FRAME pallets to include in runtime. impl frame_system::Config for Runtime { + type RuntimeEvent = RuntimeEvent; /// The basic call filter to use in dispatchable. /// /// `Everything` is used here as we use the signed extension @@ -256,7 +257,6 @@ impl frame_system::Config for Runtime { /// The block type. type Block = Block; /// The ubiquitous event type. - type RuntimeEvent = RuntimeEvent; /// The ubiquitous origin type. type RuntimeOrigin = RuntimeOrigin; /// Maximum number of block number to block hash mappings to keep (oldest pruned first). @@ -312,7 +312,6 @@ parameter_types! { } impl pallet_subspace::Config for Runtime { - type RuntimeEvent = RuntimeEvent; type SubspaceOrigin = pallet_subspace::EnsureSubspaceOrigin; type BlockAuthoringDelay = BlockAuthoringDelay; type PotEntropyInjectionInterval = PotEntropyInjectionInterval; @@ -383,6 +382,7 @@ impl VariantCount for HoldIdentifierWrapper { } impl pallet_balances::Config for Runtime { + type RuntimeEvent = RuntimeEvent; type RuntimeFreezeReason = RuntimeFreezeReason; type MaxLocks = ConstU32<50>; type MaxReserves = (); @@ -390,7 +390,6 @@ impl pallet_balances::Config for Runtime { /// The type for recording an account's balance. type Balance = Balance; /// The ubiquitous event type. - type RuntimeEvent = RuntimeEvent; type DustRemoval = (); type ExistentialDeposit = ConstU128<{ 10_000_000_000_000 * SHANNON }>; type AccountStore = System; @@ -432,7 +431,6 @@ impl Get for BlockchainHistorySize { } impl pallet_transaction_fees::Config for Runtime { - type RuntimeEvent = RuntimeEvent; type MinReplicationFactor = ConstU16; type CreditSupply = CreditSupply; type TotalSpacePledged = TotalSpacePledged; @@ -742,7 +740,6 @@ impl sp_messenger::OnXDMRewards for OnXDMRewards { } impl pallet_messenger::Config for Runtime { - type RuntimeEvent = RuntimeEvent; type SelfChainId = SelfChainId; fn get_endpoint_handler(endpoint: &Endpoint) -> Option>> { @@ -800,7 +797,6 @@ parameter_types! { } impl pallet_transporter::Config for Runtime { - type RuntimeEvent = RuntimeEvent; type SelfChainId = SelfChainId; type SelfEndpointId = TransporterEndpointId; type Currency = Balances; @@ -903,7 +899,6 @@ impl sp_domains::OnChainRewards for OnChainRewards { } impl pallet_domains::Config for Runtime { - type RuntimeEvent = RuntimeEvent; type DomainOrigin = pallet_domains::EnsureDomainOrigin; type DomainHash = DomainHash; type Balance = Balance; @@ -953,7 +948,6 @@ parameter_types! { } impl pallet_rewards::Config for Runtime { - type RuntimeEvent = RuntimeEvent; type Currency = Balances; type AvgBlockspaceUsageNumBlocks = AvgBlockspaceUsageNumBlocks; type TransactionByteFee = TransactionByteFee; diff --git a/test/subspace-test-service/src/lib.rs b/test/subspace-test-service/src/lib.rs index 1816616ec5c..63e8d933954 100644 --- a/test/subspace-test-service/src/lib.rs +++ b/test/subspace-test-service/src/lib.rs @@ -250,6 +250,7 @@ pub fn node_config( announce_block: true, data_path: base_path.path().into(), base_path, + warm_up_trie_cache: None, } } From 10db82105b9417c2391a7153a063e5aa4b3393d4 Mon Sep 17 00:00:00 2001 From: Vedhavyas Singareddi <7549475+vedhavyas@users.noreply.github.com> Date: Sun, 29 Mar 2026 00:43:45 +0530 Subject: [PATCH 2/2] upgrade polkadot-sdk and frontier to stable2512 --- .github/workflows/rust.yml | 7 + .gitignore | 1 + Cargo.lock | 5688 +++++++++-------- Cargo.toml | 298 +- crates/pallet-domains/src/lib.rs | 1 - crates/pallet-domains/src/tests.rs | 2 + .../sc-consensus-subspace/src/block_import.rs | 2 +- .../src/execution_prover.rs | 1 + crates/sp-domains-fraud-proof/src/tests.rs | 22 +- crates/sp-domains/src/bundle/bundle_v0.rs | 2 +- crates/subspace-fake-runtime-api/src/lib.rs | 11 +- crates/subspace-malicious-operator/src/lib.rs | 1 + .../src/malicious_bundle_tamper.rs | 2 +- crates/subspace-node/src/main.rs | 1 + crates/subspace-runtime/src/fees.rs | 6 + crates/subspace-runtime/src/lib.rs | 11 +- .../src/weights/pallet_domains.rs | 219 +- crates/subspace-service/src/config.rs | 4 + crates/subspace-service/src/lib.rs | 2 + crates/subspace-service/src/sync_from_dsn.rs | 2 +- crates/subspace-service/src/task_spawner.rs | 34 +- .../client/block-builder/src/custom_api.rs | 1 + domains/client/block-preprocessor/src/lib.rs | 1 + domains/client/domain-operator/src/tests.rs | 13 +- domains/client/eth-service/src/rpc.rs | 2 +- domains/pallets/auto-id/src/lib.rs | 1 - domains/pallets/block-fees/src/fees.rs | 9 + domains/pallets/executive/src/lib.rs | 34 +- domains/primitives/evm-precompiles/src/lib.rs | 3 +- domains/runtime/auto-id/src/lib.rs | 4 +- domains/runtime/evm/src/lib.rs | 4 +- domains/service/src/config.rs | 3 + domains/service/src/domain.rs | 2 + domains/test/runtime/auto-id/src/lib.rs | 4 +- domains/test/runtime/evm/src/lib.rs | 4 +- domains/test/service/src/lib.rs | 2 + scripts/runtime-benchmark.sh | 5 - test/subspace-test-runtime/src/lib.rs | 15 +- test/subspace-test-service/src/lib.rs | 3 + 39 files changed, 3568 insertions(+), 2859 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 1315c66c5da..4cdefdeff68 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -307,6 +307,13 @@ jobs: ~/.cargo/git/db key: ${{ runner.os }}-cargo-${{ hashFiles('./Cargo.toml') }} + # Disable PDB generation on Windows to avoid LNK1318 PDB size limits with large test binaries + # (wasmtime 35+ makes domain_client_operator test binary exceed PDB page count limits) + # /DEBUG:NONE tells the MSVC linker to skip PDB file creation entirely + - name: Configure Windows linker + run: echo "RUSTFLAGS=$env:RUSTFLAGS -C debuginfo=0 -C link-arg=/DEBUG:NONE" >> $env:GITHUB_ENV + if: runner.os == 'Windows' + - name: cargo nextest run --locked run: | cargo -Zgitoxide -Zgit nextest run --locked diff --git a/.gitignore b/.gitignore index 5c289c0e2d8..c38abfd7758 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ /target /test/subspace-test-fuzzer/target /test/subspace-test-fuzzer/output +.envrc diff --git a/Cargo.lock b/Cargo.lock index cf477732d1f..97d30bfb58c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -24,7 +24,7 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5f7b0a21988c1bf877cf4759ef5ddaac04c1c9fe808c9142ecb78ba97d97a28a" dependencies = [ - "bitflags 2.9.1", + "bitflags 2.11.0", "bytes", "futures-core", "futures-sink", @@ -37,35 +37,31 @@ dependencies = [ [[package]] name = "actix-http" -version = "3.9.0" +version = "3.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d48f96fc3003717aeb9856ca3d02a8c7de502667ad76eeacd830b48d2e91fac4" +checksum = "f860ee6746d0c5b682147b2f7f8ef036d4f92fe518251a3a35ffa3650eafdf0e" dependencies = [ "actix-codec", "actix-rt", "actix-service", "actix-tls", "actix-utils", - "ahash", - "base64 0.22.1", - "bitflags 2.9.1", + "bitflags 2.11.0", "bytes", "bytestring", - "derive_more 0.99.18", + "derive_more 2.1.1", "encoding_rs", + "foldhash 0.1.5", "futures-core", - "h2 0.3.26", + "h2 0.3.27", "http 0.2.12", "httparse", "httpdate", "itoa", "language-tags", - "local-channel", "mime", "percent-encoding", "pin-project-lite", - "rand 0.8.5", - "sha1", "smallvec", "tokio", "tokio-util", @@ -79,14 +75,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e01ed3140b2f8d422c68afa1ed2e85d996ea619c988ac834d255db32138655cb" dependencies = [ "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] name = "actix-router" -version = "0.5.3" +version = "0.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "13d324164c51f63867b57e73ba5936ea151b8a41a1d23d1031eeb9f70d0236f8" +checksum = "14f8c75c51892f18d9c46150c5ac7beb81c95f78c8b83a634d49f4ca32551fe7" dependencies = [ "bytestring", "cfg-if", @@ -98,9 +94,9 @@ dependencies = [ [[package]] name = "actix-rt" -version = "2.10.0" +version = "2.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "24eda4e2a6e042aa4e55ac438a2ae052d3b5da0ecf83d7411e1a368946925208" +checksum = "92589714878ca59a7626ea19734f0e07a6a875197eec751bb5d3f99e64998c63" dependencies = [ "futures-core", "tokio", @@ -108,9 +104,9 @@ dependencies = [ [[package]] name = "actix-server" -version = "2.5.0" +version = "2.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7ca2549781d8dd6d75c40cf6b6051260a2cc2f3c62343d761a969a0640646894" +checksum = "a65064ea4a457eaf07f2fba30b4c695bf43b721790e9530d26cb6f9019ff7502" dependencies = [ "actix-rt", "actix-service", @@ -118,27 +114,26 @@ dependencies = [ "futures-core", "futures-util", "mio", - "socket2", + "socket2 0.5.10", "tokio", "tracing", ] [[package]] name = "actix-service" -version = "2.0.2" +version = "2.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3b894941f818cfdc7ccc4b9e60fa7e53b5042a2e8567270f9147d5591893373a" +checksum = "9e46f36bf0e5af44bdc4bdb36fbbd421aa98c79a9bce724e1edeb3894e10dc7f" dependencies = [ "futures-core", - "paste", "pin-project-lite", ] [[package]] name = "actix-tls" -version = "3.4.0" +version = "3.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ac453898d866cdbecdbc2334fe1738c747b4eba14a677261f2b768ba05329389" +checksum = "6176099de3f58fbddac916a7f8c6db297e021d706e7a6b99947785fee14abe9f" dependencies = [ "actix-rt", "actix-service", @@ -165,9 +160,9 @@ dependencies = [ [[package]] name = "actix-web" -version = "4.9.0" +version = "4.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9180d76e5cc7ccbc4d60a506f2c727730b154010262df5b910eb17dbe4b8cb38" +checksum = "ff87453bc3b56e9b2b23c1cc0b1be8797184accf51d2abe0f8a33ec275d316bf" dependencies = [ "actix-codec", "actix-http", @@ -179,12 +174,12 @@ dependencies = [ "actix-tls", "actix-utils", "actix-web-codegen", - "ahash", "bytes", "bytestring", "cfg-if", - "derive_more 0.99.18", + "derive_more 2.1.1", "encoding_rs", + "foldhash 0.1.5", "futures-core", "futures-util", "impl-more", @@ -199,8 +194,9 @@ dependencies = [ "serde_json", "serde_urlencoded", "smallvec", - "socket2", + "socket2 0.6.3", "time", + "tracing", "url", ] @@ -213,32 +209,32 @@ dependencies = [ "actix-router", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] name = "addr2line" -version = "0.19.0" +version = "0.24.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a76fd60b23679b7d19bd066031410fb7e458ccc5e958eb5c325888ce4baedc97" +checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1" dependencies = [ - "gimli 0.27.3", + "gimli 0.31.1", ] [[package]] name = "addr2line" -version = "0.24.1" +version = "0.25.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f5fb1d8e4442bd405fdfd1dacb42792696b0cf9cb15882e5d097b742a676d375" +checksum = "1b5d307320b3181d6d7954e663bd7c774a838b8220fe0593c86d9fb09f498b4b" dependencies = [ - "gimli 0.31.1", + "gimli 0.32.3", ] [[package]] name = "adler2" -version = "2.0.0" +version = "2.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627" +checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa" [[package]] name = "aead" @@ -246,7 +242,7 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0" dependencies = [ - "crypto-common 0.1.6", + "crypto-common 0.1.7", "generic-array 0.14.7", ] @@ -263,12 +259,12 @@ dependencies = [ [[package]] name = "aes" -version = "0.9.0-rc.0" +version = "0.9.0-rc.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd4838e4ad37bb032dea137f441d5f71c16c26c068af512e64c5bc13a88cdfc7" +checksum = "04097e08a47d9ad181c2e1f4a5fabc9ae06ce8839a333ba9a949bcb0d31fd2a3" dependencies = [ - "cfg-if", - "cipher 0.5.0-rc.0", + "cipher 0.5.1", + "cpubits", "cpufeatures", ] @@ -288,22 +284,33 @@ dependencies = [ [[package]] name = "ahash" -version = "0.8.11" +version = "0.7.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9" +dependencies = [ + "getrandom 0.2.17", + "once_cell", + "version_check", +] + +[[package]] +name = "ahash" +version = "0.8.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011" +checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75" dependencies = [ "cfg-if", - "getrandom 0.2.15", + "getrandom 0.3.4", "once_cell", "version_check", - "zerocopy 0.7.35", + "zerocopy", ] [[package]] name = "aho-corasick" -version = "1.1.3" +version = "1.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" +checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301" dependencies = [ "memchr", ] @@ -316,15 +323,9 @@ checksum = "250f629c0161ad8107cf89319e990051fae62832fd343083bea452d93e2205fd" [[package]] name = "allocator-api2" -version = "0.2.18" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c6cb57a04249c6480766f7f7cef5467412af1490f8d1e243141daddada3264f" - -[[package]] -name = "android-tzdata" -version = "0.1.1" +version = "0.2.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" +checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923" [[package]] name = "android_system_properties" @@ -343,9 +344,9 @@ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299" [[package]] name = "anstream" -version = "0.6.15" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "64e15c1ab1f89faffbf04a634d5e1962e9074f2741eef6d97f3c4e322426d526" +checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d" dependencies = [ "anstyle", "anstyle-parse", @@ -358,43 +359,44 @@ dependencies = [ [[package]] name = "anstyle" -version = "1.0.8" +version = "1.0.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1bec1de6f59aedf83baf9ff929c98f2ad654b97c9510f4e70cf6f661d49fd5b1" +checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000" [[package]] name = "anstyle-parse" -version = "0.2.5" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eb47de1e80c2b463c735db5b217a0ddc39d612e7ac9e2e96a5aed1f57616c1cb" +checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e" dependencies = [ "utf8parse", ] [[package]] name = "anstyle-query" -version = "1.1.1" +version = "1.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6d36fc52c7f6c869915e99412912f22093507da8d9e942ceaf66fe4b7c14422a" +checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc" dependencies = [ - "windows-sys 0.52.0", + "windows-sys 0.61.2", ] [[package]] name = "anstyle-wincon" -version = "3.0.4" +version = "3.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5bf74e1b6e971609db8ca7a9ce79fd5768ab6ae46441c572e46cf596f59e57f8" +checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d" dependencies = [ "anstyle", - "windows-sys 0.52.0", + "once_cell_polyfill", + "windows-sys 0.61.2", ] [[package]] name = "anyhow" -version = "1.0.89" +version = "1.0.102" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "86fdf8605db99b54d3cd748a44c6d04df638eb5dafb219b135d0149bd0db01f6" +checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c" [[package]] name = "approx" @@ -416,9 +418,15 @@ dependencies = [ "proc-macro-error", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", ] +[[package]] +name = "arbitrary" +version = "1.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1" + [[package]] name = "ark-bls12-377" version = "0.4.0" @@ -477,7 +485,7 @@ version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "43d68f2d516162846c1238e755a7c4d131b892b70cc70c471a8e3ca3ed818fce" dependencies = [ - "ahash", + "ahash 0.8.12", "ark-ff 0.5.0", "ark-poly 0.5.0", "ark-serialize 0.5.0", @@ -561,7 +569,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "62945a2f7e6de02a31fe400aa489f0e0f5b2502e69f95f853adb82a96c7a6b60" dependencies = [ "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] @@ -587,7 +595,7 @@ dependencies = [ "num-traits", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] @@ -609,7 +617,7 @@ version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "579305839da207f02b89cd1679e50e67b4331e2f9294a57693e5051b7703fe27" dependencies = [ - "ahash", + "ahash 0.8.12", "ark-ff 0.5.0", "ark-serialize 0.5.0", "ark-std 0.5.0", @@ -662,7 +670,7 @@ checksum = "213888f660fddcca0d257e88e54ac05bca01885f258ccdf695bafd77031bb69d" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] @@ -701,9 +709,9 @@ dependencies = [ [[package]] name = "ark-vrf" -version = "0.1.0" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9501da18569b2afe0eb934fb7afd5a247d238b94116155af4dd068f319adfe6d" +checksum = "0d63e9780640021b74d02b32895d8cec1b4abe8e5547b560a6bda6b14b78c6da" dependencies = [ "ark-bls12-381 0.5.0", "ark-ec 0.5.0", @@ -713,7 +721,7 @@ dependencies = [ "ark-std 0.5.0", "digest 0.10.7", "rand_chacha 0.3.1", - "sha2 0.10.8", + "sha2 0.10.9", "w3f-ring-proof", "zeroize", ] @@ -754,10 +762,10 @@ dependencies = [ "asn1-rs-derive 0.5.1", "asn1-rs-impl", "displaydoc", - "nom", + "nom 7.1.3", "num-traits", "rusticata-macros", - "thiserror 1.0.64", + "thiserror 1.0.69", "time", ] @@ -770,10 +778,10 @@ dependencies = [ "asn1-rs-derive 0.6.0", "asn1-rs-impl", "displaydoc", - "nom", + "nom 7.1.3", "num-traits", "rusticata-macros", - "thiserror 2.0.12", + "thiserror 2.0.18", "time", ] @@ -785,8 +793,8 @@ checksum = "965c2d33e53cb6b267e148a4cb0760bc01f4904c1cd4bb4002a085bb016d1490" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", - "synstructure 0.13.1", + "syn 2.0.117", + "synstructure 0.13.2", ] [[package]] @@ -797,8 +805,8 @@ checksum = "3109e49b1e4909e9db6515a30c633684d68cdeaa252f215214cb4fa1a5bfee2c" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", - "synstructure 0.13.1", + "syn 2.0.117", + "synstructure 0.13.2", ] [[package]] @@ -809,7 +817,7 @@ checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] @@ -825,9 +833,9 @@ dependencies = [ [[package]] name = "async-channel" -version = "2.3.1" +version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "89b47800b0be77592da0afd425cc03468052844aff33b84e33cc696f64e77b6a" +checksum = "924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2" dependencies = [ "concurrent-queue", "event-listener-strategy", @@ -837,22 +845,23 @@ dependencies = [ [[package]] name = "async-executor" -version = "1.13.1" +version = "1.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "30ca9a001c1e8ba5149f91a74362376cc6bc5b919d92d988668657bd570bdcec" +checksum = "c96bf972d85afc50bf5ab8fe2d54d1586b4e0b46c97c50a0c9e71e2f7bcd812a" dependencies = [ "async-task", "concurrent-queue", "fastrand", "futures-lite", + "pin-project-lite", "slab", ] [[package]] name = "async-fs" -version = "2.1.2" +version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ebcd09b382f40fcd159c2d695175b2ae620ffa5f3bd6f664131efff4e8b9e04a" +checksum = "8034a681df4aed8b8edbd7fbe472401ecf009251c8b40556b304567052e294c5" dependencies = [ "async-lock", "blocking", @@ -861,30 +870,29 @@ dependencies = [ [[package]] name = "async-io" -version = "2.3.4" +version = "2.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "444b0228950ee6501b3568d3c93bf1176a1fdbc3b758dcd9475046d30f4dc7e8" +checksum = "456b8a8feb6f42d237746d4b3e9a178494627745c3c56c6ea55d92ba50d026fc" dependencies = [ - "async-lock", + "autocfg", "cfg-if", "concurrent-queue", "futures-io", "futures-lite", "parking", "polling", - "rustix 0.38.37", + "rustix 1.1.4", "slab", - "tracing", - "windows-sys 0.59.0", + "windows-sys 0.61.2", ] [[package]] name = "async-lock" -version = "3.4.0" +version = "3.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ff6e472cdea888a4bd64f342f09b3f50e1886d32afe8df3d663c01140b811b18" +checksum = "290f7f2596bd5b78a9fec8088ccd89180d7f9f55b94b0576823bbbdc72ee8311" dependencies = [ - "event-listener 5.3.1", + "event-listener 5.4.1", "event-listener-strategy", "pin-project-lite", ] @@ -895,7 +903,7 @@ version = "0.37.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fd3bdd6ea595b2ea504500a3566071beb81125fc15d40a6f6bffa43575f64152" dependencies = [ - "base64 0.22.1", + "base64", "bytes", "futures", "memchr", @@ -905,7 +913,7 @@ dependencies = [ "portable-atomic", "rand 0.8.5", "regex", - "ring 0.17.13", + "ring 0.17.14", "rustls-native-certs 0.7.3", "rustls-pemfile", "rustls-webpki 0.102.8", @@ -913,10 +921,10 @@ dependencies = [ "serde_json", "serde_nanos", "serde_repr", - "thiserror 1.0.64", + "thiserror 1.0.69", "time", "tokio", - "tokio-rustls 0.26.0", + "tokio-rustls 0.26.4", "tokio-util", "tracing", "tryhard", @@ -945,28 +953,27 @@ dependencies = [ [[package]] name = "async-process" -version = "2.3.0" +version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "63255f1dc2381611000436537bbedfe83183faa303a5a0edaf191edef06526bb" +checksum = "fc50921ec0055cdd8a16de48773bfeec5c972598674347252c0399676be7da75" dependencies = [ - "async-channel 2.3.1", + "async-channel 2.5.0", "async-io", "async-lock", "async-signal", "async-task", "blocking", "cfg-if", - "event-listener 5.3.1", + "event-listener 5.4.1", "futures-lite", - "rustix 0.38.37", - "tracing", + "rustix 1.1.4", ] [[package]] name = "async-signal" -version = "0.2.10" +version = "0.2.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "637e00349800c0bdf8bfc21ebbc0b6524abea702b0da4168ac00d070d0c0b9f3" +checksum = "43c070bbf59cd3570b6b2dd54cd772527c7c3620fce8be898406dd3ed6adc64c" dependencies = [ "async-io", "async-lock", @@ -974,10 +981,10 @@ dependencies = [ "cfg-if", "futures-core", "futures-io", - "rustix 0.38.37", + "rustix 1.1.4", "signal-hook-registry", "slab", - "windows-sys 0.59.0", + "windows-sys 0.61.2", ] [[package]] @@ -988,13 +995,13 @@ checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de" [[package]] name = "async-trait" -version = "0.1.88" +version = "0.1.89" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5" +checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] @@ -1035,28 +1042,14 @@ version = "1.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" -[[package]] -name = "attohttpc" -version = "0.28.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9a13149d0cf3f7f9b9261fad4ec63b2efbf9a80665f52def86282d26255e6331" -dependencies = [ - "flate2", - "http 1.1.0", - "log", - "rustls 0.22.4", - "url", - "webpki-roots 0.26.6", -] - [[package]] name = "attohttpc" version = "0.30.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "16e2cdb6d5ed835199484bb92bb8b3edd526effe995c61732580439c1a67e2e9" dependencies = [ - "base64 0.22.1", - "http 1.1.0", + "base64", + "http 1.4.0", "log", "url", ] @@ -1163,20 +1156,20 @@ dependencies = [ [[package]] name = "auto_impl" -version = "1.2.0" +version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c87f3f15e7794432337fc718554eaa4dc8f04c9677a950ffe366f20a162ae42" +checksum = "ffdcb70bdbc4d478427380519163274ac86e52916e10f0a8889adf0f96d3fee7" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] name = "autocfg" -version = "1.4.0" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26" +checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" [[package]] name = "autotools" @@ -1194,7 +1187,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b62ddb9cb1ec0a098ad4bbf9344d0713fa193ae1a80af55febcff2627b6a00c1" dependencies = [ "futures-core", - "getrandom 0.2.15", + "getrandom 0.2.17", "instant", "pin-project-lite", "rand 0.8.5", @@ -1203,17 +1196,17 @@ dependencies = [ [[package]] name = "backtrace" -version = "0.3.74" +version = "0.3.76" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a" +checksum = "bb531853791a215d7c62a30daf0dde835f381ab5de4589cfe7c649d2cbe92bd6" dependencies = [ - "addr2line 0.24.1", + "addr2line 0.25.1", "cfg-if", "libc", "miniz_oxide", - "object 0.36.4", + "object 0.37.3", "rustc-demangle", - "windows-targets 0.52.6", + "windows-link", ] [[package]] @@ -1229,16 +1222,20 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf" [[package]] -name = "base58" -version = "0.2.0" +name = "base256emoji" +version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6107fe1be6682a68940da878d9e9f5e90ca5745b3dec9fd1bb393c8777d4f581" +checksum = "b5e9430d9a245a77c92176e649af6e275f20839a48389859d1661e9a128d077c" +dependencies = [ + "const-str", + "match-lookup", +] [[package]] -name = "base64" -version = "0.21.7" +name = "base58" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" +checksum = "6107fe1be6682a68940da878d9e9f5e90ca5745b3dec9fd1bb393c8777d4f581" [[package]] name = "base64" @@ -1248,14 +1245,14 @@ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" [[package]] name = "base64ct" -version = "1.6.0" +version = "1.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" +checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06" [[package]] name = "binary-merkle-tree" -version = "16.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "16.1.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "hash-db", "log", @@ -1283,18 +1280,18 @@ dependencies = [ "rand_core 0.6.4", "ripemd", "secp256k1 0.27.0", - "sha2 0.10.8", + "sha2 0.10.9", "subtle 2.6.1", "zeroize", ] [[package]] name = "bip39" -version = "2.2.0" +version = "2.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "43d193de1f7487df1914d3a568b772458861d33f9c54249612cc2893d6915054" +checksum = "90dbd31c98227229239363921e60fcf5e558e43ec69094d46fc4996f08d1d5bc" dependencies = [ - "bitcoin_hashes 0.13.0", + "bitcoin_hashes", "rand 0.8.5", "rand_core 0.6.4", "serde", @@ -1316,12 +1313,6 @@ version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7" -[[package]] -name = "bitcoin-internals" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9425c3bf7089c983facbae04de54513cce73b41c7f9ff8c845b54e7bc64ebbfb" - [[package]] name = "bitcoin-io" version = "0.1.4" @@ -1330,22 +1321,12 @@ checksum = "2dee39a0ee5b4095224a0cfc6bf4cc1baf0f9624b96b367e53b66d974e51d953" [[package]] name = "bitcoin_hashes" -version = "0.13.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1930a4dabfebb8d7d9992db18ebe3ae2876f0a305fab206fd168df931ede293b" -dependencies = [ - "bitcoin-internals", - "hex-conservative 0.1.2", -] - -[[package]] -name = "bitcoin_hashes" -version = "0.14.0" +version = "0.14.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb18c03d0db0247e147a21a6faafd5a7eb851c743db062de72018b6b7e8e4d16" +checksum = "26ec84b80c482df901772e931a9a681e26a1b9ee2302edeff23cb30328745c8b" dependencies = [ "bitcoin-io", - "hex-conservative 0.2.2", + "hex-conservative", ] [[package]] @@ -1356,9 +1337,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" [[package]] name = "bitflags" -version = "2.9.1" +version = "2.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967" +checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af" [[package]] name = "bitvec" @@ -1406,37 +1387,27 @@ dependencies = [ [[package]] name = "blake2b_simd" -version = "1.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "23285ad32269793932e830392f2fe2f83e26488fd3ec778883a93c8323735780" -dependencies = [ - "arrayref", - "arrayvec 0.7.6", - "constant_time_eq 0.3.1", -] - -[[package]] -name = "blake2s_simd" -version = "1.0.2" +version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "94230421e395b9920d23df13ea5d77a20e1725331f90fbbf6df6040b33f756ae" +checksum = "b79834656f71332577234b50bfc009996f7449e0c056884e6a02492ded0ca2f3" dependencies = [ "arrayref", "arrayvec 0.7.6", - "constant_time_eq 0.3.1", + "constant_time_eq 0.4.2", ] [[package]] name = "blake3" -version = "1.8.2" +version = "1.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3888aaa89e4b2a40fca9848e400f6a658a5a3978de7be858e209cafa8be9a4a0" +checksum = "2468ef7d57b3fb7e16b576e8377cdbde2320c60e1491e961d11da40fc4f02a2d" dependencies = [ "arrayref", "arrayvec 0.7.6", "cc", "cfg-if", - "constant_time_eq 0.3.1", + "constant_time_eq 0.4.2", + "cpufeatures", "rayon-core", ] @@ -1460,11 +1431,11 @@ dependencies = [ [[package]] name = "blocking" -version = "1.6.1" +version = "1.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "703f41c54fc768e63e091340b424302bb1c29ef4aa0c7f10fe849dfb114d29ea" +checksum = "e83f8d02be6967315521be875afa792a316e28d57b5a2d401897e2a7921b7f21" dependencies = [ - "async-channel 2.3.1", + "async-channel 2.5.0", "async-task", "futures-io", "futures-lite", @@ -1473,9 +1444,9 @@ dependencies = [ [[package]] name = "blst" -version = "0.3.13" +version = "0.3.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4378725facc195f1a538864863f6de233b500a8862747e7f165078a419d5e874" +checksum = "dcdb4c7013139a150f9fc55d123186dbfaba0d912817466282c73ac49e71fb45" dependencies = [ "cc", "glob", @@ -1485,10 +1456,11 @@ dependencies = [ [[package]] name = "bounded-collections" -version = "0.2.4" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "64ad8a0bed7827f0b07a5d23cec2e58cc02038a99e4ca81616cb2bb2025f804d" +checksum = "dee8eddd066a8825ec5570528e6880471210fd5d88cb6abbe1cfdd51ca249c33" dependencies = [ + "jam-codec", "log", "parity-scale-codec", "scale-info", @@ -1501,7 +1473,7 @@ version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "68534a48cbf63a4b1323c433cf21238c9ec23711e0df13b08c33e5c2082663ce" dependencies = [ - "thiserror 1.0.64", + "thiserror 1.0.69", ] [[package]] @@ -1510,7 +1482,7 @@ version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bf88ba1141d185c399bee5288d850d63b8369520c1eafc32a0430b5b6c287bf4" dependencies = [ - "sha2 0.10.8", + "sha2 0.10.9", "tinyvec", ] @@ -1525,9 +1497,12 @@ dependencies = [ [[package]] name = "bumpalo" -version = "3.16.0" +version = "3.20.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" +checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb" +dependencies = [ + "allocator-api2", +] [[package]] name = "byte-slice-cast" @@ -1543,9 +1518,9 @@ checksum = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7" [[package]] name = "bytemuck" -version = "1.18.0" +version = "1.25.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "94bbb0ad554ad961ddc5da507a12a29b14e4ae5bda06b19f575a3e6079d2e2ae" +checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec" [[package]] name = "byteorder" @@ -1564,15 +1539,15 @@ dependencies = [ [[package]] name = "bytesize" -version = "1.3.0" +version = "1.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a3e368af43e418a04d52505cf3dbc23dda4e3407ae2fa99fd0e4f308ce546acc" +checksum = "2e93abca9e28e0a1b9877922aacb20576e05d4679ffa78c3d6dc22a26a216659" [[package]] name = "bytestring" -version = "1.3.1" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "74d80203ea6b29df88012294f62733de21cfeab47f17b41af3a38bc30a03ee72" +checksum = "113b4343b5f6617e7ad401ced8de3cc8b012e73a594347c307b90db3e9271289" dependencies = [ "bytes", ] @@ -1589,18 +1564,18 @@ dependencies = [ [[package]] name = "camino" -version = "1.1.9" +version = "1.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b96ec4966b5813e2c0507c1f86115c8c5abaadc3980879c3424042a02fd1ad3" +checksum = "e629a66d692cb9ff1a1c664e41771b3dcaf961985a9774c0eb0bd1b51cf60a48" dependencies = [ - "serde", + "serde_core", ] [[package]] name = "cargo-platform" -version = "0.1.8" +version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "24b1f0365a6c6bb4020cd05806fd0d33c44d38046b8bd7f0e40814b9763cabfc" +checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea" dependencies = [ "serde", ] @@ -1613,10 +1588,10 @@ checksum = "eee4243f1f26fc7a42710e7439c149e2b10b05472f88090acce52632f231a73a" dependencies = [ "camino", "cargo-platform", - "semver 1.0.23", + "semver 1.0.27", "serde", "serde_json", - "thiserror 1.0.64", + "thiserror 1.0.69", ] [[package]] @@ -1633,10 +1608,11 @@ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5" [[package]] name = "cc" -version = "1.2.16" +version = "1.2.58" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "be714c154be609ec7f5dad223a33bf1482fff90472de28f7362806e6d4832b8c" +checksum = "e1e928d4b69e3077709075a938a05ffbedfa53a84c8f766efbf8220bb1ff60e1" dependencies = [ + "find-msvc-tools", "jobserver", "libc", "shlex", @@ -1659,9 +1635,9 @@ dependencies = [ [[package]] name = "cfg-if" -version = "1.0.0" +version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" +checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" [[package]] name = "cfg_aliases" @@ -1669,6 +1645,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" @@ -1705,17 +1687,16 @@ dependencies = [ [[package]] name = "chrono" -version = "0.4.38" +version = "0.4.44" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401" +checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0" dependencies = [ - "android-tzdata", "iana-time-zone", "js-sys", "num-traits", "serde", "wasm-bindgen", - "windows-targets 0.52.6", + "windows-link", ] [[package]] @@ -1745,19 +1726,6 @@ dependencies = [ "half", ] -[[package]] -name = "cid" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b9b68e3193982cd54187d71afdb2a271ad4cf8af157858e9cb911b91321de143" -dependencies = [ - "core2", - "multibase", - "multihash 0.17.0", - "serde", - "unsigned-varint 0.7.2", -] - [[package]] name = "cid" version = "0.11.1" @@ -1766,7 +1734,7 @@ checksum = "3147d8272e8fa0ccd29ce51194dd98f79ddfb8191ba9e3409884e751798acf3a" dependencies = [ "core2", "multibase", - "multihash 0.19.1", + "multihash 0.19.3", "unsigned-varint 0.8.0", ] @@ -1785,26 +1753,26 @@ version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad" dependencies = [ - "crypto-common 0.1.6", - "inout 0.1.3", + "crypto-common 0.1.7", + "inout 0.1.4", "zeroize", ] [[package]] name = "cipher" -version = "0.5.0-rc.0" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bd4ef774202f1749465fc7cf88d70fc30620e8cacd5429268f4bff7d003bd976" +checksum = "e34d8227fe1ba289043aeb13792056ff80fd6de1a9f49137a5f499de8e8c78ea" dependencies = [ - "crypto-common 0.2.0-rc.3", - "inout 0.2.0-rc.5", + "crypto-common 0.2.1", + "inout 0.2.2", ] [[package]] name = "clap" -version = "4.5.18" +version = "4.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b0956a43b323ac1afaffc053ed5c4b7c1f1800bacd1683c353aabbb752515dd3" +checksum = "b193af5b67834b676abd72466a96c1024e6a6ad978a1f484bd90b85c94041351" dependencies = [ "clap_builder", "clap_derive", @@ -1812,9 +1780,9 @@ dependencies = [ [[package]] name = "clap_builder" -version = "4.5.18" +version = "4.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4d72166dd41634086d5803a47eb71ae740e61d84709c36f3c34110173db3961b" +checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f" dependencies = [ "anstream", "anstyle", @@ -1825,57 +1793,67 @@ dependencies = [ [[package]] name = "clap_derive" -version = "4.5.18" +version = "4.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ac6a0c7b1a9e9a5186361f67dfa1b88213572f427fb9ab038efb2bd8c582dab" +checksum = "1110bd8a634a1ab8cb04345d8d878267d57c3cf1b38d91b71af6686408bbca6a" dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] name = "clap_lex" -version = "0.7.2" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97" +checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9" [[package]] name = "cmake" -version = "0.1.51" +version = "0.1.58" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fb1e43aa7fd152b1f968787f7dbcdeb306d1867ff373c69955211876c053f91a" +checksum = "c0f78a02292a74a88ac736019ab962ece0bc380e3f977bf72e376c5d78ff0678" dependencies = [ "cc", ] [[package]] name = "coarsetime" -version = "0.1.35" +version = "0.1.37" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4252bf230cb600c19826a575b31c8c9c84c6f11acfab6dfcad2e941b10b6f8e2" +checksum = "e58eb270476aa4fc7843849f8a35063e8743b4dbcdf6dd0f8ea0886980c204c2" dependencies = [ "libc", "wasix", "wasm-bindgen", ] +[[package]] +name = "cobs" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fa961b519f0b462e3a3b4a34b64d119eeaca1d59af726fe450bbba07a9fc0a1" +dependencies = [ + "thiserror 2.0.18", +] + [[package]] name = "codespan-reporting" -version = "0.11.1" +version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e" +checksum = "af491d569909a7e4dee0ad7db7f5341fef5c614d5b8ec8cf765732aba3cff681" dependencies = [ + "serde", "termcolor", - "unicode-width 0.1.14", + "unicode-width", ] [[package]] name = "colorchoice" -version = "1.0.2" +version = "1.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d3fd119d74b830634cea2a0f58bbd0d54540518a14397557951e79340abc28c0" +checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570" [[package]] name = "combine" @@ -1889,12 +1867,12 @@ dependencies = [ [[package]] name = "comfy-table" -version = "7.1.4" +version = "7.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4a65ebfec4fb190b6f90e944a817d60499ee0744e582530e2c9900a22e591d9a" +checksum = "958c5d6ecf1f214b4c2bbbbf6ab9523a864bd136dcf71a7e8904799acfe1ad47" dependencies = [ "unicode-segmentation", - "unicode-width 0.2.0", + "unicode-width", ] [[package]] @@ -1914,15 +1892,15 @@ dependencies = [ [[package]] name = "console" -version = "0.15.8" +version = "0.15.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0e1f83fc076bd6dd27517eacdf25fef6c4dfe5f1d7448bafaaf3a26f13b5e4eb" +checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8" dependencies = [ "encode_unicode", - "lazy_static", "libc", - "unicode-width 0.1.14", - "windows-sys 0.52.0", + "once_cell", + "unicode-width", + "windows-sys 0.59.0", ] [[package]] @@ -1946,11 +1924,17 @@ version = "0.1.16" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e" dependencies = [ - "getrandom 0.2.15", + "getrandom 0.2.17", "once_cell", "tiny-keccak", ] +[[package]] +name = "const-str" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2f421161cb492475f1661ddc9815a745a1c894592070661180fdec3d4872e9c3" + [[package]] name = "const_format" version = "0.2.35" @@ -1979,9 +1963,9 @@ checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc" [[package]] name = "constant_time_eq" -version = "0.3.1" +version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6" +checksum = "3d52eff69cd5e647efe296129160853a42795992097e8af39800e1060caeea9b" [[package]] name = "convert_case" @@ -1998,6 +1982,15 @@ dependencies = [ "unicode-segmentation", ] +[[package]] +name = "convert_case" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "633458d4ef8c78b72454de2d54fd6ab2e60f9e02be22f3c6104cdc8a4e0fceb9" +dependencies = [ + "unicode-segmentation", +] + [[package]] name = "core-foundation" version = "0.9.4" @@ -2010,9 +2003,9 @@ dependencies = [ [[package]] name = "core-foundation" -version = "0.10.0" +version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b55271e5c8c478ad3f38ad24ef34923091e0548492a266d19b3c0b4d82574c63" +checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6" dependencies = [ "core-foundation-sys", "libc", @@ -2035,9 +2028,9 @@ dependencies = [ [[package]] name = "core_affinity" -version = "0.8.1" +version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "622892f5635ce1fc38c8f16dfc938553ed64af482edb5e150bf4caedbfcb2304" +checksum = "a034b3a7b624016c6e13f5df875747cc25f884156aad2abd12b6c46797971342" dependencies = [ "libc", "num_cpus", @@ -2046,13 +2039,19 @@ dependencies = [ [[package]] name = "cpp_demangle" -version = "0.3.5" +version = "0.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eeaa953eaad386a53111e47172c2fedba671e5684c8dd601a5f474f4f118710f" +checksum = "f2bb79cb74d735044c972aae58ed0aaa9a837e85b01106a54c39e42e97f62253" dependencies = [ "cfg-if", ] +[[package]] +name = "cpubits" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5ef0c543070d296ea414df2dd7625d1b24866ce206709d8a4a424f28377f5861" + [[package]] name = "cpufeatures" version = "0.2.17" @@ -2062,64 +2061,113 @@ dependencies = [ "libc", ] +[[package]] +name = "cranelift-assembler-x64" +version = "0.122.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ae7b60ec3fd7162427d3b3801520a1908bef7c035b52983cd3ca11b8e7deb51" +dependencies = [ + "cranelift-assembler-x64-meta", +] + +[[package]] +name = "cranelift-assembler-x64-meta" +version = "0.122.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6511c200fed36452697b4b6b161eae57d917a2044e6333b1c1389ed63ccadeee" +dependencies = [ + "cranelift-srcgen", +] + [[package]] name = "cranelift-bforest" -version = "0.95.1" +version = "0.122.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1277fbfa94bc82c8ec4af2ded3e639d49ca5f7f3c7eeab2c66accd135ece4e70" +checksum = "5f7086a645aa58bae979312f64e3029ac760ac1b577f5cd2417844842a2ca07f" dependencies = [ "cranelift-entity", ] +[[package]] +name = "cranelift-bitset" +version = "0.122.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5225b4dec45f3f3dbf383f12560fac5ce8d780f399893607e21406e12e77f491" +dependencies = [ + "serde", + "serde_derive", +] + [[package]] name = "cranelift-codegen" -version = "0.95.1" +version = "0.122.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c6e8c31ad3b2270e9aeec38723888fe1b0ace3bea2b06b3f749ccf46661d3220" +checksum = "858fb3331e53492a95979378d6df5208dd1d0d315f19c052be8115f4efc888e0" dependencies = [ "bumpalo", + "cranelift-assembler-x64", "cranelift-bforest", + "cranelift-bitset", "cranelift-codegen-meta", "cranelift-codegen-shared", + "cranelift-control", "cranelift-entity", "cranelift-isle", - "gimli 0.27.3", - "hashbrown 0.13.2", + "gimli 0.31.1", + "hashbrown 0.15.5", "log", - "regalloc2 0.6.1", + "pulley-interpreter", + "regalloc2 0.12.2", + "rustc-hash 2.1.1", + "serde", "smallvec", "target-lexicon", + "wasmtime-internal-math", ] [[package]] name = "cranelift-codegen-meta" -version = "0.95.1" +version = "0.122.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c8ac5ac30d62b2d66f12651f6b606dbdfd9c2cfd0908de6b387560a277c5c9da" +checksum = "456715b9d5f12398f156d5081096e7b5d039f01b9ecc49790a011c8e43e65b5f" dependencies = [ + "cranelift-assembler-x64-meta", "cranelift-codegen-shared", + "cranelift-srcgen", + "pulley-interpreter", ] [[package]] name = "cranelift-codegen-shared" -version = "0.95.1" +version = "0.122.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dd82b8b376247834b59ed9bdc0ddeb50f517452827d4a11bccf5937b213748b8" +checksum = "0306041099499833f167a0ddb707e1e54100f1a84eab5631bc3dad249708f482" + +[[package]] +name = "cranelift-control" +version = "0.122.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1672945e1f9afc2297f49c92623f5eabc64398e2cb0d824f8f72a2db2df5af23" +dependencies = [ + "arbitrary", +] [[package]] name = "cranelift-entity" -version = "0.95.1" +version = "0.122.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "40099d38061b37e505e63f89bab52199037a72b931ad4868d9089ff7268660b0" +checksum = "aa3cd55eb5f3825b9ae5de1530887907360a6334caccdc124c52f6d75246c98a" dependencies = [ + "cranelift-bitset", "serde", + "serde_derive", ] [[package]] name = "cranelift-frontend" -version = "0.95.1" +version = "0.122.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "64a25d9d0a0ae3079c463c34115ec59507b4707175454f0eee0891e83e30e82d" +checksum = "781f9905f8139b8de22987b66b522b416fe63eb76d823f0b3a8c02c8fd9500c7" dependencies = [ "cranelift-codegen", "log", @@ -2129,15 +2177,15 @@ dependencies = [ [[package]] name = "cranelift-isle" -version = "0.95.1" +version = "0.122.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "80de6a7d0486e4acbd5f9f87ec49912bf4c8fb6aea00087b989685460d4469ba" +checksum = "a05337a2b02c3df00b4dd9a263a027a07b3dff49f61f7da3b5d195c21eaa633d" [[package]] name = "cranelift-native" -version = "0.95.1" +version = "0.122.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb6b03e0e03801c4b3fd8ce0758a94750c07a44e7944cc0ffbf0d3f2e7c79b00" +checksum = "2eee7a496dd66380082c9c5b6f2d5fa149cec0ec383feec5caf079ca2b3671c2" dependencies = [ "cranelift-codegen", "libc", @@ -2145,26 +2193,16 @@ dependencies = [ ] [[package]] -name = "cranelift-wasm" -version = "0.95.1" +name = "cranelift-srcgen" +version = "0.122.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ff3220489a3d928ad91e59dd7aeaa8b3de18afb554a6211213673a71c90737ac" -dependencies = [ - "cranelift-codegen", - "cranelift-entity", - "cranelift-frontend", - "itertools 0.10.5", - "log", - "smallvec", - "wasmparser", - "wasmtime-types", -] +checksum = "b530783809a55cb68d070e0de60cfbb3db0dc94c8850dd5725411422bedcf6bb" [[package]] name = "crc32fast" -version = "1.4.2" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3" +checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511" dependencies = [ "cfg-if", ] @@ -2207,9 +2245,9 @@ dependencies = [ [[package]] name = "critical-section" -version = "1.1.3" +version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f64009896348fc5af4222e9cf7d7d82a95a256c634ebcf61c53e4ea461422242" +checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b" [[package]] name = "cross-domain-message-gossip" @@ -2219,7 +2257,7 @@ dependencies = [ "fp-account", "futures", "parity-scale-codec", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "sc-client-api", "sc-executor", "sc-network", @@ -2234,7 +2272,7 @@ dependencies = [ "sp-messenger", "sp-runtime", "subspace-runtime-primitives", - "thiserror 2.0.12", + "thiserror 2.0.18", "tracing", ] @@ -2249,9 +2287,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", @@ -2277,15 +2315,15 @@ dependencies = [ [[package]] name = "crossbeam-utils" -version = "0.8.20" +version = "0.8.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80" +checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" [[package]] name = "crunchy" -version = "0.2.2" +version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" +checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5" [[package]] name = "crypto-bigint" @@ -2301,9 +2339,9 @@ dependencies = [ [[package]] name = "crypto-common" -version = "0.1.6" +version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" +checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a" dependencies = [ "generic-array 0.14.7", "rand_core 0.6.4", @@ -2312,9 +2350,9 @@ dependencies = [ [[package]] name = "crypto-common" -version = "0.2.0-rc.3" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8a23fa214dea9efd4dacee5a5614646b30216ae0f05d4bb51bafb50e9da1c5be" +checksum = "77727bb15fa921304124b128af125e7e3b968275d1b108b379190264f4423710" dependencies = [ "hybrid-array", ] @@ -2365,8 +2403,8 @@ dependencies = [ [[package]] name = "cumulus-client-parachain-inherent" -version = "0.18.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "0.22.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2376,7 +2414,8 @@ dependencies = [ "parity-scale-codec", "sc-client-api", "sc-consensus-babe", - "sp-crypto-hashing 0.1.0 (git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e)", + "sc-network-types", + "sp-crypto-hashing 0.1.0 (git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249)", "sp-inherents", "sp-runtime", "sp-state-machine", @@ -2386,8 +2425,8 @@ dependencies = [ [[package]] name = "cumulus-pallet-parachain-system" -version = "0.21.2" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "0.25.1" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "array-bytes", "bytes", @@ -2424,19 +2463,19 @@ dependencies = [ [[package]] name = "cumulus-pallet-parachain-system-proc-macro" -version = "0.6.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "0.7.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ - "proc-macro-crate 3.2.0", + "proc-macro-crate 3.5.0", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] name = "cumulus-primitives-core" -version = "0.19.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "0.23.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "parity-scale-codec", "polkadot-core-primitives", @@ -2452,8 +2491,8 @@ dependencies = [ [[package]] name = "cumulus-primitives-parachain-inherent" -version = "0.19.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "0.23.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2466,8 +2505,8 @@ dependencies = [ [[package]] name = "cumulus-primitives-proof-size-hostfunction" -version = "0.13.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "0.16.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "sp-externalities", "sp-runtime-interface", @@ -2476,8 +2515,8 @@ dependencies = [ [[package]] name = "cumulus-primitives-storage-weight-reclaim" -version = "12.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "16.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "cumulus-primitives-core", "cumulus-primitives-proof-size-hostfunction", @@ -2493,8 +2532,8 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-interface" -version = "0.24.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "0.28.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2508,17 +2547,19 @@ dependencies = [ "sp-blockchain", "sp-state-machine", "sp-version", - "thiserror 1.0.64", + "thiserror 1.0.69", ] [[package]] name = "cumulus-test-relay-sproof-builder" -version = "0.20.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "0.24.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "cumulus-primitives-core", "parity-scale-codec", "polkadot-primitives", + "sp-consensus-babe", + "sp-core", "sp-runtime", "sp-state-machine", "sp-trie", @@ -2548,121 +2589,138 @@ checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] name = "cxx" -version = "1.0.128" +version = "1.0.194" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "54ccead7d199d584d139148b04b4a368d1ec7556a1d9ea2548febb1b9d49f9a4" +checksum = "747d8437319e3a2f43d93b341c137927ca70c0f5dabeea7a005a73665e247c7e" dependencies = [ "cc", + "cxx-build", + "cxxbridge-cmd", "cxxbridge-flags", "cxxbridge-macro", + "foldhash 0.2.0", "link-cplusplus", ] [[package]] name = "cxx-build" -version = "1.0.128" +version = "1.0.194" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c77953e99f01508f89f55c494bfa867171ef3a6c8cea03d26975368f2121a5c1" +checksum = "b0f4697d190a142477b16aef7da8a99bfdc41e7e8b1687583c0d23a79c7afc1e" dependencies = [ "cc", "codespan-reporting", - "once_cell", + "indexmap", "proc-macro2", "quote", "scratch", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] -name = "cxxbridge-flags" -version = "1.0.128" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "65777e06cc48f0cb0152024c77d6cf9e4bdb4408e7b48bea993d42fa0f5b02b6" - -[[package]] -name = "cxxbridge-macro" -version = "1.0.128" +name = "cxxbridge-cmd" +version = "1.0.194" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "98532a60dedaebc4848cb2cba5023337cc9ea3af16a5b062633fabfd9f18fb60" +checksum = "d0956799fa8678d4c50eed028f2de1c0552ae183c76e976cf7ca8c4e36a7c328" dependencies = [ + "clap", + "codespan-reporting", + "indexmap", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", +] + +[[package]] +name = "cxxbridge-flags" +version = "1.0.194" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "23384a836ab4f0ad98ace7e3955ad2de39de42378ab487dc28d3990392cb283a" + +[[package]] +name = "cxxbridge-macro" +version = "1.0.194" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6acc6b5822b9526adfb4fc377b67128fdd60aac757cc4a741a6278603f763cf" +dependencies = [ + "indexmap", + "proc-macro2", + "quote", + "syn 2.0.117", ] [[package]] name = "darling" -version = "0.20.10" +version = "0.20.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6f63b86c8a8826a49b8c21f08a2d07338eec8d900540f8630dc76284be802989" +checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee" dependencies = [ - "darling_core 0.20.10", - "darling_macro 0.20.10", + "darling_core 0.20.11", + "darling_macro 0.20.11", ] [[package]] name = "darling" -version = "0.21.3" +version = "0.23.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0" +checksum = "25ae13da2f202d56bd7f91c25fba009e7717a1e4a1cc98a76d844b65ae912e9d" dependencies = [ - "darling_core 0.21.3", - "darling_macro 0.21.3", + "darling_core 0.23.0", + "darling_macro 0.23.0", ] [[package]] name = "darling_core" -version = "0.20.10" +version = "0.20.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "95133861a8032aaea082871032f5815eb9e98cef03fa916ab4500513994df9e5" +checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e" dependencies = [ "fnv", "ident_case", "proc-macro2", "quote", "strsim", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] name = "darling_core" -version = "0.21.3" +version = "0.23.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4" +checksum = "9865a50f7c335f53564bb694ef660825eb8610e0a53d3e11bf1b0d3df31e03b0" dependencies = [ - "fnv", "ident_case", "proc-macro2", "quote", "strsim", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] name = "darling_macro" -version = "0.20.10" +version = "0.20.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806" +checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead" dependencies = [ - "darling_core 0.20.10", + "darling_core 0.20.11", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] name = "darling_macro" -version = "0.21.3" +version = "0.23.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81" +checksum = "ac3984ec7bd6cfa798e62b4a642426a5be0e68f9401cfc2a01e3fa9ea2fcdb8d" dependencies = [ - "darling_core 0.21.3", + "darling_core 0.23.0", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] @@ -2675,20 +2733,20 @@ dependencies = [ "hashbrown 0.14.5", "lock_api", "once_cell", - "parking_lot_core 0.9.10", + "parking_lot_core 0.9.12", ] [[package]] name = "data-encoding" -version = "2.6.0" +version = "2.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e8566979429cf69b49a5c740c60791108e86440e8be149bbea4fe54d2c32d6e2" +checksum = "d7a1e2f27636f116493b8b860f5546edb47c8d8f8ea73e1d2a20be88e28d1fea" [[package]] name = "data-encoding-macro" -version = "0.1.15" +version = "0.1.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f1559b6cba622276d6d63706db152618eeb15b89b3e4041446b05876e352e639" +checksum = "8142a83c17aa9461d637e649271eae18bf2edd00e91f2e105df36c3c16355bdb" dependencies = [ "data-encoding", "data-encoding-macro-internal", @@ -2696,19 +2754,28 @@ dependencies = [ [[package]] name = "data-encoding-macro-internal" -version = "0.1.13" +version = "0.1.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "332d754c0af53bc87c108fed664d121ecf59207ec4196041f04d6ab9002ad33f" +checksum = "7ab67060fc6b8ef687992d439ca0fa36e7ed17e9a0b16b25b601e8757df720de" dependencies = [ "data-encoding", - "syn 1.0.109", + "syn 2.0.117", +] + +[[package]] +name = "debugid" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bef552e6f588e446098f6ba40d89ac146c8c7b64aade83c051ee00bb5d2bc18d" +dependencies = [ + "uuid", ] [[package]] name = "der" -version = "0.7.9" +version = "0.7.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f55bf8e7b65898637379c1b74eb1551107c8294ed26d855ceb9fd1a09cfc9bc0" +checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb" dependencies = [ "const-oid", "pem-rfc7468", @@ -2723,7 +2790,7 @@ checksum = "5cd0a5c643689626bec213c4d8bd4d96acc8ffdb4ad4bb6bc16abf27d5f4b553" dependencies = [ "asn1-rs 0.6.2", "displaydoc", - "nom", + "nom 7.1.3", "num-bigint", "num-traits", "rusticata-macros", @@ -2737,7 +2804,7 @@ checksum = "07da5016415d5a3c4dd39b11ed26f915f52fc4e0dc197d87908bc916e51bc1a6" dependencies = [ "asn1-rs 0.7.1", "displaydoc", - "nom", + "nom 7.1.3", "num-bigint", "num-traits", "rusticata-macros", @@ -2772,31 +2839,31 @@ checksum = "d65d7ce8132b7c0e54497a4d9a55a1c2a0912a0d786cf894472ba818fba45762" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] name = "derive-where" -version = "1.2.7" +version = "1.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "62d671cc41a825ebabc75757b62d3d168c577f9149b2d49ece1dad1f72119d25" +checksum = "d08b3a0bcc0d079199cd476b2cae8435016ec11d1c0986c6901c5ac223041534" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] name = "derive_more" -version = "0.99.18" +version = "0.99.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f33878137e4dafd7fa914ad4e259e18a4e8e532b9617a2d0150262bf53abfce" +checksum = "6edb4b64a43d977b8e99788fe3a04d483834fba1215a7e02caa415b626497f7f" dependencies = [ "convert_case 0.4.0", "proc-macro2", "quote", "rustc_version", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] @@ -2805,7 +2872,16 @@ version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4a9b99b9cbbe49445b21764dc0625032a89b145a2642e67603e1c936f5458d05" dependencies = [ - "derive_more-impl", + "derive_more-impl 1.0.0", +] + +[[package]] +name = "derive_more" +version = "2.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d751e9e49156b02b44f9c1815bcb94b984cdcc4396ecc32521c739452808b134" +dependencies = [ + "derive_more-impl 2.1.1", ] [[package]] @@ -2817,7 +2893,21 @@ dependencies = [ "convert_case 0.6.0", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", + "unicode-xid", +] + +[[package]] +name = "derive_more-impl" +version = "2.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "799a97264921d8623a957f6c3b9011f3b5492f557bbb7a5a19b7fa6d06ba8dcb" +dependencies = [ + "convert_case 0.10.0", + "proc-macro2", + "quote", + "rustc_version", + "syn 2.0.117", "unicode-xid", ] @@ -2847,7 +2937,7 @@ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" dependencies = [ "block-buffer 0.10.4", "const-oid", - "crypto-common 0.1.6", + "crypto-common 0.1.7", "subtle 2.6.1", ] @@ -2910,7 +3000,7 @@ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] @@ -2934,9 +3024,9 @@ dependencies = [ "proc-macro2", "quote", "regex", - "syn 2.0.111", + "syn 2.0.117", "termcolor", - "toml 0.8.19", + "toml 0.8.23", "walkdir", ] @@ -3069,7 +3159,7 @@ dependencies = [ "pallet-timestamp", "pallet-transporter", "parity-scale-codec", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "rand 0.8.5", "sc-cli", "sc-client-api", @@ -3109,7 +3199,7 @@ dependencies = [ "subspace-test-runtime", "subspace-test-service", "tempfile", - "thiserror 2.0.12", + "thiserror 2.0.18", "tokio", "tracing", ] @@ -3340,15 +3430,15 @@ checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2" [[package]] name = "dtoa" -version = "1.0.9" +version = "1.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dcbb2bf8e87535c23f7a8a321e364ce21462d0ff10cb6407820e8e96dfff6653" +checksum = "4c3cf4824e2d5f025c7b531afcb2325364084a16806f6d47fbc1f5fbd9960590" [[package]] name = "dyn-clonable" -version = "0.9.0" +version = "0.9.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4e9232f0e607a262ceb9bd5141a3dfb3e4db6994b31989bbfd845878cba59fd4" +checksum = "a36efbb9bfd58e1723780aa04b61aba95ace6a05d9ffabfdb0b43672552f0805" dependencies = [ "dyn-clonable-impl", "dyn-clone", @@ -3356,20 +3446,20 @@ dependencies = [ [[package]] name = "dyn-clonable-impl" -version = "0.9.0" +version = "0.9.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "558e40ea573c374cf53507fd240b7ee2f5477df7cfebdb97323ec61c719399c5" +checksum = "7e8671d54058979a37a26f3511fbf8d198ba1aa35ffb202c42587d918d77213a" dependencies = [ "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.117", ] [[package]] name = "dyn-clone" -version = "1.0.17" +version = "1.0.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0d6ef0072f8a535281e4876be788938b528e9a1d43900b82c2569af7da799125" +checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555" [[package]] name = "ecdsa" @@ -3398,15 +3488,15 @@ dependencies = [ [[package]] name = "ed25519-dalek" -version = "2.1.1" +version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4a3daa8e81a3963a60642bcc1f90a670680bd4a77535faa384e9d1c79d620871" +checksum = "70e796c081cee67dc755e1a36a0a172b897fab85fc3f6bc48307991f64e4eca9" dependencies = [ "curve25519-dalek", "ed25519", "rand_core 0.6.4", "serde", - "sha2 0.10.8", + "sha2 0.10.9", "signature", "subtle 2.6.1", "zeroize", @@ -3414,16 +3504,17 @@ dependencies = [ [[package]] name = "ed25519-zebra" -version = "4.0.3" +version = "4.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7d9ce6874da5d4415896cd45ffbc4d1cfc0c4f9c079427bd870742c30f2f65a9" +checksum = "775765289f7c6336c18d3d66127527820dd45ffd9eb3b6b8ee4708590e6c20f5" dependencies = [ "curve25519-dalek", "ed25519", - "hashbrown 0.14.5", - "hex", + "hashbrown 0.16.1", + "pkcs8", "rand_core 0.6.4", - "sha2 0.10.8", + "sha2 0.10.9", + "subtle 2.6.1", "zeroize", ] @@ -3436,14 +3527,14 @@ dependencies = [ "enum-ordinalize", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] name = "either" -version = "1.13.0" +version = "1.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0" +checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719" [[package]] name = "elliptic-curve" @@ -3465,17 +3556,29 @@ dependencies = [ "zeroize", ] +[[package]] +name = "embedded-io" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced" + +[[package]] +name = "embedded-io" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d" + [[package]] name = "encode_unicode" -version = "0.3.6" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" +checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0" [[package]] name = "encoding_rs" -version = "0.8.34" +version = "0.8.35" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b45de904aa0b010bce2ab45264d0631681847fa7b6f2eaa7dab7619943bc4f59" +checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3" dependencies = [ "cfg-if", ] @@ -3489,27 +3592,27 @@ dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] -name = "enum-iterator" -version = "2.1.0" +name = "enum-display" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c280b9e6b3ae19e152d8e31cf47f18389781e119d4013a2a2bb0180e5facc635" +checksum = "02058bb25d8d0605829af88230427dd5cd50661590bd2b09d1baf7c64c417f24" dependencies = [ - "enum-iterator-derive", + "enum-display-macro", ] [[package]] -name = "enum-iterator-derive" -version = "1.4.0" +name = "enum-display-macro" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1ab991c1362ac86c61ab6f556cff143daa22e5a15e4e189df818b2fd19fe65b" +checksum = "d4be2cf2fe7b971b1865febbacd4d8df544aa6bd377cca011a6d69dcf4c60d94" dependencies = [ - "proc-macro2", + "convert_case 0.6.0", "quote", - "syn 2.0.111", + "syn 1.0.109", ] [[package]] @@ -3529,7 +3632,7 @@ checksum = "8ca9601fb2d62598ee17836250842873a413586e5d7ed88b356e38ddbb0ec631" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] @@ -3543,28 +3646,25 @@ dependencies = [ ] [[package]] -name = "env_logger" -version = "0.10.2" +name = "env_filter" +version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4cd405aab171cb85d6735e5c8d9db038c17d3ca007a4d2c25f337935c3d90580" +checksum = "32e90c2accc4b07a8456ea0debdc2e7587bdd890680d71173a15d4ae604f6eef" dependencies = [ - "humantime", - "is-terminal", "log", "regex", - "termcolor", ] [[package]] name = "env_logger" -version = "0.11.5" +version = "0.11.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e13fa619b91fb2381732789fc5de83b45675e882f66623b7d8cb4f643017018d" +checksum = "0621c04f2196ac3f488dd583365b9c09be011a4ab8b9f37248ffcc8f6198b56a" dependencies = [ "anstream", "anstyle", - "env_filter", - "humantime", + "env_filter 1.0.1", + "jiff", "log", ] @@ -3576,18 +3676,18 @@ checksum = "e48c92028aaa870e83d51c64e5d4e0b6981b360c522198c23959f219a4e1b15b" [[package]] name = "equivalent" -version = "1.0.1" +version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" +checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" [[package]] name = "errno" -version = "0.3.9" +version = "0.3.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba" +checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" dependencies = [ "libc", - "windows-sys 0.52.0", + "windows-sys 0.61.2", ] [[package]] @@ -3648,9 +3748,9 @@ checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" [[package]] name = "event-listener" -version = "5.3.1" +version = "5.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6032be9bd27023a771701cc49f9f053c751055f71efb2e0ae5c15809093675ba" +checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab" dependencies = [ "concurrent-queue", "parking", @@ -3670,19 +3770,18 @@ dependencies = [ [[package]] name = "event-listener-strategy" -version = "0.5.2" +version = "0.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0f214dc438f977e6d4e3500aaa277f5ad94ca83fbbd9b1a15713ce2344ccc5a1" +checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93" dependencies = [ - "event-listener 5.3.1", + "event-listener 5.4.1", "pin-project-lite", ] [[package]] name = "evm" version = "0.43.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b54f188e7563c1702ecefdef92c8b2c4be8941b84a50684907a747f87121aace" +source = "git+https://github.com/rust-ethereum/evm.git?branch=v0.x#a656db9050c65170b050360c3fa66c0fd8bf226a" dependencies = [ "auto_impl", "environmental", @@ -3702,8 +3801,7 @@ dependencies = [ [[package]] name = "evm-core" version = "0.43.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22ef956f8cc0c25a2d8be1dea7d659782b7c5f201f7e8057878f2051eec78350" +source = "git+https://github.com/rust-ethereum/evm.git?branch=v0.x#a656db9050c65170b050360c3fa66c0fd8bf226a" dependencies = [ "parity-scale-codec", "primitive-types", @@ -3834,8 +3932,7 @@ dependencies = [ [[package]] name = "evm-gasometer" version = "0.43.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "54aa0327b242bad8dd83ba524effd1d798e9102ff592910dfdded79c6bde4ff3" +source = "git+https://github.com/rust-ethereum/evm.git?branch=v0.x#a656db9050c65170b050360c3fa66c0fd8bf226a" dependencies = [ "environmental", "evm-core", @@ -3846,8 +3943,7 @@ dependencies = [ [[package]] name = "evm-runtime" version = "0.43.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf22109a8f12b6d9ae60475584c80f2c9d48cf12427eac651b69ce14e5b95666" +source = "git+https://github.com/rust-ethereum/evm.git?branch=v0.x#a656db9050c65170b050360c3fa66c0fd8bf226a" dependencies = [ "auto_impl", "environmental", @@ -3877,15 +3973,9 @@ dependencies = [ "prettyplease", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", ] -[[package]] -name = "fallible-iterator" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7" - [[package]] name = "fallible-iterator" version = "0.3.0" @@ -3894,9 +3984,9 @@ checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649" [[package]] name = "fastrand" -version = "2.1.1" +version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e8c02a5121d4ea3eb16a80748c74f5549a5665e4c21333c6098f283870fbdea6" +checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" [[package]] name = "fatality" @@ -3905,7 +3995,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ec6f82451ff7f0568c6181287189126d492b5654e30a788add08027b6363d019" dependencies = [ "fatality-proc-macro", - "thiserror 1.0.64", + "thiserror 1.0.69", ] [[package]] @@ -3915,17 +4005,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eb42427514b063d97ce21d5199f36c0c307d981434a6be32582bc79fe5bd2303" dependencies = [ "expander", - "indexmap 2.9.0", - "proc-macro-crate 3.2.0", + "indexmap", + "proc-macro-crate 3.5.0", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] name = "fc-api" version = "1.0.0-dev" -source = "git+https://github.com/polkadot-evm/frontier?rev=b70f725a84c1b6b7e56c9e7381d35863829a7a3c#b70f725a84c1b6b7e56c9e7381d35863829a7a3c" +source = "git+https://github.com/polkadot-evm/frontier?rev=9d49e36ed5bac38241594f8ba055fdb94991483a#9d49e36ed5bac38241594f8ba055fdb94991483a" dependencies = [ "async-trait", "fp-storage", @@ -3937,7 +4027,7 @@ dependencies = [ [[package]] name = "fc-consensus" version = "2.0.0-dev" -source = "git+https://github.com/polkadot-evm/frontier?rev=b70f725a84c1b6b7e56c9e7381d35863829a7a3c#b70f725a84c1b6b7e56c9e7381d35863829a7a3c" +source = "git+https://github.com/polkadot-evm/frontier?rev=9d49e36ed5bac38241594f8ba055fdb94991483a#9d49e36ed5bac38241594f8ba055fdb94991483a" dependencies = [ "async-trait", "fp-consensus", @@ -3947,21 +4037,21 @@ dependencies = [ "sp-block-builder", "sp-consensus", "sp-runtime", - "thiserror 2.0.12", + "thiserror 2.0.18", ] [[package]] name = "fc-db" version = "2.0.0-dev" -source = "git+https://github.com/polkadot-evm/frontier?rev=b70f725a84c1b6b7e56c9e7381d35863829a7a3c#b70f725a84c1b6b7e56c9e7381d35863829a7a3c" +source = "git+https://github.com/polkadot-evm/frontier?rev=9d49e36ed5bac38241594f8ba055fdb94991483a#9d49e36ed5bac38241594f8ba055fdb94991483a" dependencies = [ "async-trait", "fc-api", "fp-storage", "log", - "parity-db", + "parity-db 0.5.4", "parity-scale-codec", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "sc-client-db", "sp-blockchain", "sp-core", @@ -3972,7 +4062,7 @@ dependencies = [ [[package]] name = "fc-mapping-sync" version = "2.0.0-dev" -source = "git+https://github.com/polkadot-evm/frontier?rev=b70f725a84c1b6b7e56c9e7381d35863829a7a3c#b70f725a84c1b6b7e56c9e7381d35863829a7a3c" +source = "git+https://github.com/polkadot-evm/frontier?rev=9d49e36ed5bac38241594f8ba055fdb94991483a#9d49e36ed5bac38241594f8ba055fdb94991483a" dependencies = [ "fc-db", "fc-storage", @@ -3981,7 +4071,7 @@ dependencies = [ "futures", "futures-timer", "log", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "sc-client-api", "sc-utils", "sp-api", @@ -3993,7 +4083,7 @@ dependencies = [ [[package]] name = "fc-rpc" version = "2.0.0-dev" -source = "git+https://github.com/polkadot-evm/frontier?rev=b70f725a84c1b6b7e56c9e7381d35863829a7a3c#b70f725a84c1b6b7e56c9e7381d35863829a7a3c" +source = "git+https://github.com/polkadot-evm/frontier?rev=9d49e36ed5bac38241594f8ba055fdb94991483a#9d49e36ed5bac38241594f8ba055fdb94991483a" dependencies = [ "ethereum", "ethereum-types", @@ -4013,7 +4103,7 @@ dependencies = [ "pallet-evm", "parity-scale-codec", "prometheus", - "rand 0.9.0", + "rand 0.9.2", "rlp", "sc-client-api", "sc-network", @@ -4036,14 +4126,14 @@ dependencies = [ "sp-storage", "sp-trie", "substrate-prometheus-endpoint", - "thiserror 2.0.12", + "thiserror 2.0.18", "tokio", ] [[package]] name = "fc-rpc-core" version = "1.1.0-dev" -source = "git+https://github.com/polkadot-evm/frontier?rev=b70f725a84c1b6b7e56c9e7381d35863829a7a3c#b70f725a84c1b6b7e56c9e7381d35863829a7a3c" +source = "git+https://github.com/polkadot-evm/frontier?rev=9d49e36ed5bac38241594f8ba055fdb94991483a#9d49e36ed5bac38241594f8ba055fdb94991483a" dependencies = [ "ethereum", "ethereum-types", @@ -4052,13 +4142,14 @@ dependencies = [ "rustc-hex", "serde", "serde_json", - "sp-crypto-hashing 0.1.0 (git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e)", + "sp-core", + "sp-crypto-hashing 0.1.0 (git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249)", ] [[package]] name = "fc-storage" version = "1.0.0-dev" -source = "git+https://github.com/polkadot-evm/frontier?rev=b70f725a84c1b6b7e56c9e7381d35863829a7a3c#b70f725a84c1b6b7e56c9e7381d35863829a7a3c" +source = "git+https://github.com/polkadot-evm/frontier?rev=9d49e36ed5bac38241594f8ba055fdb94991483a#9d49e36ed5bac38241594f8ba055fdb94991483a" dependencies = [ "ethereum", "ethereum-types", @@ -4079,14 +4170,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e182f7dbc2ef73d9ef67351c5fbbea084729c48362d3ce9dd44c28e32e277fe5" dependencies = [ "libc", - "thiserror 1.0.64", + "thiserror 1.0.69", ] [[package]] name = "ff" -version = "0.13.0" +version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ded41244b729663b1e574f1b4fb731469f69f79c17667b5d776b16cda0479449" +checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393" dependencies = [ "rand_core 0.6.4", "subtle 2.6.1", @@ -4108,26 +4199,15 @@ dependencies = [ "winapi", ] -[[package]] -name = "file-per-thread-logger" -version = "0.1.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "84f2e425d9790201ba4af4630191feac6dcc98765b118d4d18e91d23c2353866" -dependencies = [ - "env_logger 0.10.2", - "log", -] - [[package]] name = "filetime" -version = "0.2.25" +version = "0.2.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "35c0522e981e68cbfa8c3f978441a5f34b30b96e146b33cd3359176b50fe8586" +checksum = "f98844151eee8917efc50bd9e8318cb963ae8b297431495d3f758616ea5c57db" dependencies = [ "cfg-if", "libc", "libredox", - "windows-sys 0.59.0", ] [[package]] @@ -4142,10 +4222,16 @@ dependencies = [ "log", "num-traits", "parity-scale-codec", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "scale-info", ] +[[package]] +name = "find-msvc-tools" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582" + [[package]] name = "fixed-hash" version = "0.8.0" @@ -4164,11 +4250,17 @@ version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80" +[[package]] +name = "fixedbitset" +version = "0.5.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99" + [[package]] name = "flate2" -version = "1.0.34" +version = "1.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1b589b4dc103969ad3cf85c950899926ec64300a1a46d76c03a6072957036f0" +checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c" dependencies = [ "crc32fast", "miniz_oxide", @@ -4186,19 +4278,25 @@ version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2" +[[package]] +name = "foldhash" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb" + [[package]] name = "fork-tree" version = "13.0.1" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "parity-scale-codec", ] [[package]] name = "form_urlencoded" -version = "1.2.1" +version = "1.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" +checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" dependencies = [ "percent-encoding", ] @@ -4210,13 +4308,13 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8835f84f38484cc86f110a805655697908257fb9a7af005234060891557198e9" dependencies = [ "nonempty", - "thiserror 1.0.64", + "thiserror 1.0.69", ] [[package]] name = "fp-account" version = "1.0.0-dev" -source = "git+https://github.com/polkadot-evm/frontier?rev=b70f725a84c1b6b7e56c9e7381d35863829a7a3c#b70f725a84c1b6b7e56c9e7381d35863829a7a3c" +source = "git+https://github.com/polkadot-evm/frontier?rev=9d49e36ed5bac38241594f8ba055fdb94991483a#9d49e36ed5bac38241594f8ba055fdb94991483a" dependencies = [ "hex", "impl-serde", @@ -4234,7 +4332,7 @@ dependencies = [ [[package]] name = "fp-consensus" version = "2.0.0-dev" -source = "git+https://github.com/polkadot-evm/frontier?rev=b70f725a84c1b6b7e56c9e7381d35863829a7a3c#b70f725a84c1b6b7e56c9e7381d35863829a7a3c" +source = "git+https://github.com/polkadot-evm/frontier?rev=9d49e36ed5bac38241594f8ba055fdb94991483a#9d49e36ed5bac38241594f8ba055fdb94991483a" dependencies = [ "ethereum", "parity-scale-codec", @@ -4245,7 +4343,7 @@ dependencies = [ [[package]] name = "fp-ethereum" version = "1.0.0-dev" -source = "git+https://github.com/polkadot-evm/frontier?rev=b70f725a84c1b6b7e56c9e7381d35863829a7a3c#b70f725a84c1b6b7e56c9e7381d35863829a7a3c" +source = "git+https://github.com/polkadot-evm/frontier?rev=9d49e36ed5bac38241594f8ba055fdb94991483a#9d49e36ed5bac38241594f8ba055fdb94991483a" dependencies = [ "ethereum", "ethereum-types", @@ -4257,12 +4355,12 @@ dependencies = [ [[package]] name = "fp-evm" version = "3.0.0-dev" -source = "git+https://github.com/polkadot-evm/frontier?rev=b70f725a84c1b6b7e56c9e7381d35863829a7a3c#b70f725a84c1b6b7e56c9e7381d35863829a7a3c" +source = "git+https://github.com/polkadot-evm/frontier?rev=9d49e36ed5bac38241594f8ba055fdb94991483a#9d49e36ed5bac38241594f8ba055fdb94991483a" dependencies = [ "environmental", "evm", "frame-support", - "num_enum 0.7.3", + "num_enum 0.7.6", "parity-scale-codec", "scale-info", "serde", @@ -4273,7 +4371,7 @@ dependencies = [ [[package]] name = "fp-rpc" version = "3.0.0-dev" -source = "git+https://github.com/polkadot-evm/frontier?rev=b70f725a84c1b6b7e56c9e7381d35863829a7a3c#b70f725a84c1b6b7e56c9e7381d35863829a7a3c" +source = "git+https://github.com/polkadot-evm/frontier?rev=9d49e36ed5bac38241594f8ba055fdb94991483a#9d49e36ed5bac38241594f8ba055fdb94991483a" dependencies = [ "ethereum", "ethereum-types", @@ -4289,7 +4387,7 @@ dependencies = [ [[package]] name = "fp-self-contained" version = "1.0.0-dev" -source = "git+https://github.com/polkadot-evm/frontier?rev=b70f725a84c1b6b7e56c9e7381d35863829a7a3c#b70f725a84c1b6b7e56c9e7381d35863829a7a3c" +source = "git+https://github.com/polkadot-evm/frontier?rev=9d49e36ed5bac38241594f8ba055fdb94991483a#9d49e36ed5bac38241594f8ba055fdb94991483a" dependencies = [ "frame-support", "parity-scale-codec", @@ -4301,7 +4399,7 @@ dependencies = [ [[package]] name = "fp-storage" version = "2.0.0" -source = "git+https://github.com/polkadot-evm/frontier?rev=b70f725a84c1b6b7e56c9e7381d35863829a7a3c#b70f725a84c1b6b7e56c9e7381d35863829a7a3c" +source = "git+https://github.com/polkadot-evm/frontier?rev=9d49e36ed5bac38241594f8ba055fdb94991483a#9d49e36ed5bac38241594f8ba055fdb94991483a" dependencies = [ "parity-scale-codec", "serde", @@ -4309,14 +4407,14 @@ dependencies = [ [[package]] name = "fragile" -version = "2.0.0" +version = "2.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa" +checksum = "28dd6caf6059519a65843af8fe2a3ae298b14b80179855aeb4adc2c1934ee619" [[package]] name = "frame-benchmarking" -version = "41.0.1" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "45.0.3" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "frame-support", "frame-support-procedural", @@ -4339,8 +4437,8 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" -version = "49.1.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "53.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "Inflector", "array-bytes", @@ -4349,7 +4447,7 @@ dependencies = [ "comfy-table", "cumulus-client-parachain-inherent", "cumulus-primitives-proof-size-hostfunction", - "env_filter", + "env_filter 0.1.4", "frame-benchmarking", "frame-storage-access-test-runtime", "frame-support", @@ -4398,17 +4496,17 @@ dependencies = [ "sp-wasm-interface", "subxt", "subxt-signer", - "thiserror 1.0.64", + "thiserror 1.0.69", "thousands", ] [[package]] name = "frame-decode" -version = "0.7.1" +version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a7cb8796f93fa038f979a014234d632e9688a120e745f936e2635123c77537f7" +checksum = "6e56c0e51972d7b26ff76966c4d0f2307030df9daa5ce0885149ece1ab7ca5ad" dependencies = [ - "frame-metadata 20.0.0", + "frame-metadata", "parity-scale-codec", "scale-decode", "scale-info", @@ -4419,18 +4517,18 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "16.1.1" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ - "proc-macro-crate 3.2.0", + "proc-macro-crate 3.5.0", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] name = "frame-election-provider-support" -version = "41.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "45.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -4446,8 +4544,8 @@ dependencies = [ [[package]] name = "frame-executive" -version = "41.0.2" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "45.0.1" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "aquamarine", "frame-support", @@ -4462,18 +4560,6 @@ dependencies = [ "sp-tracing", ] -[[package]] -name = "frame-metadata" -version = "20.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26de808fa6461f2485dc51811aefed108850064994fb4a62b3ac21ffa62ac8df" -dependencies = [ - "cfg-if", - "parity-scale-codec", - "scale-info", - "serde", -] - [[package]] name = "frame-metadata" version = "23.0.1" @@ -4488,8 +4574,8 @@ dependencies = [ [[package]] name = "frame-storage-access-test-runtime" -version = "0.2.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "0.6.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "cumulus-pallet-parachain-system", "parity-scale-codec", @@ -4502,8 +4588,8 @@ dependencies = [ [[package]] name = "frame-support" -version = "41.0.1" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "45.1.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "aquamarine", "array-bytes", @@ -4511,7 +4597,7 @@ dependencies = [ "bitflags 1.3.2", "docify", "environmental", - "frame-metadata 23.0.1", + "frame-metadata", "frame-support-procedural", "impl-trait-for-tuples", "k256", @@ -4543,8 +4629,8 @@ dependencies = [ [[package]] name = "frame-support-procedural" -version = "34.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "36.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "Inflector", "cfg-expr", @@ -4557,36 +4643,36 @@ dependencies = [ "proc-macro-warning", "proc-macro2", "quote", - "sp-crypto-hashing 0.1.0 (git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e)", - "syn 2.0.111", + "sp-crypto-hashing 0.1.0 (git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249)", + "syn 2.0.117", ] [[package]] name = "frame-support-procedural-tools" version = "13.0.1" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "frame-support-procedural-tools-derive", - "proc-macro-crate 3.2.0", + "proc-macro-crate 3.5.0", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] name = "frame-support-procedural-tools-derive" version = "12.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] name = "frame-system" -version = "41.0.2" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "45.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "cfg-if", "docify", @@ -4604,8 +4690,8 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" -version = "41.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "45.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "frame-benchmarking", "frame-support", @@ -4618,8 +4704,8 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" -version = "37.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "40.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "docify", "parity-scale-codec", @@ -4628,8 +4714,8 @@ dependencies = [ [[package]] name = "frame-try-runtime" -version = "0.47.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "0.51.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "frame-support", "parity-scale-codec", @@ -4662,7 +4748,7 @@ version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "29f9df8a11882c4e3335eb2d18a0137c505d9ca927470b0cac9c6f0ae07d28f7" dependencies = [ - "rustix 0.38.37", + "rustix 0.38.44", "windows-sys 0.48.0", ] @@ -4672,7 +4758,7 @@ version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e8c6b3bd49c37d2aa3f3f2220233b29a7cd23f79d1fe70e5337d25fb390793de" dependencies = [ - "rustix 0.38.37", + "rustix 0.38.44", "windows-sys 0.52.0", ] @@ -4684,9 +4770,9 @@ checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" [[package]] name = "futures" -version = "0.3.31" +version = "0.3.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876" +checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d" dependencies = [ "futures-channel", "futures-core", @@ -4708,9 +4794,9 @@ dependencies = [ [[package]] name = "futures-channel" -version = "0.3.31" +version = "0.3.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" +checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d" dependencies = [ "futures-core", "futures-sink", @@ -4718,33 +4804,32 @@ dependencies = [ [[package]] name = "futures-core" -version = "0.3.31" +version = "0.3.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" +checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d" [[package]] name = "futures-executor" -version = "0.3.31" +version = "0.3.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f" +checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d" dependencies = [ "futures-core", "futures-task", "futures-util", - "num_cpus", ] [[package]] name = "futures-io" -version = "0.3.31" +version = "0.3.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" +checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718" [[package]] name = "futures-lite" -version = "2.3.0" +version = "2.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "52527eb5074e35e9339c6b4e8d12600c7128b68fb25dcb9fa9dec18f7c25f3a5" +checksum = "f78e10609fe0e0b3f4157ffab1876319b5b0db102a2c60dc4626306dc46b44ad" dependencies = [ "fastrand", "futures-core", @@ -4755,13 +4840,13 @@ dependencies = [ [[package]] name = "futures-macro" -version = "0.3.31" +version = "0.3.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" +checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] @@ -4780,21 +4865,21 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a8f2f12607f92c69b12ed746fabf9ca4f5c482cba46679c1a75b874ed7c26adb" dependencies = [ "futures-io", - "rustls 0.23.35", + "rustls 0.23.37", "rustls-pki-types", ] [[package]] name = "futures-sink" -version = "0.3.31" +version = "0.3.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" +checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893" [[package]] name = "futures-task" -version = "0.3.31" +version = "0.3.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" +checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393" [[package]] name = "futures-timer" @@ -4804,9 +4889,9 @@ checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24" [[package]] name = "futures-util" -version = "0.3.31" +version = "0.3.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" +checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6" dependencies = [ "futures-channel", "futures-core", @@ -4816,7 +4901,6 @@ dependencies = [ "futures-task", "memchr", "pin-project-lite", - "pin-utils", "slab", ] @@ -4830,17 +4914,16 @@ dependencies = [ ] [[package]] -name = "generator" -version = "0.8.7" +name = "fxprof-processed-profile" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "605183a538e3e2a9c1038635cc5c2d194e2ee8fd0d1b66b8349fad7dbacce5a2" +checksum = "27d12c0aed7f1e24276a241aadc4cb8ea9f83000f34bc062b7cc2d51e3b0fabd" dependencies = [ - "cc", - "cfg-if", - "libc", - "log", - "rustversion", - "windows 0.61.3", + "bitflags 2.11.0", + "debugid", + "fxhash", + "serde", + "serde_json", ] [[package]] @@ -4875,31 +4958,44 @@ dependencies = [ [[package]] name = "getrandom" -version = "0.2.15" +version = "0.2.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" +checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0" dependencies = [ "cfg-if", "js-sys", "libc", - "wasi 0.11.0+wasi-snapshot-preview1", + "wasi", "wasm-bindgen", ] [[package]] name = "getrandom" -version = "0.3.2" +version = "0.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "73fea8450eea4bac3940448fb7ae50d91f034f941199fcd9d909a5a07aa455f0" +checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" dependencies = [ "cfg-if", "js-sys", "libc", - "r-efi", - "wasi 0.14.2+wasi-0.2.4", + "r-efi 5.3.0", + "wasip2", "wasm-bindgen", ] +[[package]] +name = "getrandom" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555" +dependencies = [ + "cfg-if", + "libc", + "r-efi 6.0.0", + "wasip2", + "wasip3", +] + [[package]] name = "getrandom_or_panic" version = "0.0.3" @@ -4922,30 +5018,26 @@ dependencies = [ [[package]] name = "gimli" -version = "0.27.3" +version = "0.31.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6c80984affa11d98d1b88b66ac8853f143217b399d3c74116778ff8fdb4ed2e" +checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f" dependencies = [ - "fallible-iterator 0.2.0", - "indexmap 1.9.3", + "fallible-iterator", + "indexmap", "stable_deref_trait", ] [[package]] name = "gimli" -version = "0.31.1" +version = "0.32.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f" -dependencies = [ - "fallible-iterator 0.3.0", - "stable_deref_trait", -] +checksum = "e629b9b98ef3dd8afe6ca2bd0f89306cec16d43d907889945bc5d6687f2f13c7" [[package]] name = "glob" -version = "0.3.1" +version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" +checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280" [[package]] name = "governor" @@ -4959,7 +5051,7 @@ dependencies = [ "futures-timer", "no-std-compat", "nonzero_ext", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "portable-atomic", "quanta", "rand 0.8.5", @@ -4980,9 +5072,9 @@ dependencies = [ [[package]] name = "h2" -version = "0.3.26" +version = "0.3.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8" +checksum = "0beca50380b1fc32983fc1cb4587bfa4bb9e78fc259aad4a0032d2080309222d" dependencies = [ "bytes", "fnv", @@ -4990,7 +5082,7 @@ dependencies = [ "futures-sink", "futures-util", "http 0.2.12", - "indexmap 2.9.0", + "indexmap", "slab", "tokio", "tokio-util", @@ -4999,17 +5091,17 @@ dependencies = [ [[package]] name = "h2" -version = "0.4.6" +version = "0.4.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "524e8ac6999421f49a846c2d4411f337e53497d8ec55d67753beffa43c5d9205" +checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54" dependencies = [ "atomic-waker", "bytes", "fnv", "futures-core", "futures-sink", - "http 1.1.0", - "indexmap 2.9.0", + "http 1.4.0", + "indexmap", "slab", "tokio", "tokio-util", @@ -5018,12 +5110,13 @@ dependencies = [ [[package]] name = "half" -version = "2.4.1" +version = "2.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6dd08c532ae367adf81c312a4580bc67f1d0fe8bc9c460520283f4c0ff277888" +checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b" dependencies = [ "cfg-if", "crunchy", + "zerocopy", ] [[package]] @@ -5037,7 +5130,7 @@ dependencies = [ "pest_derive", "serde", "serde_json", - "thiserror 1.0.64", + "thiserror 1.0.69", ] [[package]] @@ -5060,6 +5153,9 @@ name = "hashbrown" version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" +dependencies = [ + "ahash 0.7.8", +] [[package]] name = "hashbrown" @@ -5067,7 +5163,7 @@ version = "0.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e" dependencies = [ - "ahash", + "ahash 0.8.12", ] [[package]] @@ -5076,9 +5172,8 @@ version = "0.14.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" dependencies = [ - "ahash", + "ahash 0.8.12", "allocator-api2", - "serde", ] [[package]] @@ -5089,7 +5184,19 @@ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" dependencies = [ "allocator-api2", "equivalent", - "foldhash", + "foldhash 0.1.5", + "serde", +] + +[[package]] +name = "hashbrown" +version = "0.16.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" +dependencies = [ + "allocator-api2", + "equivalent", + "foldhash 0.2.0", ] [[package]] @@ -5124,15 +5231,9 @@ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" [[package]] name = "hermit-abi" -version = "0.3.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" - -[[package]] -name = "hermit-abi" -version = "0.4.0" +version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fbf6a919d6cf397374f7dfeeea91d974c7c0a7221d0d0f4f20d859d329e53fcc" +checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c" [[package]] name = "hex" @@ -5143,12 +5244,6 @@ dependencies = [ "serde", ] -[[package]] -name = "hex-conservative" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "212ab92002354b4819390025006c897e8140934349e8635c9b077f47b4dcbd20" - [[package]] name = "hex-conservative" version = "0.2.2" @@ -5186,10 +5281,10 @@ dependencies = [ "idna", "ipnet", "once_cell", - "rand 0.9.0", - "ring 0.17.13", - "socket2", - "thiserror 2.0.12", + "rand 0.9.2", + "ring 0.17.14", + "socket2 0.5.10", + "thiserror 2.0.18", "tinyvec", "tokio", "tracing", @@ -5208,11 +5303,11 @@ dependencies = [ "ipconfig", "moka", "once_cell", - "parking_lot 0.12.3", - "rand 0.9.0", + "parking_lot 0.12.5", + "rand 0.9.2", "resolv-conf", "smallvec", - "thiserror 2.0.12", + "thiserror 2.0.18", "tokio", "tracing", ] @@ -5258,22 +5353,11 @@ dependencies = [ [[package]] name = "home" -version = "0.5.9" +version = "0.5.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5" +checksum = "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d" dependencies = [ - "windows-sys 0.52.0", -] - -[[package]] -name = "hostname" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867" -dependencies = [ - "libc", - "match_cfg", - "winapi", + "windows-sys 0.61.2", ] [[package]] @@ -5289,12 +5373,11 @@ dependencies = [ [[package]] name = "http" -version = "1.1.0" +version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258" +checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a" dependencies = [ "bytes", - "fnv", "itoa", ] @@ -5305,27 +5388,27 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" dependencies = [ "bytes", - "http 1.1.0", + "http 1.4.0", ] [[package]] name = "http-body-util" -version = "0.1.2" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f" +checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" dependencies = [ "bytes", - "futures-util", - "http 1.1.0", + "futures-core", + "http 1.4.0", "http-body", "pin-project-lite", ] [[package]] name = "httparse" -version = "1.9.5" +version = "1.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7d71d3574edd2771538b901e6549113b4006ece66150fb69c0fb6d9a2adae946" +checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" [[package]] name = "httpdate" @@ -5333,73 +5416,67 @@ version = "1.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" -[[package]] -name = "humantime" -version = "2.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" - [[package]] name = "hwlocality" -version = "1.0.0-alpha.6" +version = "1.0.0-alpha.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "27fb3a3f22bd1f772d42eda66a420740b24f45fc66590bc6646797efae61d8a1" +checksum = "f50d4312588681f6d07e6009728bf5c777e1f674d43a3ad91d15f6795a0db965" dependencies = [ "arrayvec 0.7.6", - "bitflags 2.9.1", - "derive_more 1.0.0", - "enum-iterator", + "bitflags 2.11.0", + "derive_more 2.1.1", "errno", "hwlocality-sys", "libc", - "num_enum 0.7.3", - "thiserror 1.0.64", - "windows-sys 0.59.0", + "strum 0.27.2", + "thiserror 2.0.18", + "windows-sys 0.61.2", ] [[package]] name = "hwlocality-sys" -version = "0.5.0" +version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "965616cdb43ad00dea513e436e23fb637976858a72f95719f83e8d8fbe76f736" +checksum = "6d55ff554bde432473a6d17dc219a2d7fedc1be12d1e150418526f666dc9d096" dependencies = [ - "attohttpc 0.28.0", "autotools", "cmake", "flate2", - "hex-literal", "libc", "pkg-config", "sha3", "tar", - "windows-sys 0.59.0", + "ureq", + "windows-sys 0.61.2", ] [[package]] name = "hybrid-array" -version = "0.3.1" +version = "0.4.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "891d15931895091dea5c47afa5b3c9a01ba634b311919fd4d41388fa0e3d76af" +checksum = "8655f91cd07f2b9d0c24137bd650fe69617773435ee5ec83022377777ce65ef1" dependencies = [ "typenum", ] [[package]] name = "hyper" -version = "1.4.1" +version = "1.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "50dfd22e0e76d0f662d429a5f80fcaf3855009297eab6a0a9f8543834744ba05" +checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11" dependencies = [ + "atomic-waker", "bytes", "futures-channel", - "futures-util", - "h2 0.4.6", - "http 1.1.0", + "futures-core", + "h2 0.4.13", + "http 1.4.0", "http-body", "httparse", "httpdate", "itoa", "pin-project-lite", + "pin-utils", "smallvec", "tokio", "want", @@ -5407,38 +5484,41 @@ dependencies = [ [[package]] name = "hyper-rustls" -version = "0.27.3" +version = "0.27.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08afdbb5c31130e3034af566421053ab03787c640246a446327f550d11bcb333" +checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58" dependencies = [ - "futures-util", - "http 1.1.0", + "http 1.4.0", "hyper", "hyper-util", "log", - "rustls 0.23.35", - "rustls-native-certs 0.8.1", + "rustls 0.23.37", + "rustls-native-certs 0.8.3", "rustls-pki-types", "tokio", - "tokio-rustls 0.26.0", + "tokio-rustls 0.26.4", "tower-service", - "webpki-roots 0.26.6", + "webpki-roots 1.0.6", ] [[package]] name = "hyper-util" -version = "0.1.9" +version = "0.1.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "41296eb09f183ac68eec06e03cdbea2e759633d4067b2f6552fc2e009bcad08b" +checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0" dependencies = [ + "base64", "bytes", "futures-channel", "futures-util", - "http 1.1.0", + "http 1.4.0", "http-body", "hyper", + "ipnet", + "libc", + "percent-encoding", "pin-project-lite", - "socket2", + "socket2 0.6.3", "tokio", "tower-service", "tracing", @@ -5446,16 +5526,17 @@ dependencies = [ [[package]] name = "iana-time-zone" -version = "0.1.61" +version = "0.1.65" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "235e081f3925a06703c2d0117ea8b91f042756fd6e7a6e5d901e8ca1a996b220" +checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470" dependencies = [ "android_system_properties", "core-foundation-sys", "iana-time-zone-haiku", "js-sys", + "log", "wasm-bindgen", - "windows-core 0.52.0", + "windows-core 0.62.2", ] [[package]] @@ -5469,21 +5550,22 @@ dependencies = [ [[package]] name = "icu_collections" -version = "1.5.0" +version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526" +checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43" dependencies = [ "displaydoc", + "potential_utf", "yoke", "zerofrom", "zerovec", ] [[package]] -name = "icu_locid" -version = "1.5.0" +name = "icu_locale_core" +version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637" +checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6" dependencies = [ "displaydoc", "litemap", @@ -5492,98 +5574,66 @@ dependencies = [ "zerovec", ] -[[package]] -name = "icu_locid_transform" -version = "1.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e" -dependencies = [ - "displaydoc", - "icu_locid", - "icu_locid_transform_data", - "icu_provider", - "tinystr", - "zerovec", -] - -[[package]] -name = "icu_locid_transform_data" -version = "1.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fdc8ff3388f852bede6b579ad4e978ab004f139284d7b28715f773507b946f6e" - [[package]] name = "icu_normalizer" -version = "1.5.0" +version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f" +checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599" dependencies = [ - "displaydoc", "icu_collections", "icu_normalizer_data", "icu_properties", "icu_provider", "smallvec", - "utf16_iter", - "utf8_iter", - "write16", "zerovec", ] [[package]] name = "icu_normalizer_data" -version = "1.5.0" +version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f8cafbf7aa791e9b22bec55a167906f9e1215fd475cd22adfcf660e03e989516" +checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a" [[package]] name = "icu_properties" -version = "1.5.1" +version = "2.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5" +checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec" dependencies = [ - "displaydoc", "icu_collections", - "icu_locid_transform", + "icu_locale_core", "icu_properties_data", "icu_provider", - "tinystr", + "zerotrie", "zerovec", ] [[package]] name = "icu_properties_data" -version = "1.5.0" +version = "2.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "67a8effbc3dd3e4ba1afa8ad918d5684b8868b3b26500753effea8d2eed19569" +checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af" [[package]] name = "icu_provider" -version = "1.5.0" +version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9" +checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614" dependencies = [ "displaydoc", - "icu_locid", - "icu_provider_macros", - "stable_deref_trait", - "tinystr", + "icu_locale_core", "writeable", "yoke", "zerofrom", + "zerotrie", "zerovec", ] [[package]] -name = "icu_provider_macros" -version = "1.5.0" +name = "id-arena" +version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.111", -] +checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954" [[package]] name = "ident_case" @@ -5593,9 +5643,9 @@ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" [[package]] name = "idna" -version = "1.0.3" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e" +checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de" dependencies = [ "idna_adapter", "smallvec", @@ -5604,9 +5654,9 @@ dependencies = [ [[package]] name = "idna_adapter" -version = "1.2.0" +version = "1.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71" +checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344" dependencies = [ "icu_normalizer", "icu_properties", @@ -5614,19 +5664,19 @@ dependencies = [ [[package]] name = "if-addrs" -version = "0.10.2" +version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cabb0019d51a643781ff15c9c8a3e5dedc365c47211270f4e8f82812fedd8f0a" +checksum = "c0a05c691e1fae256cf7013d99dad472dc52d5543322761f83ec8d47eab40d2b" dependencies = [ "libc", - "windows-sys 0.48.0", + "windows-sys 0.61.2", ] [[package]] name = "if-watch" -version = "3.2.1" +version = "3.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cdf9d64cfcf380606e64f9a0bcf493616b65331199f984151a6fa11a7b3cde38" +checksum = "71c02a5161c313f0cbdbadc511611893584a10a7b6153cb554bdf83ddce99ec2" dependencies = [ "async-io", "core-foundation 0.9.4", @@ -5642,7 +5692,7 @@ dependencies = [ "rtnetlink", "system-configuration", "tokio", - "windows 0.51.1", + "windows 0.62.2", ] [[package]] @@ -5652,15 +5702,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "516893339c97f6011282d5825ac94fc1c7aad5cad26bdc2d0cee068c0bf97f97" dependencies = [ "async-trait", - "attohttpc 0.30.1", + "attohttpc", "bytes", "futures", - "http 1.1.0", + "http 1.4.0", "http-body-util", "hyper", "hyper-util", "log", - "rand 0.9.0", + "rand 0.9.2", "tokio", "url", "xmltree", @@ -5677,9 +5727,9 @@ dependencies = [ [[package]] name = "impl-more" -version = "0.1.6" +version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "206ca75c9c03ba3d4ace2460e57b189f39f43de612c2f85836e65c929701bb2d" +checksum = "e8a5a9a0ff0086c7a148acb942baaabeadf9504d10400b5a05645853729b9cd2" [[package]] name = "impl-num-traits" @@ -5718,7 +5768,7 @@ checksum = "a0eb5a3343abf848c0984fe4604b2b105da9539376e24fc0a3b0007411ae4fd9" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] @@ -5742,45 +5792,30 @@ dependencies = [ [[package]] name = "indexmap" -version = "1.9.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" -dependencies = [ - "autocfg", - "hashbrown 0.12.3", - "serde", -] - -[[package]] -name = "indexmap" -version = "2.9.0" +version = "2.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e" +checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017" dependencies = [ "equivalent", - "hashbrown 0.15.5", + "hashbrown 0.16.1", + "serde", + "serde_core", ] -[[package]] -name = "indexmap-nostd" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e04e2fd2b8188ea827b32ef11de88377086d690286ab35747ef7f9bf3ccb590" - [[package]] name = "inout" -version = "0.1.3" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5" +checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01" dependencies = [ "generic-array 0.14.7", ] [[package]] name = "inout" -version = "0.2.0-rc.5" +version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c774c86bce20ea04abe1c37cf0051c5690079a3a28ef5fdac2a5a0412b3d7d74" +checksum = "4250ce6452e92010fdf7268ccc5d14faa80bb12fc741938534c58f16804e03c7" dependencies = [ "hybrid-array", ] @@ -5803,17 +5838,6 @@ dependencies = [ "num-traits", ] -[[package]] -name = "io-lifetimes" -version = "1.0.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2" -dependencies = [ - "hermit-abi 0.3.9", - "libc", - "windows-sys 0.48.0", -] - [[package]] name = "ip_network" version = "0.4.1" @@ -5822,31 +5846,42 @@ checksum = "aa2f047c0a98b2f299aa5d6d7088443570faae494e9ae1305e48be000c9e0eb1" [[package]] name = "ipconfig" -version = "0.3.2" +version = "0.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b58db92f96b720de98181bbbe63c831e87005ab460c1bf306eb2622b4707997f" +checksum = "4d40460c0ce33d6ce4b0630ad68ff63d6661961c48b6dba35e5a4d81cfb48222" dependencies = [ - "socket2", + "socket2 0.6.3", "widestring", - "windows-sys 0.48.0", - "winreg", + "windows-registry", + "windows-result", + "windows-sys 0.61.2", ] [[package]] name = "ipnet" -version = "2.10.0" +version = "2.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2" + +[[package]] +name = "iri-string" +version = "0.7.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "187674a687eed5fe42285b40c6291f9a01517d415fad1c3cbc6a9f778af7fcd4" +checksum = "d8e7418f59cc01c88316161279a7f665217ae316b388e58a0d10e29f54f1e5eb" +dependencies = [ + "memchr", + "serde", +] [[package]] name = "is-terminal" -version = "0.4.13" +version = "0.4.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "261f68e344040fbd0edea105bef17c66edf46f984ddb1115b775ce31be948f4b" +checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46" dependencies = [ - "hermit-abi 0.4.0", + "hermit-abi", "libc", - "windows-sys 0.52.0", + "windows-sys 0.61.2", ] [[package]] @@ -5857,9 +5892,9 @@ checksum = "7655c9839580ee829dfacba1d1278c2b7883e50a277ff7541299489d6bdfdc45" [[package]] name = "is_terminal_polyfill" -version = "1.70.1" +version = "1.70.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf" +checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695" [[package]] name = "itertools" @@ -5897,11 +5932,92 @@ dependencies = [ "either", ] +[[package]] +name = "itertools" +version = "0.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285" +dependencies = [ + "either", +] + [[package]] name = "itoa" -version = "1.0.11" +version = "1.0.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682" + +[[package]] +name = "ittapi" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6b996fe614c41395cdaedf3cf408a9534851090959d90d54a535f675550b64b1" +dependencies = [ + "anyhow", + "ittapi-sys", + "log", +] + +[[package]] +name = "ittapi-sys" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52f5385394064fa2c886205dba02598013ce83d3e92d33dbdc0c52fe0e7bf4fc" +dependencies = [ + "cc", +] + +[[package]] +name = "jam-codec" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb948eace373d99de60501a02fb17125d30ac632570de20dccc74370cdd611b9" +dependencies = [ + "arrayvec 0.7.6", + "bitvec", + "byte-slice-cast", + "const_format", + "impl-trait-for-tuples", + "jam-codec-derive", + "rustversion", + "serde", +] + +[[package]] +name = "jam-codec-derive" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "319af585c4c8a6b5552a52b7787a1ab3e4d59df7614190b1f85b9b842488789d" +dependencies = [ + "proc-macro-crate 3.5.0", + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "jiff" +version = "0.2.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1a3546dc96b6d42c5f24902af9e2538e82e39ad350b0c766eb3fbf2d8f3d8359" +dependencies = [ + "jiff-static", + "log", + "portable-atomic", + "portable-atomic-util", + "serde_core", +] + +[[package]] +name = "jiff-static" +version = "0.2.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" +checksum = "2a8c8b344124222efd714b73bb41f8b5120b27a7cc1c75593a6ff768d9d05aa4" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", +] [[package]] name = "jni" @@ -5912,33 +6028,56 @@ dependencies = [ "cesu8", "cfg-if", "combine", - "jni-sys", + "jni-sys 0.3.1", "log", - "thiserror 1.0.64", + "thiserror 1.0.69", "walkdir", "windows-sys 0.45.0", ] [[package]] name = "jni-sys" -version = "0.3.0" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "41a652e1f9b6e0275df1f15b32661cf0d4b78d4d87ddec5e0c3c20f097433258" +dependencies = [ + "jni-sys 0.4.1", +] + +[[package]] +name = "jni-sys" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2" +dependencies = [ + "jni-sys-macros", +] + +[[package]] +name = "jni-sys-macros" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130" +checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264" +dependencies = [ + "quote", + "syn 2.0.117", +] [[package]] name = "jobserver" -version = "0.1.32" +version = "0.1.34" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0" +checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33" dependencies = [ + "getrandom 0.3.4", "libc", ] [[package]] name = "js-sys" -version = "0.3.83" +version = "0.3.91" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "464a3709c7f55f1f721e5389aa6ea4e3bc6aba669353300af094b29ffbdde1d8" +checksum = "b49715b7073f385ba4bc528e5747d02e66cb39c6146efb66b781f131f0fb399c" dependencies = [ "once_cell", "wasm-bindgen", @@ -5966,18 +6105,18 @@ version = "0.24.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cc4280b709ac3bb5e16cf3bad5056a0ec8df55fa89edfe996361219aadc2c7ea" dependencies = [ - "base64 0.22.1", + "base64", "futures-util", - "http 1.1.0", + "http 1.4.0", "jsonrpsee-core", "pin-project", - "rustls 0.23.35", + "rustls 0.23.37", "rustls-pki-types", "rustls-platform-verifier", "soketto", - "thiserror 1.0.64", + "thiserror 1.0.69", "tokio", - "tokio-rustls 0.26.0", + "tokio-rustls 0.26.4", "tokio-util", "tracing", "url", @@ -5993,17 +6132,17 @@ dependencies = [ "bytes", "futures-timer", "futures-util", - "http 1.1.0", + "http 1.4.0", "http-body", "http-body-util", "jsonrpsee-types", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "pin-project", "rand 0.8.5", - "rustc-hash 2.0.0", + "rustc-hash 2.1.1", "serde", "serde_json", - "thiserror 1.0.64", + "thiserror 1.0.69", "tokio", "tokio-stream", "tracing", @@ -6016,10 +6155,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7398cddf5013cca4702862a2692b66c48a3bd6cf6ec681a47453c93d63cf8de5" dependencies = [ "heck 0.5.0", - "proc-macro-crate 3.2.0", + "proc-macro-crate 3.5.0", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] @@ -6029,7 +6168,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "21429bcdda37dcf2d43b68621b994adede0e28061f816b038b0f18c70c143d51" dependencies = [ "futures-util", - "http 1.1.0", + "http 1.4.0", "http-body", "http-body-util", "hyper", @@ -6041,11 +6180,11 @@ dependencies = [ "serde", "serde_json", "soketto", - "thiserror 1.0.64", + "thiserror 1.0.69", "tokio", "tokio-stream", "tokio-util", - "tower", + "tower 0.4.13", "tracing", ] @@ -6055,10 +6194,10 @@ version = "0.24.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b0f05e0028e55b15dbd2107163b3c744cd3bb4474f193f95d9708acbf5677e44" dependencies = [ - "http 1.1.0", + "http 1.4.0", "serde", "serde_json", - "thiserror 1.0.64", + "thiserror 1.0.69", ] [[package]] @@ -6067,7 +6206,7 @@ version = "0.24.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "78fc744f17e7926d57f478cf9ca6e1ee5d8332bf0514860b1a3cdf1742e614cc" dependencies = [ - "http 1.1.0", + "http 1.4.0", "jsonrpsee-client-transport", "jsonrpsee-core", "jsonrpsee-types", @@ -6085,14 +6224,14 @@ dependencies = [ "elliptic-curve", "once_cell", "serdect", - "sha2 0.10.8", + "sha2 0.10.9", ] [[package]] name = "keccak" -version = "0.1.5" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ecc2af9a1119c51f12a14607e783cb977bde58bc069ff0c3da1095e635d70654" +checksum = "cb26cec98cce3a3d96cbb7bced3c4b16e3d13f27ec56dbd62cbc8f39cfb9d653" dependencies = [ "cpufeatures", ] @@ -6129,7 +6268,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bf7a85fe66f9ff9cd74e169fdd2c94c6e1e74c412c99a73b4df3200b5d3760b2" dependencies = [ "kvdb", - "parking_lot 0.12.3", + "parking_lot 0.12.5", ] [[package]] @@ -6140,8 +6279,8 @@ dependencies = [ "blst", "num_cpus", "rayon", - "sha2 0.10.8", - "siphasher 1.0.1", + "sha2 0.10.9", + "siphasher 1.0.2", "threadpool", ] @@ -6157,23 +6296,29 @@ version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" +[[package]] +name = "leb128fmt" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2" + [[package]] name = "libc" -version = "0.2.172" +version = "0.2.183" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa" +checksum = "b5b646652bf6661599e1da8901b3b9522896f01e736bad5f723fe7a3a27f899d" [[package]] name = "libm" -version = "0.2.8" +version = "0.2.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058" +checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981" [[package]] name = "libmimalloc-sys" -version = "0.1.39" +version = "0.1.44" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "23aa6811d3bd4deb8a84dde645f943476d13b248d818edcf8ce0b2f37f036b44" +checksum = "667f4fec20f29dfc6bc7357c582d91796c169ad7e2fce709468aefeb2c099870" dependencies = [ "cc", "libc", @@ -6188,7 +6333,7 @@ dependencies = [ "either", "futures", "futures-timer", - "getrandom 0.2.15", + "getrandom 0.2.17", "libp2p-allow-block-list", "libp2p-autonat", "libp2p-connection-limits", @@ -6213,7 +6358,7 @@ dependencies = [ "multiaddr 0.18.2", "pin-project", "rw-stream-sink", - "thiserror 2.0.12", + "thiserror 2.0.18", ] [[package]] @@ -6245,7 +6390,7 @@ dependencies = [ "quick-protobuf-codec", "rand 0.8.5", "rand_core 0.6.4", - "thiserror 2.0.12", + "thiserror 2.0.18", "tracing", "web-time", ] @@ -6271,14 +6416,14 @@ dependencies = [ "futures-timer", "libp2p-identity", "multiaddr 0.18.2", - "multihash 0.19.1", + "multihash 0.19.3", "multistream-select", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "pin-project", "quick-protobuf", "rand 0.8.5", "rw-stream-sink", - "thiserror 2.0.12", + "thiserror 2.0.18", "tracing", "unsigned-varint 0.8.0", "web-time", @@ -6294,7 +6439,7 @@ dependencies = [ "hickory-resolver", "libp2p-core", "libp2p-identity", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "smallvec", "tracing", ] @@ -6304,16 +6449,16 @@ name = "libp2p-gossipsub" version = "0.49.0" source = "git+https://github.com/subspace/rust-libp2p?rev=7e9532d65530ebd0cf92c53fc326948ee8467fea#7e9532d65530ebd0cf92c53fc326948ee8467fea" dependencies = [ - "async-channel 2.3.1", + "async-channel 2.5.0", "asynchronous-codec 0.7.0", - "base64 0.22.1", + "base64", "byteorder", "bytes", "either", "fnv", "futures", "futures-timer", - "getrandom 0.2.15", + "getrandom 0.2.17", "hashlink 0.9.1", "hex_fmt", "libp2p-core", @@ -6324,7 +6469,7 @@ dependencies = [ "rand 0.8.5", "regex", "serde", - "sha2 0.10.8", + "sha2 0.10.9", "tracing", "web-time", ] @@ -6345,7 +6490,7 @@ dependencies = [ "quick-protobuf", "quick-protobuf-codec", "smallvec", - "thiserror 2.0.12", + "thiserror 2.0.18", "tracing", ] @@ -6357,12 +6502,12 @@ dependencies = [ "bs58", "ed25519-dalek", "hkdf", - "multihash 0.19.1", + "multihash 0.19.3", "quick-protobuf", "rand 0.8.5", "serde", - "sha2 0.10.8", - "thiserror 2.0.12", + "sha2 0.10.9", + "thiserror 2.0.18", "tracing", "zeroize", ] @@ -6386,9 +6531,9 @@ dependencies = [ "quick-protobuf-codec", "rand 0.8.5", "serde", - "sha2 0.10.8", + "sha2 0.10.9", "smallvec", - "thiserror 2.0.12", + "thiserror 2.0.18", "tracing", "uint", "web-time", @@ -6407,7 +6552,7 @@ dependencies = [ "libp2p-swarm", "rand 0.8.5", "smallvec", - "socket2", + "socket2 0.5.10", "tokio", "tracing", ] @@ -6441,12 +6586,12 @@ dependencies = [ "libp2p-core", "libp2p-identity", "multiaddr 0.18.2", - "multihash 0.19.1", + "multihash 0.19.3", "quick-protobuf", "rand 0.8.5", "snow", "static_assertions", - "thiserror 2.0.12", + "thiserror 2.0.18", "tracing", "x25519-dalek", "zeroize", @@ -6495,10 +6640,10 @@ dependencies = [ "libp2p-tls", "quinn", "rand 0.8.5", - "ring 0.17.13", - "rustls 0.23.35", - "socket2", - "thiserror 2.0.12", + "ring 0.17.14", + "rustls 0.23.37", + "socket2 0.5.10", + "thiserror 2.0.18", "tokio", "tracing", ] @@ -6547,7 +6692,7 @@ source = "git+https://github.com/subspace/rust-libp2p?rev=7e9532d65530ebd0cf92c5 dependencies = [ "heck 0.5.0", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] @@ -6577,7 +6722,7 @@ dependencies = [ "if-watch", "libc", "libp2p-core", - "socket2", + "socket2 0.5.10", "tokio", "tracing", ] @@ -6592,10 +6737,10 @@ dependencies = [ "libp2p-core", "libp2p-identity", "rcgen", - "ring 0.17.13", - "rustls 0.23.35", - "rustls-webpki 0.103.8", - "thiserror 2.0.12", + "ring 0.17.14", + "rustls 0.23.37", + "rustls-webpki 0.103.10", + "thiserror 2.0.18", "x509-parser 0.17.0", "yasna", ] @@ -6624,14 +6769,14 @@ dependencies = [ "futures-rustls", "libp2p-core", "libp2p-identity", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "pin-project-lite", "rw-stream-sink", "soketto", - "thiserror 2.0.12", + "thiserror 2.0.18", "tracing", "url", - "webpki-roots 0.26.6", + "webpki-roots 0.26.11", ] [[package]] @@ -6642,7 +6787,7 @@ dependencies = [ "either", "futures", "libp2p-core", - "thiserror 2.0.12", + "thiserror 2.0.18", "tracing", "yamux 0.12.1", "yamux 0.13.10", @@ -6650,13 +6795,14 @@ dependencies = [ [[package]] name = "libredox" -version = "0.1.3" +version = "0.1.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d" +checksum = "7ddbf48fd451246b1f8c2610bd3b4ac0cc6e149d89832867093ab69a17194f08" dependencies = [ - "bitflags 2.9.1", + "bitflags 2.11.0", "libc", - "redox_syscall 0.5.7", + "plain", + "redox_syscall 0.7.3", ] [[package]] @@ -6666,7 +6812,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e79019718125edc905a079a70cfa5f3820bc76139fc91d6f9abc27ea2a887139" dependencies = [ "arrayref", - "base64 0.22.1", + "base64", "digest 0.9.0", "hmac-drbg", "libsecp256k1-core", @@ -6709,9 +6855,9 @@ dependencies = [ [[package]] name = "link-cplusplus" -version = "1.0.9" +version = "1.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d240c6f7e1ba3a28b0249f774e6a9dd0175054b52dfbb61b16eb8505c3785c9" +checksum = "7f78c730aaa7d0b9336a299029ea49f9ee53b0ed06e9202e8cb7db9bae7b8c82" dependencies = [ "cc", ] @@ -6724,33 +6870,33 @@ checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" [[package]] name = "linked_hash_set" -version = "0.1.4" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "47186c6da4d81ca383c7c47c1bfc80f4b95f4720514d860a5407aaf4233f9588" +checksum = "984fb35d06508d1e69fc91050cceba9c0b748f983e6739fa2c7a9237154c52c8" dependencies = [ "linked-hash-map", ] [[package]] name = "linregress" -version = "0.5.3" +version = "0.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4de04dcecc58d366391f9920245b85ffa684558a5ef6e7736e754347c3aea9c2" +checksum = "a9eda9dcf4f2a99787827661f312ac3219292549c2ee992bf9a6248ffb066bf7" dependencies = [ "nalgebra", ] [[package]] name = "linux-raw-sys" -version = "0.1.4" +version = "0.4.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4" +checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab" [[package]] name = "linux-raw-sys" -version = "0.4.14" +version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89" +checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53" [[package]] name = "lioness" @@ -6766,42 +6912,45 @@ dependencies = [ [[package]] name = "litemap" -version = "0.7.4" +version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ee93343901ab17bd981295f2cf0026d4ad018c7c31ba84549a4ddbb47a45104" +checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77" [[package]] name = "litep2p" -version = "0.9.5" +version = "0.13.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "14fb10e63363204b89d91e1292df83322fd9de5d7fa76c3d5c78ddc2f8f3efa9" +checksum = "cbf3924cf539a761465543592b34c4198d60db2cda16594769edd43451e5ab41" dependencies = [ "async-trait", "bs58", "bytes", - "cid 0.11.1", + "cid", "ed25519-dalek", + "enum-display", "futures", "futures-timer", "hickory-resolver", - "indexmap 2.9.0", + "indexmap", + "ip_network", "libc", "mockall", "multiaddr 0.17.1", "multihash 0.17.0", "network-interface", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "pin-project", "prost 0.13.5", - "prost-build", + "prost-build 0.14.3", "rand 0.8.5", + "ring 0.17.14", "serde", - "sha2 0.10.8", + "sha2 0.10.9", "simple-dns", "smallvec", "snow", - "socket2", - "thiserror 2.0.12", + "socket2 0.5.10", + "thiserror 2.0.18", "tokio", "tokio-stream", "tokio-tungstenite", @@ -6817,17 +6966,6 @@ dependencies = [ "zeroize", ] -[[package]] -name = "local-channel" -version = "0.1.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6cbc85e69b8df4b8bb8b89ec634e7189099cea8927a276b7384ce5488e53ec8" -dependencies = [ - "futures-core", - "futures-sink", - "local-waker", -] - [[package]] name = "local-waker" version = "0.1.4" @@ -6836,11 +6974,10 @@ checksum = "4d873d7c67ce09b42110d801813efbc9364414e356be9935700d368351657487" [[package]] name = "lock_api" -version = "0.4.12" +version = "0.4.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17" +checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965" dependencies = [ - "autocfg", "scopeguard", ] @@ -6851,25 +6988,21 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897" [[package]] -name = "loom" -version = "0.7.2" +name = "lru" +version = "0.7.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "419e0dc8046cb947daa77eb95ae174acfbddb7673b4151f56d1eed8e93fbfaca" +checksum = "e999beba7b6e8345721bd280141ed958096a2e4abdf74f67ff4ce49b4b54e47a" dependencies = [ - "cfg-if", - "generator", - "scoped-tls", - "tracing", - "tracing-subscriber", + "hashbrown 0.12.3", ] [[package]] name = "lru" -version = "0.12.4" +version = "0.12.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "37ee39891760e7d94734f6f63fedc29a2e4a152f836120753a72503f09fcf904" +checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38" dependencies = [ - "hashbrown 0.14.5", + "hashbrown 0.15.5", ] [[package]] @@ -6880,9 +7013,9 @@ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154" [[package]] name = "lz4" -version = "1.28.0" +version = "1.28.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4d1febb2b4a79ddd1980eede06a8f7902197960aa0383ffcfdd62fe723036725" +checksum = "a20b523e860d03443e98350ceaac5e71c6ba89aea7d960769ec3ce37f4de5af4" dependencies = [ "lz4-sys", ] @@ -6898,10 +7031,10 @@ dependencies = [ ] [[package]] -name = "mach" -version = "0.3.2" +name = "mach2" +version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b823e83b2affd8f40a9ee8c29dbc56404c1e34cd2710921f2801e2cf29527afa" +checksum = "d640282b302c0bb0a2a8e0233ead9035e3bed871f0b7e81fe4a1ec829765db44" dependencies = [ "libc", ] @@ -6915,7 +7048,7 @@ dependencies = [ "macro_magic_core", "macro_magic_macros", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] @@ -6929,7 +7062,7 @@ dependencies = [ "macro_magic_core_macros", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] @@ -6940,7 +7073,7 @@ checksum = "b02abfe41815b5bd98dbd4260173db2c116dda171dc0fe7838cb206333b83308" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] @@ -6951,14 +7084,19 @@ checksum = "73ea28ee64b88876bf45277ed9a5817c1817df061a74f2b988971a12570e5869" dependencies = [ "macro_magic_core", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] -name = "match_cfg" -version = "0.1.0" +name = "match-lookup" +version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4" +checksum = "757aee279b8bdbb9f9e676796fd459e4207a1f986e87886700abf589f5abf771" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", +] [[package]] name = "matchers" @@ -6971,9 +7109,9 @@ dependencies = [ [[package]] name = "matrixmultiply" -version = "0.3.9" +version = "0.3.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9380b911e3e96d10c1f415da0876389aaf1b56759054eeb0de7df940c456ba1a" +checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08" dependencies = [ "autocfg", "rawpointer", @@ -6981,17 +7119,17 @@ dependencies = [ [[package]] name = "memchr" -version = "2.7.4" +version = "2.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" +checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79" [[package]] name = "memfd" -version = "0.6.4" +version = "0.6.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b2cffa4ad52c6f791f4f8b15f0c05f9824b2ced1160e88cc393d64fff9a8ac64" +checksum = "ad38eb12aea514a0466ea40a80fd8cc83637065948eb4a426e4aa46261175227" dependencies = [ - "rustix 0.38.37", + "rustix 1.1.4", ] [[package]] @@ -7005,29 +7143,20 @@ dependencies = [ [[package]] name = "memmap2" -version = "0.9.5" +version = "0.9.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fd3f7eed9d3848f8b98834af67102b720745c4ec028fcd0aa0239277e7de374f" +checksum = "714098028fe011992e1c3962653c96b2d578c4b4bce9036e15ff220319b1e0e3" dependencies = [ "libc", ] -[[package]] -name = "memoffset" -version = "0.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d61c719bcfbcf5d62b3a09efa6088de8c54bc0bfcd3ea7ae39fcc186108b8de1" -dependencies = [ - "autocfg", -] - [[package]] name = "memory-db" version = "0.34.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7e300c54e3239a86f9c61cc63ab0f03862eb40b1c6e065dc6fd6ceaeff6da93d" dependencies = [ - "foldhash", + "foldhash 0.1.5", "hash-db", "hashbrown 0.15.5", ] @@ -7046,9 +7175,9 @@ dependencies = [ [[package]] name = "mimalloc" -version = "0.1.43" +version = "0.1.48" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "68914350ae34959d83f732418d51e2427a794055d0b9529f48259ac07af65633" +checksum = "e1ee66a4b64c74f4ef288bcbb9192ad9c3feaad75193129ac8509af543894fd8" dependencies = [ "libmimalloc-sys", ] @@ -7067,24 +7196,24 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" [[package]] name = "miniz_oxide" -version = "0.8.0" +version = "0.8.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2d80299ef12ff69b16a84bb182e3b9df68b5a91574d3d4fa6e41b65deec4df1" +checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" dependencies = [ "adler2", + "simd-adler32", ] [[package]] name = "mio" -version = "1.0.2" +version = "1.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec" +checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc" dependencies = [ - "hermit-abi 0.3.9", "libc", "log", - "wasi 0.11.0+wasi-snapshot-preview1", - "windows-sys 0.52.0", + "wasi", + "windows-sys 0.61.2", ] [[package]] @@ -7103,19 +7232,19 @@ dependencies = [ "hashlink 0.8.4", "lioness", "log", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "rand 0.8.5", "rand_chacha 0.3.1", "rand_distr", "subtle 2.6.1", - "thiserror 1.0.64", + "thiserror 1.0.69", "zeroize", ] [[package]] name = "mmr-gadget" -version = "46.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "50.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "futures", "log", @@ -7133,8 +7262,8 @@ dependencies = [ [[package]] name = "mmr-rpc" -version = "41.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "44.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -7169,25 +7298,23 @@ dependencies = [ "cfg-if", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] name = "moka" -version = "0.12.10" +version = "0.12.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a9321642ca94a4282428e6ea4af8cc2ca4eac48ac7a6a4ea8f33f76d0ce70926" +checksum = "957228ad12042ee839f93c8f257b62b4c0ab5eaae1d4fa60de53b27c9d7c5046" dependencies = [ "crossbeam-channel", "crossbeam-epoch", "crossbeam-utils", - "loom", - "parking_lot 0.12.3", + "equivalent", + "parking_lot 0.12.5", "portable-atomic", - "rustc_version", "smallvec", "tagptr", - "thiserror 1.0.64", "uuid", ] @@ -7227,7 +7354,7 @@ dependencies = [ "data-encoding", "libp2p-identity", "multibase", - "multihash 0.19.1", + "multihash 0.19.3", "percent-encoding", "serde", "static_assertions", @@ -7237,11 +7364,12 @@ dependencies = [ [[package]] name = "multibase" -version = "0.9.1" +version = "0.9.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9b3539ec3c1f04ac9748a260728e855f261b4977f5c3406612c884564f329404" +checksum = "8694bb4835f452b0e3bb06dbebb1d6fc5385b6ca1caf2e55fd165c042390ec77" dependencies = [ "base-x", + "base256emoji", "data-encoding", "data-encoding-macro", ] @@ -7253,26 +7381,24 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "835d6ff01d610179fbce3de1694d007e500bf33a7f29689838941d6bf783ae40" dependencies = [ "blake2b_simd", - "blake2s_simd", - "blake3", "core2", "digest 0.10.7", "multihash-derive", - "sha2 0.10.8", + "sha2 0.10.9", "sha3", "unsigned-varint 0.7.2", ] [[package]] name = "multihash" -version = "0.19.1" +version = "0.19.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "076d548d76a0e2a0d4ab471d0b1c36c577786dfc4471242035d97a12a735c492" +checksum = "6b430e7953c29dd6a09afc29ff0bb69c6e306329ee6794700aee27b76a1aea8d" dependencies = [ "core2", "parity-scale-codec", "serde", - "unsigned-varint 0.7.2", + "unsigned-varint 0.8.0", ] [[package]] @@ -7291,9 +7417,9 @@ dependencies = [ [[package]] name = "multimap" -version = "0.10.0" +version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "defc4c55412d89136f966bbb339008b474350e5e6e78d2714439c386b3137a03" +checksum = "1d87ecb2933e8aeadb3e3a02b828fed80a7528047e68b4f424523a0981a3a084" [[package]] name = "multistream-select" @@ -7310,13 +7436,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", @@ -7324,17 +7449,6 @@ dependencies = [ "typenum", ] -[[package]] -name = "nalgebra-macros" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "254a5372af8fc138e36684761d3c0cdb758a4410e938babcff1c860ce14ddbfc" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.111", -] - [[package]] name = "names" version = "0.14.0" @@ -7352,63 +7466,47 @@ checksum = "6a51313c5820b0b02bd422f4b44776fbf47961755c74ce64afc73bfad10226c3" [[package]] name = "netlink-packet-core" -version = "0.7.0" +version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "72724faf704479d67b388da142b186f916188505e7e0b26719019c525882eda4" +checksum = "3463cbb78394cb0141e2c926b93fc2197e473394b761986eca3b9da2c63ae0f4" dependencies = [ - "anyhow", - "byteorder", - "netlink-packet-utils", + "paste", ] [[package]] name = "netlink-packet-route" -version = "0.17.1" +version = "0.28.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "053998cea5a306971f88580d0829e90f270f940befd7cf928da179d4187a5a66" +checksum = "4ce3636fa715e988114552619582b530481fd5ef176a1e5c1bf024077c2c9445" dependencies = [ - "anyhow", - "bitflags 1.3.2", - "byteorder", + "bitflags 2.11.0", "libc", + "log", "netlink-packet-core", - "netlink-packet-utils", -] - -[[package]] -name = "netlink-packet-utils" -version = "0.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0ede8a08c71ad5a95cdd0e4e52facd37190977039a4704eb82a283f713747d34" -dependencies = [ - "anyhow", - "byteorder", - "paste", - "thiserror 1.0.64", ] [[package]] name = "netlink-proto" -version = "0.11.5" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "72452e012c2f8d612410d89eea01e2d9b56205274abb35d53f60200b2ec41d60" +checksum = "b65d130ee111430e47eed7896ea43ca693c387f097dd97376bffafbf25812128" dependencies = [ "bytes", "futures", "log", "netlink-packet-core", "netlink-sys", - "thiserror 2.0.12", + "thiserror 2.0.18", ] [[package]] name = "netlink-sys" -version = "0.8.6" +version = "0.8.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "416060d346fbaf1f23f9512963e3e878f1a78e707cb699ba9215761754244307" +checksum = "cd6c30ed10fa69cc491d491b85cc971f6bdeb8e7367b7cde2ee6cc878d583fae" dependencies = [ "bytes", - "futures", + "futures-util", "libc", "log", "tokio", @@ -7416,37 +7514,38 @@ dependencies = [ [[package]] name = "network-interface" -version = "2.0.1" +version = "2.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c3329f515506e4a2de3aa6e07027a6758e22e0f0e8eaf64fa47261cec2282602" +checksum = "4ddcb8865ad3d9950f22f42ffa0ef0aecbfbf191867b3122413602b0a360b2a6" dependencies = [ "cc", "libc", - "thiserror 1.0.64", + "thiserror 2.0.18", "winapi", ] [[package]] name = "nix" -version = "0.26.4" +version = "0.30.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b" +checksum = "74523f3a35e05aba87a1d978330aef40f67b0304ac79c1c00b294c9830543db6" dependencies = [ - "bitflags 1.3.2", + "bitflags 2.11.0", "cfg-if", + "cfg_aliases 0.2.1", "libc", ] [[package]] name = "nkeys" -version = "0.4.4" +version = "0.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9f49e787f4c61cbd0f9320b31cc26e58719f6aa5068e34697dd3aea361412fe3" +checksum = "879011babc47a1c7fdf5a935ae3cfe94f34645ca0cac1c7f6424b36fc743d1bf" dependencies = [ "data-encoding", "ed25519", "ed25519-dalek", - "getrandom 0.2.15", + "getrandom 0.2.17", "log", "rand 0.8.5", "signatory", @@ -7480,6 +7579,15 @@ dependencies = [ "minimal-lexical", ] +[[package]] +name = "nom" +version = "8.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405" +dependencies = [ + "memchr", +] + [[package]] name = "nonempty" version = "0.7.0" @@ -7503,11 +7611,11 @@ dependencies = [ [[package]] name = "nu-ansi-term" -version = "0.50.1" +version = "0.50.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d4a28e057d01f97e61255210fcff094d74ed0466038633e95017f5beb68e4399" +checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5" dependencies = [ - "windows-sys 0.52.0", + "windows-sys 0.61.2", ] [[package]] @@ -7554,20 +7662,9 @@ dependencies = [ [[package]] name = "num-conv" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf97ec579c3c42f953ef76dbf8d55ac91fb219dde70e49aa4a6b7d74e9919050" - -[[package]] -name = "num-derive" -version = "0.4.2" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.111", -] +checksum = "c6673768db2d862beb9b39a78fdcb1a69439615d5794a1be50caa9bc92c81967" [[package]] name = "num-format" @@ -7622,11 +7719,11 @@ dependencies = [ [[package]] name = "num_cpus" -version = "1.16.0" +version = "1.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" +checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b" dependencies = [ - "hermit-abi 0.3.9", + "hermit-abi", "libc", ] @@ -7641,11 +7738,12 @@ dependencies = [ [[package]] name = "num_enum" -version = "0.7.3" +version = "0.7.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4e613fc340b2220f734a8595782c551f1250e969d87d3be1ae0579e8d4065179" +checksum = "5d0bca838442ec211fa11de3a8b0e0e8f3a4522575b5c4c06ed722e005036f26" dependencies = [ - "num_enum_derive 0.7.3", + "num_enum_derive 0.7.6", + "rustversion", ] [[package]] @@ -7662,33 +7760,33 @@ dependencies = [ [[package]] name = "num_enum_derive" -version = "0.7.3" +version = "0.7.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af1844ef2428cc3e1cb900be36181049ef3d3193c63e43026cfe202983b27a56" +checksum = "680998035259dcfcafe653688bf2aa6d3e2dc05e98be6ab46afb089dc84f1df8" dependencies = [ - "proc-macro-crate 3.2.0", + "proc-macro-crate 3.5.0", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] name = "object" -version = "0.30.4" +version = "0.36.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "03b4680b86d9cfafba8fc491dc9b6df26b68cf40e9e6cd73909194759a63c385" +checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87" dependencies = [ "crc32fast", - "hashbrown 0.13.2", - "indexmap 1.9.3", + "hashbrown 0.15.5", + "indexmap", "memchr", ] [[package]] name = "object" -version = "0.36.4" +version = "0.37.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "084f1a5821ac4c651660a94a7153d27ac9d8a53736203f58b31945ded098070a" +checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe" dependencies = [ "memchr", ] @@ -7713,19 +7811,25 @@ dependencies = [ [[package]] name = "once_cell" -version = "1.21.3" +version = "1.21.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" +checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50" dependencies = [ "critical-section", "portable-atomic", ] +[[package]] +name = "once_cell_polyfill" +version = "1.70.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe" + [[package]] name = "oorandom" -version = "11.1.4" +version = "11.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b410bbe7e14ab526a0e86877eb47c6996a2bd7746f027ba551028c925390e4e9" +checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e" [[package]] name = "opaque-debug" @@ -7741,9 +7845,15 @@ checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381" [[package]] name = "openssl-probe" -version = "0.1.5" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e" + +[[package]] +name = "openssl-probe" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" +checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe" [[package]] name = "option-ext" @@ -7764,7 +7874,7 @@ dependencies = [ "orchestra-proc-macro", "pin-project", "prioritized-metered-channel", - "thiserror 1.0.64", + "thiserror 1.0.69", "tracing", ] @@ -7775,10 +7885,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "43dfaf083aef571385fccfdc3a2f8ede8d0a1863160455d4f2b014d8f7d04a3f" dependencies = [ "expander", - "indexmap 2.9.0", + "indexmap", "itertools 0.11.0", - "petgraph", - "proc-macro-crate 3.2.0", + "petgraph 0.6.5", + "proc-macro-crate 3.5.0", "proc-macro2", "quote", "syn 1.0.109", @@ -7786,9 +7896,9 @@ dependencies = [ [[package]] name = "ouroboros" -version = "0.18.4" +version = "0.18.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "944fa20996a25aded6b4795c6d63f10014a7a83f8be9828a11860b08c5fc4a67" +checksum = "1e0f050db9c44b97a94723127e6be766ac5c340c48f2c4bb3ffa11713744be59" dependencies = [ "aliasable", "ouroboros_macro", @@ -7797,22 +7907,21 @@ dependencies = [ [[package]] name = "ouroboros_macro" -version = "0.18.4" +version = "0.18.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "39b0deead1528fd0e5947a8546a9642a9777c25f6e1e26f34c97b204bbb465bd" +checksum = "3c7028bdd3d43083f6d8d4d5187680d0d3560d54df4cc9d752005268b41e64d0" dependencies = [ "heck 0.4.1", - "itertools 0.12.1", "proc-macro2", "proc-macro2-diagnostics", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] name = "pallet-asset-conversion" -version = "23.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "27.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "frame-benchmarking", "frame-support", @@ -7829,8 +7938,8 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" -version = "41.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "45.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "frame-support", "frame-system", @@ -7844,8 +7953,8 @@ dependencies = [ [[package]] name = "pallet-authorship" -version = "41.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "45.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "frame-support", "frame-system", @@ -7865,7 +7974,7 @@ dependencies = [ "pallet-timestamp", "parity-scale-codec", "pem", - "ring 0.17.13", + "ring 0.17.14", "scale-info", "sp-auto-id", "sp-core", @@ -7877,8 +7986,8 @@ dependencies = [ [[package]] name = "pallet-babe" -version = "41.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "45.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "frame-benchmarking", "frame-support", @@ -7900,8 +8009,8 @@ dependencies = [ [[package]] name = "pallet-balances" -version = "42.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "46.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "docify", "frame-benchmarking", @@ -7932,8 +8041,8 @@ dependencies = [ [[package]] name = "pallet-broker" -version = "0.20.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "0.24.1" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "bitvec", "frame-benchmarking", @@ -7950,8 +8059,8 @@ dependencies = [ [[package]] name = "pallet-collective" -version = "41.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "45.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "docify", "frame-benchmarking", @@ -7967,8 +8076,8 @@ dependencies = [ [[package]] name = "pallet-democracy" -version = "41.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "45.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "frame-benchmarking", "frame-support", @@ -8050,7 +8159,7 @@ dependencies = [ [[package]] name = "pallet-ethereum" version = "4.0.0-dev" -source = "git+https://github.com/polkadot-evm/frontier?rev=b70f725a84c1b6b7e56c9e7381d35863829a7a3c#b70f725a84c1b6b7e56c9e7381d35863829a7a3c" +source = "git+https://github.com/polkadot-evm/frontier?rev=9d49e36ed5bac38241594f8ba055fdb94991483a#9d49e36ed5bac38241594f8ba055fdb94991483a" dependencies = [ "ethereum", "ethereum-types", @@ -8073,7 +8182,7 @@ dependencies = [ [[package]] name = "pallet-evm" version = "6.0.0-dev" -source = "git+https://github.com/polkadot-evm/frontier?rev=b70f725a84c1b6b7e56c9e7381d35863829a7a3c#b70f725a84c1b6b7e56c9e7381d35863829a7a3c" +source = "git+https://github.com/polkadot-evm/frontier?rev=9d49e36ed5bac38241594f8ba055fdb94991483a#9d49e36ed5bac38241594f8ba055fdb94991483a" dependencies = [ "cumulus-primitives-storage-weight-reclaim", "environmental", @@ -8098,7 +8207,7 @@ dependencies = [ [[package]] name = "pallet-evm-chain-id" version = "1.0.0-dev" -source = "git+https://github.com/polkadot-evm/frontier?rev=b70f725a84c1b6b7e56c9e7381d35863829a7a3c#b70f725a84c1b6b7e56c9e7381d35863829a7a3c" +source = "git+https://github.com/polkadot-evm/frontier?rev=9d49e36ed5bac38241594f8ba055fdb94991483a#9d49e36ed5bac38241594f8ba055fdb94991483a" dependencies = [ "frame-support", "frame-system", @@ -8109,7 +8218,7 @@ dependencies = [ [[package]] name = "pallet-evm-precompile-modexp" version = "2.0.0-dev" -source = "git+https://github.com/polkadot-evm/frontier?rev=b70f725a84c1b6b7e56c9e7381d35863829a7a3c#b70f725a84c1b6b7e56c9e7381d35863829a7a3c" +source = "git+https://github.com/polkadot-evm/frontier?rev=9d49e36ed5bac38241594f8ba055fdb94991483a#9d49e36ed5bac38241594f8ba055fdb94991483a" dependencies = [ "fp-evm", "num", @@ -8118,16 +8227,18 @@ dependencies = [ [[package]] name = "pallet-evm-precompile-sha3fips" version = "2.0.0-dev" -source = "git+https://github.com/polkadot-evm/frontier?rev=b70f725a84c1b6b7e56c9e7381d35863829a7a3c#b70f725a84c1b6b7e56c9e7381d35863829a7a3c" +source = "git+https://github.com/polkadot-evm/frontier?rev=9d49e36ed5bac38241594f8ba055fdb94991483a#9d49e36ed5bac38241594f8ba055fdb94991483a" dependencies = [ "fp-evm", + "frame-support", + "pallet-evm", "tiny-keccak", ] [[package]] name = "pallet-evm-precompile-simple" version = "2.0.0-dev" -source = "git+https://github.com/polkadot-evm/frontier?rev=b70f725a84c1b6b7e56c9e7381d35863829a7a3c#b70f725a84c1b6b7e56c9e7381d35863829a7a3c" +source = "git+https://github.com/polkadot-evm/frontier?rev=9d49e36ed5bac38241594f8ba055fdb94991483a#9d49e36ed5bac38241594f8ba055fdb94991483a" dependencies = [ "fp-evm", "ripemd", @@ -8162,8 +8273,8 @@ dependencies = [ [[package]] name = "pallet-message-queue" -version = "44.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "48.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "environmental", "frame-benchmarking", @@ -8205,8 +8316,8 @@ dependencies = [ [[package]] name = "pallet-mmr" -version = "41.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "45.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "log", "parity-scale-codec", @@ -8217,8 +8328,8 @@ dependencies = [ [[package]] name = "pallet-multisig" -version = "41.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "45.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "log", "parity-scale-codec", @@ -8228,8 +8339,8 @@ dependencies = [ [[package]] name = "pallet-preimage" -version = "41.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "45.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "frame-benchmarking", "frame-support", @@ -8277,8 +8388,8 @@ dependencies = [ [[package]] name = "pallet-scheduler" -version = "42.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "46.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "docify", "frame-benchmarking", @@ -8294,13 +8405,14 @@ dependencies = [ [[package]] name = "pallet-session" -version = "41.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "45.2.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "frame-support", "frame-system", "impl-trait-for-tuples", "log", + "pallet-balances", "pallet-timestamp", "parity-scale-codec", "scale-info", @@ -8315,8 +8427,8 @@ dependencies = [ [[package]] name = "pallet-staking" -version = "41.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "45.1.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -8352,7 +8464,7 @@ dependencies = [ name = "pallet-subspace" version = "0.1.0" dependencies = [ - "env_logger 0.11.5", + "env_logger", "frame-benchmarking", "frame-support", "frame-system", @@ -8396,8 +8508,8 @@ dependencies = [ [[package]] name = "pallet-sudo" -version = "41.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "45.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "docify", "frame-benchmarking", @@ -8411,8 +8523,8 @@ dependencies = [ [[package]] name = "pallet-timestamp" -version = "40.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "44.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "docify", "frame-benchmarking", @@ -8440,12 +8552,13 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" -version = "41.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "45.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "frame-benchmarking", "frame-support", "frame-system", + "log", "parity-scale-codec", "scale-info", "serde", @@ -8455,8 +8568,8 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" -version = "44.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "48.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -8471,8 +8584,8 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" -version = "41.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "45.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -8504,8 +8617,8 @@ dependencies = [ [[package]] name = "pallet-utility" -version = "41.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "45.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "frame-benchmarking", "frame-support", @@ -8518,23 +8631,31 @@ dependencies = [ ] [[package]] -name = "parity-bip39" -version = "2.0.1" +name = "parity-db" +version = "0.4.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4e69bf016dc406eff7d53a7d3f7cf1c2e72c82b9088aac1118591e36dd2cd3e9" +checksum = "592a28a24b09c9dc20ac8afaa6839abc417c720afe42c12e1e4a9d6aa2508d2e" dependencies = [ - "bitcoin_hashes 0.13.0", + "blake2 0.10.6", + "crc32fast", + "fs2", + "hex", + "libc", + "log", + "lz4", + "memmap2 0.5.10", + "parking_lot 0.12.5", "rand 0.8.5", - "rand_core 0.6.4", - "serde", - "unicode-normalization", + "siphasher 0.3.11", + "snap", + "winapi", ] [[package]] name = "parity-db" -version = "0.4.13" +version = "0.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "592a28a24b09c9dc20ac8afaa6839abc417c720afe42c12e1e4a9d6aa2508d2e" +checksum = "6985a45b0597d68448dac9db2907f9f72bbaf63fe3383d4ba15f99096c87212f" dependencies = [ "blake2 0.10.6", "crc32fast", @@ -8543,10 +8664,10 @@ dependencies = [ "libc", "log", "lz4", - "memmap2 0.5.10", - "parking_lot 0.12.3", - "rand 0.8.5", - "siphasher 0.3.11", + "memmap2 0.9.10", + "parking_lot 0.12.5", + "rand 0.9.2", + "siphasher 1.0.2", "snap", "winapi", ] @@ -8574,10 +8695,10 @@ version = "3.7.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "34b4653168b563151153c9e4c08ebed57fb8262bebfa79711552fa983c623e7a" dependencies = [ - "proc-macro-crate 3.2.0", + "proc-macro-crate 3.5.0", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] @@ -8605,12 +8726,12 @@ dependencies = [ [[package]] name = "parking_lot" -version = "0.12.3" +version = "0.12.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27" +checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a" dependencies = [ "lock_api", - "parking_lot_core 0.9.10", + "parking_lot_core 0.9.12", ] [[package]] @@ -8629,15 +8750,15 @@ dependencies = [ [[package]] name = "parking_lot_core" -version = "0.9.10" +version = "0.9.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8" +checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1" dependencies = [ "cfg-if", "libc", - "redox_syscall 0.5.7", + "redox_syscall 0.5.18", "smallvec", - "windows-targets 0.52.6", + "windows-link", ] [[package]] @@ -8676,12 +8797,12 @@ dependencies = [ [[package]] name = "pem" -version = "3.0.4" +version = "3.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e459365e590736a54c3fa561947c84837534b8e9af6fc5bf781307e82658fae" +checksum = "1d30c53c26bc5b31a98cd02d20f25a7c8567146caf63ed593a9d87b2775291be" dependencies = [ - "base64 0.22.1", - "serde", + "base64", + "serde_core", ] [[package]] @@ -8695,26 +8816,25 @@ dependencies = [ [[package]] name = "percent-encoding" -version = "2.3.1" +version = "2.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" +checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" [[package]] name = "pest" -version = "2.7.15" +version = "2.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b7cafe60d6cf8e62e1b9b2ea516a089c008945bb5a275416789e7db0bc199dc" +checksum = "e0848c601009d37dfa3430c4666e147e49cdcf1b92ecd3e63657d8a5f19da662" dependencies = [ "memchr", - "thiserror 2.0.12", "ucd-trie", ] [[package]] name = "pest_derive" -version = "2.7.15" +version = "2.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "816518421cfc6887a0d62bf441b6ffb4536fcc926395a69e1a85852d4363f57e" +checksum = "11f486f1ea21e6c10ed15d5a7c77165d0ee443402f0780849d1768e7d9d6fe77" dependencies = [ "pest", "pest_generator", @@ -8722,26 +8842,25 @@ dependencies = [ [[package]] name = "pest_generator" -version = "2.7.15" +version = "2.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7d1396fd3a870fc7838768d171b4616d5c91f6cc25e377b673d714567d99377b" +checksum = "8040c4647b13b210a963c1ed407c1ff4fdfa01c31d6d2a098218702e6664f94f" dependencies = [ "pest", "pest_meta", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] name = "pest_meta" -version = "2.7.15" +version = "2.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e1e58089ea25d717bfd31fb534e4f3afcc2cc569c70de3e239778991ea3b7dea" +checksum = "89815c69d36021a140146f26659a81d6c2afa33d216d736dd4be5381a7362220" dependencies = [ - "once_cell", "pest", - "sha2 0.10.8", + "sha2 0.10.9", ] [[package]] @@ -8750,35 +8869,62 @@ version = "0.6.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db" dependencies = [ - "fixedbitset", - "indexmap 2.9.0", + "fixedbitset 0.4.2", + "indexmap", +] + +[[package]] +name = "petgraph" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3672b37090dbd86368a4145bc067582552b29c27377cad4e0a306c97f9bd7772" +dependencies = [ + "fixedbitset 0.5.7", + "indexmap", +] + +[[package]] +name = "petgraph" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8701b58ea97060d5e5b155d383a69952a60943f0e6dfe30b04c287beb0b27455" +dependencies = [ + "fixedbitset 0.5.7", + "hashbrown 0.15.5", + "indexmap", ] +[[package]] +name = "picosimd" +version = "0.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f8cf1ae70818c6476eb2da0ac8f3f55ecdea41a7aa16824ea6efc4a31cccf41" + [[package]] name = "pin-project" -version = "1.1.10" +version = "1.1.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a" +checksum = "f1749c7ed4bcaf4c3d0a3efc28538844fb29bcdd7d2b67b2be7e20ba861ff517" dependencies = [ "pin-project-internal", ] [[package]] name = "pin-project-internal" -version = "1.1.10" +version = "1.1.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861" +checksum = "d9b20ed30f105399776b9c883e68e536ef602a16ae6f596d2c473591d6ad64c6" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] name = "pin-project-lite" -version = "0.2.14" +version = "0.2.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02" +checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd" [[package]] name = "pin-utils" @@ -8788,9 +8934,9 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" [[package]] name = "piper" -version = "0.2.4" +version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "96c8c490f422ef9a4efd2cb5b42b76c8613d7e7dfc1caf667b8a3350a5acc066" +checksum = "c835479a4443ded371d6c535cbfd8d31ad92c5d23ae9770a61bc155e4992a3c1" dependencies = [ "atomic-waker", "fastrand", @@ -8809,9 +8955,15 @@ dependencies = [ [[package]] name = "pkg-config" -version = "0.3.31" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" + +[[package]] +name = "plain" +version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2" +checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6" [[package]] name = "polkadot-ckb-merkle-mountain-range" @@ -8825,8 +8977,8 @@ dependencies = [ [[package]] name = "polkadot-core-primitives" -version = "18.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "21.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "parity-scale-codec", "scale-info", @@ -8836,8 +8988,8 @@ dependencies = [ [[package]] name = "polkadot-node-metrics" -version = "24.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "28.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "bs58", "futures", @@ -8853,13 +9005,13 @@ dependencies = [ [[package]] name = "polkadot-node-network-protocol" -version = "24.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "28.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "async-channel 1.9.0", "async-trait", "bitvec", - "derive_more 0.99.18", + "derive_more 0.99.20", "fatality", "futures", "hex", @@ -8872,14 +9024,14 @@ dependencies = [ "sc-network-types", "sp-runtime", "strum 0.26.3", - "thiserror 1.0.64", + "thiserror 1.0.69", "tracing-gum", ] [[package]] name = "polkadot-node-primitives" -version = "20.1.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "23.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "bitvec", "bounded-vec", @@ -8896,17 +9048,17 @@ dependencies = [ "sp-consensus-slots", "sp-keystore", "sp-maybe-compressed-blob", - "thiserror 1.0.64", + "thiserror 1.0.69", "zstd 0.12.4", ] [[package]] name = "polkadot-node-subsystem-types" -version = "24.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "28.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "async-trait", - "derive_more 0.99.18", + "derive_more 0.99.20", "fatality", "futures", "orchestra", @@ -8925,13 +9077,13 @@ dependencies = [ "sp-consensus-babe", "sp-runtime", "substrate-prometheus-endpoint", - "thiserror 1.0.64", + "thiserror 1.0.69", ] [[package]] name = "polkadot-overseer" -version = "24.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "28.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "async-trait", "futures", @@ -8950,11 +9102,12 @@ dependencies = [ [[package]] name = "polkadot-parachain-primitives" -version = "17.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "20.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ + "array-bytes", "bounded-collections", - "derive_more 0.99.18", + "derive_more 0.99.20", "parity-scale-codec", "polkadot-core-primitives", "scale-info", @@ -8966,8 +9119,8 @@ dependencies = [ [[package]] name = "polkadot-primitives" -version = "19.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "22.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "bitvec", "bounded-collections", @@ -8990,13 +9143,13 @@ dependencies = [ "sp-runtime", "sp-staking", "sp-std", - "thiserror 1.0.64", + "thiserror 1.0.69", ] [[package]] name = "polkadot-runtime-metrics" -version = "21.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "25.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "bs58", "frame-benchmarking", @@ -9007,8 +9160,8 @@ dependencies = [ [[package]] name = "polkadot-runtime-parachains" -version = "20.0.3" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "24.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "bitflags 1.3.2", "bitvec", @@ -9055,8 +9208,8 @@ dependencies = [ [[package]] name = "polkadot-sdk-frame" -version = "0.10.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "0.14.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "docify", "frame-benchmarking", @@ -9090,8 +9243,8 @@ dependencies = [ [[package]] name = "polkadot-statement-table" -version = "20.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "23.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "parity-scale-codec", "polkadot-primitives", @@ -9100,12 +9253,13 @@ dependencies = [ [[package]] name = "polkavm" -version = "0.24.0" +version = "0.30.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f2a01db119bb3a86572c0641ba6e7c9786fbd2ac89c25b43b688c4e353787526" +checksum = "4323d016144b2852da47cee55ca5fc33dfe7517be1f52395759f247ecc5695f6" dependencies = [ "libc", "log", + "picosimd", "polkavm-assembler", "polkavm-common", "polkavm-linux-raw", @@ -9113,65 +9267,66 @@ dependencies = [ [[package]] name = "polkavm-assembler" -version = "0.24.0" +version = "0.30.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eea6105f3f344abe0bf0151d67b3de6f5d24353f2393355ecf3f5f6e06d7fd0b" +checksum = "b3a873fa7ace058d6507debf5fccb1d06bd3279f5b35dbaf70dc7fe94a6c415c" dependencies = [ "log", ] [[package]] name = "polkavm-common" -version = "0.24.0" +version = "0.30.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d91ed9e5af472f729fcf3b3c1cf17508ddbb3505259dd6e2ee0fb5a29e105d22" +checksum = "ed1b408db93d4f49f5c651a7844682b9d7a561827b4dc6202c10356076c055c9" dependencies = [ "log", + "picosimd", "polkavm-assembler", ] [[package]] name = "polkavm-derive" -version = "0.24.0" +version = "0.30.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "176144f8661117ea95fa7cf868c9a62d6b143e8a2ebcb7582464c3faade8669a" +checksum = "acb4463fb0b9dbfafdc1d1a1183df4bf7afa3350d124f29d5700c6bee54556b5" dependencies = [ "polkavm-derive-impl-macro", ] [[package]] name = "polkavm-derive-impl" -version = "0.24.0" +version = "0.30.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c5a21844afdfcc10c92b9ef288ccb926211af27478d1730fcd55e4aec710179d" +checksum = "993ff45b972e09babe68adce7062c3c38a84b9f50f07b7caf393a023eaa6c74a" dependencies = [ "polkavm-common", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] name = "polkavm-derive-impl-macro" -version = "0.24.0" +version = "0.30.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ba0ef0f17ad81413ea1ca5b1b67553aedf5650c88269b673d3ba015c83bc2651" +checksum = "0a4f5352e13c1ca5f0e4d7b4a804fbb85b0e02c45cae435d101fe71081bc8ed8" dependencies = [ "polkavm-derive-impl", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] name = "polkavm-linker" -version = "0.24.0" +version = "0.30.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "06c95a521a1331024ebe5823ffdfba9ea6df40b934b0804049d5171887579806" +checksum = "6739125c4f8f44b4282b6531d765d599f20514e9b608737c6c3544594d08f995" dependencies = [ "dirs", "gimli 0.31.1", "hashbrown 0.14.5", "log", - "object 0.36.4", + "object 0.36.7", "polkavm-common", "regalloc2 0.9.3", "rustc-demangle", @@ -9179,23 +9334,22 @@ dependencies = [ [[package]] name = "polkavm-linux-raw" -version = "0.24.0" +version = "0.30.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ec0b13e26ec7234dba213ca17118c70c562809bdce0eefe84f92613d5c8da26" +checksum = "604b23cdb201979304449f53d21bfd5fb1724c03e3ea889067c9a3bf7ae33862" [[package]] name = "polling" -version = "3.7.3" +version = "3.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cc2790cd301dec6cd3b7a025e4815cf825724a51c98dccfe6a3e55f05ffb6511" +checksum = "5d0e4f59085d47d8241c88ead0f274e8a0cb551f3625263c05eb8dd897c34218" dependencies = [ "cfg-if", "concurrent-queue", - "hermit-abi 0.4.0", + "hermit-abi", "pin-project-lite", - "rustix 0.38.37", - "tracing", - "windows-sys 0.59.0", + "rustix 1.1.4", + "windows-sys 0.61.2", ] [[package]] @@ -9223,9 +9377,39 @@ dependencies = [ [[package]] name = "portable-atomic" -version = "1.9.0" +version = "1.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49" + +[[package]] +name = "portable-atomic-util" +version = "0.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cc9c68a3f6da06753e9335d63e27f6b9754dd1920d941135b7ea8224f141adb2" +checksum = "091397be61a01d4be58e7841595bd4bfedb15f1cd54977d79b8271e94ed799a3" +dependencies = [ + "portable-atomic", +] + +[[package]] +name = "postcard" +version = "1.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6764c3b5dd454e283a30e6dfe78e9b31096d9e32036b5d1eaac7a6119ccb9a24" +dependencies = [ + "cobs", + "embedded-io 0.4.0", + "embedded-io 0.6.1", + "serde", +] + +[[package]] +name = "potential_utf" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77" +dependencies = [ + "zerovec", +] [[package]] name = "powerfmt" @@ -9235,17 +9419,17 @@ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" [[package]] name = "ppv-lite86" -version = "0.2.20" +version = "0.2.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04" +checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" dependencies = [ - "zerocopy 0.7.35", + "zerocopy", ] [[package]] name = "precompile-utils" version = "0.1.0" -source = "git+https://github.com/polkadot-evm/frontier?rev=b70f725a84c1b6b7e56c9e7381d35863829a7a3c#b70f725a84c1b6b7e56c9e7381d35863829a7a3c" +source = "git+https://github.com/polkadot-evm/frontier?rev=9d49e36ed5bac38241594f8ba055fdb94991483a#9d49e36ed5bac38241594f8ba055fdb94991483a" dependencies = [ "environmental", "evm", @@ -9255,7 +9439,7 @@ dependencies = [ "hex", "impl-trait-for-tuples", "log", - "num_enum 0.7.3", + "num_enum 0.7.6", "pallet-evm", "parity-scale-codec", "precompile-utils-macro", @@ -9269,22 +9453,22 @@ dependencies = [ [[package]] name = "precompile-utils-macro" version = "0.1.0" -source = "git+https://github.com/polkadot-evm/frontier?rev=b70f725a84c1b6b7e56c9e7381d35863829a7a3c#b70f725a84c1b6b7e56c9e7381d35863829a7a3c" +source = "git+https://github.com/polkadot-evm/frontier?rev=9d49e36ed5bac38241594f8ba055fdb94991483a#9d49e36ed5bac38241594f8ba055fdb94991483a" dependencies = [ "case", - "num_enum 0.7.3", + "num_enum 0.7.6", "prettyplease", "proc-macro2", "quote", - "sp-crypto-hashing 0.1.0 (git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e)", - "syn 2.0.111", + "sp-crypto-hashing 0.1.0 (git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249)", + "syn 2.0.117", ] [[package]] name = "predicates" -version = "3.1.2" +version = "3.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7e9086cc7640c29a356d1a29fd134380bee9d8f79a17410aa76e7ad295f42c97" +checksum = "ada8f2932f28a27ee7b70dd6c1c39ea0675c55a36879ab92f3a715eaa1e63cfe" dependencies = [ "anstyle", "predicates-core", @@ -9292,15 +9476,15 @@ dependencies = [ [[package]] name = "predicates-core" -version = "1.0.8" +version = "1.0.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ae8177bee8e75d6846599c6b9ff679ed51e882816914eec639944d7c9aa11931" +checksum = "cad38746f3166b4031b1a0d39ad9f954dd291e7854fcc0eed52ee41a0b50d144" [[package]] name = "predicates-tree" -version = "1.0.11" +version = "1.0.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "41b740d195ed3166cd147c8047ec98db0e22ec019eb8eeb76d343b795304fb13" +checksum = "d0de1b847b39c8131db0467e9df1ff60e6d0562ab8e9a16e568ad0fdb372e2f2" dependencies = [ "predicates-core", "termtree", @@ -9313,7 +9497,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b" dependencies = [ "proc-macro2", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] @@ -9339,11 +9523,11 @@ checksum = "a172e6cc603231f2cf004232eabcecccc0da53ba576ab286ef7baa0cfc7927ad" dependencies = [ "coarsetime", "crossbeam-queue", - "derive_more 0.99.18", + "derive_more 0.99.20", "futures", "futures-timer", "nanorand", - "thiserror 1.0.64", + "thiserror 1.0.69", "tracing", ] @@ -9353,17 +9537,17 @@ version = "1.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e17d47ce914bf4de440332250b0edd23ce48c005f59fab39d3335866b114f11a" dependencies = [ - "thiserror 1.0.64", + "thiserror 1.0.69", "toml 0.5.11", ] [[package]] name = "proc-macro-crate" -version = "3.2.0" +version = "3.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ecf48c7ca261d60b74ab1a7b20da18bede46776b2e55535cb958eb595c5fa7b" +checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f" dependencies = [ - "toml_edit", + "toml_edit 0.25.8+spec-1.1.0", ] [[package]] @@ -9409,25 +9593,25 @@ dependencies = [ "proc-macro-error-attr2", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] name = "proc-macro-warning" -version = "1.0.2" +version = "1.84.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "834da187cfe638ae8abb0203f0b33e5ccdb02a28e7199f2f47b3e2754f50edca" +checksum = "75eea531cfcd120e0851a3f8aed42c4841f78c889eefafd96339c72677ae42c3" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] name = "proc-macro2" -version = "1.0.103" +version = "1.0.106" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8" +checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934" dependencies = [ "unicode-ident", ] @@ -9440,7 +9624,7 @@ checksum = "af066a9c399a26e020ada66a034357a868728e72cd426f3adcd35f80d88d88c8" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", "version_check", "yansi", ] @@ -9455,8 +9639,8 @@ dependencies = [ "fnv", "lazy_static", "memchr", - "parking_lot 0.12.3", - "thiserror 1.0.64", + "parking_lot 0.12.5", + "thiserror 1.0.69", ] [[package]] @@ -9467,7 +9651,7 @@ checksum = "cf41c1a7c32ed72abe5082fb19505b969095c12da9f5732a4bc9878757fd087c" dependencies = [ "dtoa", "itoa", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "prometheus-client-derive-encode", ] @@ -9479,7 +9663,7 @@ checksum = "440f724eba9f6996b75d63681b0a92b06947f1457076d503a4d2e2c8f56442b8" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] @@ -9493,16 +9677,15 @@ dependencies = [ [[package]] name = "proptest" -version = "1.8.0" +version = "1.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2bb0be07becd10686a0bb407298fb425360a5c44a663774406340c59a22de4ce" +checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744" dependencies = [ "bit-set", "bit-vec", - "bitflags 2.9.1", - "lazy_static", + "bitflags 2.11.0", "num-traits", - "rand 0.9.0", + "rand 0.9.2", "rand_chacha 0.9.0", "rand_xorshift", "regex-syntax", @@ -9531,23 +9714,52 @@ dependencies = [ "prost-derive 0.13.5", ] +[[package]] +name = "prost" +version = "0.14.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d2ea70524a2f82d518bce41317d0fae74151505651af45faf1ffbd6fd33f0568" +dependencies = [ + "bytes", + "prost-derive 0.14.3", +] + [[package]] name = "prost-build" -version = "0.13.4" +version = "0.13.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d0f3e5beed80eb580c68e2c600937ac2c4eedabdfd5ef1e5b7ea4f3fba84497b" +checksum = "be769465445e8c1474e9c5dac2018218498557af32d9ed057325ec9a41ae81bf" dependencies = [ "heck 0.5.0", - "itertools 0.13.0", + "itertools 0.14.0", "log", "multimap", "once_cell", - "petgraph", + "petgraph 0.7.1", "prettyplease", "prost 0.13.5", - "prost-types", + "prost-types 0.13.5", "regex", - "syn 2.0.111", + "syn 2.0.117", + "tempfile", +] + +[[package]] +name = "prost-build" +version = "0.14.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "343d3bd7056eda839b03204e68deff7d1b13aba7af2b2fd16890697274262ee7" +dependencies = [ + "heck 0.5.0", + "itertools 0.14.0", + "log", + "multimap", + "petgraph 0.8.3", + "prettyplease", + "prost 0.14.3", + "prost-types 0.14.3", + "regex", + "syn 2.0.117", "tempfile", ] @@ -9561,7 +9773,7 @@ dependencies = [ "itertools 0.12.1", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] @@ -9571,41 +9783,77 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8a56d757972c98b346a9b766e3f02746cde6dd1cd1d1d563472929fdd74bec4d" dependencies = [ "anyhow", - "itertools 0.13.0", + "itertools 0.14.0", + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "prost-derive" +version = "0.14.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "27c6023962132f4b30eb4c172c91ce92d933da334c59c23cddee82358ddafb0b" +dependencies = [ + "anyhow", + "itertools 0.14.0", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] name = "prost-types" -version = "0.13.4" +version = "0.13.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cc2f1e56baa61e93533aebc21af4d2134b70f66275e0fcdf3cbe43d77ff7e8fc" +checksum = "52c2c1bf36ddb1a1c396b3601a3cec27c2462e45f07c386894ec3ccf5332bd16" dependencies = [ "prost 0.13.5", ] [[package]] -name = "psm" -version = "0.1.23" +name = "prost-types" +version = "0.14.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aa37f80ca58604976033fae9515a8a2989fc13797d953f7c04fb8fa36a11f205" +checksum = "8991c4cbdb8bc5b11f0b074ffe286c30e523de90fee5ba8132f1399f23cb3dd7" dependencies = [ - "cc", + "prost 0.14.3", ] [[package]] -name = "quanta" -version = "0.12.3" +name = "pulley-interpreter" +version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e5167a477619228a0b284fac2674e3c388cba90631d7b7de620e6f1fcd08da5" +checksum = "b89c4319786b16c1a6a38ee04788d32c669b61ba4b69da2162c868c18be99c1b" dependencies = [ - "crossbeam-utils", - "libc", - "once_cell", + "cranelift-bitset", + "log", + "pulley-macros", + "wasmtime-internal-math", +] + +[[package]] +name = "pulley-macros" +version = "35.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "938543690519c20c3a480d20a8efcc8e69abeb44093ab1df4e7c1f81f26c677a" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "quanta" +version = "0.12.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f3ab5a9d756f0d97bdc89019bd2e4ea098cf9cde50ee7564dde6b81ccc8f06c7" +dependencies = [ + "crossbeam-utils", + "libc", + "once_cell", "raw-cpuid", - "wasi 0.11.0+wasi-snapshot-preview1", + "wasi", "web-sys", "winapi", ] @@ -9633,45 +9881,47 @@ dependencies = [ "asynchronous-codec 0.7.0", "bytes", "quick-protobuf", - "thiserror 2.0.12", + "thiserror 2.0.18", "unsigned-varint 0.8.0", ] [[package]] name = "quinn" -version = "0.11.6" +version = "0.11.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "62e96808277ec6f97351a2380e6c25114bc9e67037775464979f3037c92d05ef" +checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20" dependencies = [ "bytes", + "cfg_aliases 0.2.1", "futures-io", "pin-project-lite", "quinn-proto", "quinn-udp", - "rustc-hash 2.0.0", - "rustls 0.23.35", - "socket2", - "thiserror 2.0.12", + "rustc-hash 2.1.1", + "rustls 0.23.37", + "socket2 0.6.3", + "thiserror 2.0.18", "tokio", "tracing", + "web-time", ] [[package]] name = "quinn-proto" -version = "0.11.13" +version = "0.11.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31" +checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098" dependencies = [ "bytes", - "getrandom 0.3.2", + "getrandom 0.3.4", "lru-slab", - "rand 0.9.0", - "ring 0.17.13", - "rustc-hash 2.0.0", - "rustls 0.23.35", + "rand 0.9.2", + "ring 0.17.14", + "rustc-hash 2.1.1", + "rustls 0.23.37", "rustls-pki-types", "slab", - "thiserror 2.0.12", + "thiserror 2.0.18", "tinyvec", "tracing", "web-time", @@ -9679,31 +9929,38 @@ dependencies = [ [[package]] name = "quinn-udp" -version = "0.5.5" +version = "0.5.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4fe68c2e9e1a1234e218683dbdf9f9dfcb094113c5ac2b938dfcb9bab4c4140b" +checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd" dependencies = [ + "cfg_aliases 0.2.1", "libc", "once_cell", - "socket2", + "socket2 0.6.3", "tracing", - "windows-sys 0.59.0", + "windows-sys 0.60.2", ] [[package]] name = "quote" -version = "1.0.42" +version = "1.0.45" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f" +checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924" dependencies = [ "proc-macro2", ] [[package]] name = "r-efi" -version = "5.2.0" +version = "5.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" + +[[package]] +name = "r-efi" +version = "6.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5" +checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf" [[package]] name = "radium" @@ -9724,13 +9981,12 @@ dependencies = [ [[package]] name = "rand" -version = "0.9.0" +version = "0.9.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3779b94aeb87e8bd4e834cee3650289ee9e0d5677f976ecdb6d219e5f4f6cd94" +checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1" dependencies = [ "rand_chacha 0.9.0", - "rand_core 0.9.3", - "zerocopy 0.8.24", + "rand_core 0.9.5", ] [[package]] @@ -9750,7 +10006,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" dependencies = [ "ppv-lite86", - "rand_core 0.9.3", + "rand_core 0.9.5", ] [[package]] @@ -9759,16 +10015,16 @@ version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" dependencies = [ - "getrandom 0.2.15", + "getrandom 0.2.17", ] [[package]] name = "rand_core" -version = "0.9.3" +version = "0.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38" +checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c" dependencies = [ - "getrandom 0.3.2", + "getrandom 0.3.4", ] [[package]] @@ -9796,16 +10052,16 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a" dependencies = [ - "rand_core 0.9.3", + "rand_core 0.9.5", ] [[package]] name = "raw-cpuid" -version = "11.1.0" +version = "11.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cb9ee317cfe3fbd54b36a511efc1edd42e216903c9cd575e686dd68a2ba90d8d" +checksum = "498cd0dc59d73224351ee52a95fee0f1a617a2eae0e7d9d720cc622c73a54186" dependencies = [ - "bitflags 2.9.1", + "bitflags 2.11.0", ] [[package]] @@ -9816,9 +10072,9 @@ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3" [[package]] name = "rayon" -version = "1.10.0" +version = "1.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa" +checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f" dependencies = [ "either", "rayon-core", @@ -9826,9 +10082,9 @@ dependencies = [ [[package]] name = "rayon-core" -version = "1.12.1" +version = "1.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2" +checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91" dependencies = [ "crossbeam-deque", "crossbeam-utils", @@ -9841,7 +10097,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "75e669e5202259b5314d1ea5397316ad400819437857b90861765f24c4cf80a2" dependencies = [ "pem", - "ring 0.17.13", + "ring 0.17.14", "rustls-pki-types", "time", "yasna", @@ -9858,11 +10114,20 @@ dependencies = [ [[package]] name = "redox_syscall" -version = "0.5.7" +version = "0.5.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d" +dependencies = [ + "bitflags 2.11.0", +] + +[[package]] +name = "redox_syscall" +version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9b6dfecf2c74bce2466cabf93f6664d6998a69eb21e39f4207930065b27b771f" +checksum = "6ce70a74e890531977d37e532c34d45e9055d2409ed08ddba14529471ed0be16" dependencies = [ - "bitflags 2.9.1", + "bitflags 2.11.0", ] [[package]] @@ -9871,61 +10136,63 @@ version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43" dependencies = [ - "getrandom 0.2.15", + "getrandom 0.2.17", "libredox", - "thiserror 1.0.64", + "thiserror 1.0.69", ] [[package]] name = "ref-cast" -version = "1.0.23" +version = "1.0.25" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ccf0a6f84d5f1d581da8b41b47ec8600871962f2a528115b542b362d4b744931" +checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d" dependencies = [ "ref-cast-impl", ] [[package]] name = "ref-cast-impl" -version = "1.0.23" +version = "1.0.25" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bcc303e793d3734489387d205e9b186fac9c6cfacedd98cbb2e8a5943595f3e6" +checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] name = "regalloc2" -version = "0.6.1" +version = "0.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "80535183cae11b149d618fbd3c37e38d7cda589d82d7769e196ca9a9042d7621" +checksum = "ad156d539c879b7a24a363a2016d77961786e71f48f2e2fc8302a92abd2429a6" dependencies = [ - "fxhash", + "hashbrown 0.13.2", "log", + "rustc-hash 1.1.0", "slice-group-by", "smallvec", ] [[package]] name = "regalloc2" -version = "0.9.3" +version = "0.12.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ad156d539c879b7a24a363a2016d77961786e71f48f2e2fc8302a92abd2429a6" +checksum = "5216b1837de2149f8bc8e6d5f88a9326b63b8c836ed58ce4a0a29ec736a59734" dependencies = [ - "hashbrown 0.13.2", + "allocator-api2", + "bumpalo", + "hashbrown 0.15.5", "log", - "rustc-hash 1.1.0", - "slice-group-by", + "rustc-hash 2.1.1", "smallvec", ] [[package]] name = "regex" -version = "1.11.0" +version = "1.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38200e5ee88914975b69f657f0801b6f6dccafd44fd9326302a4aaeecfacb1d8" +checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276" dependencies = [ "aho-corasick", "memchr", @@ -9935,9 +10202,9 @@ dependencies = [ [[package]] name = "regex-automata" -version = "0.4.8" +version = "0.4.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3" +checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f" dependencies = [ "aho-corasick", "memchr", @@ -9946,67 +10213,59 @@ dependencies = [ [[package]] name = "regex-lite" -version = "0.1.6" +version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "53a49587ad06b26609c52e423de037e7f57f20d53535d66e08c695f347df952a" +checksum = "cab834c73d247e67f4fae452806d17d3c7501756d98c8808d7c9c7aa7d18f973" [[package]] name = "regex-syntax" -version = "0.8.5" +version = "0.8.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" +checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a" [[package]] name = "reqwest" -version = "0.12.9" +version = "0.12.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a77c62af46e79de0a562e1a9849205ffcb7fc1238876e9bd743357570e04046f" +checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147" dependencies = [ - "base64 0.22.1", + "base64", "bytes", "futures-core", - "futures-util", - "http 1.1.0", + "http 1.4.0", "http-body", "http-body-util", "hyper", "hyper-rustls", "hyper-util", - "ipnet", "js-sys", "log", - "mime", - "once_cell", "percent-encoding", "pin-project-lite", "quinn", - "rustls 0.23.35", - "rustls-pemfile", + "rustls 0.23.37", "rustls-pki-types", "serde", "serde_json", "serde_urlencoded", "sync_wrapper", "tokio", - "tokio-rustls 0.26.0", + "tokio-rustls 0.26.4", + "tower 0.5.3", + "tower-http 0.6.8", "tower-service", "url", "wasm-bindgen", "wasm-bindgen-futures", "web-sys", - "webpki-roots 0.26.6", - "windows-registry", + "webpki-roots 1.0.6", ] [[package]] name = "resolv-conf" -version = "0.7.0" +version = "0.7.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "52e44394d2086d010551b14b53b1f24e31647570cd1deb0379e2c21b329aba00" -dependencies = [ - "hostname", - "quick-error", -] +checksum = "1e061d1b48cb8d38042de4ae0a7a6401009d6143dc80d2e2d6f31f0bdd6470c7" [[package]] name = "rfc6979" @@ -10035,13 +10294,13 @@ dependencies = [ [[package]] name = "ring" -version = "0.17.13" +version = "0.17.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "70ac5d832aa16abd7d1def883a8545280c20a60f523a370aa3a9617c2b8550ee" +checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" dependencies = [ "cc", "cfg-if", - "getrandom 0.2.15", + "getrandom 0.2.17", "libc", "untrusted 0.9.0", "windows-sys 0.52.0", @@ -10075,7 +10334,7 @@ checksum = "652db34deaaa57929e10ca18e5454a32cb0efc351ae80d320334bbf907b908b3" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] @@ -10086,50 +10345,50 @@ checksum = "afab94fb28594581f62d981211a9a4d53cc8130bbcbbb89a0440d9b8e81a7746" [[package]] name = "rpassword" -version = "7.3.1" +version = "7.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "80472be3c897911d0137b2d2b9055faf6eeac5b14e324073d83bc17b191d7e3f" +checksum = "66d4c8b64f049c6721ec8ccec37ddfc3d641c4a7fca57e8f2a89de509c73df39" dependencies = [ "libc", "rtoolbox", - "windows-sys 0.48.0", + "windows-sys 0.59.0", ] [[package]] name = "rs_merkle" -version = "1.4.2" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3b241d2e59b74ef9e98d94c78c47623d04c8392abaf82014dfd372a16041128f" +checksum = "bb09b49230ba22e8c676e7b75dfe2887dea8121f18b530ae0ba519ce442d2b21" dependencies = [ - "sha2 0.10.8", + "sha2 0.10.9", ] [[package]] name = "rtnetlink" -version = "0.13.1" +version = "0.20.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a552eb82d19f38c3beed3f786bd23aa434ceb9ac43ab44419ca6d67a7e186c0" +checksum = "4b960d5d873a75b5be9761b1e73b146f52dddcd27bac75263f40fba686d4d7b5" dependencies = [ - "futures", + "futures-channel", + "futures-util", "log", "netlink-packet-core", "netlink-packet-route", - "netlink-packet-utils", "netlink-proto", "netlink-sys", "nix", - "thiserror 1.0.64", + "thiserror 1.0.69", "tokio", ] [[package]] name = "rtoolbox" -version = "0.0.2" +version = "0.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c247d24e63230cdb56463ae328478bd5eac8b8faa8c69461a77e8e323afac90e" +checksum = "a7cc970b249fbe527d6e02e0a227762c9108b2f49d81094fe357ffc6d14d7f6f" dependencies = [ "libc", - "windows-sys 0.48.0", + "windows-sys 0.52.0", ] [[package]] @@ -10149,9 +10408,9 @@ dependencies = [ [[package]] name = "rustc-demangle" -version = "0.1.24" +version = "0.1.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f" +checksum = "b50b8869d9fc858ce7266cce0194bd74df58b9d0e3f6df3a9fc8eb470d95c09d" [[package]] name = "rustc-hash" @@ -10161,9 +10420,9 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" [[package]] name = "rustc-hash" -version = "2.0.0" +version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "583034fd73374156e66797ed8e5b0d5690409c9226b22d87cb7f19821c05d152" +checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d" [[package]] name = "rustc-hex" @@ -10177,7 +10436,7 @@ version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" dependencies = [ - "semver 1.0.23", + "semver 1.0.27", ] [[package]] @@ -10186,34 +10445,33 @@ version = "4.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "faf0c4a6ece9950b9abdb62b1cfcf2a68b3b67a10ba445b3bb85be2a293d0632" dependencies = [ - "nom", + "nom 7.1.3", ] [[package]] name = "rustix" -version = "0.36.17" +version = "0.38.44" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "305efbd14fde4139eb501df5f136994bb520b033fa9fbdce287507dc23b8c7ed" +checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154" dependencies = [ - "bitflags 1.3.2", + "bitflags 2.11.0", "errno", - "io-lifetimes", "libc", - "linux-raw-sys 0.1.4", - "windows-sys 0.45.0", + "linux-raw-sys 0.4.15", + "windows-sys 0.59.0", ] [[package]] name = "rustix" -version = "0.38.37" +version = "1.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8acb788b847c24f28525660c4d7758620a7210875711f79e7f663cc152726811" +checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190" dependencies = [ - "bitflags 2.9.1", + "bitflags 2.11.0", "errno", "libc", - "linux-raw-sys 0.4.14", - "windows-sys 0.52.0", + "linux-raw-sys 0.12.1", + "windows-sys 0.61.2", ] [[package]] @@ -10230,29 +10488,15 @@ dependencies = [ [[package]] name = "rustls" -version = "0.22.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bf4ef73721ac7bcd79b2b315da7779d8fc09718c6b3d2d1b2d94850eb8c18432" -dependencies = [ - "log", - "ring 0.17.13", - "rustls-pki-types", - "rustls-webpki 0.102.8", - "subtle 2.6.1", - "zeroize", -] - -[[package]] -name = "rustls" -version = "0.23.35" +version = "0.23.37" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "533f54bc6a7d4f647e46ad909549eda97bf5afc1585190ef692b4286b198bd8f" +checksum = "758025cb5fccfd3bc2fd74708fd4682be41d99e5dff73c377c0646c6012c73a4" dependencies = [ "log", "once_cell", - "ring 0.17.13", + "ring 0.17.14", "rustls-pki-types", - "rustls-webpki 0.103.8", + "rustls-webpki 0.103.10", "subtle 2.6.1", "zeroize", ] @@ -10263,7 +10507,7 @@ version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e5bfb394eeed242e909609f56089eecfe5fda225042e8b171791b9c95f5931e5" dependencies = [ - "openssl-probe", + "openssl-probe 0.1.6", "rustls-pemfile", "rustls-pki-types", "schannel", @@ -10272,14 +10516,14 @@ dependencies = [ [[package]] name = "rustls-native-certs" -version = "0.8.1" +version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7fcff2dd52b58a8d98a70243663a0d234c4e2b79235637849d15913394a247d3" +checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63" dependencies = [ - "openssl-probe", + "openssl-probe 0.2.1", "rustls-pki-types", "schannel", - "security-framework 3.1.0", + "security-framework 3.7.0", ] [[package]] @@ -10293,9 +10537,9 @@ dependencies = [ [[package]] name = "rustls-pki-types" -version = "1.13.1" +version = "1.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "708c0f9d5f54ba0272468c1d306a52c495b31fa155e91bc25371e6df7996908c" +checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd" dependencies = [ "web-time", "zeroize", @@ -10307,16 +10551,16 @@ version = "0.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "19787cda76408ec5404443dc8b31795c87cd8fec49762dc75fa727740d34acc1" dependencies = [ - "core-foundation 0.10.0", + "core-foundation 0.10.1", "core-foundation-sys", "jni", "log", "once_cell", - "rustls 0.23.35", - "rustls-native-certs 0.8.1", + "rustls 0.23.37", + "rustls-native-certs 0.8.3", "rustls-platform-verifier-android", - "rustls-webpki 0.103.8", - "security-framework 3.1.0", + "rustls-webpki 0.103.10", + "security-framework 3.7.0", "security-framework-sys", "webpki-root-certs 0.26.11", "windows-sys 0.59.0", @@ -10334,33 +10578,33 @@ version = "0.102.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9" dependencies = [ - "ring 0.17.13", + "ring 0.17.14", "rustls-pki-types", "untrusted 0.9.0", ] [[package]] name = "rustls-webpki" -version = "0.103.8" +version = "0.103.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2ffdfa2f5286e2247234e03f680868ac2815974dc39e00ea15adc445d0aafe52" +checksum = "df33b2b81ac578cabaf06b89b0631153a3f416b0a886e8a7a1707fb51abbd1ef" dependencies = [ - "ring 0.17.13", + "ring 0.17.14", "rustls-pki-types", "untrusted 0.9.0", ] [[package]] name = "rustversion" -version = "1.0.17" +version = "1.0.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "955d28af4278de8121b7ebeb796b6a45735dc01436d898801014aced2773a3d6" +checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d" [[package]] name = "rusty-fork" -version = "0.3.0" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cb3dcc6e454c328bb824492db107ab7c0ae8fcffe4ad210136ef014458c1bc4f" +checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2" dependencies = [ "fnv", "quick-error", @@ -10370,13 +10614,9 @@ dependencies = [ [[package]] name = "ruzstd" -version = "0.6.0" +version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5174a470eeb535a721ae9fdd6e291c2411a906b96592182d05217591d5c5cf7b" -dependencies = [ - "byteorder", - "derive_more 0.99.18", -] +checksum = "e5ff0cc5e135c8870a775d3320910cd9b564ec036b4dc0b8741629020be63f01" [[package]] name = "rw-stream-sink" @@ -10390,15 +10630,15 @@ dependencies = [ [[package]] name = "ryu" -version = "1.0.18" +version = "1.0.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" +checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f" [[package]] name = "safe_arch" -version = "0.7.2" +version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c3460605018fdc9612bce72735cba0d27efbcd9904780d44c7e3a9948f96148a" +checksum = "96b02de82ddbe1b636e6170c21be622223aea188ef2e139be0a5b219ec215323" dependencies = [ "bytemuck", ] @@ -10423,19 +10663,19 @@ dependencies = [ [[package]] name = "sc-allocator" -version = "32.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "35.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "log", "sp-core", "sp-wasm-interface", - "thiserror 1.0.64", + "thiserror 1.0.69", ] [[package]] name = "sc-authority-discovery" -version = "0.51.1" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "0.55.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "async-trait", "futures", @@ -10445,11 +10685,12 @@ dependencies = [ "log", "parity-scale-codec", "prost 0.12.6", - "prost-build", + "prost-build 0.13.5", "rand 0.8.5", "sc-client-api", "sc-network", "sc-network-types", + "sc-service", "serde", "serde_json", "sp-api", @@ -10459,14 +10700,14 @@ dependencies = [ "sp-keystore", "sp-runtime", "substrate-prometheus-endpoint", - "thiserror 1.0.64", + "thiserror 1.0.69", "tokio", ] [[package]] name = "sc-basic-authorship" -version = "0.50.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "0.53.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "futures", "log", @@ -10481,13 +10722,14 @@ dependencies = [ "sp-core", "sp-inherents", "sp-runtime", + "sp-trie", "substrate-prometheus-endpoint", ] [[package]] name = "sc-block-builder" -version = "0.45.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "0.48.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "parity-scale-codec", "sp-api", @@ -10501,12 +10743,12 @@ dependencies = [ [[package]] name = "sc-chain-spec" -version = "44.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "48.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "array-bytes", "docify", - "memmap2 0.9.5", + "memmap2 0.9.10", "parity-scale-codec", "sc-chain-spec-derive", "sc-client-api", @@ -10517,7 +10759,7 @@ dependencies = [ "serde_json", "sp-blockchain", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249)", "sp-genesis-builder", "sp-io", "sp-runtime", @@ -10528,20 +10770,21 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "12.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ - "proc-macro-crate 3.2.0", + "proc-macro-crate 3.5.0", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] name = "sc-cli" -version = "0.53.1" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "0.57.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "array-bytes", + "bip39", "chrono", "clap", "fdlimit", @@ -10550,7 +10793,6 @@ dependencies = [ "libp2p-identity", "log", "names", - "parity-bip39", "parity-scale-codec", "rand 0.8.5", "regex", @@ -10574,20 +10816,20 @@ dependencies = [ "sp-panic-handler", "sp-runtime", "sp-version", - "thiserror 1.0.64", + "thiserror 1.0.69", "tokio", ] [[package]] name = "sc-client-api" -version = "40.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "44.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "fnv", "futures", "log", "parity-scale-codec", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "sc-executor", "sc-transaction-pool-api", "sc-utils", @@ -10606,17 +10848,17 @@ dependencies = [ [[package]] name = "sc-client-db" -version = "0.47.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "0.51.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "hash-db", "kvdb", "kvdb-memorydb", "linked-hash-map", "log", - "parity-db", + "parity-db 0.4.13", "parity-scale-codec", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "sc-client-api", "sc-state-db", "schnellru", @@ -10633,14 +10875,14 @@ dependencies = [ [[package]] name = "sc-consensus" -version = "0.50.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "0.54.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "async-trait", "futures", "log", "mockall", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "sc-client-api", "sc-network-types", "sc-utils", @@ -10651,13 +10893,13 @@ dependencies = [ "sp-runtime", "sp-state-machine", "substrate-prometheus-endpoint", - "thiserror 1.0.64", + "thiserror 1.0.69", ] [[package]] name = "sc-consensus-babe" -version = "0.51.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "0.55.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "async-trait", "fork-tree", @@ -10667,7 +10909,7 @@ dependencies = [ "num-rational", "num-traits", "parity-scale-codec", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "sc-client-api", "sc-consensus", "sc-consensus-epochs", @@ -10682,18 +10924,19 @@ dependencies = [ "sp-consensus-babe", "sp-consensus-slots", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249)", "sp-inherents", "sp-keystore", "sp-runtime", + "sp-timestamp", "substrate-prometheus-endpoint", - "thiserror 1.0.64", + "thiserror 1.0.69", ] [[package]] name = "sc-consensus-epochs" -version = "0.50.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "0.54.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "fork-tree", "parity-scale-codec", @@ -10705,8 +10948,8 @@ dependencies = [ [[package]] name = "sc-consensus-slots" -version = "0.50.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "0.54.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "async-trait", "futures", @@ -10734,7 +10977,7 @@ dependencies = [ "bytesize", "futures", "parity-scale-codec", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "rand 0.8.5", "rand_chacha 0.3.1", "rayon", @@ -10763,7 +11006,7 @@ dependencies = [ "subspace-kzg", "subspace-proof-of-space", "subspace-verification", - "thiserror 2.0.12", + "thiserror 2.0.18", "tokio", "tracing", ] @@ -10776,7 +11019,7 @@ dependencies = [ "futures", "futures-timer", "jsonrpsee", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "sc-client-api", "sc-consensus-subspace", "sc-rpc", @@ -10798,7 +11041,7 @@ dependencies = [ "subspace-kzg", "subspace-networking", "subspace-rpc-primitives", - "thiserror 2.0.12", + "thiserror 2.0.18", "tracing", ] @@ -10828,18 +11071,18 @@ dependencies = [ "sp-messenger-host-functions", "sp-runtime", "sp-subspace-mmr", - "thiserror 2.0.12", + "thiserror 2.0.18", "tokio", "tracing", ] [[package]] name = "sc-executor" -version = "0.43.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "0.47.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "parity-scale-codec", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "sc-executor-common", "sc-executor-polkavm", "sc-executor-wasmtime", @@ -10858,21 +11101,21 @@ dependencies = [ [[package]] name = "sc-executor-common" -version = "0.39.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "0.43.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "polkavm", "sc-allocator", "sp-maybe-compressed-blob", "sp-wasm-interface", - "thiserror 1.0.64", + "thiserror 1.0.69", "wasm-instrument", ] [[package]] name = "sc-executor-polkavm" -version = "0.36.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "0.40.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "log", "polkavm", @@ -10882,13 +11125,13 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" -version = "0.39.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "0.43.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "anyhow", "log", - "parking_lot 0.12.3", - "rustix 0.36.17", + "parking_lot 0.12.5", + "rustix 1.1.4", "sc-allocator", "sc-executor-common", "sp-runtime-interface", @@ -10898,8 +11141,8 @@ dependencies = [ [[package]] name = "sc-informant" -version = "0.50.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "0.54.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "console", "futures", @@ -10914,22 +11157,22 @@ dependencies = [ [[package]] name = "sc-keystore" -version = "36.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "39.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "array-bytes", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "serde_json", "sp-application-crypto", "sp-core", "sp-keystore", - "thiserror 1.0.64", + "thiserror 1.0.69", ] [[package]] name = "sc-mixnet" -version = "0.21.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "0.25.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "array-bytes", "arrayvec 0.7.6", @@ -10940,7 +11183,7 @@ dependencies = [ "log", "mixnet", "parity-scale-codec", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "sc-client-api", "sc-network", "sc-network-types", @@ -10951,20 +11194,19 @@ dependencies = [ "sp-keystore", "sp-mixnet", "sp-runtime", - "thiserror 1.0.64", + "thiserror 1.0.69", ] [[package]] name = "sc-network" -version = "0.51.2" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "0.55.2" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "array-bytes", "async-channel 1.9.0", "async-trait", "asynchronous-codec 0.6.2", "bytes", - "cid 0.9.0", "either", "fnv", "futures", @@ -10976,11 +11218,11 @@ dependencies = [ "log", "mockall", "parity-scale-codec", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "partial_sort", "pin-project", "prost 0.12.6", - "prost-build", + "prost-build 0.13.5", "rand 0.8.5", "sc-client-api", "sc-network-common", @@ -10995,7 +11237,7 @@ dependencies = [ "sp-core", "sp-runtime", "substrate-prometheus-endpoint", - "thiserror 1.0.64", + "thiserror 1.0.69", "tokio", "tokio-stream", "unsigned-varint 0.7.2", @@ -11006,8 +11248,8 @@ dependencies = [ [[package]] name = "sc-network-common" -version = "0.49.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "0.52.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "bitflags 1.3.2", "parity-scale-codec", @@ -11016,10 +11258,10 @@ dependencies = [ [[package]] name = "sc-network-gossip" -version = "0.51.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "0.55.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ - "ahash", + "ahash 0.8.12", "futures", "futures-timer", "log", @@ -11035,8 +11277,8 @@ dependencies = [ [[package]] name = "sc-network-light" -version = "0.50.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "0.54.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -11044,20 +11286,20 @@ dependencies = [ "log", "parity-scale-codec", "prost 0.12.6", - "prost-build", + "prost-build 0.13.5", "sc-client-api", "sc-network", "sc-network-types", "sp-blockchain", "sp-core", "sp-runtime", - "thiserror 1.0.64", + "thiserror 1.0.69", ] [[package]] name = "sc-network-sync" -version = "0.50.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "0.54.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -11068,7 +11310,7 @@ dependencies = [ "mockall", "parity-scale-codec", "prost 0.12.6", - "prost-build", + "prost-build 0.13.5", "sc-client-api", "sc-consensus", "sc-network", @@ -11084,15 +11326,15 @@ dependencies = [ "sp-core", "sp-runtime", "substrate-prometheus-endpoint", - "thiserror 1.0.64", + "thiserror 1.0.69", "tokio", "tokio-stream", ] [[package]] name = "sc-network-transactions" -version = "0.50.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "0.54.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "array-bytes", "futures", @@ -11110,8 +11352,8 @@ dependencies = [ [[package]] name = "sc-network-types" -version = "0.17.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "0.20.2" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "bs58", "bytes", @@ -11121,18 +11363,18 @@ dependencies = [ "litep2p", "log", "multiaddr 0.18.2", - "multihash 0.19.1", + "multihash 0.19.3", "rand 0.8.5", "serde", "serde_with", - "thiserror 1.0.64", + "thiserror 1.0.69", "zeroize", ] [[package]] name = "sc-offchain" -version = "46.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "50.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "bytes", "fnv", @@ -11145,9 +11387,9 @@ dependencies = [ "num_cpus", "once_cell", "parity-scale-codec", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "rand 0.8.5", - "rustls 0.23.35", + "rustls 0.23.37", "sc-client-api", "sc-network", "sc-network-types", @@ -11171,7 +11413,7 @@ dependencies = [ "derive_more 1.0.0", "futures", "parity-scale-codec", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "rayon", "sc-client-api", "sc-consensus-slots", @@ -11195,7 +11437,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.20.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -11203,14 +11445,14 @@ dependencies = [ [[package]] name = "sc-rpc" -version = "46.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "50.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "futures", "jsonrpsee", "log", "parity-scale-codec", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "sc-block-builder", "sc-chain-spec", "sc-client-api", @@ -11235,8 +11477,8 @@ dependencies = [ [[package]] name = "sc-rpc-api" -version = "0.50.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "0.54.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -11250,19 +11492,19 @@ dependencies = [ "sp-rpc", "sp-runtime", "sp-version", - "thiserror 1.0.64", + "thiserror 1.0.69", ] [[package]] name = "sc-rpc-server" -version = "23.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "27.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "dyn-clone", "forwarded-header-value", "futures", "governor", - "http 1.1.0", + "http 1.4.0", "http-body-util", "hyper", "ip_network", @@ -11273,14 +11515,14 @@ dependencies = [ "serde_json", "substrate-prometheus-endpoint", "tokio", - "tower", - "tower-http", + "tower 0.4.13", + "tower-http 0.5.2", ] [[package]] name = "sc-rpc-spec-v2" -version = "0.51.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "0.55.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "array-bytes", "futures", @@ -11290,7 +11532,7 @@ dependencies = [ "jsonrpsee", "log", "parity-scale-codec", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "rand 0.8.5", "sc-chain-spec", "sc-client-api", @@ -11305,30 +11547,30 @@ dependencies = [ "sp-runtime", "sp-version", "substrate-prometheus-endpoint", - "thiserror 1.0.64", + "thiserror 1.0.69", "tokio", "tokio-stream", ] [[package]] name = "sc-runtime-utilities" -version = "0.3.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "0.7.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "parity-scale-codec", "sc-executor", "sc-executor-common", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249)", "sp-state-machine", "sp-wasm-interface", - "thiserror 1.0.64", + "thiserror 1.0.69", ] [[package]] name = "sc-service" -version = "0.52.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "0.56.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "async-trait", "directories", @@ -11338,7 +11580,7 @@ dependencies = [ "jsonrpsee", "log", "parity-scale-codec", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "pin-project", "rand 0.8.5", "sc-chain-spec", @@ -11383,7 +11625,7 @@ dependencies = [ "static_init", "substrate-prometheus-endpoint", "tempfile", - "thiserror 1.0.64", + "thiserror 1.0.69", "tokio", "tracing", "tracing-futures", @@ -11391,25 +11633,25 @@ dependencies = [ [[package]] name = "sc-state-db" -version = "0.39.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "0.41.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "log", "parity-scale-codec", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "sp-core", ] [[package]] name = "sc-storage-monitor" -version = "0.25.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "0.27.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "clap", "fs4 0.7.0", "log", "sp-core", - "thiserror 1.0.64", + "thiserror 1.0.69", "tokio", ] @@ -11422,7 +11664,7 @@ dependencies = [ "derive_more 1.0.0", "futures", "parity-scale-codec", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "sc-client-api", "sc-network", "sc-network-common", @@ -11435,7 +11677,7 @@ dependencies = [ "subspace-core-primitives", "subspace-runtime-primitives", "substrate-prometheus-endpoint", - "thiserror 2.0.12", + "thiserror 2.0.18", "tracing", ] @@ -11460,10 +11702,10 @@ dependencies = [ [[package]] name = "sc-sysinfo" -version = "43.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "46.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ - "derive_more 0.99.18", + "derive_more 0.99.20", "futures", "libc", "log", @@ -11474,42 +11716,41 @@ dependencies = [ "serde", "serde_json", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249)", "sp-io", ] [[package]] name = "sc-telemetry" -version = "29.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "30.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "chrono", "futures", "libp2p", "log", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "pin-project", "rand 0.8.5", "sc-utils", "serde", "serde_json", - "thiserror 1.0.64", + "thiserror 1.0.69", "wasm-timer", ] [[package]] name = "sc-tracing" -version = "40.0.2" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "44.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "chrono", "console", - "frame-metadata 23.0.1", "is-terminal", "libc", "log", "parity-scale-codec", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "rustc-hash 1.1.0", "sc-client-api", "sc-tracing-proc-macro", @@ -11520,8 +11761,7 @@ dependencies = [ "sp-rpc", "sp-runtime", "sp-tracing", - "sp-trie", - "thiserror 1.0.64", + "thiserror 1.0.69", "tracing", "tracing-log", "tracing-subscriber", @@ -11530,27 +11770,27 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "11.1.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ - "proc-macro-crate 3.2.0", + "proc-macro-crate 3.5.0", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] name = "sc-transaction-pool" -version = "40.1.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "44.1.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "async-trait", "futures", "futures-timer", - "indexmap 2.9.0", + "indexmap", "itertools 0.11.0", "linked-hash-map", "parity-scale-codec", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "sc-client-api", "sc-transaction-pool-api", "sc-utils", @@ -11558,12 +11798,13 @@ dependencies = [ "sp-api", "sp-blockchain", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249)", "sp-runtime", "sp-tracing", "sp-transaction-pool", + "strum 0.26.3", "substrate-prometheus-endpoint", - "thiserror 1.0.64", + "thiserror 1.0.69", "tokio", "tokio-stream", "tracing", @@ -11571,31 +11812,32 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" -version = "40.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "43.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "async-trait", "futures", - "indexmap 2.9.0", + "indexmap", "log", "parity-scale-codec", "serde", "sp-blockchain", "sp-core", "sp-runtime", - "thiserror 1.0.64", + "strum 0.26.3", + "thiserror 1.0.69", ] [[package]] name = "sc-utils" -version = "19.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "20.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "async-channel 1.9.0", "futures", "futures-timer", "log", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "prometheus", "sp-arithmetic", ] @@ -11624,7 +11866,7 @@ dependencies = [ "scale-decode-derive", "scale-type-resolver", "smallvec", - "thiserror 2.0.12", + "thiserror 2.0.18", ] [[package]] @@ -11633,10 +11875,10 @@ version = "0.16.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "65cb245f7fdb489e7ba43a616cbd34427fe3ba6fe0edc1d0d250085e6c84f3ec" dependencies = [ - "darling 0.20.10", + "darling 0.20.11", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] @@ -11651,7 +11893,7 @@ dependencies = [ "scale-encode-derive", "scale-type-resolver", "smallvec", - "thiserror 2.0.12", + "thiserror 2.0.18", ] [[package]] @@ -11660,11 +11902,11 @@ version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "17020f2d59baabf2ddcdc20a4e567f8210baf089b8a8d4785f5fd5e716f92038" dependencies = [ - "darling 0.20.10", - "proc-macro-crate 3.2.0", + "darling 0.20.11", + "proc-macro-crate 3.5.0", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] @@ -11687,10 +11929,10 @@ version = "2.11.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c6630024bf739e2179b91fb424b28898baf819414262c5d376677dbff1fe7ebf" dependencies = [ - "proc-macro-crate 3.2.0", + "proc-macro-crate 3.5.0", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] @@ -11712,8 +11954,8 @@ dependencies = [ "proc-macro2", "quote", "scale-info", - "syn 2.0.111", - "thiserror 2.0.12", + "syn 2.0.117", + "thiserror 2.0.18", ] [[package]] @@ -11731,17 +11973,17 @@ dependencies = [ "scale-encode", "scale-type-resolver", "serde", - "thiserror 2.0.12", + "thiserror 2.0.18", "yap", ] [[package]] name = "schannel" -version = "0.1.24" +version = "0.1.29" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e9aaafd5a2b6e3d657ff009d82fbd630b6bd54dd4eb06f21693925cdf80f9b8b" +checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939" dependencies = [ - "windows-sys 0.59.0", + "windows-sys 0.61.2", ] [[package]] @@ -11750,16 +11992,16 @@ version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "356285bbf17bea63d9e52e96bd18f039672ac92b55b8cb997d6162a2a37d1649" dependencies = [ - "ahash", + "ahash 0.8.12", "cfg-if", "hashbrown 0.13.2", ] [[package]] name = "schnorrkel" -version = "0.11.4" +version = "0.11.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8de18f6d8ba0aad7045f5feae07ec29899c1112584a38509a84ad7b04451eaa0" +checksum = "6e9fcb6c2e176e86ec703e22560d99d65a5ee9056ae45a08e13e84ebf796296f" dependencies = [ "aead", "arrayref", @@ -11769,17 +12011,11 @@ dependencies = [ "merlin", "rand_core 0.6.4", "serde_bytes", - "sha2 0.10.8", + "sha2 0.10.9", "subtle 2.6.1", "zeroize", ] -[[package]] -name = "scoped-tls" -version = "1.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" - [[package]] name = "scopeguard" version = "1.2.0" @@ -11788,9 +12024,9 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" [[package]] name = "scratch" -version = "1.0.7" +version = "1.0.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a3cf7c11c38cb994f3d40e8a8cde3bbd1f72a435e4c49e85d6553d8312306152" +checksum = "d68f2ec51b097e4c1a75b681a8bec621909b5e91f15bb7b840c4f2f7b01148b2" [[package]] name = "scrypt" @@ -11801,7 +12037,7 @@ dependencies = [ "password-hash", "pbkdf2", "salsa20", - "sha2 0.10.8", + "sha2 0.10.9", ] [[package]] @@ -11810,7 +12046,7 @@ version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414" dependencies = [ - "ring 0.17.13", + "ring 0.17.14", "untrusted 0.9.0", ] @@ -11835,7 +12071,7 @@ version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "25996b82292a7a57ed3508f052cfff8640d38d32018784acd714758b43da9c8f" dependencies = [ - "secp256k1-sys 0.8.1", + "secp256k1-sys 0.8.2", ] [[package]] @@ -11853,16 +12089,16 @@ version = "0.30.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b50c5943d326858130af85e049f2661ba3c78b26589b8ab98e65e80ae44a1252" dependencies = [ - "bitcoin_hashes 0.14.0", + "bitcoin_hashes", "rand 0.8.5", "secp256k1-sys 0.10.1", ] [[package]] name = "secp256k1-sys" -version = "0.8.1" +version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "70a129b9e9efbfb223753b9163c4ab3b13cff7fd9c7f010fbac25ab4099fa07e" +checksum = "4473013577ec77b4ee3668179ef1186df3146e2cf2d927bd200974c6fe60fd99" dependencies = [ "cc", ] @@ -11909,7 +12145,7 @@ version = "2.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02" dependencies = [ - "bitflags 2.9.1", + "bitflags 2.11.0", "core-foundation 0.9.4", "core-foundation-sys", "libc", @@ -11918,12 +12154,12 @@ dependencies = [ [[package]] name = "security-framework" -version = "3.1.0" +version = "3.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "81d3f8c9bfcc3cbb6b0179eb57042d75b1582bdc65c3cb95f3fa999509c03cbc" +checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d" dependencies = [ - "bitflags 2.9.1", - "core-foundation 0.10.0", + "bitflags 2.11.0", + "core-foundation 0.10.1", "core-foundation-sys", "libc", "security-framework-sys", @@ -11931,9 +12167,9 @@ dependencies = [ [[package]] name = "security-framework-sys" -version = "2.13.0" +version = "2.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1863fd3768cd83c56a7f60faa4dc0d403f1b6df0a38c3c25f44b7894e45370d5" +checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3" dependencies = [ "core-foundation-sys", "libc", @@ -11950,11 +12186,12 @@ dependencies = [ [[package]] name = "semver" -version = "1.0.23" +version = "1.0.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b" +checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2" dependencies = [ "serde", + "serde_core", ] [[package]] @@ -11965,9 +12202,9 @@ checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" [[package]] name = "seq-macro" -version = "0.3.5" +version = "0.3.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4" +checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc" [[package]] name = "serde" @@ -11990,11 +12227,12 @@ dependencies = [ [[package]] name = "serde_bytes" -version = "0.11.15" +version = "0.11.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "387cc504cb06bb40a96c8e04e951fe01854cf6bc921053c954e4a606d9675c6a" +checksum = "a5d440709e79d88e51ac01c4b72fc6cb7314017bb7da9eeff678aa94c10e3ea8" dependencies = [ "serde", + "serde_core", ] [[package]] @@ -12014,19 +12252,20 @@ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] name = "serde_json" -version = "1.0.133" +version = "1.0.149" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c7fceb2473b9166b2294ef05efcb65a3db80803f0b03ef86a5fc88a2b85ee377" +checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86" dependencies = [ "itoa", "memchr", - "ryu", "serde", + "serde_core", + "zmij", ] [[package]] @@ -12040,20 +12279,20 @@ dependencies = [ [[package]] name = "serde_repr" -version = "0.1.19" +version = "0.1.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6c64451ba24fc7a6a2d60fc75dd9c83c90903b19028d4eff35e88fc1e86564e9" +checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] name = "serde_spanned" -version = "0.6.8" +version = "0.6.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "87607cb1398ed59d48732e575a4c28a7a8ebf2454b964fe3f224f2afc07909e1" +checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3" dependencies = [ "serde", ] @@ -12072,15 +12311,14 @@ dependencies = [ [[package]] name = "serde_with" -version = "3.14.1" +version = "3.18.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c522100790450cf78eeac1507263d0a350d4d5b30df0c8e1fe051a10c22b376e" +checksum = "dd5414fad8e6907dbdd5bc441a50ae8d6e26151a03b1de04d89a5576de61d01f" dependencies = [ - "base64 0.22.1", + "base64", "chrono", "hex", - "serde", - "serde_derive", + "serde_core", "serde_json", "serde_with_macros", "time", @@ -12088,14 +12326,14 @@ dependencies = [ [[package]] name = "serde_with_macros" -version = "3.14.1" +version = "3.18.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "327ada00f7d64abaac1e55a6911e90cf665aa051b9a561c7006c157f4633135e" +checksum = "d3db8978e608f1fe7357e211969fd9abdcae80bac1ba7a3369bb7eb6b404eb65" dependencies = [ - "darling 0.21.3", + "darling 0.23.0", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] @@ -12134,9 +12372,9 @@ dependencies = [ [[package]] name = "sha2" -version = "0.10.8" +version = "0.10.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8" +checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" dependencies = [ "cfg-if", "cpufeatures", @@ -12170,10 +12408,11 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" [[package]] name = "signal-hook-registry" -version = "1.4.2" +version = "1.4.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1" +checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b" dependencies = [ + "errno", "libc", ] @@ -12201,9 +12440,9 @@ dependencies = [ [[package]] name = "simba" -version = "0.8.1" +version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "061507c94fc6ab4ba1c9a0305018408e312e17c041eb63bef8aa726fa33aceae" +checksum = "c99284beb21666094ba2b75bbceda012e610f5479dfcc2d6e2426f53197ffd95" dependencies = [ "approx", "num-complex", @@ -12212,13 +12451,19 @@ dependencies = [ "wide", ] +[[package]] +name = "simd-adler32" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214" + [[package]] name = "simple-dns" -version = "0.9.3" +version = "0.11.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dee851d0e5e7af3721faea1843e8015e820a234f81fda3dea9247e15bac9a86a" +checksum = "df350943049174c4ae8ced56c604e28270258faec12a6a48637a7655287c9ce0" dependencies = [ - "bitflags 2.9.1", + "bitflags 2.11.0", ] [[package]] @@ -12235,18 +12480,15 @@ checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" [[package]] name = "siphasher" -version = "1.0.1" +version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d" +checksum = "b2aa850e253778c88a04c3d7323b043aeda9d3e30d5971937c1855769763678e" [[package]] name = "slab" -version = "0.4.9" +version = "0.4.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" -dependencies = [ - "autocfg", -] +checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5" [[package]] name = "slice-group-by" @@ -12256,9 +12498,12 @@ checksum = "826167069c09b99d56f31e9ae5c99049e932a98c9dc2dac47645b08dbbf76ba7" [[package]] name = "smallvec" -version = "1.15.0" +version = "1.15.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9" +checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" +dependencies = [ + "serde", +] [[package]] name = "smol" @@ -12266,7 +12511,7 @@ version = "2.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a33bd3e260892199c3ccfc487c88b2da2265080acb316cd920da72fdfd7c599f" dependencies = [ - "async-channel 2.3.1", + "async-channel 2.5.0", "async-executor", "async-fs", "async-io", @@ -12279,34 +12524,34 @@ dependencies = [ [[package]] name = "smoldot" -version = "0.18.0" +version = "0.19.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "966e72d77a3b2171bb7461d0cb91f43670c63558c62d7cf42809cae6c8b6b818" +checksum = "e16e5723359f0048bf64bfdfba64e5732a56847d42c4fd3fe56f18280c813413" dependencies = [ "arrayvec 0.7.6", "async-lock", "atomic-take", - "base64 0.22.1", + "base64", "bip39", "blake2-rfc", "bs58", "chacha20", "crossbeam-queue", - "derive_more 0.99.18", + "derive_more 2.1.1", "ed25519-zebra", "either", - "event-listener 5.3.1", + "event-listener 5.4.1", "fnv", "futures-lite", "futures-util", - "hashbrown 0.14.5", + "hashbrown 0.15.5", "hex", "hmac 0.12.1", - "itertools 0.13.0", + "itertools 0.14.0", "libm", "libsecp256k1", "merlin", - "nom", + "nom 8.0.0", "num-bigint", "num-rational", "num-traits", @@ -12319,13 +12564,13 @@ dependencies = [ "schnorrkel", "serde", "serde_json", - "sha2 0.10.8", + "sha2 0.10.9", "sha3", - "siphasher 1.0.1", + "siphasher 1.0.2", "slab", "smallvec", "soketto", - "twox-hash", + "twox-hash 2.1.2", "wasmi", "x25519-dalek", "zeroize", @@ -12333,34 +12578,34 @@ dependencies = [ [[package]] name = "smoldot-light" -version = "0.16.2" +version = "0.17.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2a33b06891f687909632ce6a4e3fd7677b24df930365af3d0bcb078310129f3f" +checksum = "f1bba9e591716567d704a8252feeb2f1261a286e1e2cbdd4e49e9197c34a14e2" dependencies = [ - "async-channel 2.3.1", + "async-channel 2.5.0", "async-lock", - "base64 0.22.1", + "base64", "blake2-rfc", "bs58", - "derive_more 0.99.18", + "derive_more 2.1.1", "either", - "event-listener 5.3.1", + "event-listener 5.4.1", "fnv", "futures-channel", "futures-lite", "futures-util", - "hashbrown 0.14.5", + "hashbrown 0.15.5", "hex", - "itertools 0.13.0", + "itertools 0.14.0", "log", - "lru", - "parking_lot 0.12.3", + "lru 0.12.5", + "parking_lot 0.12.5", "pin-project", "rand 0.8.5", "rand_chacha 0.3.1", "serde", "serde_json", - "siphasher 1.0.1", + "siphasher 1.0.2", "slab", "smol", "smoldot", @@ -12384,32 +12629,42 @@ dependencies = [ "chacha20poly1305", "curve25519-dalek", "rand_core 0.6.4", - "ring 0.17.13", + "ring 0.17.14", "rustc_version", - "sha2 0.10.8", + "sha2 0.10.9", "subtle 2.6.1", ] [[package]] name = "socket2" -version = "0.5.9" +version = "0.5.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4f5fd57c80058a56cf5c777ab8a126398ece8e442983605d280a44ce79d0edef" +checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678" dependencies = [ "libc", "windows-sys 0.52.0", ] +[[package]] +name = "socket2" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e" +dependencies = [ + "libc", + "windows-sys 0.61.2", +] + [[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", + "base64", "bytes", "futures", - "http 1.1.0", + "http 1.4.0", "httparse", "log", "rand 0.8.5", @@ -12418,8 +12673,8 @@ dependencies = [ [[package]] name = "sp-api" -version = "37.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "40.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "docify", "hash-db", @@ -12435,27 +12690,27 @@ dependencies = [ "sp-state-machine", "sp-trie", "sp-version", - "thiserror 1.0.64", + "thiserror 1.0.69", ] [[package]] name = "sp-api-proc-macro" -version = "23.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "26.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "Inflector", "blake2 0.10.6", "expander", - "proc-macro-crate 3.2.0", + "proc-macro-crate 3.5.0", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] name = "sp-application-crypto" -version = "41.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "44.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "parity-scale-codec", "scale-info", @@ -12466,8 +12721,8 @@ dependencies = [ [[package]] name = "sp-arithmetic" -version = "27.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "28.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "docify", "integer-sqrt", @@ -12480,8 +12735,8 @@ dependencies = [ [[package]] name = "sp-authority-discovery" -version = "37.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "40.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "parity-scale-codec", "scale-info", @@ -12505,8 +12760,8 @@ dependencies = [ [[package]] name = "sp-block-builder" -version = "37.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "40.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "sp-api", "sp-inherents", @@ -12526,12 +12781,12 @@ dependencies = [ [[package]] name = "sp-blockchain" -version = "40.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "43.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "futures", "parity-scale-codec", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "schnellru", "sp-api", "sp-consensus", @@ -12539,14 +12794,14 @@ dependencies = [ "sp-database", "sp-runtime", "sp-state-machine", - "thiserror 1.0.64", + "thiserror 1.0.69", "tracing", ] [[package]] name = "sp-consensus" -version = "0.43.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "0.46.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "async-trait", "futures", @@ -12554,13 +12809,13 @@ dependencies = [ "sp-inherents", "sp-runtime", "sp-state-machine", - "thiserror 1.0.64", + "thiserror 1.0.69", ] [[package]] name = "sp-consensus-aura" -version = "0.43.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "0.46.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "async-trait", "parity-scale-codec", @@ -12575,8 +12830,8 @@ dependencies = [ [[package]] name = "sp-consensus-babe" -version = "0.43.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "0.46.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "async-trait", "parity-scale-codec", @@ -12593,8 +12848,8 @@ dependencies = [ [[package]] name = "sp-consensus-beefy" -version = "25.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "28.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "parity-scale-codec", "scale-info", @@ -12602,7 +12857,7 @@ dependencies = [ "sp-api", "sp-application-crypto", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249)", "sp-io", "sp-keystore", "sp-mmr-primitives", @@ -12613,8 +12868,8 @@ dependencies = [ [[package]] name = "sp-consensus-grandpa" -version = "24.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "27.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "finality-grandpa", "log", @@ -12630,8 +12885,8 @@ dependencies = [ [[package]] name = "sp-consensus-slots" -version = "0.43.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "0.46.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "parity-scale-codec", "scale-info", @@ -12664,16 +12919,17 @@ dependencies = [ "subspace-kzg", "subspace-proof-of-space", "subspace-verification", - "thiserror 2.0.12", + "thiserror 2.0.18", ] [[package]] name = "sp-core" -version = "37.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "39.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "ark-vrf", "array-bytes", + "bip39", "bitflags 1.3.2", "blake2 0.10.6", "bounded-collections", @@ -12689,9 +12945,8 @@ dependencies = [ "libsecp256k1", "log", "merlin", - "parity-bip39", "parity-scale-codec", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "paste", "primitive-types", "rand 0.8.5", @@ -12700,16 +12955,15 @@ dependencies = [ "secp256k1 0.28.2", "secrecy 0.8.0", "serde", - "sha2 0.10.8", - "sp-crypto-hashing 0.1.0 (git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e)", + "sha2 0.10.9", + "sp-crypto-hashing 0.1.0 (git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249)", "sp-debug-derive", "sp-externalities", - "sp-runtime-interface", "sp-std", "sp-storage", "ss58-registry", "substrate-bip39", - "thiserror 1.0.64", + "thiserror 1.0.69", "tracing", "w3f-bls", "zeroize", @@ -12724,51 +12978,51 @@ dependencies = [ "blake2b_simd", "byteorder", "digest 0.10.7", - "sha2 0.10.8", + "sha2 0.10.9", "sha3", - "twox-hash", + "twox-hash 1.6.3", ] [[package]] name = "sp-crypto-hashing" version = "0.1.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "blake2b_simd", "byteorder", "digest 0.10.7", - "sha2 0.10.8", + "sha2 0.10.9", "sha3", - "twox-hash", + "twox-hash 1.6.3", ] [[package]] name = "sp-crypto-hashing-proc-macro" version = "0.1.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "quote", - "sp-crypto-hashing 0.1.0 (git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e)", - "syn 2.0.111", + "sp-crypto-hashing 0.1.0 (git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249)", + "syn 2.0.117", ] [[package]] name = "sp-database" -version = "10.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "10.0.1" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "kvdb", - "parking_lot 0.12.3", + "parking_lot 0.12.5", ] [[package]] name = "sp-debug-derive" version = "14.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] @@ -12873,7 +13127,7 @@ dependencies = [ "subspace-test-runtime", "subspace-test-service", "tempfile", - "thiserror 2.0.12", + "thiserror 2.0.18", "tokio", "trie-db", ] @@ -12916,8 +13170,8 @@ dependencies = [ [[package]] name = "sp-externalities" -version = "0.30.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "0.31.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "environmental", "parity-scale-codec", @@ -12926,8 +13180,8 @@ dependencies = [ [[package]] name = "sp-genesis-builder" -version = "0.18.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "0.21.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "parity-scale-codec", "scale-info", @@ -12938,21 +13192,21 @@ dependencies = [ [[package]] name = "sp-inherents" -version = "37.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "40.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "async-trait", "impl-trait-for-tuples", "parity-scale-codec", "scale-info", "sp-runtime", - "thiserror 1.0.64", + "thiserror 1.0.69", ] [[package]] name = "sp-io" -version = "41.0.1" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "44.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "bytes", "docify", @@ -12964,7 +13218,7 @@ dependencies = [ "rustversion", "secp256k1 0.28.2", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249)", "sp-externalities", "sp-keystore", "sp-runtime-interface", @@ -12977,8 +13231,8 @@ dependencies = [ [[package]] name = "sp-keyring" -version = "42.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "45.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "sp-core", "sp-runtime", @@ -12987,21 +13241,21 @@ dependencies = [ [[package]] name = "sp-keystore" -version = "0.43.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "0.45.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "parity-scale-codec", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "sp-core", "sp-externalities", ] [[package]] name = "sp-maybe-compressed-blob" -version = "11.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "11.1.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ - "thiserror 1.0.64", + "thiserror 1.0.69", "zstd 0.12.4", ] @@ -13046,18 +13300,18 @@ dependencies = [ [[package]] name = "sp-metadata-ir" -version = "0.11.1" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "0.12.1" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ - "frame-metadata 23.0.1", + "frame-metadata", "parity-scale-codec", "scale-info", ] [[package]] name = "sp-mixnet" -version = "0.15.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "0.18.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "parity-scale-codec", "scale-info", @@ -13067,8 +13321,8 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" -version = "37.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "40.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "log", "parity-scale-codec", @@ -13079,13 +13333,13 @@ dependencies = [ "sp-core", "sp-debug-derive", "sp-runtime", - "thiserror 1.0.64", + "thiserror 1.0.69", ] [[package]] name = "sp-npos-elections" -version = "37.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "40.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "parity-scale-codec", "scale-info", @@ -13105,8 +13359,8 @@ dependencies = [ [[package]] name = "sp-offchain" -version = "37.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "40.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "sp-api", "sp-core", @@ -13116,7 +13370,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "13.0.2" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "backtrace", "regex", @@ -13124,8 +13378,8 @@ dependencies = [ [[package]] name = "sp-rpc" -version = "35.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "37.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "rustc-hash 1.1.0", "serde", @@ -13134,10 +13388,11 @@ dependencies = [ [[package]] name = "sp-runtime" -version = "42.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "45.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "binary-merkle-tree", + "bytes", "docify", "either", "hash256-std-hasher", @@ -13157,20 +13412,20 @@ dependencies = [ "sp-std", "sp-trie", "sp-weights", + "strum 0.26.3", "tracing", "tuplex", ] [[package]] name = "sp-runtime-interface" -version = "30.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "33.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "bytes", "impl-trait-for-tuples", "parity-scale-codec", "polkavm-derive", - "primitive-types", "sp-externalities", "sp-runtime-interface-proc-macro", "sp-std", @@ -13182,21 +13437,21 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" -version = "19.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "20.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "Inflector", "expander", - "proc-macro-crate 3.2.0", + "proc-macro-crate 3.5.0", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] name = "sp-session" -version = "39.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "42.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "parity-scale-codec", "scale-info", @@ -13209,8 +13464,8 @@ dependencies = [ [[package]] name = "sp-staking" -version = "39.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "42.2.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -13222,28 +13477,28 @@ dependencies = [ [[package]] name = "sp-state-machine" -version = "0.46.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "0.49.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "hash-db", "log", "parity-scale-codec", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "rand 0.8.5", "smallvec", "sp-core", "sp-externalities", "sp-panic-handler", "sp-trie", - "thiserror 1.0.64", + "thiserror 1.0.69", "tracing", "trie-db", ] [[package]] name = "sp-statement-store" -version = "21.2.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "24.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "aes-gcm", "curve25519-dalek", @@ -13252,27 +13507,27 @@ dependencies = [ "parity-scale-codec", "rand 0.8.5", "scale-info", - "sha2 0.10.8", + "sha2 0.10.9", "sp-api", "sp-application-crypto", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249)", "sp-externalities", "sp-runtime", "sp-runtime-interface", - "thiserror 1.0.64", + "thiserror 1.0.69", "x25519-dalek", ] [[package]] name = "sp-std" version = "14.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" [[package]] name = "sp-storage" version = "22.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "impl-serde", "parity-scale-codec", @@ -13301,22 +13556,23 @@ dependencies = [ [[package]] name = "sp-timestamp" -version = "37.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "40.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "async-trait", "parity-scale-codec", "sp-inherents", "sp-runtime", - "thiserror 1.0.64", + "thiserror 1.0.69", ] [[package]] name = "sp-tracing" -version = "17.1.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "19.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "parity-scale-codec", + "regex", "tracing", "tracing-core", "tracing-subscriber", @@ -13324,8 +13580,8 @@ dependencies = [ [[package]] name = "sp-transaction-pool" -version = "37.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "40.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "sp-api", "sp-runtime", @@ -13333,12 +13589,13 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" -version = "37.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "40.1.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "async-trait", "parity-scale-codec", "scale-info", + "sp-api", "sp-core", "sp-inherents", "sp-runtime", @@ -13347,24 +13604,24 @@ dependencies = [ [[package]] name = "sp-trie" -version = "40.0.1" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "42.0.1" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ - "ahash", - "foldhash", + "ahash 0.8.12", + "foldhash 0.1.5", "hash-db", "hashbrown 0.15.5", "memory-db", "nohash-hasher", "parity-scale-codec", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "rand 0.8.5", "scale-info", "schnellru", "sp-core", "sp-externalities", "substrate-prometheus-endpoint", - "thiserror 1.0.64", + "thiserror 1.0.69", "tracing", "trie-db", "trie-root", @@ -13372,8 +13629,8 @@ dependencies = [ [[package]] name = "sp-version" -version = "40.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "43.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "impl-serde", "parity-scale-codec", @@ -13384,25 +13641,25 @@ dependencies = [ "sp-runtime", "sp-std", "sp-version-proc-macro", - "thiserror 1.0.64", + "thiserror 1.0.69", ] [[package]] name = "sp-version-proc-macro" version = "15.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "parity-scale-codec", "proc-macro-warning", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] name = "sp-wasm-interface" -version = "22.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "24.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "anyhow", "impl-trait-for-tuples", @@ -13413,8 +13670,8 @@ dependencies = [ [[package]] name = "sp-weights" -version = "32.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "33.2.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "bounded-collections", "parity-scale-codec", @@ -13485,14 +13742,14 @@ dependencies = [ [[package]] name = "stable_deref_trait" -version = "1.2.0" +version = "1.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" +checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596" [[package]] name = "staging-xcm" -version = "17.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "21.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "array-bytes", "bounded-collections", @@ -13501,19 +13758,19 @@ dependencies = [ "frame-support", "hex-literal", "impl-trait-for-tuples", - "log", "parity-scale-codec", "scale-info", "serde", "sp-runtime", "sp-weights", + "tracing", "xcm-procedural", ] [[package]] name = "staging-xcm-builder" -version = "21.1.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "25.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "environmental", "frame-support", @@ -13536,8 +13793,8 @@ dependencies = [ [[package]] name = "staging-xcm-executor" -version = "20.0.2" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "24.0.1" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "environmental", "frame-benchmarking", @@ -13562,42 +13819,32 @@ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" [[package]] name = "static_init" -version = "1.0.3" +version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8a2a1c578e98c1c16fc3b8ec1328f7659a500737d7a0c6d625e73e830ff9c1f6" +checksum = "8bae1df58c5fea7502e8e352ec26b5579f6178e1fdb311e088580c980dee25ed" dependencies = [ "bitflags 1.3.2", - "cfg_aliases", + "cfg_aliases 0.2.1", "libc", - "parking_lot 0.11.2", - "parking_lot_core 0.8.6", + "parking_lot 0.12.5", + "parking_lot_core 0.9.12", "static_init_macro", "winapi", ] [[package]] name = "static_init_macro" -version = "1.0.2" +version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "70a2595fc3aa78f2d0e45dd425b22282dd863273761cc77780914b2cf3003acf" +checksum = "1389c88ddd739ec6d3f8f83343764a0e944cd23cfbf126a9796a714b0b6edd6f" dependencies = [ - "cfg_aliases", + "cfg_aliases 0.1.1", "memchr", "proc-macro2", "quote", "syn 1.0.109", ] -[[package]] -name = "string-interner" -version = "0.17.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1c6a0d765f5807e98a091107bae0a56ea3799f66a5de47b2c84c94a39c09974e" -dependencies = [ - "cfg-if", - "hashbrown 0.14.5", -] - [[package]] name = "strsim" version = "0.11.1" @@ -13619,6 +13866,15 @@ dependencies = [ "strum_macros 0.26.4", ] +[[package]] +name = "strum" +version = "0.27.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf" +dependencies = [ + "strum_macros 0.27.2", +] + [[package]] name = "strum_macros" version = "0.24.3" @@ -13642,7 +13898,19 @@ dependencies = [ "proc-macro2", "quote", "rustversion", - "syn 2.0.111", + "syn 2.0.117", +] + +[[package]] +name = "strum_macros" +version = "0.27.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7" +dependencies = [ + "heck 0.5.0", + "proc-macro2", + "quote", + "syn 2.0.117", ] [[package]] @@ -13658,7 +13926,7 @@ dependencies = [ "subspace-erasure-coding", "subspace-kzg", "subspace-verification", - "thiserror 2.0.12", + "thiserror 2.0.18", ] [[package]] @@ -13712,7 +13980,7 @@ dependencies = [ "subspace-core-primitives", "subspace-erasure-coding", "subspace-process", - "thiserror 2.0.12", + "thiserror 2.0.18", "tokio", "tracing", ] @@ -13776,7 +14044,7 @@ dependencies = [ "clap", "criterion", "derive_more 1.0.0", - "event-listener 5.3.1", + "event-listener 5.4.1", "event-listener-primitives", "fs4 0.9.1", "futures", @@ -13787,7 +14055,7 @@ dependencies = [ "num_cpus", "ouroboros", "parity-scale-codec", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "pin-project", "prometheus-client", "rand 0.8.5", @@ -13811,7 +14079,7 @@ dependencies = [ "subspace-verification", "substrate-bip39", "tempfile", - "thiserror 2.0.12", + "thiserror 2.0.18", "thread-priority", "tokio", "tokio-stream", @@ -13834,7 +14102,7 @@ dependencies = [ "hex", "libc", "parity-scale-codec", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "rand 0.8.5", "rayon", "schnorrkel", @@ -13847,7 +14115,7 @@ dependencies = [ "subspace-kzg", "subspace-proof-of-space", "subspace-verification", - "thiserror 2.0.12", + "thiserror 2.0.18", "tokio", "tracing", "winapi", @@ -13905,7 +14173,7 @@ dependencies = [ "serde", "subspace-core-primitives", "subspace-data-retrieval", - "thiserror 2.0.12", + "thiserror 2.0.18", "tracing", ] @@ -13916,7 +14184,7 @@ dependencies = [ "criterion", "derive_more 1.0.0", "kzg", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "rand 0.8.5", "rand_core 0.6.4", "rust-kzg-blst", @@ -13988,7 +14256,7 @@ dependencies = [ "subspace-runtime-primitives", "subspace-service", "substrate-build-script-utils", - "thiserror 2.0.12", + "thiserror 2.0.18", "tokio", "tracing", ] @@ -14020,11 +14288,11 @@ dependencies = [ "hex", "libp2p", "libp2p-swarm-test", - "memmap2 0.9.5", - "multihash 0.19.1", + "memmap2 0.9.10", + "multihash 0.19.3", "nohash-hasher", "parity-scale-codec", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "pin-project", "prometheus-client", "rand 0.8.5", @@ -14032,7 +14300,7 @@ dependencies = [ "subspace-core-primitives", "subspace-metrics", "subspace-process", - "thiserror 2.0.12", + "thiserror 2.0.18", "tokio", "tokio-stream", "tracing", @@ -14104,7 +14372,7 @@ dependencies = [ "substrate-build-script-utils", "substrate-prometheus-endpoint", "tempfile", - "thiserror 2.0.12", + "thiserror 2.0.18", "tokio", "tokio-stream", "tracing", @@ -14134,7 +14402,7 @@ dependencies = [ "hex", "rayon", "seq-macro", - "sha2 0.10.8", + "sha2 0.10.9", "subspace-core-primitives", ] @@ -14157,14 +14425,14 @@ dependencies = [ name = "subspace-proof-of-time" version = "0.1.0" dependencies = [ - "aes 0.9.0-rc.0", + "aes 0.9.0-rc.4", "core_affinity", "cpufeatures", "criterion", "rand_chacha 0.3.1", "rand_core 0.6.4", "subspace-core-primitives", - "thiserror 2.0.12", + "thiserror 2.0.18", ] [[package]] @@ -14281,7 +14549,7 @@ dependencies = [ "pallet-transaction-payment-rpc", "pallet-transaction-payment-rpc-runtime-api", "parity-scale-codec", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "prometheus-client", "rayon", "sc-basic-authorship", @@ -14345,7 +14613,7 @@ dependencies = [ "subspace-verification", "substrate-frame-rpc-system", "substrate-prometheus-endpoint", - "thiserror 2.0.12", + "thiserror 2.0.18", "tokio", "tracing", ] @@ -14478,7 +14746,7 @@ dependencies = [ "pallet-subspace", "pallet-transaction-payment", "parity-scale-codec", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "rand 0.8.5", "sc-block-builder", "sc-client-api", @@ -14530,7 +14798,7 @@ dependencies = [ "subspace-core-primitives", "subspace-kzg", "subspace-proof-of-space", - "thiserror 2.0.12", + "thiserror 2.0.18", ] [[package]] @@ -14542,19 +14810,19 @@ dependencies = [ "hmac 0.12.1", "pbkdf2", "schnorrkel", - "sha2 0.10.8", + "sha2 0.10.9", "zeroize", ] [[package]] name = "substrate-build-script-utils" version = "11.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" [[package]] name = "substrate-frame-rpc-system" -version = "45.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "49.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "docify", "frame-system-rpc-runtime-api", @@ -14573,22 +14841,22 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" -version = "0.17.6" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "0.17.7" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "http-body-util", "hyper", "hyper-util", "log", "prometheus", - "thiserror 1.0.64", + "thiserror 1.0.69", "tokio", ] [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "array-bytes", "async-trait", @@ -14612,8 +14880,8 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" -version = "27.0.1" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "31.1.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "build-helper", "cargo_metadata", @@ -14626,7 +14894,7 @@ dependencies = [ "sp-maybe-compressed-blob", "strum 0.26.3", "tempfile", - "toml 0.8.19", + "toml 0.8.23", "walkdir", "wasm-opt", ] @@ -14645,14 +14913,14 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" [[package]] name = "subxt" -version = "0.41.0" +version = "0.43.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "03459d84546def5e1d0d22b162754609f18e031522b0319b53306f5829de9c09" +checksum = "f8c6dc0f90e23c521465b8f7e026af04a48cc6f00c51d88a8d313d33096149de" dependencies = [ "async-trait", "derive-where", "either", - "frame-metadata 20.0.0", + "frame-metadata", "futures", "hex", "parity-scale-codec", @@ -14670,7 +14938,7 @@ dependencies = [ "subxt-macro", "subxt-metadata", "subxt-rpcs", - "thiserror 2.0.12", + "thiserror 2.0.18", "tokio", "tokio-util", "tracing", @@ -14680,9 +14948,9 @@ dependencies = [ [[package]] name = "subxt-codegen" -version = "0.41.0" +version = "0.43.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "324c52c09919fec8c22a4b572a466878322e99fe14a9e3d50d6c3700a226ec25" +checksum = "1728caecd9700391e78cc30dc298221d6f5ca0ea28258a452aa76b0b7c229842" dependencies = [ "heck 0.5.0", "parity-scale-codec", @@ -14691,21 +14959,21 @@ dependencies = [ "scale-info", "scale-typegen", "subxt-metadata", - "syn 2.0.111", - "thiserror 2.0.12", + "syn 2.0.117", + "thiserror 2.0.18", ] [[package]] name = "subxt-core" -version = "0.41.0" +version = "0.43.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "66ef00be9d64885ec94e478a58e4e39d222024b20013ae7df4fc6ece545391aa" +checksum = "25338dd11ae34293b8d0c5807064f2e00194ba1bd84cccfa694030c8d185b941" dependencies = [ "base58", "blake2 0.10.6", "derive-where", "frame-decode", - "frame-metadata 20.0.0", + "frame-metadata", "hashbrown 0.14.5", "hex", "impl-serde", @@ -14721,22 +14989,22 @@ dependencies = [ "serde_json", "sp-crypto-hashing 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "subxt-metadata", - "thiserror 2.0.12", + "thiserror 2.0.18", "tracing", ] [[package]] name = "subxt-lightclient" -version = "0.41.0" +version = "0.43.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ce07c2515b2e63b85ec3043fe4461b287af0615d4832c2fe6e81ba780b906bc0" +checksum = "9097ef356e534ce0b6a50b95233512afc394347b971a4f929c4830adc52bbc6f" dependencies = [ "futures", "futures-util", "serde", "serde_json", "smoldot-light", - "thiserror 2.0.12", + "thiserror 2.0.18", "tokio", "tokio-stream", "tracing", @@ -14744,43 +15012,44 @@ dependencies = [ [[package]] name = "subxt-macro" -version = "0.41.0" +version = "0.43.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7c2c8da275a620dd676381d72395dfea91f0a6cd849665b4f1d0919371850701" +checksum = "c269228a2e5de4c0c61ed872b701967ee761df0f167d5b91ecec1185bca65793" dependencies = [ - "darling 0.20.10", + "darling 0.20.11", "parity-scale-codec", "proc-macro-error2", "quote", "scale-typegen", "subxt-codegen", + "subxt-metadata", "subxt-utils-fetchmetadata", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] name = "subxt-metadata" -version = "0.41.0" +version = "0.43.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fff4591673600c4388e21305788282414d26c791b4dee21b7cb0b19c10076f98" +checksum = "2c134068711c0c46906abc0e6e4911204420331530738e18ca903a5469364d9f" dependencies = [ "frame-decode", - "frame-metadata 20.0.0", + "frame-metadata", "hashbrown 0.14.5", "parity-scale-codec", "scale-info", "sp-crypto-hashing 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "thiserror 2.0.12", + "thiserror 2.0.18", ] [[package]] name = "subxt-rpcs" -version = "0.41.0" +version = "0.43.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ba7494d250d65dc3439365ac5e8e0fbb9c3992e6e84b7aa01d69e082249b8b8" +checksum = "25de7727144780d780a6a7d78bbfd28414b8adbab68b05e87329c367d7705be4" dependencies = [ "derive-where", - "frame-metadata 20.0.0", + "frame-metadata", "futures", "hex", "impl-serde", @@ -14791,18 +15060,18 @@ dependencies = [ "serde_json", "subxt-core", "subxt-lightclient", - "thiserror 2.0.12", + "thiserror 2.0.18", "tracing", "url", ] [[package]] name = "subxt-signer" -version = "0.41.0" +version = "0.43.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4a2370298a210ed1df26152db7209a85e0ed8cfbce035309c3b37f7b61755377" +checksum = "9a9bd240ae819f64ac6898d7ec99a88c8b838dba2fb9d83b843feb70e77e34c8" dependencies = [ - "base64 0.22.1", + "base64", "bip32", "bip39", "cfg-if", @@ -14819,29 +15088,29 @@ dependencies = [ "secrecy 0.10.3", "serde", "serde_json", - "sha2 0.10.8", + "sha2 0.10.9", "sp-crypto-hashing 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "subxt-core", - "thiserror 2.0.12", + "thiserror 2.0.18", "zeroize", ] [[package]] name = "subxt-utils-fetchmetadata" -version = "0.41.0" +version = "0.43.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fc868b55fe2303788dc7703457af390111940c3da4714b510983284501780ed5" +checksum = "8c4fb8fd6b16ecd3537a29d70699f329a68c1e47f70ed1a46d64f76719146563" dependencies = [ "hex", "parity-scale-codec", - "thiserror 2.0.12", + "thiserror 2.0.18", ] [[package]] name = "supports-color" -version = "3.0.1" +version = "3.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8775305acf21c96926c900ad056abeef436701108518cf890020387236ac5a77" +checksum = "c64fc7232dd8d2e4ac5ce4ef302b1d81e0b80d055b9d77c7c4f51f6aa4c867d6" dependencies = [ "is_ci", ] @@ -14859,9 +15128,9 @@ dependencies = [ [[package]] name = "syn" -version = "2.0.111" +version = "2.0.117" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "390cc9a294ab71bdb1aa2e99d13be9c753cd2d7bd6560c77118597410c4d2e87" +checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99" dependencies = [ "proc-macro2", "quote", @@ -14891,13 +15160,13 @@ dependencies = [ [[package]] name = "synstructure" -version = "0.13.1" +version = "0.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971" +checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] @@ -14917,11 +15186,11 @@ dependencies = [ [[package]] name = "system-configuration" -version = "0.6.1" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b" +checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b" dependencies = [ - "bitflags 2.9.1", + "bitflags 2.11.0", "core-foundation 0.9.4", "system-configuration-sys", ] @@ -14950,9 +15219,9 @@ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" [[package]] name = "tar" -version = "0.4.42" +version = "0.4.45" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ff6c40d3aedb5e06b57c6f669ad17ab063dd1e63d977c6a88e7f4dfa4f04020" +checksum = "22692a6476a21fa75fdfc11d452fda482af402c008cdbaf3476414e122040973" dependencies = [ "filetime", "libc", @@ -14961,21 +15230,21 @@ dependencies = [ [[package]] name = "target-lexicon" -version = "0.12.16" +version = "0.13.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1" +checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca" [[package]] name = "tempfile" -version = "3.13.0" +version = "3.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f0f2c9fc62d0beef6951ccffd757e241266a2c833136efbe35af6cd2567dca5b" +checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd" dependencies = [ - "cfg-if", "fastrand", + "getrandom 0.4.2", "once_cell", - "rustix 0.38.37", - "windows-sys 0.59.0", + "rustix 1.1.4", + "windows-sys 0.61.2", ] [[package]] @@ -14989,58 +15258,58 @@ dependencies = [ [[package]] name = "terminal_size" -version = "0.3.0" +version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "21bebf2b7c9e0a515f6e0f8c51dc0f8e4696391e6f1ff30379559f8365fb0df7" +checksum = "230a1b821ccbd75b185820a1f1ff7b14d21da1e442e22c0863ea5f08771a8874" dependencies = [ - "rustix 0.38.37", - "windows-sys 0.48.0", + "rustix 1.1.4", + "windows-sys 0.61.2", ] [[package]] name = "termtree" -version = "0.4.1" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76" +checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683" [[package]] name = "thiserror" -version = "1.0.64" +version = "1.0.69" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d50af8abc119fb8bb6dbabcfa89656f46f84aa0ac7688088608076ad2b459a84" +checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" dependencies = [ - "thiserror-impl 1.0.64", + "thiserror-impl 1.0.69", ] [[package]] name = "thiserror" -version = "2.0.12" +version = "2.0.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708" +checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4" dependencies = [ - "thiserror-impl 2.0.12", + "thiserror-impl 2.0.18", ] [[package]] name = "thiserror-impl" -version = "1.0.64" +version = "1.0.69" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08904e7672f5eb876eaaf87e0ce17857500934f4981c4a0ab2b4aa98baac7fc3" +checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] name = "thiserror-impl" -version = "2.0.12" +version = "2.0.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d" +checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] @@ -15051,11 +15320,11 @@ checksum = "3bf63baf9f5039dadc247375c29eb13706706cfde997d0330d05aa63a77d8820" [[package]] name = "thread-priority" -version = "1.1.0" +version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0d3b04d33c9633b8662b167b847c7ab521f83d1ae20f2321b65b5b925e532e36" +checksum = "cfe075d7053dae61ac5413a34ea7d4913b6e6207844fd726bdd858b37ff72bf5" dependencies = [ - "bitflags 2.9.1", + "bitflags 2.11.0", "cfg-if", "libc", "log", @@ -15065,12 +15334,11 @@ dependencies = [ [[package]] name = "thread_local" -version = "1.1.8" +version = "1.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c" +checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185" dependencies = [ "cfg-if", - "once_cell", ] [[package]] @@ -15084,9 +15352,9 @@ dependencies = [ [[package]] name = "tikv-jemalloc-ctl" -version = "0.5.4" +version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "619bfed27d807b54f7f776b9430d4f8060e66ee138a28632ca898584d462c31c" +checksum = "661f1f6a57b3a36dc9174a2c10f19513b4866816e13425d3e418b11cc37bc24c" dependencies = [ "libc", "paste", @@ -15095,9 +15363,9 @@ dependencies = [ [[package]] name = "tikv-jemalloc-sys" -version = "0.5.4+5.3.0-patched" +version = "0.6.1+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9402443cb8fd499b6f327e40565234ff34dbda27460c5b47db0db77443dd85d1" +checksum = "cd8aa5b2ab86a2cefa406d889139c162cbb230092f7d1d7cbc1716405d852a3b" dependencies = [ "cc", "libc", @@ -15145,9 +15413,9 @@ dependencies = [ [[package]] name = "tinystr" -version = "0.7.6" +version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f" +checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869" dependencies = [ "displaydoc", "zerovec", @@ -15165,9 +15433,9 @@ dependencies = [ [[package]] name = "tinyvec" -version = "1.8.0" +version = "1.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938" +checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3" dependencies = [ "tinyvec_macros", ] @@ -15180,31 +15448,30 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.45.1" +version = "1.50.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75ef51a33ef1da925cea3e4eb122833cb377c61439ca401b770f54902b806779" +checksum = "27ad5e34374e03cfffefc301becb44e9dc3c17584f414349ebe29ed26661822d" dependencies = [ - "backtrace", "bytes", "libc", "mio", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "pin-project-lite", "signal-hook-registry", - "socket2", + "socket2 0.6.3", "tokio-macros", - "windows-sys 0.52.0", + "windows-sys 0.61.2", ] [[package]] name = "tokio-macros" -version = "2.5.0" +version = "2.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8" +checksum = "5c55a2eff8b69ce66c84f85e1da1c233edc36ceb85a2058d11b0d6a3c7e7569c" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] @@ -15220,20 +15487,19 @@ dependencies = [ [[package]] name = "tokio-rustls" -version = "0.26.0" +version = "0.26.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c7bc40d0e5a97695bb96e27995cd3a08538541b0a846f65bba7a359f36700d4" +checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61" dependencies = [ - "rustls 0.23.35", - "rustls-pki-types", + "rustls 0.23.37", "tokio", ] [[package]] name = "tokio-stream" -version = "0.1.16" +version = "0.1.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4f4e6ce100d0eb49a2734f8c0812bcd324cf357d21810932c5df6b96ef2b86f1" +checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70" dependencies = [ "futures-core", "pin-project-lite", @@ -15243,25 +15509,25 @@ dependencies = [ [[package]] name = "tokio-tungstenite" -version = "0.26.2" +version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a9daff607c6d2bf6c16fd681ccb7eecc83e4e2cdc1ca067ffaadfca5de7f084" +checksum = "489a59b6730eda1b0171fcfda8b121f4bee2b35cba8645ca35c5f7ba3eb736c1" dependencies = [ "futures-util", "log", - "rustls 0.23.35", - "rustls-native-certs 0.8.1", + "rustls 0.23.37", + "rustls-native-certs 0.8.3", "rustls-pki-types", "tokio", - "tokio-rustls 0.26.0", + "tokio-rustls 0.26.4", "tungstenite", ] [[package]] name = "tokio-util" -version = "0.7.15" +version = "0.7.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "66a539a9ad6d5d281510d5bd368c973d636c02dbf8a67300bfb6b950696ad7df" +checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098" dependencies = [ "bytes", "futures-core", @@ -15282,38 +15548,75 @@ dependencies = [ [[package]] name = "toml" -version = "0.8.19" +version = "0.8.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1ed1f98e3fdc28d6d910e6737ae6ab1a93bf1985935a1193e68f93eeb68d24e" +checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362" dependencies = [ "serde", "serde_spanned", - "toml_datetime", - "toml_edit", + "toml_datetime 0.6.11", + "toml_edit 0.22.27", ] [[package]] name = "toml_datetime" -version = "0.6.8" +version = "0.6.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41" +checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c" dependencies = [ "serde", ] +[[package]] +name = "toml_datetime" +version = "1.1.0+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "97251a7c317e03ad83774a8752a7e81fb6067740609f75ea2b585b569a59198f" +dependencies = [ + "serde_core", +] + [[package]] name = "toml_edit" -version = "0.22.22" +version = "0.22.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ae48d6208a266e853d946088ed816055e556cc6028c5e8e2b84d9fa5dd7c7f5" +checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a" dependencies = [ - "indexmap 2.9.0", + "indexmap", "serde", "serde_spanned", - "toml_datetime", - "winnow", + "toml_datetime 0.6.11", + "toml_write", + "winnow 0.7.15", +] + +[[package]] +name = "toml_edit" +version = "0.25.8+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "16bff38f1d86c47f9ff0647e6838d7bb362522bdf44006c7068c2b1e606f1f3c" +dependencies = [ + "indexmap", + "toml_datetime 1.1.0+spec-1.1.0", + "toml_parser", + "winnow 1.0.0", +] + +[[package]] +name = "toml_parser" +version = "1.1.0+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2334f11ee363607eb04df9b8fc8a13ca1715a72ba8662a26ac285c98aabb4011" +dependencies = [ + "winnow 1.0.0", ] +[[package]] +name = "toml_write" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801" + [[package]] name = "tower" version = "0.4.13" @@ -15329,15 +15632,30 @@ dependencies = [ "tracing", ] +[[package]] +name = "tower" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4" +dependencies = [ + "futures-core", + "futures-util", + "pin-project-lite", + "sync_wrapper", + "tokio", + "tower-layer", + "tower-service", +] + [[package]] name = "tower-http" version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1e9cd434a998747dd2c4276bc96ee2e0c7a2eadf3cae88e52be55a05fa9053f5" dependencies = [ - "bitflags 2.9.1", + "bitflags 2.11.0", "bytes", - "http 1.1.0", + "http 1.4.0", "http-body", "http-body-util", "pin-project-lite", @@ -15345,6 +15663,24 @@ dependencies = [ "tower-service", ] +[[package]] +name = "tower-http" +version = "0.6.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8" +dependencies = [ + "bitflags 2.11.0", + "bytes", + "futures-util", + "http 1.4.0", + "http-body", + "iri-string", + "pin-project-lite", + "tower 0.5.3", + "tower-layer", + "tower-service", +] + [[package]] name = "tower-layer" version = "0.3.3" @@ -15359,9 +15695,9 @@ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" [[package]] name = "tracing" -version = "0.1.41" +version = "0.1.44" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0" +checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100" dependencies = [ "log", "pin-project-lite", @@ -15371,20 +15707,20 @@ dependencies = [ [[package]] name = "tracing-attributes" -version = "0.1.30" +version = "0.1.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903" +checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] name = "tracing-core" -version = "0.1.34" +version = "0.1.36" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678" +checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a" dependencies = [ "once_cell", "valuable", @@ -15402,8 +15738,8 @@ dependencies = [ [[package]] name = "tracing-gum" -version = "20.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +version = "23.0.0" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "coarsetime", "polkadot-primitives", @@ -15414,13 +15750,13 @@ dependencies = [ [[package]] name = "tracing-gum-proc-macro" version = "5.0.0" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "expander", - "proc-macro-crate 3.2.0", + "proc-macro-crate 3.5.0", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] @@ -15429,21 +15765,23 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" dependencies = [ + "ahash 0.7.8", "log", + "lru 0.7.8", "once_cell", "tracing-core", ] [[package]] name = "tracing-subscriber" -version = "0.3.20" +version = "0.3.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2054a14f5307d601f88daf0553e1cbf472acc4f2c51afab632431cdcd72124d5" +checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319" dependencies = [ "matchers", "nu-ansi-term", "once_cell", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "regex-automata", "sharded-slab", "smallvec", @@ -15501,11 +15839,10 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" [[package]] name = "tryhard" -version = "0.5.1" +version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c9f0a709784e86923586cff0d872dba54cd2d2e116b3bc57587d15737cfce9d" +checksum = "9fe58ebd5edd976e0fe0f8a14d2a04b7c81ef153ea9a54eebc42e67c2c23b4e5" dependencies = [ - "futures", "pin-project-lite", "tokio", ] @@ -15518,20 +15855,20 @@ checksum = "f4f195fd851901624eee5a58c4bb2b4f06399148fcd0ed336e6f1cb60a9881df" [[package]] name = "tungstenite" -version = "0.26.2" +version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4793cb5e56680ecbb1d843515b23b6de9a75eb04b66643e256a396d43be33c13" +checksum = "eadc29d668c91fcc564941132e17b28a7ceb2f3ebf0b9dae3e03fd7a6748eb0d" dependencies = [ "bytes", "data-encoding", - "http 1.1.0", + "http 1.4.0", "httparse", "log", - "rand 0.9.0", - "rustls 0.23.35", + "rand 0.9.2", + "rustls 0.23.37", "rustls-pki-types", "sha1", - "thiserror 2.0.12", + "thiserror 2.0.18", "url", "utf-8", ] @@ -15554,11 +15891,17 @@ dependencies = [ "static_assertions", ] +[[package]] +name = "twox-hash" +version = "2.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ea3136b675547379c4bd395ca6b938e5ad3c3d20fad76e7fe85f9e0d011419c" + [[package]] name = "typenum" -version = "1.17.0" +version = "1.19.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" +checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb" [[package]] name = "ucd-trie" @@ -15580,12 +15923,11 @@ dependencies = [ [[package]] name = "ulid" -version = "1.1.3" +version = "1.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "04f903f293d11f31c0c29e4148f6dc0d033a7f80cebc0282bea147611667d289" +checksum = "470dbf6591da1b39d43c14523b2b469c86879a53e8b758c8e090a470fe7b1fbe" dependencies = [ - "getrandom 0.2.15", - "rand 0.8.5", + "rand 0.9.2", "serde", "web-time", ] @@ -15598,36 +15940,30 @@ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94" [[package]] name = "unicode-ident" -version = "1.0.13" +version = "1.0.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe" +checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75" [[package]] name = "unicode-normalization" -version = "0.1.22" +version = "0.1.25" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" +checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8" dependencies = [ "tinyvec", ] [[package]] name = "unicode-segmentation" -version = "1.12.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493" - -[[package]] -name = "unicode-width" -version = "0.1.14" +version = "1.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af" +checksum = "9629274872b2bfaf8d66f5f15725007f635594914870f65218920345aa11aa8c" [[package]] name = "unicode-width" -version = "0.2.0" +version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd" +checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254" [[package]] name = "unicode-xid" @@ -15641,7 +15977,7 @@ version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea" dependencies = [ - "crypto-common 0.1.6", + "crypto-common 0.1.7", "subtle 2.6.1", ] @@ -15682,15 +16018,45 @@ version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" +[[package]] +name = "ureq" +version = "3.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dea7109cdcd5864d4eeb1b58a1648dc9bf520360d7af16ec26d0a9354bafcfc0" +dependencies = [ + "base64", + "flate2", + "log", + "percent-encoding", + "rustls 0.23.37", + "rustls-pki-types", + "ureq-proto", + "utf8-zero", + "webpki-roots 1.0.6", +] + +[[package]] +name = "ureq-proto" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e994ba84b0bd1b1b0cf92878b7ef898a5c1760108fe7b6010327e274917a808c" +dependencies = [ + "base64", + "http 1.4.0", + "httparse", + "log", +] + [[package]] name = "url" -version = "2.5.4" +version = "2.5.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60" +checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed" dependencies = [ "form_urlencoded", "idna", "percent-encoding", + "serde", ] [[package]] @@ -15700,10 +16066,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" [[package]] -name = "utf16_iter" -version = "1.0.5" +name = "utf8-zero" +version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246" +checksum = "b8c0a043c9540bae7c578c88f91dda8bd82e59ae27c21baca69c8b191aaf5a6e" [[package]] name = "utf8_iter" @@ -15719,18 +16085,20 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" [[package]] name = "uuid" -version = "1.16.0" +version = "1.23.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "458f7a779bf54acc9f347480ac654f68407d3aab21269a6e3c9f922acd9e2da9" +checksum = "5ac8b6f42ead25368cf5b098aeb3dc8a1a2c05a3eee8a9a1a68c640edbfc79d9" dependencies = [ - "getrandom 0.3.2", + "getrandom 0.4.2", + "js-sys", + "wasm-bindgen", ] [[package]] name = "valuable" -version = "0.1.0" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" +checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65" [[package]] name = "version_check" @@ -15761,7 +16129,7 @@ dependencies = [ "rand 0.8.5", "rand_chacha 0.3.1", "rand_core 0.6.4", - "sha2 0.10.8", + "sha2 0.10.9", "sha3", "zeroize", ] @@ -15842,33 +16210,42 @@ dependencies = [ [[package]] name = "wasi" -version = "0.11.0+wasi-snapshot-preview1" +version = "0.11.1+wasi-snapshot-preview1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" +checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" [[package]] -name = "wasi" -version = "0.14.2+wasi-0.2.4" +name = "wasip2" +version = "1.0.2+wasi-0.2.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5" +dependencies = [ + "wit-bindgen", +] + +[[package]] +name = "wasip3" +version = "0.4.0+wasi-0.3.0-rc-2026-01-06" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3" +checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5" dependencies = [ - "wit-bindgen-rt", + "wit-bindgen", ] [[package]] name = "wasix" -version = "0.12.21" +version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c1fbb4ef9bbca0c1170e0b00dd28abc9e3b68669821600cad1caaed606583c6d" +checksum = "1757e0d1f8456693c7e5c6c629bdb54884e032aa0bb53c155f6a39f94440d332" dependencies = [ - "wasi 0.11.0+wasi-snapshot-preview1", + "wasi", ] [[package]] name = "wasm-bindgen" -version = "0.2.106" +version = "0.2.114" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0d759f433fa64a2d763d1340820e46e111a7a5ab75f993d1852d70b03dbb80fd" +checksum = "6532f9a5c1ece3798cb1c2cfdba640b9b3ba884f5db45973a6f442510a87d38e" dependencies = [ "cfg-if", "once_cell", @@ -15879,21 +16256,23 @@ dependencies = [ [[package]] name = "wasm-bindgen-futures" -version = "0.4.43" +version = "0.4.64" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61e9300f63a621e96ed275155c108eb6f843b6a26d053f122ab69724559dc8ed" +checksum = "e9c5522b3a28661442748e09d40924dfb9ca614b21c00d3fd135720e48b67db8" dependencies = [ "cfg-if", + "futures-util", "js-sys", + "once_cell", "wasm-bindgen", "web-sys", ] [[package]] name = "wasm-bindgen-macro" -version = "0.2.106" +version = "0.2.114" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "48cb0d2638f8baedbc542ed444afc0644a29166f1595371af4fecf8ce1e7eeb3" +checksum = "18a2d50fcf105fb33bb15f00e7a77b772945a2ee45dcf454961fd843e74c18e6" dependencies = [ "quote", "wasm-bindgen-macro-support", @@ -15901,47 +16280,79 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro-support" -version = "0.2.106" +version = "0.2.114" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cefb59d5cd5f92d9dcf80e4683949f15ca4b511f4ac0a6e14d4e1ac60c6ecd40" +checksum = "03ce4caeaac547cdf713d280eda22a730824dd11e6b8c3ca9e42247b25c631e3" dependencies = [ "bumpalo", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-shared" -version = "0.2.106" +version = "0.2.114" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cbc538057e648b67f72a982e708d485b2efa771e1ac05fec311f9f63e5800db4" +checksum = "75a326b8c223ee17883a4251907455a2431acc2791c98c26279376490c378c16" dependencies = [ "unicode-ident", ] [[package]] -name = "wasm-instrument" -version = "0.4.0" +name = "wasm-encoder" +version = "0.235.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2a47ecb37b9734d1085eaa5ae1a81e60801fd8c28d4cabdd8aedb982021918bc" +checksum = "b3bc393c395cb621367ff02d854179882b9a351b4e0c93d1397e6090b53a5c2a" dependencies = [ - "parity-wasm", + "leb128fmt", + "wasmparser 0.235.0", ] [[package]] -name = "wasm-opt" -version = "0.116.1" +name = "wasm-encoder" +version = "0.244.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2fd87a4c135535ffed86123b6fb0f0a5a0bc89e50416c942c5f0662c645f679c" +checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319" +dependencies = [ + "leb128fmt", + "wasmparser 0.244.0", +] + +[[package]] +name = "wasm-instrument" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2a47ecb37b9734d1085eaa5ae1a81e60801fd8c28d4cabdd8aedb982021918bc" +dependencies = [ + "parity-wasm", +] + +[[package]] +name = "wasm-metadata" +version = "0.244.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909" +dependencies = [ + "anyhow", + "indexmap", + "wasm-encoder 0.244.0", + "wasmparser 0.244.0", +] + +[[package]] +name = "wasm-opt" +version = "0.116.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2fd87a4c135535ffed86123b6fb0f0a5a0bc89e50416c942c5f0662c645f679c" dependencies = [ "anyhow", "libc", "strum 0.24.1", "strum_macros 0.24.3", "tempfile", - "thiserror 1.0.64", + "thiserror 1.0.69", "wasm-opt-cxx-sys", "wasm-opt-sys", ] @@ -15987,263 +16398,320 @@ dependencies = [ [[package]] name = "wasmi" -version = "0.32.3" +version = "0.40.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "50386c99b9c32bd2ed71a55b6dd4040af2580530fae8bdb9a6576571a80d0cca" +checksum = "a19af97fcb96045dd1d6b4d23e2b4abdbbe81723dbc5c9f016eb52145b320063" dependencies = [ "arrayvec 0.7.6", "multi-stash", - "num-derive", - "num-traits", "smallvec", "spin 0.9.8", "wasmi_collections", "wasmi_core", - "wasmparser-nostd", + "wasmi_ir", + "wasmparser 0.221.3", ] [[package]] name = "wasmi_collections" -version = "0.32.3" +version = "0.40.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c128c039340ffd50d4195c3f8ce31aac357f06804cfc494c8b9508d4b30dca4" -dependencies = [ - "ahash", - "hashbrown 0.14.5", - "string-interner", -] +checksum = "e80d6b275b1c922021939d561574bf376613493ae2b61c6963b15db0e8813562" [[package]] name = "wasmi_core" -version = "0.32.3" +version = "0.40.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a23b3a7f6c8c3ceeec6b83531ee61f0013c56e51cbf2b14b0f213548b23a4b41" +checksum = "3a8c51482cc32d31c2c7ff211cd2bedd73c5bd057ba16a2ed0110e7a96097c33" dependencies = [ "downcast-rs", "libm", - "num-traits", - "paste", +] + +[[package]] +name = "wasmi_ir" +version = "0.40.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e431a14c186db59212a88516788bd68ed51f87aa1e08d1df742522867b5289a" +dependencies = [ + "wasmi_core", ] [[package]] name = "wasmparser" -version = "0.102.0" +version = "0.221.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "48134de3d7598219ab9eaf6b91b15d8e50d31da76b8519fe4ecfcec2cf35104b" +checksum = "d06bfa36ab3ac2be0dee563380147a5b81ba10dd8885d7fbbc9eb574be67d185" dependencies = [ - "indexmap 1.9.3", - "url", + "bitflags 2.11.0", +] + +[[package]] +name = "wasmparser" +version = "0.235.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "161296c618fa2d63f6ed5fffd1112937e803cb9ec71b32b01a76321555660917" +dependencies = [ + "bitflags 2.11.0", + "hashbrown 0.15.5", + "indexmap", + "semver 1.0.27", + "serde", ] [[package]] -name = "wasmparser-nostd" -version = "0.100.2" +name = "wasmparser" +version = "0.244.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d5a015fe95f3504a94bb1462c717aae75253e39b9dd6c3fb1062c934535c64aa" +checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe" dependencies = [ - "indexmap-nostd", + "bitflags 2.11.0", + "hashbrown 0.15.5", + "indexmap", + "semver 1.0.27", +] + +[[package]] +name = "wasmprinter" +version = "0.235.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "75aa8e9076de6b9544e6dab4badada518cca0bf4966d35b131bbd057aed8fa0a" +dependencies = [ + "anyhow", + "termcolor", + "wasmparser 0.235.0", ] [[package]] name = "wasmtime" -version = "8.0.1" +version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f907fdead3153cb9bfb7a93bbd5b62629472dc06dee83605358c64c52ed3dda9" +checksum = "b6fe976922a16af3b0d67172c473d1fd4f1aa5d0af9c8ba6538c741f3af686f4" dependencies = [ + "addr2line 0.24.2", "anyhow", - "bincode", + "bitflags 2.11.0", + "bumpalo", + "cc", "cfg-if", - "indexmap 1.9.3", + "fxprof-processed-profile", + "gimli 0.31.1", + "hashbrown 0.15.5", + "indexmap", + "ittapi", "libc", "log", - "object 0.30.4", + "mach2", + "memfd", + "object 0.36.7", "once_cell", - "paste", - "psm", + "postcard", + "pulley-interpreter", "rayon", + "rustix 1.1.4", "serde", + "serde_derive", + "serde_json", + "smallvec", "target-lexicon", - "wasmparser", - "wasmtime-cache", - "wasmtime-cranelift", + "wasmparser 0.235.0", "wasmtime-environ", - "wasmtime-jit", - "wasmtime-runtime", - "windows-sys 0.45.0", + "wasmtime-internal-asm-macros", + "wasmtime-internal-cache", + "wasmtime-internal-cranelift", + "wasmtime-internal-fiber", + "wasmtime-internal-jit-debug", + "wasmtime-internal-jit-icache-coherence", + "wasmtime-internal-math", + "wasmtime-internal-slab", + "wasmtime-internal-unwinder", + "wasmtime-internal-versioned-export-macros", + "wasmtime-internal-winch", + "windows-sys 0.59.0", ] [[package]] -name = "wasmtime-asm-macros" -version = "8.0.1" +name = "wasmtime-environ" +version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d3b9daa7c14cd4fa3edbf69de994408d5f4b7b0959ac13fa69d465f6597f810d" +checksum = "44b6264a78d806924abbc76bbc75eac24976bc83bdfb938e5074ae551242436f" +dependencies = [ + "anyhow", + "cpp_demangle", + "cranelift-bitset", + "cranelift-entity", + "gimli 0.31.1", + "indexmap", + "log", + "object 0.36.7", + "postcard", + "rustc-demangle", + "serde", + "serde_derive", + "smallvec", + "target-lexicon", + "wasm-encoder 0.235.0", + "wasmparser 0.235.0", + "wasmprinter", +] + +[[package]] +name = "wasmtime-internal-asm-macros" +version = "35.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6775a9b516559716e5710e95a8014ca0adcc81e5bf4d3ad7899d89ae40094d1a" dependencies = [ "cfg-if", ] [[package]] -name = "wasmtime-cache" -version = "8.0.1" +name = "wasmtime-internal-cache" +version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c86437fa68626fe896e5afc69234bb2b5894949083586535f200385adfd71213" +checksum = "138e33ad4bd120f3b1c77d6d0dcdce0de8239555495befcda89393a40ba5e324" dependencies = [ "anyhow", - "base64 0.21.7", - "bincode", + "base64", "directories-next", - "file-per-thread-logger", "log", - "rustix 0.36.17", + "postcard", + "rustix 1.1.4", "serde", - "sha2 0.10.8", - "toml 0.5.11", - "windows-sys 0.45.0", - "zstd 0.11.2+zstd.1.5.2", + "serde_derive", + "sha2 0.10.9", + "toml 0.8.23", + "windows-sys 0.59.0", + "zstd 0.13.3", ] [[package]] -name = "wasmtime-cranelift" -version = "8.0.1" +name = "wasmtime-internal-cranelift" +version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b1cefde0cce8cb700b1b21b6298a3837dba46521affd7b8c38a9ee2c869eee04" +checksum = "7ec9ad7565e6a8de7cb95484e230ff689db74a4a085219e0da0cbd637a29c01c" dependencies = [ "anyhow", + "cfg-if", "cranelift-codegen", + "cranelift-control", "cranelift-entity", "cranelift-frontend", "cranelift-native", - "cranelift-wasm", - "gimli 0.27.3", + "gimli 0.31.1", + "itertools 0.14.0", "log", - "object 0.30.4", + "object 0.36.7", + "pulley-interpreter", + "smallvec", "target-lexicon", - "thiserror 1.0.64", - "wasmparser", - "wasmtime-cranelift-shared", + "thiserror 2.0.18", + "wasmparser 0.235.0", "wasmtime-environ", + "wasmtime-internal-math", + "wasmtime-internal-versioned-export-macros", ] [[package]] -name = "wasmtime-cranelift-shared" -version = "8.0.1" +name = "wasmtime-internal-fiber" +version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd041e382ef5aea1b9fc78442394f1a4f6d676ce457e7076ca4cb3f397882f8b" +checksum = "8b636ff8b220ebaf29dfe3b23770e4b2bad317b9683e3bf7345e162387385b39" dependencies = [ "anyhow", - "cranelift-codegen", - "cranelift-native", - "gimli 0.27.3", - "object 0.30.4", - "target-lexicon", - "wasmtime-environ", + "cc", + "cfg-if", + "libc", + "rustix 1.1.4", + "wasmtime-internal-asm-macros", + "wasmtime-internal-versioned-export-macros", + "windows-sys 0.59.0", ] [[package]] -name = "wasmtime-environ" -version = "8.0.1" +name = "wasmtime-internal-jit-debug" +version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a990198cee4197423045235bf89d3359e69bd2ea031005f4c2d901125955c949" +checksum = "61d8693995ab3df48e88777b6ee3b2f441f2c4f895ab938996cdac3db26f256c" dependencies = [ - "anyhow", - "cranelift-entity", - "gimli 0.27.3", - "indexmap 1.9.3", - "log", - "object 0.30.4", - "serde", - "target-lexicon", - "thiserror 1.0.64", - "wasmparser", - "wasmtime-types", + "cc", + "object 0.36.7", + "rustix 1.1.4", + "wasmtime-internal-versioned-export-macros", ] [[package]] -name = "wasmtime-jit" -version = "8.0.1" +name = "wasmtime-internal-jit-icache-coherence" +version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0de48df552cfca1c9b750002d3e07b45772dd033b0b206d5c0968496abf31244" +checksum = "4417e06b7f80baff87d9770852c757a39b8d7f11d78b2620ca992b8725f16f50" dependencies = [ - "addr2line 0.19.0", "anyhow", - "bincode", "cfg-if", - "cpp_demangle", - "gimli 0.27.3", - "log", - "object 0.30.4", - "rustc-demangle", - "serde", - "target-lexicon", - "wasmtime-environ", - "wasmtime-jit-debug", - "wasmtime-jit-icache-coherence", - "wasmtime-runtime", - "windows-sys 0.45.0", + "libc", + "windows-sys 0.59.0", ] [[package]] -name = "wasmtime-jit-debug" -version = "8.0.1" +name = "wasmtime-internal-math" +version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e0554b84c15a27d76281d06838aed94e13a77d7bf604bbbaf548aa20eb93846" +checksum = "7710d5c4ecdaa772927fd11e5dc30a9a62d1fc8fe933e11ad5576ad596ab6612" dependencies = [ - "object 0.30.4", - "once_cell", - "rustix 0.36.17", + "libm", ] [[package]] -name = "wasmtime-jit-icache-coherence" -version = "8.0.1" +name = "wasmtime-internal-slab" +version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aecae978b13f7f67efb23bd827373ace4578f2137ec110bbf6a4a7cde4121bbd" -dependencies = [ - "cfg-if", - "libc", - "windows-sys 0.45.0", -] +checksum = "e6ab22fabe1eed27ab01fd47cd89deacf43ad222ed7fd169ba6f4dd1fbddc53b" [[package]] -name = "wasmtime-runtime" -version = "8.0.1" +name = "wasmtime-internal-unwinder" +version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "658cf6f325232b6760e202e5255d823da5e348fdea827eff0a2a22319000b441" +checksum = "307708f302f5dcf19c1bbbfb3d9f2cbc837dd18088a7988747b043a46ba38ecc" dependencies = [ "anyhow", - "cc", "cfg-if", - "indexmap 1.9.3", - "libc", + "cranelift-codegen", "log", - "mach", - "memfd", - "memoffset", - "paste", - "rand 0.8.5", - "rustix 0.36.17", - "wasmtime-asm-macros", - "wasmtime-environ", - "wasmtime-jit-debug", - "windows-sys 0.45.0", + "object 0.36.7", ] [[package]] -name = "wasmtime-types" -version = "8.0.1" +name = "wasmtime-internal-versioned-export-macros" +version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4f6fffd2a1011887d57f07654dd112791e872e3ff4a2e626aee8059ee17f06f" +checksum = "342b0466f92b7217a4de9e114175fedee1907028567d2548bcd42f71a8b5b016" dependencies = [ - "cranelift-entity", - "serde", - "thiserror 1.0.64", - "wasmparser", + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "wasmtime-internal-winch" +version = "35.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2012e7384c25b91aab2f1b6a1e1cbab9d0f199bbea06cc873597a3f047f05730" +dependencies = [ + "anyhow", + "cranelift-codegen", + "gimli 0.31.1", + "object 0.36.7", + "target-lexicon", + "wasmparser 0.235.0", + "wasmtime-environ", + "wasmtime-internal-cranelift", + "winch-codegen", ] [[package]] name = "web-sys" -version = "0.3.70" +version = "0.3.91" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26fdeaafd9bd129f65e7c031593c24d62186301e0c72c8978fa1678be7d532c0" +checksum = "854ba17bb104abfb26ba36da9729addc7ce7f06f5c0f90f3c391f8461cca21f9" dependencies = [ "js-sys", "wasm-bindgen", @@ -16265,7 +16733,7 @@ version = "0.22.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ed63aea5ce73d0ff405984102c42de94fc55a6b75765d621c65262469b3c9b53" dependencies = [ - "ring 0.17.13", + "ring 0.17.14", "untrusted 0.9.0", ] @@ -16275,14 +16743,14 @@ version = "0.26.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "75c7f0ef91146ebfb530314f5f1d24528d7f0767efbfd31dce919275413e393e" dependencies = [ - "webpki-root-certs 1.0.4", + "webpki-root-certs 1.0.6", ] [[package]] name = "webpki-root-certs" -version = "1.0.4" +version = "1.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ee3e3b5f5e80bc89f30ce8d0343bf4e5f12341c51f3e26cbeecbc7c85443e85b" +checksum = "804f18a4ac2676ffb4e8b5b5fa9ae38af06df08162314f96a68d2a363e21a8ca" dependencies = [ "rustls-pki-types", ] @@ -16298,9 +16766,18 @@ dependencies = [ [[package]] name = "webpki-roots" -version = "0.26.6" +version = "0.26.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "841c67bff177718f1d4dfefde8d8f0e78f9b6589319ba88312f567fc5841a958" +checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9" +dependencies = [ + "webpki-roots 1.0.6", +] + +[[package]] +name = "webpki-roots" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "22cfaf3c063993ff62e73cb4311efde4db1efb31ab78a3e5c457939ad5cc0bed" dependencies = [ "rustls-pki-types", ] @@ -16314,14 +16791,14 @@ dependencies = [ "either", "home", "once_cell", - "rustix 0.38.37", + "rustix 0.38.44", ] [[package]] name = "wide" -version = "0.7.28" +version = "0.7.33" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b828f995bf1e9622031f8009f8481a85406ce1f4d4588ff746d872043e855690" +checksum = "0ce5da8ecb62bcd8ec8b7ea19f69a51275e91299be594ea5cc6ef7819e16cd03" dependencies = [ "bytemuck", "safe_arch", @@ -16329,9 +16806,9 @@ dependencies = [ [[package]] name = "widestring" -version = "1.1.0" +version = "1.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7219d36b6eac893fa81e84ebe06485e7dcbb616177469b142df14f1f4deb1311" +checksum = "72069c3113ab32ab29e5584db3c6ec55d416895e60715417b5b883a357c3e471" [[package]] name = "winapi" @@ -16351,11 +16828,11 @@ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" [[package]] name = "winapi-util" -version = "0.1.9" +version = "0.1.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb" +checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22" dependencies = [ - "windows-sys 0.59.0", + "windows-sys 0.61.2", ] [[package]] @@ -16365,13 +16842,23 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] -name = "windows" -version = "0.51.1" +name = "winch-codegen" +version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ca229916c5ee38c2f2bc1e9d8f04df975b4bd93f9955dc69fabb5d91270045c9" +checksum = "839a334ef7c62d8368dbd427e767a6fbb1ba08cc12ecce19cbb666c10613b585" dependencies = [ - "windows-core 0.51.1", - "windows-targets 0.48.5", + "anyhow", + "cranelift-assembler-x64", + "cranelift-codegen", + "gimli 0.31.1", + "regalloc2 0.12.2", + "smallvec", + "target-lexicon", + "thiserror 2.0.18", + "wasmparser 0.235.0", + "wasmtime-environ", + "wasmtime-internal-cranelift", + "wasmtime-internal-math", ] [[package]] @@ -16386,33 +16873,23 @@ dependencies = [ [[package]] name = "windows" -version = "0.61.3" +version = "0.62.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9babd3a767a4c1aef6900409f85f5d53ce2544ccdfaa86dad48c91782c6d6893" +checksum = "527fadee13e0c05939a6a05d5bd6eec6cd2e3dbd648b9f8e447c6518133d8580" dependencies = [ "windows-collections", - "windows-core 0.61.2", + "windows-core 0.62.2", "windows-future", - "windows-link", "windows-numerics", ] [[package]] name = "windows-collections" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8" -dependencies = [ - "windows-core 0.61.2", -] - -[[package]] -name = "windows-core" -version = "0.51.1" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f1f8cf84f35d2db49a46868f947758c7a1138116f7fac3bc844f43ade1292e64" +checksum = "23b2d95af1a8a14a3c7367e1ed4fc9c20e0a26e79551b1454d72583c97cc6610" dependencies = [ - "windows-targets 0.48.5", + "windows-core 0.62.2", ] [[package]] @@ -16426,24 +16903,24 @@ dependencies = [ [[package]] name = "windows-core" -version = "0.61.2" +version = "0.62.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3" +checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb" dependencies = [ "windows-implement", "windows-interface", "windows-link", - "windows-result 0.3.4", - "windows-strings 0.4.2", + "windows-result", + "windows-strings", ] [[package]] name = "windows-future" -version = "0.2.1" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fc6a41e98427b19fe4b73c550f060b59fa592d7d686537eebf9385621bfbad8e" +checksum = "e1d6f90251fe18a279739e78025bd6ddc52a7e22f921070ccdc67dde84c605cb" dependencies = [ - "windows-core 0.61.2", + "windows-core 0.62.2", "windows-link", "windows-threading", ] @@ -16456,7 +16933,7 @@ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] @@ -16467,69 +16944,50 @@ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] name = "windows-link" -version = "0.1.3" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a" +checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" [[package]] name = "windows-numerics" -version = "0.2.0" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1" +checksum = "6e2e40844ac143cdb44aead537bbf727de9b044e107a0f1220392177d15b0f26" dependencies = [ - "windows-core 0.61.2", + "windows-core 0.62.2", "windows-link", ] [[package]] name = "windows-registry" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e400001bb720a623c1c69032f8e3e4cf09984deec740f007dd2b03ec864804b0" -dependencies = [ - "windows-result 0.2.0", - "windows-strings 0.1.0", - "windows-targets 0.52.6", -] - -[[package]] -name = "windows-result" -version = "0.2.0" +version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e" +checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720" dependencies = [ - "windows-targets 0.52.6", + "windows-link", + "windows-result", + "windows-strings", ] [[package]] name = "windows-result" -version = "0.3.4" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6" +checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5" dependencies = [ "windows-link", ] [[package]] name = "windows-strings" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10" -dependencies = [ - "windows-result 0.2.0", - "windows-targets 0.52.6", -] - -[[package]] -name = "windows-strings" -version = "0.4.2" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57" +checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091" dependencies = [ "windows-link", ] @@ -16570,6 +17028,24 @@ dependencies = [ "windows-targets 0.52.6", ] +[[package]] +name = "windows-sys" +version = "0.60.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" +dependencies = [ + "windows-targets 0.53.5", +] + +[[package]] +name = "windows-sys" +version = "0.61.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" +dependencies = [ + "windows-link", +] + [[package]] name = "windows-targets" version = "0.42.2" @@ -16609,18 +17085,35 @@ dependencies = [ "windows_aarch64_gnullvm 0.52.6", "windows_aarch64_msvc 0.52.6", "windows_i686_gnu 0.52.6", - "windows_i686_gnullvm", + "windows_i686_gnullvm 0.52.6", "windows_i686_msvc 0.52.6", "windows_x86_64_gnu 0.52.6", "windows_x86_64_gnullvm 0.52.6", "windows_x86_64_msvc 0.52.6", ] +[[package]] +name = "windows-targets" +version = "0.53.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3" +dependencies = [ + "windows-link", + "windows_aarch64_gnullvm 0.53.1", + "windows_aarch64_msvc 0.53.1", + "windows_i686_gnu 0.53.1", + "windows_i686_gnullvm 0.53.1", + "windows_i686_msvc 0.53.1", + "windows_x86_64_gnu 0.53.1", + "windows_x86_64_gnullvm 0.53.1", + "windows_x86_64_msvc 0.53.1", +] + [[package]] name = "windows-threading" -version = "0.1.0" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b66463ad2e0ea3bbf808b7f1d371311c80e115c0b71d60efc142cafbcfb057a6" +checksum = "3949bd5b99cafdf1c7ca86b43ca564028dfe27d66958f2470940f73d86d75b37" dependencies = [ "windows-link", ] @@ -16643,6 +17136,12 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53" + [[package]] name = "windows_aarch64_msvc" version = "0.42.2" @@ -16661,6 +17160,12 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" +[[package]] +name = "windows_aarch64_msvc" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006" + [[package]] name = "windows_i686_gnu" version = "0.42.2" @@ -16679,12 +17184,24 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" +[[package]] +name = "windows_i686_gnu" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3" + [[package]] name = "windows_i686_gnullvm" version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" +[[package]] +name = "windows_i686_gnullvm" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c" + [[package]] name = "windows_i686_msvc" version = "0.42.2" @@ -16703,6 +17220,12 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" +[[package]] +name = "windows_i686_msvc" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2" + [[package]] name = "windows_x86_64_gnu" version = "0.42.2" @@ -16721,6 +17244,12 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" +[[package]] +name = "windows_x86_64_gnu" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499" + [[package]] name = "windows_x86_64_gnullvm" version = "0.42.2" @@ -16739,6 +17268,12 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1" + [[package]] name = "windows_x86_64_msvc" version = "0.42.2" @@ -16757,45 +17292,123 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" +[[package]] +name = "windows_x86_64_msvc" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650" + [[package]] name = "winnow" -version = "0.6.20" +version = "0.7.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "36c1fec1a2bb5866f07c25f68c26e565c4c200aebb96d7e55710c19d3e8ac49b" +checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945" dependencies = [ "memchr", ] [[package]] -name = "winreg" -version = "0.50.0" +name = "winnow" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" +checksum = "a90e88e4667264a994d34e6d1ab2d26d398dcdca8b7f52bec8668957517fc7d8" dependencies = [ - "cfg-if", - "windows-sys 0.48.0", + "memchr", ] [[package]] -name = "wit-bindgen-rt" -version = "0.39.0" +name = "wit-bindgen" +version = "0.51.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1" +checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5" dependencies = [ - "bitflags 2.9.1", + "wit-bindgen-rust-macro", ] [[package]] -name = "write16" -version = "1.0.0" +name = "wit-bindgen-core" +version = "0.51.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936" +checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc" +dependencies = [ + "anyhow", + "heck 0.5.0", + "wit-parser", +] + +[[package]] +name = "wit-bindgen-rust" +version = "0.51.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21" +dependencies = [ + "anyhow", + "heck 0.5.0", + "indexmap", + "prettyplease", + "syn 2.0.117", + "wasm-metadata", + "wit-bindgen-core", + "wit-component", +] + +[[package]] +name = "wit-bindgen-rust-macro" +version = "0.51.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a" +dependencies = [ + "anyhow", + "prettyplease", + "proc-macro2", + "quote", + "syn 2.0.117", + "wit-bindgen-core", + "wit-bindgen-rust", +] + +[[package]] +name = "wit-component" +version = "0.244.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2" +dependencies = [ + "anyhow", + "bitflags 2.11.0", + "indexmap", + "log", + "serde", + "serde_derive", + "serde_json", + "wasm-encoder 0.244.0", + "wasm-metadata", + "wasmparser 0.244.0", + "wit-parser", +] + +[[package]] +name = "wit-parser" +version = "0.244.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736" +dependencies = [ + "anyhow", + "id-arena", + "indexmap", + "log", + "semver 1.0.27", + "serde", + "serde_derive", + "serde_json", + "unicode-xid", + "wasmparser 0.244.0", +] [[package]] name = "writeable" -version = "0.5.5" +version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51" +checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9" [[package]] name = "wyz" @@ -16828,11 +17441,11 @@ dependencies = [ "data-encoding", "der-parser 9.0.0", "lazy_static", - "nom", + "nom 7.1.3", "oid-registry 0.7.1", - "ring 0.17.13", + "ring 0.17.14", "rusticata-macros", - "thiserror 1.0.64", + "thiserror 1.0.69", "time", ] @@ -16846,40 +17459,39 @@ dependencies = [ "data-encoding", "der-parser 10.0.0", "lazy_static", - "nom", + "nom 7.1.3", "oid-registry 0.8.1", "rusticata-macros", - "thiserror 2.0.12", + "thiserror 2.0.18", "time", ] [[package]] name = "xattr" -version = "1.3.1" +version = "1.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8da84f1a25939b27f6820d92aed108f83ff920fdf11a7b19366c27c4cda81d4f" +checksum = "32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156" dependencies = [ "libc", - "linux-raw-sys 0.4.14", - "rustix 0.38.37", + "rustix 1.1.4", ] [[package]] name = "xcm-procedural" version = "11.0.2" -source = "git+https://github.com/subspace/polkadot-sdk?rev=2c24a375c740eb93a16f6791fa7da949977b0b6e#2c24a375c740eb93a16f6791fa7da949977b0b6e" +source = "git+https://github.com/subspace/polkadot-sdk?rev=9748ad522c6c80f841fc13c48e60477fc5700249#9748ad522c6c80f841fc13c48e60477fc5700249" dependencies = [ "Inflector", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] name = "xml-rs" -version = "0.8.22" +version = "0.8.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af4e2e2f7cba5a093896c1e150fbfe177d1883e7448200efb81d40b9d339ef26" +checksum = "3ae8337f8a065cfc972643663ea4279e04e7256de865aa66fe25cec5fb912d3f" [[package]] name = "xmltree" @@ -16899,7 +17511,7 @@ dependencies = [ "futures", "log", "nohash-hasher", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "pin-project", "rand 0.8.5", "static_assertions", @@ -16914,9 +17526,9 @@ dependencies = [ "futures", "log", "nohash-hasher", - "parking_lot 0.12.3", + "parking_lot 0.12.5", "pin-project", - "rand 0.9.0", + "rand 0.9.2", "static_assertions", "web-time", ] @@ -16944,11 +17556,10 @@ dependencies = [ [[package]] name = "yoke" -version = "0.7.5" +version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40" +checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954" dependencies = [ - "serde", "stable_deref_trait", "yoke-derive", "zerofrom", @@ -16956,103 +17567,93 @@ dependencies = [ [[package]] name = "yoke-derive" -version = "0.7.5" +version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154" +checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", - "synstructure 0.13.1", + "syn 2.0.117", + "synstructure 0.13.2", ] [[package]] name = "zerocopy" -version = "0.7.35" +version = "0.8.47" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0" +checksum = "efbb2a062be311f2ba113ce66f697a4dc589f85e78a4aea276200804cea0ed87" dependencies = [ - "byteorder", - "zerocopy-derive 0.7.35", -] - -[[package]] -name = "zerocopy" -version = "0.8.24" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2586fea28e186957ef732a5f8b3be2da217d65c5969d4b1e17f973ebbe876879" -dependencies = [ - "zerocopy-derive 0.8.24", + "zerocopy-derive", ] [[package]] name = "zerocopy-derive" -version = "0.7.35" +version = "0.8.47" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" +checksum = "0e8bc7269b54418e7aeeef514aa68f8690b8c0489a06b0136e5f57c4c5ccab89" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", -] - -[[package]] -name = "zerocopy-derive" -version = "0.8.24" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a996a8f63c5c4448cd959ac1bab0aaa3306ccfd060472f85943ee0750f0169be" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] name = "zerofrom" -version = "0.1.5" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cff3ee08c995dee1859d998dea82f7374f2826091dd9cd47def953cae446cd2e" +checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5" dependencies = [ "zerofrom-derive", ] [[package]] name = "zerofrom-derive" -version = "0.1.5" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "595eed982f7d355beb85837f651fa22e90b3c044842dc7f2c2842c086f295808" +checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", - "synstructure 0.13.1", + "syn 2.0.117", + "synstructure 0.13.2", ] [[package]] name = "zeroize" -version = "1.8.1" +version = "1.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde" +checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0" dependencies = [ "zeroize_derive", ] [[package]] name = "zeroize_derive" -version = "1.4.2" +version = "1.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69" +checksum = "85a5b4158499876c763cb03bc4e49185d3cccbabb15b33c627f7884f43db852e" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", +] + +[[package]] +name = "zerotrie" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851" +dependencies = [ + "displaydoc", + "yoke", + "zerofrom", ] [[package]] name = "zerovec" -version = "0.10.4" +version = "0.11.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079" +checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002" dependencies = [ "yoke", "zerofrom", @@ -17061,29 +17662,26 @@ dependencies = [ [[package]] name = "zerovec-derive" -version = "0.10.3" +version = "0.11.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6" +checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.117", ] [[package]] name = "ziggy" -version = "1.3.4" +version = "1.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1ec0e3b65fea1a3b33ea6be638e233e3f2143ea30d78b7997f25bb44eb372494" +checksum = "9ebf968f5872525206a8ced8f2e89c79ea361949a474246b1fd0ff904ea0e073" [[package]] -name = "zstd" -version = "0.11.2+zstd.1.5.2" +name = "zmij" +version = "1.0.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4" -dependencies = [ - "zstd-safe 5.0.2+zstd.1.5.2", -] +checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa" [[package]] name = "zstd" @@ -17095,13 +17693,12 @@ dependencies = [ ] [[package]] -name = "zstd-safe" -version = "5.0.2+zstd.1.5.2" +name = "zstd" +version = "0.13.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db" +checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a" dependencies = [ - "libc", - "zstd-sys", + "zstd-safe 7.2.4", ] [[package]] @@ -17114,11 +17711,20 @@ dependencies = [ "zstd-sys", ] +[[package]] +name = "zstd-safe" +version = "7.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d" +dependencies = [ + "zstd-sys", +] + [[package]] name = "zstd-sys" -version = "2.0.13+zstd.1.5.6" +version = "2.0.16+zstd.1.5.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38ff0f21cfee8f97d94cef41359e0c89aa6113028ab0291aa8ca0038995a95aa" +checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748" dependencies = [ "cc", "pkg-config", diff --git a/Cargo.toml b/Cargo.toml index 878bceaa9b2..e84dfe6a6d6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -58,7 +58,7 @@ core_affinity = "0.8.1" cpufeatures = "0.2.17" criterion = { version = "0.5.1", default-features = false } cross-domain-message-gossip = { version = "0.1.0", path = "domains/client/cross-domain-message-gossip" } -cumulus-primitives-proof-size-hostfunction = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } +cumulus-primitives-proof-size-hostfunction = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249", default-features = false } derive_more = { version = "1.0.0", default-features = false } domain-block-builder = { version = "0.1.0", path = "domains/client/block-builder", default-features = false } domain-block-preprocessor = { version = "0.1.0", path = "domains/client/block-preprocessor", default-features = false } @@ -79,24 +79,24 @@ event-listener = "5.3.1" event-listener-primitives = "2.0.1" evm-domain-runtime = { version = "0.1.0", path = "domains/runtime/evm" } evm-domain-test-runtime = { version = "0.1.0", path = "domains/test/runtime/evm" } -fc-consensus = { version = "2.0.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "b70f725a84c1b6b7e56c9e7381d35863829a7a3c" } -fc-db = { version = "2.0.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "b70f725a84c1b6b7e56c9e7381d35863829a7a3c", default-features = false } -fc-mapping-sync = { version = "2.0.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "b70f725a84c1b6b7e56c9e7381d35863829a7a3c", default-features = false } -fc-rpc = { version = "2.0.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "b70f725a84c1b6b7e56c9e7381d35863829a7a3c", default-features = false } -fc-rpc-core = { version = "1.1.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "b70f725a84c1b6b7e56c9e7381d35863829a7a3c" } -fc-storage = { version = "1.0.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "b70f725a84c1b6b7e56c9e7381d35863829a7a3c" } +fc-consensus = { version = "2.0.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "9d49e36ed5bac38241594f8ba055fdb94991483a" } +fc-db = { version = "2.0.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "9d49e36ed5bac38241594f8ba055fdb94991483a", default-features = false } +fc-mapping-sync = { version = "2.0.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "9d49e36ed5bac38241594f8ba055fdb94991483a", default-features = false } +fc-rpc = { version = "2.0.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "9d49e36ed5bac38241594f8ba055fdb94991483a", default-features = false } +fc-rpc-core = { version = "1.1.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "9d49e36ed5bac38241594f8ba055fdb94991483a" } +fc-storage = { version = "1.0.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "9d49e36ed5bac38241594f8ba055fdb94991483a" } fdlimit = "0.3.0" -fp-account = { version = "1.0.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "b70f725a84c1b6b7e56c9e7381d35863829a7a3c", default-features = false } -fp-evm = { version = "3.0.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "b70f725a84c1b6b7e56c9e7381d35863829a7a3c", default-features = false } -fp-rpc = { version = "3.0.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "b70f725a84c1b6b7e56c9e7381d35863829a7a3c", default-features = false } -fp-self-contained = { version = "1.0.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "b70f725a84c1b6b7e56c9e7381d35863829a7a3c", default-features = false } -frame-benchmarking = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } -frame-benchmarking-cli = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } -frame-executive = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } -frame-support = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } -frame-system = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } -frame-system-benchmarking = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } -frame-system-rpc-runtime-api = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } +fp-account = { version = "1.0.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "9d49e36ed5bac38241594f8ba055fdb94991483a", default-features = false } +fp-evm = { version = "3.0.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "9d49e36ed5bac38241594f8ba055fdb94991483a", default-features = false } +fp-rpc = { version = "3.0.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "9d49e36ed5bac38241594f8ba055fdb94991483a", default-features = false } +fp-self-contained = { version = "1.0.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "9d49e36ed5bac38241594f8ba055fdb94991483a", default-features = false } +frame-benchmarking = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249", default-features = false } +frame-benchmarking-cli = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249", default-features = false } +frame-executive = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249", default-features = false } +frame-support = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249", default-features = false } +frame-system = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249", default-features = false } +frame-system-benchmarking = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249", default-features = false } +frame-system-rpc-runtime-api = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249", default-features = false } fs2 = "0.4.3" fs4 = "0.9.1" futures = "0.3.31" @@ -115,8 +115,8 @@ log = { version = "0.4.22", default-features = false } memmap2 = "0.9.5" memory-db = { version = "0.34.0", default-features = false } mimalloc = "0.1.43" -mmr-gadget = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -mmr-rpc = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +mmr-gadget = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +mmr-rpc = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } multihash = "0.19.1" nohash-hasher = "0.2.0" num-traits = { version = "0.2.18", default-features = false } @@ -124,43 +124,43 @@ num_cpus = "1.16.0" num_enum = { version = "0.5.3", default-features = false } ouroboros = "0.18.4" pallet-auto-id = { version = "0.1.0", path = "domains/pallets/auto-id", default-features = false } -pallet-balances = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } +pallet-balances = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249", default-features = false } pallet-block-fees = { version = "0.1.0", path = "domains/pallets/block-fees", default-features = false } -pallet-collective = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } -pallet-democracy = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } +pallet-collective = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249", default-features = false } +pallet-democracy = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249", default-features = false } pallet-domain-id = { version = "0.1.0", path = "domains/pallets/domain-id", default-features = false } pallet-domain-sudo = { version = "0.1.0", path = "domains/pallets/domain-sudo", default-features = false } pallet-domains = { version = "0.1.0", path = "crates/pallet-domains", default-features = false } -pallet-ethereum = { version = "4.0.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "b70f725a84c1b6b7e56c9e7381d35863829a7a3c", default-features = false } -pallet-evm = { version = "6.0.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "b70f725a84c1b6b7e56c9e7381d35863829a7a3c", default-features = false } -pallet-evm-chain-id = { version = "1.0.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "b70f725a84c1b6b7e56c9e7381d35863829a7a3c", default-features = false } -pallet-evm-precompile-modexp = { version = "2.0.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "b70f725a84c1b6b7e56c9e7381d35863829a7a3c", default-features = false } -pallet-evm-precompile-sha3fips = { version = "2.0.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "b70f725a84c1b6b7e56c9e7381d35863829a7a3c", default-features = false } -pallet-evm-precompile-simple = { version = "2.0.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "b70f725a84c1b6b7e56c9e7381d35863829a7a3c", default-features = false } +pallet-ethereum = { version = "4.0.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "9d49e36ed5bac38241594f8ba055fdb94991483a", default-features = false } +pallet-evm = { version = "6.0.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "9d49e36ed5bac38241594f8ba055fdb94991483a", default-features = false } +pallet-evm-chain-id = { version = "1.0.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "9d49e36ed5bac38241594f8ba055fdb94991483a", default-features = false } +pallet-evm-precompile-modexp = { version = "2.0.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "9d49e36ed5bac38241594f8ba055fdb94991483a", default-features = false } +pallet-evm-precompile-sha3fips = { version = "2.0.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "9d49e36ed5bac38241594f8ba055fdb94991483a", default-features = false } +pallet-evm-precompile-simple = { version = "2.0.0-dev", git = "https://github.com/polkadot-evm/frontier", rev = "9d49e36ed5bac38241594f8ba055fdb94991483a", default-features = false } pallet-evm-tracker = { version = "0.1.0", path = "domains/pallets/evm-tracker", default-features = false } pallet-messenger = { version = "0.1.0", path = "domains/pallets/messenger", default-features = false } -pallet-mmr = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } -pallet-multisig = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } -pallet-preimage = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } +pallet-mmr = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249", default-features = false } +pallet-multisig = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249", default-features = false } +pallet-preimage = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249", default-features = false } pallet-rewards = { version = "0.1.0", path = "crates/pallet-rewards", default-features = false } pallet-runtime-configs = { version = "0.1.0", path = "crates/pallet-runtime-configs", default-features = false } -pallet-scheduler = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } +pallet-scheduler = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249", default-features = false } pallet-storage-overlay-checks = { version = "0.1.0", path = "domains/test/pallets/storage_overlay_checks", default-features = false } pallet-subspace = { version = "0.1.0", path = "crates/pallet-subspace", default-features = false } pallet-subspace-mmr = { version = "0.1.0", path = "crates/pallet-subspace-mmr", default-features = false } -pallet-sudo = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } -pallet-timestamp = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } +pallet-sudo = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249", default-features = false } +pallet-timestamp = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249", default-features = false } pallet-transaction-fees = { version = "0.1.0", path = "crates/pallet-transaction-fees", default-features = false } -pallet-transaction-payment = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } -pallet-transaction-payment-rpc = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } +pallet-transaction-payment = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249", default-features = false } +pallet-transaction-payment-rpc = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249", default-features = false } pallet-transporter = { version = "0.1.0", path = "domains/pallets/transporter", default-features = false } -pallet-utility = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } +pallet-utility = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249", default-features = false } parity-scale-codec = { version = "3.7.5", default-features = false } parking_lot = "0.12.2" pem = "3.0.4" pin-project = "1.1.5" -precompile-utils = { version = "0.1.0", git = "https://github.com/polkadot-evm/frontier", rev = "b70f725a84c1b6b7e56c9e7381d35863829a7a3c", default-features = false } +precompile-utils = { version = "0.1.0", git = "https://github.com/polkadot-evm/frontier", rev = "9d49e36ed5bac38241594f8ba055fdb94991483a", default-features = false } prometheus = { version = "0.13.0", default-features = false } prometheus-client = "0.23.1" prop-test = "0.1.1" @@ -173,42 +173,42 @@ ring = "0.17.8" rlp = "0.6" rs_merkle = { version = "1.4.2", default-features = false } rust-kzg-blst = { git = "https://github.com/grandinetech/rust-kzg", rev = "8f5f1a0f73b3c529c77cb880ff8d265830c7d7ac", default-features = false } -sc-basic-authorship = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -sc-block-builder = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -sc-chain-spec = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -sc-cli = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } -sc-client-api = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -sc-client-db = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -sc-consensus = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -sc-consensus-slots = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sc-basic-authorship = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +sc-block-builder = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +sc-chain-spec = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +sc-cli = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249", default-features = false } +sc-client-api = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +sc-client-db = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +sc-consensus = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +sc-consensus-slots = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } sc-consensus-subspace = { version = "0.1.0", path = "crates/sc-consensus-subspace" } sc-consensus-subspace-rpc = { version = "0.1.0", path = "crates/sc-consensus-subspace-rpc" } sc-domains = { version = "0.1.0", path = "crates/sc-domains" } -sc-executor = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } -sc-informant = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -sc-keystore = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -sc-network = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -sc-network-common = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -sc-network-gossip = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -sc-network-sync = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } -sc-network-transactions = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -sc-offchain = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sc-executor = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249", default-features = false } +sc-informant = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +sc-keystore = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +sc-network = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +sc-network-common = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +sc-network-gossip = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +sc-network-sync = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249", default-features = false } +sc-network-transactions = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +sc-offchain = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } sc-proof-of-time = { version = "0.1.0", path = "crates/sc-proof-of-time" } -sc-rpc = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -sc-rpc-api = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -sc-rpc-server = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -sc-service = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } -sc-state-db = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -sc-storage-monitor = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } +sc-rpc = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +sc-rpc-api = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +sc-rpc-server = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +sc-service = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249", default-features = false } +sc-state-db = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +sc-storage-monitor = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249", default-features = false } sc-subspace-block-relay = { version = "0.1.0", path = "crates/sc-subspace-block-relay" } sc-subspace-chain-specs = { version = "0.1.0", path = "crates/sc-subspace-chain-specs" } sc-subspace-sync-common = { version = "0.1.0", path = "shared/sc-subspace-sync-common", default-features = false } -sc-sysinfo = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } -sc-telemetry = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -sc-tracing = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -sc-transaction-pool = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -sc-transaction-pool-api = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -sc-utils = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sc-sysinfo = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249", default-features = false } +sc-telemetry = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +sc-tracing = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +sc-transaction-pool = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +sc-transaction-pool-api = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +sc-utils = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } scale-info = { version = "2.11.6", default-features = false } schnellru = "0.2.4" schnorrkel = { version = "0.11.4", default-features = false } @@ -217,48 +217,48 @@ serde = { version = "1.0.216", default-features = false } serde-big-array = "0.5.1" serde_json = "1.0.133" sha2 = { version = "0.10.7", default-features = false } -sp-api = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } -sp-application-crypto = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } -sp-arithmetic = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } +sp-api = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249", default-features = false } +sp-application-crypto = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249", default-features = false } +sp-arithmetic = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249", default-features = false } sp-auto-id = { version = "0.1.0", path = "domains/primitives/auto-id", default-features = false } -sp-block-builder = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } +sp-block-builder = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249", default-features = false } sp-block-fees = { version = "0.1.0", path = "domains/primitives/block-fees", default-features = false } -sp-blockchain = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } -sp-consensus = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -sp-consensus-slots = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } +sp-blockchain = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249", default-features = false } +sp-consensus = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +sp-consensus-slots = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249", default-features = false } sp-consensus-subspace = { version = "0.1.0", path = "crates/sp-consensus-subspace", default-features = false } -sp-core = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } +sp-core = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249", default-features = false } sp-domain-digests = { version = "0.1.0", path = "domains/primitives/digests", default-features = false } sp-domain-sudo = { version = "0.1.0", path = "domains/primitives/domain-sudo", default-features = false } sp-domains = { version = "0.1.0", path = "crates/sp-domains", default-features = false } sp-domains-fraud-proof = { version = "0.1.0", path = "crates/sp-domains-fraud-proof", default-features = false } sp-evm-tracker = { version = "0.1.0", path = "domains/primitives/evm-tracker", default-features = false } sp-executive = { version = "0.1.0", path = "domains/primitives/executive", default-features = false } -sp-externalities = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } +sp-externalities = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249", default-features = false } sp-evm-precompiles = { version = "0.1.0", path = "domains/primitives/evm-precompiles", default-features = false } -sp-genesis-builder = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } -sp-inherents = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } -sp-io = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } -sp-keyring = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -sp-keystore = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +sp-genesis-builder = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249", default-features = false } +sp-inherents = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249", default-features = false } +sp-io = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249", default-features = false } +sp-keyring = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +sp-keystore = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } sp-messenger = { version = "0.1.0", path = "domains/primitives/messenger", default-features = false } sp-messenger-host-functions = { version = "0.1.0", path = "domains/primitives/messenger-host-functions", default-features = false } -sp-mmr-primitives = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } +sp-mmr-primitives = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249", default-features = false } sp-objects = { version = "0.1.0", path = "crates/sp-objects", default-features = false } -sp-offchain = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } -sp-runtime = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } -sp-runtime-interface = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } -sp-session = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } -sp-state-machine = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } -sp-std = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } -sp-storage = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } +sp-offchain = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249", default-features = false } +sp-runtime = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249", default-features = false } +sp-runtime-interface = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249", default-features = false } +sp-session = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249", default-features = false } +sp-state-machine = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249", default-features = false } +sp-std = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249", default-features = false } +sp-storage = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249", default-features = false } sp-subspace-mmr = { version = "0.1.0", path = "crates/sp-subspace-mmr", default-features = false } -sp-timestamp = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } -sp-tracing = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } -sp-transaction-pool = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } -sp-trie = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } -sp-version = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } -sp-weights = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e", default-features = false } +sp-timestamp = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249", default-features = false } +sp-tracing = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249", default-features = false } +sp-transaction-pool = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249", default-features = false } +sp-trie = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249", default-features = false } +sp-version = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249", default-features = false } +sp-weights = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249", default-features = false } spin = "0.9.7" sppark = { version = "0.1.8", git = "https://github.com/autonomys/sppark", rev = "b2a181eb99c8200f1a604f04122551ea39fbf63f" } ss58-registry = "1.51.0" @@ -286,12 +286,12 @@ subspace-test-primitives = { version = "0.1.0", path = "test/subspace-test-primi subspace-test-runtime = { version = "0.1.0", path = "test/subspace-test-runtime" } subspace-test-service = { version = "0.1.0", path = "test/subspace-test-service" } subspace-verification = { version = "0.1.0", path = "crates/subspace-verification", default-features = false } -substrate-bip39 = "0.6.0" -substrate-build-script-utils = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -substrate-frame-rpc-system = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -substrate-prometheus-endpoint = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -substrate-test-client = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -substrate-wasm-builder = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +substrate-bip39 = "=0.6.0" +substrate-build-script-utils = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +substrate-frame-rpc-system = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +substrate-prometheus-endpoint = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +substrate-test-client = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +substrate-wasm-builder = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } supports-color = "3.0.1" tempfile = "3.13.0" thiserror = { version = "2.0.0", default-features = false } @@ -390,55 +390,55 @@ lto = "fat" # Reason: We need to patch substrate dependency of frontier to our fork # TODO: Remove if/when we are using upstream substrate instead of fork [patch."https://github.com/paritytech/polkadot-sdk.git"] -cumulus-primitives-storage-weight-reclaim = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -frame-benchmarking = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -frame-support = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -frame-system = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -sc-block-builder = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -sc-client-db = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -sc-consensus = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -sc-consensus-slots = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -sc-client-api = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -sc-network = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -sc-network-common = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -sc-network-sync = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -sc-rpc = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -sc-service = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -sc-telemetry = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -sc-transaction-pool = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -sc-transaction-pool-api = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -sc-utils = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -sp-api = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -sp-application-crypto = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -sp-arithmetic = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -sp-block-builder = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -sp-blockchain = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -sp-consensus = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -sp-consensus-slots = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -sp-core = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -sp-crypto-hashing = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -sp-database = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -sp-debug-derive = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -sp-externalities = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -sp-inherents = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -sp-io = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -sp-keystore = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -sp-runtime = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -sp-runtime-interface = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -sp-state-machine = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -sp-std = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -sp-storage = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -sp-timestamp = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -sp-trie = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -sp-version = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -sp-weights = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -staging-xcm = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -substrate-prometheus-endpoint = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } -xcm-procedural = { git = "https://github.com/subspace/polkadot-sdk", rev = "2c24a375c740eb93a16f6791fa7da949977b0b6e" } +cumulus-primitives-storage-weight-reclaim = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +frame-benchmarking = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +frame-support = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +frame-system = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +sc-block-builder = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +sc-client-db = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +sc-consensus = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +sc-consensus-slots = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +sc-client-api = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +sc-network = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +sc-network-common = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +sc-network-sync = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +sc-rpc = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +sc-service = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +sc-telemetry = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +sc-transaction-pool = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +sc-transaction-pool-api = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +sc-utils = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +sp-api = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +sp-application-crypto = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +sp-arithmetic = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +sp-block-builder = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +sp-blockchain = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +sp-consensus = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +sp-consensus-slots = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +sp-core = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +sp-crypto-hashing = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +sp-database = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +sp-debug-derive = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +sp-externalities = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +sp-inherents = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +sp-io = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +sp-keystore = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +sp-runtime = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +sp-runtime-interface = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +sp-state-machine = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +sp-std = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +sp-storage = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +sp-timestamp = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +sp-trie = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +sp-version = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +sp-weights = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +staging-xcm = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +substrate-prometheus-endpoint = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } +xcm-procedural = { git = "https://github.com/subspace/polkadot-sdk", rev = "9748ad522c6c80f841fc13c48e60477fc5700249" } [patch."https://github.com/subspace/polkadot-sdk.git"] # De-duplicate extra copy that comes from Substrate repo -substrate-bip39 = "0.6.0" +substrate-bip39 = "=0.6.0" [patch."https://github.com/autonomys/rust-libp2p.git"] # Patch away `libp2p` in our dependency tree with the git version. diff --git a/crates/pallet-domains/src/lib.rs b/crates/pallet-domains/src/lib.rs index 3039020f80f..5d4ed8e299e 100644 --- a/crates/pallet-domains/src/lib.rs +++ b/crates/pallet-domains/src/lib.rs @@ -242,7 +242,6 @@ pub trait WeightInfo { fn withdraw_stake_from_deactivated_operator() -> Weight; } -#[expect(clippy::useless_conversion, reason = "Macro-generated")] #[frame_support::pallet] mod pallet { #[cfg(not(feature = "runtime-benchmarks"))] diff --git a/crates/pallet-domains/src/tests.rs b/crates/pallet-domains/src/tests.rs index d983535cde7..224c5a1bee5 100644 --- a/crates/pallet-domains/src/tests.rs +++ b/crates/pallet-domains/src/tests.rs @@ -392,6 +392,8 @@ fn test_bundle_format_verification() { dest, value, }), + // stable2512: bijective encoding protection field, None for test extrinsics + encoded_call: None, } .into() }; diff --git a/crates/sc-consensus-subspace/src/block_import.rs b/crates/sc-consensus-subspace/src/block_import.rs index fd964ecfc00..80aed40e48f 100644 --- a/crates/sc-consensus-subspace/src/block_import.rs +++ b/crates/sc-consensus-subspace/src/block_import.rs @@ -553,7 +553,7 @@ where let inherent_res = self.client.runtime_api().check_inherents( parent_hash, - Block::new(header, extrinsics), + Block::new(header, extrinsics).into(), inherent_data, )?; diff --git a/crates/sp-domains-fraud-proof/src/execution_prover.rs b/crates/sp-domains-fraud-proof/src/execution_prover.rs index 7d0b1753342..0c907e8f858 100644 --- a/crates/sp-domains-fraud-proof/src/execution_prover.rs +++ b/crates/sp-domains-fraud-proof/src/execution_prover.rs @@ -46,6 +46,7 @@ where call_data: &[u8], delta_changes: Option<(BackendTransaction>, Block::Hash)>, ) -> sp_blockchain::Result { + // Trusted: bounded block-processing context (fraud proof generation) let state = self .backend .state_at(at, sc_client_api::TrieCacheContext::Trusted)?; diff --git a/crates/sp-domains-fraud-proof/src/tests.rs b/crates/sp-domains-fraud-proof/src/tests.rs index 96e80d11c5a..fcbe5bb31ed 100644 --- a/crates/sp-domains-fraud-proof/src/tests.rs +++ b/crates/sp-domains-fraud-proof/src/tests.rs @@ -475,8 +475,8 @@ async fn check_bundle_validity_runtime_api_should_work() { alice.construct_extrinsic_with_tip(alice_nonce, 0, dummy_runtime_call.clone()); let sample_valid_bundle_extrinsics = vec![ - OpaqueExtrinsic::from_bytes(&transfer_to_charlie.encode()).unwrap(), - OpaqueExtrinsic::from_bytes(&transfer_to_charlie_2.encode()).unwrap(), + OpaqueExtrinsic::try_from_encoded_extrinsic(&transfer_to_charlie.encode()).unwrap(), + OpaqueExtrinsic::try_from_encoded_extrinsic(&transfer_to_charlie_2.encode()).unwrap(), ]; { @@ -499,10 +499,12 @@ async fn check_bundle_validity_runtime_api_should_work() { // Here tx index: 2 is invalid let sample_invalid_bundle_with_same_nonce_extrinsic = vec![ - OpaqueExtrinsic::from_bytes(&transfer_to_charlie.encode()).unwrap(), - OpaqueExtrinsic::from_bytes(&transfer_to_charlie_2.encode()).unwrap(), - OpaqueExtrinsic::from_bytes(&transfer_to_charlie_3_duplicate_nonce_extrinsic.encode()) - .unwrap(), + OpaqueExtrinsic::try_from_encoded_extrinsic(&transfer_to_charlie.encode()).unwrap(), + OpaqueExtrinsic::try_from_encoded_extrinsic(&transfer_to_charlie_2.encode()).unwrap(), + OpaqueExtrinsic::try_from_encoded_extrinsic( + &transfer_to_charlie_3_duplicate_nonce_extrinsic.encode(), + ) + .unwrap(), ]; { @@ -554,8 +556,10 @@ async fn check_bundle_validity_runtime_api_should_work() { .check_extrinsics_and_do_pre_dispatch( best_hash, vec![ - OpaqueExtrinsic::from_bytes(&transfer_to_charlie_with_big_tip_1.encode()) - .unwrap() + OpaqueExtrinsic::try_from_encoded_extrinsic( + &transfer_to_charlie_with_big_tip_1.encode() + ) + .unwrap() ], best_number, best_hash, @@ -1435,7 +1439,7 @@ async fn test_evm_domain_total_issuance() { // let mut bundle_with_bad_extrinsics = maybe_bundle.unwrap(); // bundle_with_bad_extrinsics.extrinsics = -// vec![OpaqueExtrinsic::from_bytes(&transfer_from_one_to_bob.encode()).unwrap()]; +// vec![OpaqueExtrinsic::try_from_encoded_extrinsic(&transfer_from_one_to_bob.encode()).unwrap()]; // bundle_with_bad_extrinsics.sealed_header.signature = alice // .key // .pair() diff --git a/crates/sp-domains/src/bundle/bundle_v0.rs b/crates/sp-domains/src/bundle/bundle_v0.rs index 4cd39c4d1ab..bbf00e0bfc0 100644 --- a/crates/sp-domains/src/bundle/bundle_v0.rs +++ b/crates/sp-domains/src/bundle/bundle_v0.rs @@ -84,7 +84,7 @@ impl let opaque_extrinsics = extrinsics .into_iter() .map(|xt| { - OpaqueExtrinsic::from_bytes(&xt.encode()) + OpaqueExtrinsic::try_from_encoded_extrinsic(&xt.encode()) .expect("We have just encoded a valid extrinsic; qed") }) .collect(); diff --git a/crates/subspace-fake-runtime-api/src/lib.rs b/crates/subspace-fake-runtime-api/src/lib.rs index 34a63c70702..1ed679259ee 100644 --- a/crates/subspace-fake-runtime-api/src/lib.rs +++ b/crates/subspace-fake-runtime-api/src/lib.rs @@ -54,7 +54,7 @@ sp_api::impl_runtime_apis! { unreachable!() } - fn execute_block(_block: Block) { + fn execute_block(_block: ::LazyBlock) { unreachable!() } @@ -91,7 +91,7 @@ sp_api::impl_runtime_apis! { } fn check_inherents( - _block: Block, + _block: ::LazyBlock, _data: sp_inherents::InherentData, ) -> sp_inherents::CheckInherentsResult { unreachable!() @@ -461,6 +461,13 @@ sp_api::impl_runtime_apis! { unreachable!() } + fn generate_ancestry_proof( + _prev_block_number: BlockNumber, + _best_known_block_number: Option, + ) -> Result, mmr::Error> { + Err(mmr::Error::GenerateProof) + } + fn verify_proof(_leaves: Vec, _proof: mmr::LeafProof) -> Result<(), mmr::Error> { diff --git a/crates/subspace-malicious-operator/src/lib.rs b/crates/subspace-malicious-operator/src/lib.rs index e36bfca2e19..ea7589ad54d 100644 --- a/crates/subspace-malicious-operator/src/lib.rs +++ b/crates/subspace-malicious-operator/src/lib.rs @@ -274,6 +274,7 @@ pub fn create_malicious_operator_configuration( rate_limit: domain_cli_args.rpc_rate_limit()?, rate_limit_whitelisted_ips: vec![], rate_limit_trust_proxy_headers: false, + request_logger_limit: 1024, }, prometheus_config: domain_cli_args.prometheus_config(9616, &chain_spec)?, telemetry_endpoints, diff --git a/crates/subspace-malicious-operator/src/malicious_bundle_tamper.rs b/crates/subspace-malicious-operator/src/malicious_bundle_tamper.rs index a56481f7661..408aef873c1 100644 --- a/crates/subspace-malicious-operator/src/malicious_bundle_tamper.rs +++ b/crates/subspace-malicious-operator/src/malicious_bundle_tamper.rs @@ -308,7 +308,7 @@ where self.domain_client.info().best_hash, Default::default(), )?; - OpaqueExtrinsic::from_bytes(&inherent_tx.encode()) + OpaqueExtrinsic::try_from_encoded_extrinsic(&inherent_tx.encode()) .expect("We have just encoded a valid extrinsic; qed") } InvalidBundleType::InvalidBundleWeight => { diff --git a/crates/subspace-node/src/main.rs b/crates/subspace-node/src/main.rs index 981badf471a..0b3da8cbc71 100644 --- a/crates/subspace-node/src/main.rs +++ b/crates/subspace-node/src/main.rs @@ -266,6 +266,7 @@ fn main() -> Result<(), Error> { let db = backend.expose_db(); let storage = backend.expose_storage(); + // None = no shared trie cache for storage benchmarks cmd.run(config, client, db, storage, None) } BenchmarkCmd::Overhead(_cmd) => { diff --git a/crates/subspace-runtime/src/fees.rs b/crates/subspace-runtime/src/fees.rs index 71069d48ea6..7a8c3978822 100644 --- a/crates/subspace-runtime/src/fees.rs +++ b/crates/subspace-runtime/src/fees.rs @@ -27,6 +27,12 @@ pub struct LiquidityInfo { /// fees and distributes storage/compute fees and tip separately. pub struct OnChargeTransaction; +// Required by OnChargeTransaction since stable2512. Credit = () because we don't +// store withdrawn fees as a typed credit — they're burned/transferred directly. +impl pallet_transaction_payment::TxCreditHold for OnChargeTransaction { + type Credit = (); +} + impl pallet_transaction_payment::OnChargeTransaction for OnChargeTransaction { type LiquidityInfo = Option; type Balance = Balance; diff --git a/crates/subspace-runtime/src/lib.rs b/crates/subspace-runtime/src/lib.rs index a518c9d4cbd..cfe93deef4e 100644 --- a/crates/subspace-runtime/src/lib.rs +++ b/crates/subspace-runtime/src/lib.rs @@ -1348,7 +1348,7 @@ impl_runtime_apis! { VERSION } - fn execute_block(block: Block) { + fn execute_block(block: ::LazyBlock) { Executive::execute_block(block); } @@ -1385,7 +1385,7 @@ impl_runtime_apis! { } fn check_inherents( - block: Block, + block: ::LazyBlock, data: sp_inherents::InherentData, ) -> sp_inherents::CheckInherentsResult { data.check_extrinsics(&block) @@ -1829,6 +1829,13 @@ impl_runtime_apis! { ) } + fn generate_ancestry_proof( + prev_block_number: BlockNumber, + best_known_block_number: Option, + ) -> Result, mmr::Error> { + Mmr::generate_ancestry_proof(prev_block_number, best_known_block_number) + } + fn verify_proof(leaves: Vec, proof: mmr::LeafProof) -> Result<(), mmr::Error> { diff --git a/crates/subspace-runtime/src/weights/pallet_domains.rs b/crates/subspace-runtime/src/weights/pallet_domains.rs index bd9a3563da0..204957d3d8d 100644 --- a/crates/subspace-runtime/src/weights/pallet_domains.rs +++ b/crates/subspace-runtime/src/weights/pallet_domains.rs @@ -1,23 +1,23 @@ //! Autogenerated weights for `pallet_domains` //! -//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 49.1.0 -//! DATE: 2026-03-27, STEPS: `2`, REPEAT: `1`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 46.2.0 +//! DATE: 2025-10-15, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` //! WORST CASE MAP SIZE: `1000000` -//! HOSTNAME: `macmini`, CPU: `` +//! HOSTNAME: `protocol-team-testing`, CPU: `AMD Ryzen 5 3600 6-Core Processor` //! WASM-EXECUTION: `Compiled`, CHAIN: `None`, DB CACHE: 1024 // Executed Command: -// ./target/release/subspace-node +// ./target/production/subspace-node // benchmark // pallet -// --runtime=./target/release/wbuild/subspace-runtime/subspace_runtime.compact.compressed.wasm +// --runtime=./target/production/wbuild/subspace-runtime/subspace_runtime.compact.compressed.wasm // --extrinsic=* // --wasm-execution=compiled // --genesis-builder=none // --heap-pages=4096 -// --steps=2 -// --repeat=1 +// --steps=50 +// --repeat=20 // --pallet=pallet_domains // --output=./crates/subspace-runtime/src/weights/pallet_domains.rs @@ -76,8 +76,8 @@ impl pallet_domains::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1931` // Estimated: `12821` - // Minimum execution time: 118_000_000 picoseconds. - Weight::from_parts(118_000_000, 0) + // Minimum execution time: 143_267_000 picoseconds. + Weight::from_parts(146_787_000, 0) .saturating_add(Weight::from_parts(0, 12821)) .saturating_add(T::DbWeight::get().reads(22)) .saturating_add(T::DbWeight::get().writes(17)) @@ -90,8 +90,8 @@ impl pallet_domains::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1092` // Estimated: `4557` - // Minimum execution time: 23_000_000 picoseconds. - Weight::from_parts(23_000_000, 0) + // Minimum execution time: 28_839_000 picoseconds. + Weight::from_parts(31_030_000, 0) .saturating_add(Weight::from_parts(0, 4557)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -109,15 +109,20 @@ impl pallet_domains::WeightInfo for WeightInfo { /// Storage: `Domains::DomainStakingSummary` (r:1 w:1) /// Proof: `Domains::DomainStakingSummary` (`max_values`: None, `max_size`: None, mode: `Measured`) /// The range of component `n` is `[1, 100]`. - fn handle_bad_receipt(_n: u32, ) -> Weight { + fn handle_bad_receipt(n: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `996 + n * (192 ±0)` - // Estimated: `268731` - // Minimum execution time: 38_000_000 picoseconds. - Weight::from_parts(1_486_000_000, 0) - .saturating_add(Weight::from_parts(0, 268731)) - .saturating_add(T::DbWeight::get().reads(204)) - .saturating_add(T::DbWeight::get().writes(104)) + // Measured: `1001 + n * (192 ±0)` + // Estimated: `4466 + n * (2667 ±0)` + // Minimum execution time: 48_829_000 picoseconds. + Weight::from_parts(50_859_000, 0) + .saturating_add(Weight::from_parts(0, 4466)) + // Standard Error: 36_224 + .saturating_add(Weight::from_parts(14_965_948, 0).saturating_mul(n.into())) + .saturating_add(T::DbWeight::get().reads(4)) + .saturating_add(T::DbWeight::get().reads((2_u64).saturating_mul(n.into()))) + .saturating_add(T::DbWeight::get().writes(4)) + .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(n.into()))) + .saturating_add(Weight::from_parts(0, 2667).saturating_mul(n.into())) } /// Storage: `Domains::Operators` (r:200 w:100) /// Proof: `Domains::Operators` (`max_values`: None, `max_size`: None, mode: `Measured`) @@ -127,27 +132,29 @@ impl pallet_domains::WeightInfo for WeightInfo { /// Proof: `Domains::DomainStakingSummary` (`max_values`: None, `max_size`: None, mode: `Measured`) /// Storage: `Domains::PendingSlashes` (r:1 w:1) /// Proof: `Domains::PendingSlashes` (`max_values`: None, `max_size`: None, mode: `Measured`) + /// Storage: `Domains::AccumulatedTreasuryFunds` (r:1 w:1) + /// Proof: `Domains::AccumulatedTreasuryFunds` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) /// The range of component `n` is `[1, 100]`. /// The range of component `s` is `[0, 100]`. fn confirm_domain_block(n: u32, s: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `0 + n * (384 ±0) + s * (225 ±0)` - // Estimated: `270426 + n * (2603 ±0) + s * (1077 ±79)` - // Minimum execution time: 1_370_000_000 picoseconds. - Weight::from_parts(1_370_000_000, 0) + // Measured: `0 + n * (364 ±0) + s * (223 ±0)` + // Estimated: `270426 + n * (2588 ±0) + s * (976 ±0)` + // Minimum execution time: 1_493_428_000 picoseconds. + Weight::from_parts(1_501_198_000, 0) .saturating_add(Weight::from_parts(0, 270426)) - // Standard Error: 7_737_932 - .saturating_add(Weight::from_parts(14_165_053, 0).saturating_mul(n.into())) - // Standard Error: 7_738_061 - .saturating_add(Weight::from_parts(8_792_747, 0).saturating_mul(s.into())) - .saturating_add(T::DbWeight::get().reads(1)) + // Standard Error: 263_059 + .saturating_add(Weight::from_parts(12_406_325, 0).saturating_mul(n.into())) + // Standard Error: 263_301 + .saturating_add(Weight::from_parts(9_421_703, 0).saturating_mul(s.into())) + .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().reads((2_u64).saturating_mul(n.into()))) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(s.into()))) - .saturating_add(T::DbWeight::get().writes(1)) + .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(n.into()))) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(s.into()))) - .saturating_add(Weight::from_parts(0, 2603).saturating_mul(n.into())) - .saturating_add(Weight::from_parts(0, 1077).saturating_mul(s.into())) + .saturating_add(Weight::from_parts(0, 2588).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(0, 976).saturating_mul(s.into())) } /// Storage: `Domains::DomainStakingSummary` (r:1 w:1) /// Proof: `Domains::DomainStakingSummary` (`max_values`: None, `max_size`: None, mode: `Measured`) @@ -158,15 +165,20 @@ impl pallet_domains::WeightInfo for WeightInfo { /// Storage: `Domains::LatestSubmittedER` (r:100 w:0) /// Proof: `Domains::LatestSubmittedER` (`max_values`: None, `max_size`: None, mode: `Measured`) /// The range of component `n` is `[1, 100]`. - fn operator_reward_tax_and_restake(_n: u32, ) -> Weight { + fn operator_reward_tax_and_restake(n: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `460 + n * (208 ±0)` - // Estimated: `269794` - // Minimum execution time: 18_000_000 picoseconds. - Weight::from_parts(429_000_000, 0) - .saturating_add(Weight::from_parts(0, 269794)) - .saturating_add(T::DbWeight::get().reads(202)) - .saturating_add(T::DbWeight::get().writes(101)) + // Measured: `464 + n * (208 ±0)` + // Estimated: `3929 + n * (2683 ±0)` + // Minimum execution time: 28_310_000 picoseconds. + Weight::from_parts(36_693_887, 0) + .saturating_add(Weight::from_parts(0, 3929)) + // Standard Error: 13_243 + .saturating_add(Weight::from_parts(5_041_426, 0).saturating_mul(n.into())) + .saturating_add(T::DbWeight::get().reads(2)) + .saturating_add(T::DbWeight::get().reads((2_u64).saturating_mul(n.into()))) + .saturating_add(T::DbWeight::get().writes(1)) + .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(n.into()))) + .saturating_add(Weight::from_parts(0, 2683).saturating_mul(n.into())) } /// Storage: `Domains::PendingSlashes` (r:1 w:1) /// Proof: `Domains::PendingSlashes` (`max_values`: None, `max_size`: None, mode: `Measured`) @@ -191,15 +203,20 @@ impl pallet_domains::WeightInfo for WeightInfo { /// Storage: `Domains::OperatorIdOwner` (r:0 w:1) /// Proof: `Domains::OperatorIdOwner` (`max_values`: None, `max_size`: None, mode: `Measured`) /// The range of component `n` is `[0, 9]`. - fn slash_operator(_n: u32, ) -> Weight { + fn slash_operator(n: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `1294 + n * (347 ±0)` - // Estimated: `32636` - // Minimum execution time: 161_000_000 picoseconds. - Weight::from_parts(716_000_000, 0) - .saturating_add(Weight::from_parts(0, 32636)) - .saturating_add(T::DbWeight::get().reads(59)) - .saturating_add(T::DbWeight::get().writes(48)) + // Measured: `1352 + n * (341 ±0)` + // Estimated: `8799 + n * (2816 ±0)` + // Minimum execution time: 167_876_000 picoseconds. + Weight::from_parts(182_260_408, 0) + .saturating_add(Weight::from_parts(0, 8799)) + // Standard Error: 86_235 + .saturating_add(Weight::from_parts(62_612_061, 0).saturating_mul(n.into())) + .saturating_add(T::DbWeight::get().reads(14)) + .saturating_add(T::DbWeight::get().reads((5_u64).saturating_mul(n.into()))) + .saturating_add(T::DbWeight::get().writes(12)) + .saturating_add(T::DbWeight::get().writes((4_u64).saturating_mul(n.into()))) + .saturating_add(Weight::from_parts(0, 2816).saturating_mul(n.into())) } /// Storage: `Domains::DomainStakingSummary` (r:1 w:1) /// Proof: `Domains::DomainStakingSummary` (`max_values`: None, `max_size`: None, mode: `Measured`) @@ -207,7 +224,7 @@ impl pallet_domains::WeightInfo for WeightInfo { /// Proof: `Subspace::BlockSlots` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) /// Storage: `Domains::EpochStartSlot` (r:1 w:1) /// Proof: `Domains::EpochStartSlot` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) - /// Storage: `Domains::OperatorBundleCountInEpoch` (r:512 w:0) + /// Storage: `Domains::OperatorBundleCountInEpoch` (r:1 w:0) /// Proof: `Domains::OperatorBundleCountInEpoch` (`max_values`: None, `max_size`: None, mode: `Measured`) /// Storage: `Domains::DomainRegistry` (r:1 w:0) /// Proof: `Domains::DomainRegistry` (`max_values`: None, `max_size`: None, mode: `Measured`) @@ -226,15 +243,18 @@ impl pallet_domains::WeightInfo for WeightInfo { /// Storage: `Domains::OperatorEpochSharePrice` (r:0 w:512) /// Proof: `Domains::OperatorEpochSharePrice` (`max_values`: None, `max_size`: None, mode: `Measured`) /// The range of component `p` is `[0, 512]`. - fn finalize_domain_epoch_staking(_p: u32, ) -> Weight { + fn finalize_domain_epoch_staking(p: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `108253` - // Estimated: `1376443` - // Minimum execution time: 3_347_000_000 picoseconds. - Weight::from_parts(4_573_000_000, 0) - .saturating_add(Weight::from_parts(0, 1376443)) - .saturating_add(T::DbWeight::get().reads(1543)) - .saturating_add(T::DbWeight::get().writes(1027)) + // Measured: `108279` + // Estimated: `1376469` + // Minimum execution time: 3_292_159_000 picoseconds. + Weight::from_parts(3_429_844_051, 0) + .saturating_add(Weight::from_parts(0, 1376469)) + // Standard Error: 6_943 + .saturating_add(Weight::from_parts(2_494_754, 0).saturating_mul(p.into())) + .saturating_add(T::DbWeight::get().reads(1032)) + .saturating_add(T::DbWeight::get().writes(3)) + .saturating_add(T::DbWeight::get().writes((2_u64).saturating_mul(p.into()))) } /// Storage: `Domains::NextRuntimeId` (r:1 w:1) /// Proof: `Domains::NextRuntimeId` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) @@ -244,8 +264,8 @@ impl pallet_domains::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `1485` - // Minimum execution time: 20_555_000_000 picoseconds. - Weight::from_parts(20_555_000_000, 0) + // Minimum execution time: 21_076_570_000 picoseconds. + Weight::from_parts(21_305_945_000, 0) .saturating_add(Weight::from_parts(0, 1485)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) @@ -258,8 +278,8 @@ impl pallet_domains::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `2481066` // Estimated: `2484531` - // Minimum execution time: 21_329_000_000 picoseconds. - Weight::from_parts(21_329_000_000, 0) + // Minimum execution time: 22_573_128_000 picoseconds. + Weight::from_parts(22_732_705_000, 0) .saturating_add(Weight::from_parts(0, 2484531)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -298,8 +318,8 @@ impl pallet_domains::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `2481138` // Estimated: `2484603` - // Minimum execution time: 5_664_000_000 picoseconds. - Weight::from_parts(5_664_000_000, 0) + // Minimum execution time: 6_094_250_000 picoseconds. + Weight::from_parts(6_150_728_000, 0) .saturating_add(Weight::from_parts(0, 2484603)) .saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().writes(14)) @@ -326,6 +346,8 @@ impl pallet_domains::WeightInfo for WeightInfo { /// Proof: `Subspace::BlockSlots` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) /// Storage: `Domains::EpochStartSlot` (r:1 w:1) /// Proof: `Domains::EpochStartSlot` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) + /// Storage: `Domains::OperatorBundleCountInEpoch` (r:1 w:0) + /// Proof: `Domains::OperatorBundleCountInEpoch` (`max_values`: None, `max_size`: None, mode: `Measured`) /// Storage: `Domains::LatestSubmittedER` (r:1 w:0) /// Proof: `Domains::LatestSubmittedER` (`max_values`: None, `max_size`: None, mode: `Measured`) /// Storage: `Domains::InvalidBundleAuthors` (r:1 w:0) @@ -346,10 +368,10 @@ impl pallet_domains::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `684` // Estimated: `6196` - // Minimum execution time: 145_000_000 picoseconds. - Weight::from_parts(145_000_000, 0) + // Minimum execution time: 172_296_000 picoseconds. + Weight::from_parts(179_666_000, 0) .saturating_add(Weight::from_parts(0, 6196)) - .saturating_add(T::DbWeight::get().reads(16)) + .saturating_add(T::DbWeight::get().reads(17)) .saturating_add(T::DbWeight::get().writes(13)) } /// Storage: `Domains::Operators` (r:1 w:1) @@ -374,8 +396,8 @@ impl pallet_domains::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1261` // Estimated: `6196` - // Minimum execution time: 114_000_000 picoseconds. - Weight::from_parts(114_000_000, 0) + // Minimum execution time: 133_327_000 picoseconds. + Weight::from_parts(140_037_000, 0) .saturating_add(Weight::from_parts(0, 6196)) .saturating_add(T::DbWeight::get().reads(10)) .saturating_add(T::DbWeight::get().writes(7)) @@ -398,8 +420,8 @@ impl pallet_domains::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `711` // Estimated: `4176` - // Minimum execution time: 33_000_000 picoseconds. - Weight::from_parts(33_000_000, 0) + // Minimum execution time: 46_189_000 picoseconds. + Weight::from_parts(55_569_000, 0) .saturating_add(Weight::from_parts(0, 4176)) .saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().writes(3)) @@ -432,8 +454,8 @@ impl pallet_domains::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1455` // Estimated: `6196` - // Minimum execution time: 95_000_000 picoseconds. - Weight::from_parts(95_000_000, 0) + // Minimum execution time: 119_678_000 picoseconds. + Weight::from_parts(128_637_000, 0) .saturating_add(Weight::from_parts(0, 6196)) .saturating_add(T::DbWeight::get().reads(13)) .saturating_add(T::DbWeight::get().writes(7)) @@ -457,15 +479,16 @@ impl pallet_domains::WeightInfo for WeightInfo { /// Storage: `Domains::Deposits` (r:1 w:1) /// Proof: `Domains::Deposits` (`max_values`: None, `max_size`: None, mode: `Measured`) /// The range of component `w` is `[1, 32]`. - fn unlock_funds(_w: u32, ) -> Weight { + fn unlock_funds(w: u32, ) -> Weight { // Proof Size summary in bytes: // Measured: `1191 + w * (36 ±0)` - // Estimated: `5808` - // Minimum execution time: 92_000_000 picoseconds. - Weight::from_parts(94_000_000, 0) - .saturating_add(Weight::from_parts(0, 5808)) + // Estimated: `4656 + w * (36 ±0)` + // Minimum execution time: 104_997_000 picoseconds. + Weight::from_parts(118_275_973, 0) + .saturating_add(Weight::from_parts(0, 4656)) .saturating_add(T::DbWeight::get().reads(9)) .saturating_add(T::DbWeight::get().writes(5)) + .saturating_add(Weight::from_parts(0, 36).saturating_mul(w.into())) } /// Storage: `Domains::Operators` (r:1 w:1) /// Proof: `Domains::Operators` (`max_values`: None, `max_size`: None, mode: `Measured`) @@ -495,8 +518,8 @@ impl pallet_domains::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1362` // Estimated: `8799` - // Minimum execution time: 163_000_000 picoseconds. - Weight::from_parts(163_000_000, 0) + // Minimum execution time: 187_916_000 picoseconds. + Weight::from_parts(196_776_000, 0) .saturating_add(Weight::from_parts(0, 8799)) .saturating_add(T::DbWeight::get().reads(14)) .saturating_add(T::DbWeight::get().writes(9)) @@ -507,8 +530,8 @@ impl pallet_domains::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `526` // Estimated: `3991` - // Minimum execution time: 22_000_000 picoseconds. - Weight::from_parts(22_000_000, 0) + // Minimum execution time: 29_640_000 picoseconds. + Weight::from_parts(31_689_000, 0) .saturating_add(Weight::from_parts(0, 3991)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -519,8 +542,8 @@ impl pallet_domains::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `52` // Estimated: `6196` - // Minimum execution time: 39_000_000 picoseconds. - Weight::from_parts(39_000_000, 0) + // Minimum execution time: 36_199_000 picoseconds. + Weight::from_parts(36_729_000, 0) .saturating_add(Weight::from_parts(0, 6196)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -551,8 +574,8 @@ impl pallet_domains::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `773` // Estimated: `4238` - // Minimum execution time: 52_000_000 picoseconds. - Weight::from_parts(52_000_000, 0) + // Minimum execution time: 64_938_000 picoseconds. + Weight::from_parts(66_248_000, 0) .saturating_add(Weight::from_parts(0, 4238)) .saturating_add(T::DbWeight::get().reads(10)) .saturating_add(T::DbWeight::get().writes(7)) @@ -605,8 +628,8 @@ impl pallet_domains::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1467` // Estimated: `7407` - // Minimum execution time: 511_000_000 picoseconds. - Weight::from_parts(511_000_000, 0) + // Minimum execution time: 596_047_000 picoseconds. + Weight::from_parts(607_967_000, 0) .saturating_add(Weight::from_parts(0, 7407)) .saturating_add(T::DbWeight::get().reads(23)) .saturating_add(T::DbWeight::get().writes(2)) @@ -659,8 +682,8 @@ impl pallet_domains::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1497` // Estimated: `7437` - // Minimum execution time: 553_000_000 picoseconds. - Weight::from_parts(553_000_000, 0) + // Minimum execution time: 593_917_000 picoseconds. + Weight::from_parts(604_857_000, 0) .saturating_add(Weight::from_parts(0, 7437)) .saturating_add(T::DbWeight::get().reads(23)) .saturating_add(T::DbWeight::get().writes(2)) @@ -679,8 +702,8 @@ impl pallet_domains::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `2483106` // Estimated: `2489046` - // Minimum execution time: 1_224_000_000 picoseconds. - Weight::from_parts(1_224_000_000, 0) + // Minimum execution time: 1_446_039_000 picoseconds. + Weight::from_parts(1_478_279_000, 0) .saturating_add(Weight::from_parts(0, 2489046)) .saturating_add(T::DbWeight::get().reads(6)) } @@ -696,8 +719,8 @@ impl pallet_domains::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `644` // Estimated: `4109` - // Minimum execution time: 32_000_000 picoseconds. - Weight::from_parts(32_000_000, 0) + // Minimum execution time: 43_249_000 picoseconds. + Weight::from_parts(44_909_000, 0) .saturating_add(Weight::from_parts(0, 4109)) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) @@ -714,8 +737,8 @@ impl pallet_domains::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `614` // Estimated: `4079` - // Minimum execution time: 30_000_000 picoseconds. - Weight::from_parts(30_000_000, 0) + // Minimum execution time: 36_599_000 picoseconds. + Weight::from_parts(39_189_000, 0) .saturating_add(Weight::from_parts(0, 4079)) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) @@ -740,8 +763,8 @@ impl pallet_domains::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `744` // Estimated: `4209` - // Minimum execution time: 34_000_000 picoseconds. - Weight::from_parts(34_000_000, 0) + // Minimum execution time: 44_769_000 picoseconds. + Weight::from_parts(48_629_000, 0) .saturating_add(Weight::from_parts(0, 4209)) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(4)) @@ -776,8 +799,8 @@ impl pallet_domains::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1456` // Estimated: `6196` - // Minimum execution time: 94_000_000 picoseconds. - Weight::from_parts(94_000_000, 0) + // Minimum execution time: 119_118_000 picoseconds. + Weight::from_parts(124_598_000, 0) .saturating_add(Weight::from_parts(0, 6196)) .saturating_add(T::DbWeight::get().reads(14)) .saturating_add(T::DbWeight::get().writes(8)) diff --git a/crates/subspace-service/src/config.rs b/crates/subspace-service/src/config.rs index 57500d181eb..c397b7fb593 100644 --- a/crates/subspace-service/src/config.rs +++ b/crates/subspace-service/src/config.rs @@ -208,6 +208,8 @@ impl From for Configuration { force_synced: configuration.network.force_synced, // Subspace does not use warp sync min_peers_to_start_warp_sync: None, + // Substrate's default + idle_connection_timeout: std::time::Duration::from_secs(10), }, // Not used on consensus chain keystore: KeystoreConfig::InMemory, @@ -240,6 +242,8 @@ impl From for Configuration { rate_limit_trust_proxy_headers: configuration .rpc_options .rate_limit_trust_proxy_headers, + // stable2512: max bytes logged per RPC request for debugging + request_logger_limit: 1024, }, prometheus_config: configuration .prometheus_listen_on diff --git a/crates/subspace-service/src/lib.rs b/crates/subspace-service/src/lib.rs index 8fa03d20520..10122e325ae 100644 --- a/crates/subspace-service/src/lib.rs +++ b/crates/subspace-service/src/lib.rs @@ -1338,6 +1338,8 @@ where telemetry: telemetry.as_mut(), tx_handler_controller, sync_service: sync_service.clone(), + // None: trace_block RPC not supported, Subspace uses its own tracing + tracing_execute_block: None, })?; Ok(NewFull { diff --git a/crates/subspace-service/src/sync_from_dsn.rs b/crates/subspace-service/src/sync_from_dsn.rs index 4d4b91989e3..6b9aa413302 100644 --- a/crates/subspace-service/src/sync_from_dsn.rs +++ b/crates/subspace-service/src/sync_from_dsn.rs @@ -376,7 +376,7 @@ where } } - while notifications.try_next().is_ok() { + while notifications.try_recv().is_ok() { // Just drain extra messages if there are any } diff --git a/crates/subspace-service/src/task_spawner.rs b/crates/subspace-service/src/task_spawner.rs index 4ef94196cd4..9e7d29796f1 100644 --- a/crates/subspace-service/src/task_spawner.rs +++ b/crates/subspace-service/src/task_spawner.rs @@ -77,6 +77,7 @@ where tx_handler_controller, sync_service, telemetry, + tracing_execute_block, } = params; let chain_info = client.usage_info().chain; @@ -136,22 +137,25 @@ where let rpc_id_provider = config.rpc.id_provider.take(); // jsonrpsee RPC + // stable2512: gen_rpc_module now takes GenRpcModuleParams struct (re-exported from our fork) + // instead of positional args let gen_rpc_module = || { - gen_rpc_module( - task_manager.spawn_handle(), - client.clone(), - transaction_pool.clone(), - keystore.clone(), - system_rpc_tx.clone(), - config.impl_name.clone(), - config.impl_version.clone(), - config.chain_spec.as_ref(), - &config.state_pruning, - config.blocks_pruning, - backend.clone(), - &*rpc_builder, - None, - ) + gen_rpc_module(sc_service::GenRpcModuleParams { + spawn_handle: task_manager.spawn_handle(), + client: client.clone(), + transaction_pool: transaction_pool.clone(), + keystore: keystore.clone(), + system_rpc_tx: system_rpc_tx.clone(), + impl_name: config.impl_name.clone(), + impl_version: config.impl_version.clone(), + chain_spec: config.chain_spec.as_ref(), + state_pruning: &config.state_pruning, + blocks_pruning: config.blocks_pruning, + backend: backend.clone(), + rpc_builder: &*rpc_builder, + metrics: None, + tracing_execute_block: tracing_execute_block.clone(), + }) }; let rpc_server_handle = start_rpc_servers( diff --git a/domains/client/block-builder/src/custom_api.rs b/domains/client/block-builder/src/custom_api.rs index d0e0d438271..931ceefd521 100644 --- a/domains/client/block-builder/src/custom_api.rs +++ b/domains/client/block-builder/src/custom_api.rs @@ -236,6 +236,7 @@ where backend: Arc, executor: Arc, ) -> Result { + // Trusted: bounded block-building context let state = backend.state_at(parent_hash, sc_client_api::TrieCacheContext::Trusted)?; let trie_backend = state.as_trie_backend(); let state_runtime_code = sp_state_machine::backend::BackendRuntimeCode::new(trie_backend); diff --git a/domains/client/block-preprocessor/src/lib.rs b/domains/client/block-preprocessor/src/lib.rs index 930fd5ee157..f76e6516379 100644 --- a/domains/client/block-preprocessor/src/lib.rs +++ b/domains/client/block-preprocessor/src/lib.rs @@ -291,6 +291,7 @@ where &self, parent_domain_hash: Block::Hash, ) -> sp_blockchain::Result> { + // Trusted: bounded bundle-validation context let state = self .backend .state_at(parent_domain_hash, sc_client_api::TrieCacheContext::Trusted)?; diff --git a/domains/client/domain-operator/src/tests.rs b/domains/client/domain-operator/src/tests.rs index 708d89434f2..23335a8048e 100644 --- a/domains/client/domain-operator/src/tests.rs +++ b/domains/client/domain-operator/src/tests.rs @@ -1263,7 +1263,9 @@ async fn test_evm_domain_gas_estimates() { assert_eq!( (call_info.used_gas.standard, call_info.used_gas.effective), // The exact estimate is not important, but we want to know if it changes - (21_400.into(), 21_400.into()), + // Updated from 21_400 in stable2512 due to Frontier EVM config + // change from Pectra to Osaka (EIP-7939) + (22_000.into(), 22_000.into()), "Incorrect EVM Call gas estimate: {evm_call:?} {call_info:?}", ); } @@ -2223,9 +2225,10 @@ async fn test_bad_invalid_bundle_fraud_proof_is_rejected() { // UndecodableTx bundles.push({ let (_, mut b) = ferdie.produce_slot_and_wait_for_bundle_submission().await; - let undecodable_tx = - OpaqueExtrinsic::from_bytes(&rand::random::<[u8; 5]>().to_vec().encode()) - .expect("raw byte encoding and decoding never fails; qed"); + let undecodable_tx = OpaqueExtrinsic::try_from_encoded_extrinsic( + &rand::random::<[u8; 5]>().to_vec().encode(), + ) + .expect("raw byte encoding and decoding never fails; qed"); let mut exts = b.extrinsics().to_vec(); exts.push(undecodable_tx); exts.extend_from_slice(valid_bundle.extrinsics()); @@ -3237,7 +3240,7 @@ async fn test_true_invalid_bundles_undecodeable_tx_proof_creation_and_verificati let undecodable_tx = || { let undecodable_extrinsic = rand::random::<[u8; 5]>().to_vec(); - OpaqueExtrinsic::from_bytes(&undecodable_extrinsic.encode()) + OpaqueExtrinsic::try_from_encoded_extrinsic(&undecodable_extrinsic.encode()) .expect("raw byte encoding and decoding never fails; qed") }; diff --git a/domains/client/eth-service/src/rpc.rs b/domains/client/eth-service/src/rpc.rs index 0d250ad8792..2d0886209aa 100644 --- a/domains/client/eth-service/src/rpc.rs +++ b/domains/client/eth-service/src/rpc.rs @@ -151,7 +151,6 @@ where Eth::::new( client.clone(), pool.clone(), - pool.clone(), converter, sync.clone(), signers, @@ -179,6 +178,7 @@ where filter_pool, 500_usize, // max stored filters max_past_logs, + 10_000_u32, // max block range for eth_getLogs (stable2512: new param to prevent overly wide queries) block_data_cache, ) .into_rpc(), diff --git a/domains/pallets/auto-id/src/lib.rs b/domains/pallets/auto-id/src/lib.rs index 2ecfd2fee78..673f41b2b28 100644 --- a/domains/pallets/auto-id/src/lib.rs +++ b/domains/pallets/auto-id/src/lib.rs @@ -241,7 +241,6 @@ pub struct CertificateAction { pub action_type: CertificateActionType, } -#[expect(clippy::useless_conversion, reason = "Macro-generated")] #[frame_support::pallet] mod pallet { use super::*; diff --git a/domains/pallets/block-fees/src/fees.rs b/domains/pallets/block-fees/src/fees.rs index 2bbbf2ad0d7..a4340b267bb 100644 --- a/domains/pallets/block-fees/src/fees.rs +++ b/domains/pallets/block-fees/src/fees.rs @@ -21,6 +21,15 @@ type NegativeImbalanceOf = >>::NegativeImbala /// fees and distributes storage/compute fees and tip separately. pub struct OnChargeDomainTransaction(PhantomData); +// Required by OnChargeTransaction since stable2512. Credit = () because domain +// fees are burned/transferred directly, not stored as typed credits. +impl pallet_transaction_payment::TxCreditHold for OnChargeDomainTransaction +where + T: pallet_transaction_payment::Config, +{ + type Credit = (); +} + impl pallet_transaction_payment::OnChargeTransaction for OnChargeDomainTransaction where T: pallet_transaction_payment::Config + crate::Config>, diff --git a/domains/pallets/executive/src/lib.rs b/domains/pallets/executive/src/lib.rs index 1421ec2698b..7043f5c72ac 100644 --- a/domains/pallets/executive/src/lib.rs +++ b/domains/pallets/executive/src/lib.rs @@ -35,6 +35,7 @@ pub mod weights; #[cfg(not(feature = "std"))] extern crate alloc; +use frame_executive::OnInitializeWithWeightRegistration; use frame_support::dispatch::{ DispatchClass, DispatchErrorWithPostInfo, DispatchInfo, GetDispatchInfo, Pays, PostDispatchInfo, }; @@ -43,15 +44,15 @@ use frame_support::traits::fungible::{Inspect, Mutate}; use frame_support::traits::tokens::{Fortitude, Precision, Preservation}; use frame_support::traits::{ BeforeAllRuntimeMigrations, ExecuteBlock, Get, IsInherent, OffchainWorker, OnFinalize, OnIdle, - OnInitialize, OnPoll, OnRuntimeUpgrade, PostTransactions, + OnPoll, OnRuntimeUpgrade, PostTransactions, }; use frame_support::weights::{Weight, WeightToFee}; use frame_system::pallet_prelude::*; pub use pallet::*; use parity_scale_codec::{Codec, Encode}; use sp_runtime::traits::{ - Applyable, Block as BlockT, CheckEqual, Checkable, Dispatchable, Header, NumberFor, One, - ValidateUnsigned, Zero, + Applyable, Block as BlockT, CheckEqual, Checkable, Dispatchable, Header, LazyBlock, NumberFor, + One, ValidateUnsigned, Zero, }; use sp_runtime::transaction_validity::{ InvalidTransaction, TransactionSource, TransactionValidity, TransactionValidityError, @@ -212,7 +213,7 @@ impl< UnsignedValidator, AllPalletsWithSystem: OnRuntimeUpgrade + BeforeAllRuntimeMigrations - + OnInitialize> + + OnInitializeWithWeightRegistration + OnIdle> + OnFinalize> + OffchainWorker> @@ -234,7 +235,7 @@ where OriginOf, Context>: From>>, UnsignedValidator: ValidateUnsigned, Context>>, { - fn execute_block(block: BlockOf) { + fn execute_block(block: as BlockT>::LazyBlock) { Executive::< ExecutiveConfig, Context, @@ -251,7 +252,7 @@ impl< UnsignedValidator, AllPalletsWithSystem: OnRuntimeUpgrade + BeforeAllRuntimeMigrations - + OnInitialize> + + OnInitializeWithWeightRegistration + OnIdle> + OnFinalize> + OffchainWorker> @@ -300,9 +301,8 @@ where /// Matches upstream `frame_executive::Executive::initial_checks`. /// Only checks parent hash — inherent ordering is checked inline in `apply_extrinsics`. - fn initial_checks(block: &BlockOf) { + fn initial_checks(header: &HeaderFor) { sp_tracing::enter_span!(sp_tracing::Level::TRACE, "initial_checks"); - let header = block.header(); // Check that `parent_hash` is correct. let n = *header.number(); @@ -322,16 +322,16 @@ where /// /// Matches upstream structure: `initial_checks` only validates parent hash, /// inherent ordering is checked inline in `apply_extrinsics`. - pub fn execute_block(block: BlockOf) { + pub fn execute_block(block: as BlockT>::LazyBlock) { sp_io::init_tracing(); sp_tracing::within_span! { sp_tracing::info_span!("execute_block", ?block); // Execute `on_runtime_upgrade` and `on_initialize`. let mode = Self::initialize_block(block.header()); - Self::initial_checks(&block); + Self::initial_checks(block.header()); - let (header, extrinsics) = block.deconstruct(); - Self::apply_extrinsics(mode, extrinsics.into_iter()); + let extrinsics = block.extrinsics(); + Self::apply_extrinsics(mode, extrinsics); // In this case there were no transactions to trigger this state transition: if !>::inherents_applied() { @@ -348,9 +348,10 @@ where >::note_finished_extrinsics(); ::PostTransactions::post_transactions(); + let header = block.header(); Self::on_idle_hook(*header.number()); Self::on_finalize_hook(*header.number()); - Self::final_checks(&header); + Self::final_checks(header); } } @@ -358,10 +359,13 @@ where /// Checks inherent ordering inline per-extrinsic. fn apply_extrinsics( mode: ExtrinsicInclusionMode, - extrinsics: impl Iterator>, + extrinsics: impl Iterator< + Item = Result, parity_scale_codec::Error>, + >, ) { let mut first_non_inherent_idx = 0; - for (idx, uxt) in extrinsics.into_iter().enumerate() { + for (idx, maybe_uxt) in extrinsics.into_iter().enumerate() { + let uxt = maybe_uxt.expect("Failed to decode extrinsic"); let is_inherent = ExecutiveConfig::is_inherent(&uxt); if is_inherent { if first_non_inherent_idx != idx { diff --git a/domains/primitives/evm-precompiles/src/lib.rs b/domains/primitives/evm-precompiles/src/lib.rs index 5beece20588..0b3b32d5fb8 100644 --- a/domains/primitives/evm-precompiles/src/lib.rs +++ b/domains/primitives/evm-precompiles/src/lib.rs @@ -21,7 +21,8 @@ type PrecompilesAt = ( PrecompileAt, Identity, EthereumPrecompilesChecks>, PrecompileAt, Modexp, EthereumPrecompilesChecks>, // Non-Frontier specific nor Ethereum precompiles : - PrecompileAt, Sha3FIPS256, (CallableByContract, CallableByPrecompile)>, + // Sha3FIPS256 gained generics in stable2512; () = default weights + PrecompileAt, Sha3FIPS256, (CallableByContract, CallableByPrecompile)>, PrecompileAt, ECRecoverPublicKey, (CallableByContract, CallableByPrecompile)>, // Subspace specific precompiles PrecompileAt< diff --git a/domains/runtime/auto-id/src/lib.rs b/domains/runtime/auto-id/src/lib.rs index 38e0a1c9870..e62828fc6aa 100644 --- a/domains/runtime/auto-id/src/lib.rs +++ b/domains/runtime/auto-id/src/lib.rs @@ -768,7 +768,7 @@ impl_runtime_apis! { VERSION } - fn execute_block(block: Block) { + fn execute_block(block: ::LazyBlock) { Executive::execute_block(block) } @@ -805,7 +805,7 @@ impl_runtime_apis! { } fn check_inherents( - block: Block, + block: ::LazyBlock, data: sp_inherents::InherentData, ) -> sp_inherents::CheckInherentsResult { data.check_extrinsics(&block) diff --git a/domains/runtime/evm/src/lib.rs b/domains/runtime/evm/src/lib.rs index 4efe5b6ac64..1e9428f5c1a 100644 --- a/domains/runtime/evm/src/lib.rs +++ b/domains/runtime/evm/src/lib.rs @@ -1232,7 +1232,7 @@ impl_runtime_apis! { VERSION } - fn execute_block(block: Block) { + fn execute_block(block: ::LazyBlock) { Executive::execute_block(block) } @@ -1269,7 +1269,7 @@ impl_runtime_apis! { } fn check_inherents( - block: Block, + block: ::LazyBlock, data: sp_inherents::InherentData, ) -> sp_inherents::CheckInherentsResult { data.check_extrinsics(&block) diff --git a/domains/service/src/config.rs b/domains/service/src/config.rs index 35d0eaebe47..9a874ac13fa 100644 --- a/domains/service/src/config.rs +++ b/domains/service/src/config.rs @@ -202,6 +202,8 @@ impl From for Configuration { force_synced: configuration.network.force_synced, // Domain nodes do not use warp sync min_peers_to_start_warp_sync: None, + // Substrate's default + idle_connection_timeout: std::time::Duration::from_secs(10), }, // Not used on consensus chain keystore: configuration.keystore, @@ -234,6 +236,7 @@ impl From for Configuration { rate_limit_trust_proxy_headers: configuration .rpc_options .rate_limit_trust_proxy_headers, + request_logger_limit: 1024, }, prometheus_config: configuration .prometheus_listen_on diff --git a/domains/service/src/domain.rs b/domains/service/src/domain.rs index 198d6c83d03..64bcca102e2 100644 --- a/domains/service/src/domain.rs +++ b/domains/service/src/domain.rs @@ -474,6 +474,8 @@ where tx_handler_controller, sync_service: sync_service.clone(), telemetry: telemetry.as_mut(), + // None: trace_block RPC not supported on domain nodes + tracing_execute_block: None, })?; let spawn_essential = task_manager.spawn_essential_handle(); diff --git a/domains/test/runtime/auto-id/src/lib.rs b/domains/test/runtime/auto-id/src/lib.rs index abefe3ae811..33d1e14f15d 100644 --- a/domains/test/runtime/auto-id/src/lib.rs +++ b/domains/test/runtime/auto-id/src/lib.rs @@ -750,7 +750,7 @@ impl_runtime_apis! { VERSION } - fn execute_block(block: Block) { + fn execute_block(block: ::LazyBlock) { Executive::execute_block(block) } @@ -787,7 +787,7 @@ impl_runtime_apis! { } fn check_inherents( - block: Block, + block: ::LazyBlock, data: sp_inherents::InherentData, ) -> sp_inherents::CheckInherentsResult { data.check_extrinsics(&block) diff --git a/domains/test/runtime/evm/src/lib.rs b/domains/test/runtime/evm/src/lib.rs index 1410ebd4c56..060db2ca7ae 100644 --- a/domains/test/runtime/evm/src/lib.rs +++ b/domains/test/runtime/evm/src/lib.rs @@ -1243,7 +1243,7 @@ impl_runtime_apis! { VERSION } - fn execute_block(block: Block) { + fn execute_block(block: ::LazyBlock) { Executive::execute_block(block) } @@ -1280,7 +1280,7 @@ impl_runtime_apis! { } fn check_inherents( - block: Block, + block: ::LazyBlock, data: sp_inherents::InherentData, ) -> sp_inherents::CheckInherentsResult { data.check_extrinsics(&block) diff --git a/domains/test/service/src/lib.rs b/domains/test/service/src/lib.rs index 7357e0c06a4..5aea8599a6e 100644 --- a/domains/test/service/src/lib.rs +++ b/domains/test/service/src/lib.rs @@ -140,6 +140,7 @@ pub fn node_config( rate_limit: None, rate_limit_whitelisted_ips: vec![], rate_limit_trust_proxy_headers: false, + request_logger_limit: 1024, } } None => RpcConfiguration { @@ -157,6 +158,7 @@ pub fn node_config( rate_limit: None, rate_limit_whitelisted_ips: vec![], rate_limit_trust_proxy_headers: false, + request_logger_limit: 0, }, }; diff --git a/scripts/runtime-benchmark.sh b/scripts/runtime-benchmark.sh index 28f7c08d9e3..a104f04ba5e 100755 --- a/scripts/runtime-benchmark.sh +++ b/scripts/runtime-benchmark.sh @@ -14,11 +14,6 @@ # http://redsymbol.net/articles/unofficial-bash-strict-mode/ set -euo pipefail -# Skip WASM build for frame-storage-access-test-runtime (upstream polkadot-sdk test crate). -# Its wasm-builder panics when built outside the polkadot-sdk workspace. -# See: https://github.com/paritytech/polkadot-sdk/pull/8069 -export SKIP_FRAME_STORAGE_ACCESS_TEST_RUNTIME_WASM_BUILD=1 - PROFILE="production" FEATURES="runtime-benchmarks" CORE_BENCH_SETTINGS="--extrinsic=* --wasm-execution=compiled --genesis-builder=none --heap-pages=4096" diff --git a/test/subspace-test-runtime/src/lib.rs b/test/subspace-test-runtime/src/lib.rs index 9ac0b430128..79b13c9bb66 100644 --- a/test/subspace-test-runtime/src/lib.rs +++ b/test/subspace-test-runtime/src/lib.rs @@ -458,6 +458,10 @@ pub struct LiquidityInfo { /// fees and distributes storage/compute fees and tip separately. pub struct OnChargeTransaction; +impl pallet_transaction_payment::TxCreditHold for OnChargeTransaction { + type Credit = (); +} + impl pallet_transaction_payment::OnChargeTransaction for OnChargeTransaction { type LiquidityInfo = Option; type Balance = Balance; @@ -1403,7 +1407,7 @@ impl_runtime_apis! { VERSION } - fn execute_block(block: Block) { + fn execute_block(block: ::LazyBlock) { Executive::execute_block(block); } @@ -1440,7 +1444,7 @@ impl_runtime_apis! { } fn check_inherents( - block: Block, + block: ::LazyBlock, data: sp_inherents::InherentData, ) -> sp_inherents::CheckInherentsResult { data.check_extrinsics(&block) @@ -1884,6 +1888,13 @@ impl_runtime_apis! { ) } + fn generate_ancestry_proof( + prev_block_number: BlockNumber, + best_known_block_number: Option, + ) -> Result, mmr::Error> { + Mmr::generate_ancestry_proof(prev_block_number, best_known_block_number) + } + fn verify_proof(leaves: Vec, proof: mmr::LeafProof) -> Result<(), mmr::Error> { diff --git a/test/subspace-test-service/src/lib.rs b/test/subspace-test-service/src/lib.rs index 63e8d933954..70712521a3d 100644 --- a/test/subspace-test-service/src/lib.rs +++ b/test/subspace-test-service/src/lib.rs @@ -191,6 +191,7 @@ pub fn node_config( rate_limit: None, rate_limit_whitelisted_ips: vec![], rate_limit_trust_proxy_headers: false, + request_logger_limit: 1024, } } None => RpcConfiguration { @@ -208,6 +209,7 @@ pub fn node_config( rate_limit: None, rate_limit_whitelisted_ips: vec![], rate_limit_trust_proxy_headers: false, + request_logger_limit: 0, }, }; @@ -550,6 +552,7 @@ impl MockConsensusNode { telemetry: None, tx_handler_controller, sync_service: sync_service.clone(), + tracing_execute_block: None, }) .expect("Should be able to spawn tasks");