From 8ab70244ae32292eafbce5c1e444d27cc173ee3d Mon Sep 17 00:00:00 2001 From: kianenigma Date: Thu, 27 Jun 2024 16:50:34 +0330 Subject: [PATCH 01/44] Blueprint of how to fix inflation --- Cargo.lock | 14 +------- relay/kusama/Cargo.toml | 2 ++ relay/kusama/src/lib.rs | 72 +++++++++++++++++++++++++++++++++++---- relay/polkadot/Cargo.toml | 1 - 4 files changed, 69 insertions(+), 20 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5ae9b093f0..037b458915 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -9120,18 +9120,6 @@ dependencies = [ "sp-std", ] -[[package]] -name = "pallet-staking-reward-curve" -version = "11.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "efca5a4a423427d2c83af5fe07ab648c16b91e3782c3cc23316fe0bd96b4c794" -dependencies = [ - "proc-macro-crate 3.1.0", - "proc-macro2", - "quote", - "syn 2.0.52", -] - [[package]] name = "pallet-staking-reward-fn" version = "20.0.0" @@ -11014,7 +11002,6 @@ dependencies = [ "pallet-session", "pallet-session-benchmarking", "pallet-staking", - "pallet-staking-reward-curve", "pallet-staking-reward-fn", "pallet-staking-runtime-api", "pallet-state-trie-migration", @@ -16106,6 +16093,7 @@ dependencies = [ "pallet-session-benchmarking", "pallet-society", "pallet-staking", + "pallet-staking-reward-fn", "pallet-staking-runtime-api", "pallet-timestamp", "pallet-transaction-payment", diff --git a/relay/kusama/Cargo.toml b/relay/kusama/Cargo.toml index b2df38038f..77f0e46aae 100644 --- a/relay/kusama/Cargo.toml +++ b/relay/kusama/Cargo.toml @@ -72,6 +72,7 @@ pallet-session = { workspace = true } pallet-society = { workspace = true } frame-support = { features = ["tuples-96"], workspace = true } pallet-staking = { workspace = true } +pallet-staking-reward-fn = { workspace = true } pallet-staking-runtime-api = { workspace = true } frame-system = { workspace = true } frame-system-rpc-runtime-api = { workspace = true } @@ -171,6 +172,7 @@ std = [ "pallet-session/std", "pallet-society/std", "pallet-staking-runtime-api/std", + "pallet-staking-reward-fn/std", "pallet-staking/std", "pallet-timestamp/std", "pallet-transaction-payment-rpc-runtime-api/std", diff --git a/relay/kusama/src/lib.rs b/relay/kusama/src/lib.rs index ded3ff7838..033e59c381 100644 --- a/relay/kusama/src/lib.rs +++ b/relay/kusama/src/lib.rs @@ -22,6 +22,7 @@ use codec::{Decode, Encode, MaxEncodedLen}; use pallet_nis::WithMaximumOf; +use pallet_staking_reward_fn::compute_inflation; use polkadot_primitives::{ slashing, vstaging::{ApprovalVotingParams, NodeFeatures}, @@ -43,6 +44,7 @@ use polkadot_runtime_common::{ U256ToBalance, }; use scale_info::TypeInfo; +use sp_runtime::traits::Saturating; use sp_std::{cmp::Ordering, collections::btree_map::BTreeMap, prelude::*}; use runtime_parachains::{ @@ -682,14 +684,72 @@ impl pallet_staking::EraPayout for EraPayout { const MAX_ANNUAL_INFLATION: Perquintill = Perquintill::from_percent(10); const MILLISECONDS_PER_YEAR: u64 = 1000 * 3600 * 24 * 36525 / 100; - polkadot_runtime_common::impls::era_payout( + let use_auctioned_slots = todo!("should come from pallet parameters as well"); + let params = EraPayoutParams { total_staked, - Nis::issuance().other, - MAX_ANNUAL_INFLATION, - Perquintill::from_rational(era_duration_millis, MILLISECONDS_PER_YEAR), - auctioned_slots, - ) + total_stakable: Nis::issuance().other, + ideal_stake: todo!("must come from pallet parameters, and default set to 75%"), + max_annual_inflation: todo!("must come from pallet parameters, and default set to 10%"), + min_annual_inflation: todo!( + "must come from pallet parameters, and default set to 2.5%" + ), + falloff: todo!("must come from pallet parameters, and default set to 5%"), + period_fraction: Perquintill::from_rational(era_duration_millis, MILLISECONDS_PER_YEAR), + legacy_auction_proportion: if use_auctioned_slots { + Some(Perquintill::from_rational(auctioned_slots.min(60), 200)) + } else { + None + }, + }; + relay_era_payout(params) + // TODO: remove pub fn era_payout from polkadot-sdk. + } +} + +pub(crate) struct EraPayoutParams { + total_staked: Balance, + total_stakable: Balance, + ideal_stake: Perquintill, + max_annual_inflation: Perquintill, + min_annual_inflation: Perquintill, + falloff: Perquintill, + period_fraction: Perquintill, + legacy_auction_proportion: Option, +} + +// TODO: move this to a shared create between both relays. +pub fn relay_era_payout(params: EraPayoutParams) -> (Balance, Balance) { + let EraPayoutParams { + total_staked, + total_stakable, + ideal_stake, + max_annual_inflation, + min_annual_inflation, + falloff, + period_fraction, + legacy_auction_proportion, + } = params; + + let delta_annual_inflation = max_annual_inflation.saturating_sub(min_annual_inflation); + + let ideal_stake = ideal_stake.saturating_sub(legacy_auction_proportion.unwrap_or_default()); + + let stake = Perquintill::from_rational(total_staked, total_stakable); + let adjustment = compute_inflation(stake, ideal_stake, falloff); + let staking_inflation = + min_annual_inflation.saturating_add(delta_annual_inflation * adjustment); + + let max_payout = period_fraction * max_annual_inflation * total_stakable; + let staking_payout = (period_fraction * staking_inflation) * total_stakable; + let rest = max_payout.saturating_sub(staking_payout); + + let other_issuance = total_stakable.saturating_sub(total_staked); + if total_staked > other_issuance { + let _cap_rest = Perquintill::from_rational(other_issuance, total_staked) * staking_payout; + // We don't do anything with this, but if we wanted to, we could introduce a cap on the + // treasury amount with: `rest = rest.min(cap_rest);` } + (staking_payout, rest) } parameter_types! { diff --git a/relay/polkadot/Cargo.toml b/relay/polkadot/Cargo.toml index c7f8c92b6b..c95f205696 100644 --- a/relay/polkadot/Cargo.toml +++ b/relay/polkadot/Cargo.toml @@ -68,7 +68,6 @@ pallet-session = { workspace = true } frame-support = { workspace = true } pallet-staking = { workspace = true } pallet-staking-reward-fn = { workspace = true } -pallet-staking-reward-curve = { workspace = true } pallet-staking-runtime-api = { workspace = true } pallet-state-trie-migration = { workspace = true } frame-system = { workspace = true } From 6fa51301b6e3ae29d0ac4ddc46234de8b0a46732 Mon Sep 17 00:00:00 2001 From: Oliver Tale-Yazdi Date: Sun, 14 Jul 2024 12:39:35 +0200 Subject: [PATCH 02/44] Update to 1.14 Signed-off-by: Oliver Tale-Yazdi --- Cargo.lock | 3177 +++++++++++++++++++++++++++++----------------------- Cargo.toml | 256 ++--- 2 files changed, 1925 insertions(+), 1508 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index be996e7cf0..0f0955c41d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -77,7 +77,7 @@ version = "0.7.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9" dependencies = [ - "getrandom 0.2.12", + "getrandom", "once_cell", "version_check", ] @@ -89,7 +89,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "42cd52102d3df161c77a887b608d7a4897d7cc112886a9537b738a887a03aaff" dependencies = [ "cfg-if", - "getrandom 0.2.12", + "getrandom", "once_cell", "version_check", "zerocopy", @@ -124,7 +124,7 @@ dependencies = [ "hex-literal", "itoa", "proptest", - "rand 0.8.5", + "rand", "ruint", "serde", "tiny-keccak", @@ -446,7 +446,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1df2c09229cbc5a028b1d70e00fdb2acee28b1055dfb5ca73eea49c5a25c4e7c" dependencies = [ "num-traits", - "rand 0.8.5", + "rand", ] [[package]] @@ -456,7 +456,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "94893f1e0c6eeab764ade8dc4c0db24caf4fe7cbbaafc0eba0a9030f447b5185" dependencies = [ "num-traits", - "rand 0.8.5", + "rand", ] [[package]] @@ -492,8 +492,24 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7f6fd5ddaf0351dff5b8da21b2fb4ff8e08ddd02857f0bf69c47639106c0fff0" dependencies = [ - "asn1-rs-derive", - "asn1-rs-impl", + "asn1-rs-derive 0.4.0", + "asn1-rs-impl 0.1.0", + "displaydoc", + "nom", + "num-traits", + "rusticata-macros", + "thiserror", + "time", +] + +[[package]] +name = "asn1-rs" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "22ad1373757efa0f70ec53939aabc7152e1591cb485208052993070ac8d2429d" +dependencies = [ + "asn1-rs-derive 0.5.0", + "asn1-rs-impl 0.2.0", "displaydoc", "nom", "num-traits", @@ -511,7 +527,19 @@ dependencies = [ "proc-macro2", "quote", "syn 1.0.109", - "synstructure", + "synstructure 0.12.6", +] + +[[package]] +name = "asn1-rs-derive" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7378575ff571966e99a744addeff0bff98b8ada0dedf1956d59e634db95eaac1" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.65", + "synstructure 0.13.1", ] [[package]] @@ -525,6 +553,17 @@ dependencies = [ "syn 1.0.109", ] +[[package]] +name = "asn1-rs-impl" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.65", +] + [[package]] name = "assert_matches" version = "1.5.0" @@ -538,7 +577,7 @@ dependencies = [ "asset-hub-kusama-runtime", "cumulus-primitives-core", "emulated-integration-tests-common", - "frame-support", + "frame-support 36.0.0", "kusama-emulated-chain", "parachains-common", "penpal-emulated-chain", @@ -556,7 +595,7 @@ dependencies = [ "asset-test-utils", "cumulus-pallet-parachain-system", "emulated-integration-tests-common", - "frame-support", + "frame-support 36.0.0", "integration-tests-helpers", "kusama-runtime-constants", "kusama-system-emulated-network", @@ -597,11 +636,11 @@ dependencies = [ "cumulus-primitives-core", "cumulus-primitives-storage-weight-reclaim", "cumulus-primitives-utility", - "frame-benchmarking", + "frame-benchmarking 36.0.0", "frame-executive", "frame-metadata-hash-extension", - "frame-support", - "frame-system", + "frame-support 36.0.0", + "frame-system 36.0.0", "frame-system-benchmarking", "frame-system-rpc-runtime-api", "frame-try-runtime", @@ -623,8 +662,8 @@ dependencies = [ "pallet-proxy", "pallet-session", "pallet-state-trie-migration", - "pallet-timestamp", - "pallet-transaction-payment", + "pallet-timestamp 35.0.0", + "pallet-transaction-payment 36.0.0", "pallet-transaction-payment-rpc-runtime-api", "pallet-uniques", "pallet-utility", @@ -672,7 +711,7 @@ dependencies = [ "asset-hub-polkadot-runtime", "cumulus-primitives-core", "emulated-integration-tests-common", - "frame-support", + "frame-support 36.0.0", "parachains-common", "penpal-emulated-chain", "polkadot-emulated-chain", @@ -692,7 +731,7 @@ dependencies = [ "cumulus-pallet-parachain-system", "cumulus-pallet-xcmp-queue", "emulated-integration-tests-common", - "frame-support", + "frame-support 36.0.0", "integration-tests-helpers", "pallet-asset-conversion", "pallet-assets", @@ -730,11 +769,11 @@ dependencies = [ "cumulus-primitives-aura", "cumulus-primitives-core", "cumulus-primitives-utility", - "frame-benchmarking", + "frame-benchmarking 36.0.0", "frame-executive", "frame-metadata-hash-extension", - "frame-support", - "frame-system", + "frame-support 36.0.0", + "frame-system 36.0.0", "frame-system-benchmarking", "frame-system-rpc-runtime-api", "frame-try-runtime", @@ -754,8 +793,8 @@ dependencies = [ "pallet-nfts-runtime-api", "pallet-proxy", "pallet-session", - "pallet-timestamp", - "pallet-transaction-payment", + "pallet-timestamp 35.0.0", + "pallet-transaction-payment 36.0.0", "pallet-transaction-payment-rpc-runtime-api", "pallet-uniques", "pallet-utility", @@ -798,20 +837,20 @@ dependencies = [ [[package]] name = "asset-test-utils" -version = "14.0.0" +version = "15.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "91ebd50fb5aa439aaadf0560ad3afd426e03cf136e57a2c751f88376cd924799" +checksum = "8ccc232efa79f7f180856e9bc8535dbb2d813b62418cda7bf154a713adb9ea36" dependencies = [ "cumulus-pallet-parachain-system", "cumulus-pallet-xcmp-queue", "cumulus-primitives-core", - "frame-support", - "frame-system", + "frame-support 36.0.0", + "frame-system 36.0.0", "pallet-assets", "pallet-balances", "pallet-collator-selection", "pallet-session", - "pallet-timestamp", + "pallet-timestamp 35.0.0", "pallet-xcm", "pallet-xcm-bridge-hub-router", "parachains-common", @@ -829,12 +868,12 @@ dependencies = [ [[package]] name = "assets-common" -version = "0.14.0" +version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "81cd608a43b6683340fd39a41b518d55029214d240967e560f5b893498c9ff08" +checksum = "d4e2360c96927aa33b3fef7190eabf2aa4129fe3505c11dfa860ada0f27fd1b1" dependencies = [ "cumulus-primitives-core", - "frame-support", + "frame-support 36.0.0", "impl-trait-for-tuples", "log", "pallet-asset-conversion", @@ -1029,6 +1068,17 @@ version = "1.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" +[[package]] +name = "attohttpc" +version = "0.24.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8d9a9bf8b79a749ee0b911b91b671cc2b6c670bdbc7e3dfd537576ddc94bb2a2" +dependencies = [ + "http 0.2.11", + "log", + "url", +] + [[package]] name = "auto_impl" version = "1.2.0" @@ -1052,9 +1102,9 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b62ddb9cb1ec0a098ad4bbf9344d0713fa193ae1a80af55febcff2627b6a00c1" dependencies = [ - "getrandom 0.2.12", + "getrandom", "instant", - "rand 0.8.5", + "rand", ] [[package]] @@ -1198,9 +1248,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" [[package]] name = "bitflags" -version = "2.4.1" +version = "2.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07" +checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" [[package]] name = "bitvec" @@ -1330,7 +1380,7 @@ name = "bp-asset-hub-kusama" version = "1.0.0" dependencies = [ "bp-xcm-bridge-hub-router", - "frame-support", + "frame-support 36.0.0", "parity-scale-codec", "scale-info", "sp-std", @@ -1343,7 +1393,7 @@ name = "bp-asset-hub-polkadot" version = "1.0.0" dependencies = [ "bp-xcm-bridge-hub-router", - "frame-support", + "frame-support 36.0.0", "parity-scale-codec", "scale-info", "sp-std", @@ -1353,15 +1403,15 @@ dependencies = [ [[package]] name = "bp-bridge-hub-cumulus" -version = "0.14.0" +version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3ba00946c8a825bec15b1a6ebdf0c35f0d2f2110b529b5067de14279d6dcce8a" +checksum = "d48cca10dce1c6d2914e48594f13add2da4a5b7c3ed54fd0fa324054dfb8569a" dependencies = [ "bp-messages", "bp-polkadot-core", "bp-runtime", - "frame-support", - "frame-system", + "frame-support 36.0.0", + "frame-system 36.0.0", "polkadot-primitives", "sp-api", "sp-std", @@ -1374,7 +1424,7 @@ dependencies = [ "bp-bridge-hub-cumulus", "bp-messages", "bp-runtime", - "frame-support", + "frame-support 36.0.0", "kusama-runtime-constants", "polkadot-runtime-constants", "snowbridge-core", @@ -1393,7 +1443,7 @@ dependencies = [ "bp-messages", "bp-polkadot-bulletin", "bp-runtime", - "frame-support", + "frame-support 36.0.0", "kusama-runtime-constants", "polkadot-runtime-constants", "snowbridge-core", @@ -1406,13 +1456,13 @@ dependencies = [ [[package]] name = "bp-header-chain" -version = "0.14.0" +version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3445ca2e7a3b5e86f03f5bed0a98edcfbdada59f97b71c7dbace25b60b9d3c4a" +checksum = "57cac4b71008e46d43e346476ed1be85cf7b505efacee17dad84d687344bf1b1" dependencies = [ "bp-runtime", "finality-grandpa", - "frame-support", + "frame-support 36.0.0", "parity-scale-codec", "scale-info", "serde", @@ -1424,27 +1474,27 @@ dependencies = [ [[package]] name = "bp-kusama" -version = "0.12.0" +version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "47290e9ba104bd3522a0949ccd9e8b26ce25de621223d766ec40d3259ec35123" +checksum = "00615c1d380587c2e211a2d4d1c1ee490a743e32f478b1bba8deda76958d68ff" dependencies = [ "bp-header-chain", "bp-polkadot-core", "bp-runtime", - "frame-support", + "frame-support 36.0.0", "sp-api", "sp-std", ] [[package]] name = "bp-messages" -version = "0.14.0" +version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75cee5c02e0cf8cfec023231ba3b40922321bab0ab2490ab1f71af5f5d9eaf63" +checksum = "f97eec00a98efeb052ac9fc9676d9fccf5acd19e3b18530f3d72af1a1faf21ec" dependencies = [ "bp-header-chain", "bp-runtime", - "frame-support", + "frame-support 36.0.0", "parity-scale-codec", "scale-info", "serde", @@ -1454,14 +1504,14 @@ dependencies = [ [[package]] name = "bp-parachains" -version = "0.14.0" +version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3509fb70e4e42a7cdea1be3a97cf695f0a93313a5526e39ce409d07bf8479f68" +checksum = "60c0bde723a5daf39f4f02816483c9ac049818990b06858dff751736636a4ea2" dependencies = [ "bp-header-chain", "bp-polkadot-core", "bp-runtime", - "frame-support", + "frame-support 36.0.0", "impl-trait-for-tuples", "parity-scale-codec", "scale-info", @@ -1472,30 +1522,30 @@ dependencies = [ [[package]] name = "bp-polkadot" -version = "0.12.0" +version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5531357b4cbd7bd8c845cc0922a8b1453016995e7196b4df33744c90d67a74ad" +checksum = "e7612420844a580cb268ea1846fe82fb4bd1825b53e9b6dcd56904b3d7f7ea7c" dependencies = [ "bp-header-chain", "bp-polkadot-core", "bp-runtime", - "frame-support", + "frame-support 36.0.0", "sp-api", "sp-std", ] [[package]] name = "bp-polkadot-bulletin" -version = "0.11.0" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb2e4c6ba687dad4303d88511eec378065d3f8a88f135d041fb4134e8306d1f1" +checksum = "dfb5b3cd885b40b52bf96e52ffbec92d0c435f7303fc11374ccfcfa5bebfbc4f" dependencies = [ "bp-header-chain", "bp-messages", "bp-polkadot-core", "bp-runtime", - "frame-support", - "frame-system", + "frame-support 36.0.0", + "frame-system 36.0.0", "parity-scale-codec", "scale-info", "sp-api", @@ -1505,14 +1555,14 @@ dependencies = [ [[package]] name = "bp-polkadot-core" -version = "0.14.0" +version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "330626b279be8405c3d6e712b84af7c8f2636cbe9ca4c1ed7d42937fe933a050" +checksum = "6ef2272823ecfee580c00f6542dfcab3ec7abdb00857af853429736847c3a2d9" dependencies = [ "bp-messages", "bp-runtime", - "frame-support", - "frame-system", + "frame-support 36.0.0", + "frame-system 36.0.0", "parity-scale-codec", "parity-util-mem", "scale-info", @@ -1524,13 +1574,13 @@ dependencies = [ [[package]] name = "bp-relayers" -version = "0.14.0" +version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf7d8f513b18231df91ef7da1db32e591006d8193d85c8efa3737f904c6b31e0" +checksum = "5a589f5bb70baa4377a798823be752042aa6c220d51afc559716667e29b0203d" dependencies = [ "bp-messages", "bp-runtime", - "frame-support", + "frame-support 36.0.0", "parity-scale-codec", "scale-info", "sp-runtime 38.0.0", @@ -1539,12 +1589,12 @@ dependencies = [ [[package]] name = "bp-runtime" -version = "0.14.0" +version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bae0eaf8669eeb086c5ce8b9a6b5f4fb3f83cd0699c63a6f42236482873c8236" +checksum = "904644c23b437dde65741f3148067624ed0b4d8360f68adf9e92273aeb970814" dependencies = [ - "frame-support", - "frame-system", + "frame-support 36.0.0", + "frame-system 36.0.0", "hash-db", "impl-trait-for-tuples", "log", @@ -1563,15 +1613,15 @@ dependencies = [ [[package]] name = "bp-test-utils" -version = "0.14.0" +version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4f325da595f8edb134fe8458beb6fb71f5db1e13cf47af34c3e4ce19248d4c7a" +checksum = "85062410c8f85ba074f04d843c59f39c7fcb64b83f2ece5bd4379f8c34a4bf15" dependencies = [ "bp-header-chain", "bp-parachains", "bp-polkadot-core", "bp-runtime", - "ed25519-dalek 2.1.0", + "ed25519-dalek", "finality-grandpa", "parity-scale-codec", "sp-application-crypto 37.0.0", @@ -1605,12 +1655,12 @@ dependencies = [ [[package]] name = "bridge-hub-common" -version = "0.7.0" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "02a1e75deff2d32eeff349a27c062da47d5861b041a0af9f0c24cea9a079bb11" +checksum = "fd1e0c182cdd2ce204425d011965d2c6344360b48dd9aa3f4c470713cfaae9ba" dependencies = [ "cumulus-primitives-core", - "frame-support", + "frame-support 36.0.0", "pallet-message-queue", "parity-scale-codec", "scale-info", @@ -1628,7 +1678,7 @@ dependencies = [ "bridge-hub-common", "bridge-hub-kusama-runtime", "emulated-integration-tests-common", - "frame-support", + "frame-support 36.0.0", "parachains-common", "sp-core 34.0.0", ] @@ -1643,7 +1693,7 @@ dependencies = [ "bridge-hub-kusama-runtime", "cumulus-pallet-xcmp-queue", "emulated-integration-tests-common", - "frame-support", + "frame-support 36.0.0", "hex-literal", "integration-tests-helpers", "kusama-polkadot-system-emulated-network", @@ -1700,11 +1750,11 @@ dependencies = [ "cumulus-primitives-core", "cumulus-primitives-storage-weight-reclaim", "cumulus-primitives-utility", - "frame-benchmarking", + "frame-benchmarking 36.0.0", "frame-executive", "frame-metadata-hash-extension", - "frame-support", - "frame-system", + "frame-support 36.0.0", + "frame-system 36.0.0", "frame-system-benchmarking", "frame-system-rpc-runtime-api", "frame-try-runtime", @@ -1722,8 +1772,8 @@ dependencies = [ "pallet-message-queue", "pallet-multisig", "pallet-session", - "pallet-timestamp", - "pallet-transaction-payment", + "pallet-timestamp 35.0.0", + "pallet-transaction-payment 36.0.0", "pallet-transaction-payment-rpc-runtime-api", "pallet-utility", "pallet-xcm", @@ -1781,7 +1831,7 @@ dependencies = [ "bridge-hub-common", "bridge-hub-polkadot-runtime", "emulated-integration-tests-common", - "frame-support", + "frame-support 36.0.0", "parachains-common", "sp-core 34.0.0", ] @@ -1796,7 +1846,7 @@ dependencies = [ "bridge-hub-polkadot-runtime", "cumulus-pallet-xcmp-queue", "emulated-integration-tests-common", - "frame-support", + "frame-support 36.0.0", "hex-literal", "integration-tests-helpers", "kusama-polkadot-system-emulated-network", @@ -1851,11 +1901,11 @@ dependencies = [ "cumulus-primitives-aura", "cumulus-primitives-core", "cumulus-primitives-utility", - "frame-benchmarking", + "frame-benchmarking 36.0.0", "frame-executive", "frame-metadata-hash-extension", - "frame-support", - "frame-system", + "frame-support 36.0.0", + "frame-system 36.0.0", "frame-system-benchmarking", "frame-system-rpc-runtime-api", "frame-try-runtime", @@ -1873,8 +1923,8 @@ dependencies = [ "pallet-message-queue", "pallet-multisig", "pallet-session", - "pallet-timestamp", - "pallet-transaction-payment", + "pallet-timestamp 35.0.0", + "pallet-transaction-payment 36.0.0", "pallet-transaction-payment-rpc-runtime-api", "pallet-utility", "pallet-xcm", @@ -1927,9 +1977,9 @@ dependencies = [ [[package]] name = "bridge-hub-test-utils" -version = "0.14.0" +version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cdc3faa943c6524154d8ae8700cddda47bef36f94120bf947a210effe0a323f5" +checksum = "cf6c88899f02bc16e383de957a17e01ad7c29d7e51e9c35fa4b70de3fa521f57" dependencies = [ "asset-test-utils", "bp-header-chain", @@ -1941,8 +1991,8 @@ dependencies = [ "bridge-runtime-common", "cumulus-pallet-parachain-system", "cumulus-pallet-xcmp-queue", - "frame-support", - "frame-system", + "frame-support 36.0.0", + "frame-system 36.0.0", "impl-trait-for-tuples", "log", "pallet-balances", @@ -1950,7 +2000,7 @@ dependencies = [ "pallet-bridge-messages", "pallet-bridge-parachains", "pallet-bridge-relayers", - "pallet-timestamp", + "pallet-timestamp 35.0.0", "pallet-utility", "parachains-common", "parachains-runtimes-test-utils", @@ -1968,9 +2018,9 @@ dependencies = [ [[package]] name = "bridge-runtime-common" -version = "0.14.0" +version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fb83d2cdbf8282d03d8c9fb2ed2bdb67f98ae48dd3937ba3d8a302e2f349a332" +checksum = "639591635551f94b6e310852430b669495bd99cfd2af20b00a00f6cc7169e70d" dependencies = [ "bp-header-chain", "bp-messages", @@ -1980,15 +2030,15 @@ dependencies = [ "bp-runtime", "bp-xcm-bridge-hub", "bp-xcm-bridge-hub-router", - "frame-support", - "frame-system", + "frame-support 36.0.0", + "frame-system 36.0.0", "hash-db", "log", "pallet-bridge-grandpa", "pallet-bridge-messages", "pallet-bridge-parachains", "pallet-bridge-relayers", - "pallet-transaction-payment", + "pallet-transaction-payment 36.0.0", "pallet-utility", "parity-scale-codec", "scale-info", @@ -2060,9 +2110,9 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" [[package]] name = "bytes" -version = "1.5.0" +version = "1.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223" +checksum = "a12916984aab3fa6e39d655a33e09c0071eb36d6ab3aea5c2d78551f1df6d952" [[package]] name = "c2-chacha" @@ -2116,6 +2166,12 @@ dependencies = [ "libc", ] +[[package]] +name = "cesu8" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c" + [[package]] name = "cfg-expr" version = "0.15.5" @@ -2226,7 +2282,7 @@ dependencies = [ "multibase", "multihash 0.17.0", "serde", - "unsigned-varint", + "unsigned-varint 0.7.2", ] [[package]] @@ -2239,7 +2295,7 @@ dependencies = [ "multibase", "multihash 0.18.1", "serde", - "unsigned-varint", + "unsigned-varint 0.7.2", ] [[package]] @@ -2319,7 +2375,7 @@ dependencies = [ "collectives-polkadot-runtime", "cumulus-primitives-core", "emulated-integration-tests-common", - "frame-support", + "frame-support 36.0.0", "parachains-common", "sp-core 34.0.0", ] @@ -2336,7 +2392,7 @@ dependencies = [ "cumulus-pallet-parachain-system", "cumulus-pallet-xcmp-queue", "emulated-integration-tests-common", - "frame-support", + "frame-support 36.0.0", "integration-tests-helpers", "pallet-asset-rate", "pallet-assets", @@ -2372,11 +2428,11 @@ dependencies = [ "cumulus-primitives-aura", "cumulus-primitives-core", "cumulus-primitives-utility", - "frame-benchmarking", + "frame-benchmarking 36.0.0", "frame-executive", "frame-metadata-hash-extension", - "frame-support", - "frame-system", + "frame-support 36.0.0", + "frame-system 36.0.0", "frame-system-benchmarking", "frame-system-rpc-runtime-api", "frame-try-runtime", @@ -2399,8 +2455,8 @@ dependencies = [ "pallet-salary", "pallet-scheduler", "pallet-session", - "pallet-timestamp", - "pallet-transaction-payment", + "pallet-timestamp 35.0.0", + "pallet-transaction-payment 36.0.0", "pallet-transaction-payment-rpc-runtime-api", "pallet-treasury", "pallet-utility", @@ -2516,7 +2572,7 @@ version = "0.1.16" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e" dependencies = [ - "getrandom 0.2.12", + "getrandom", "once_cell", "tiny-keccak", ] @@ -2583,11 +2639,11 @@ dependencies = [ "cumulus-primitives-core", "cumulus-primitives-storage-weight-reclaim", "cumulus-primitives-utility", - "frame-benchmarking", + "frame-benchmarking 36.0.0", "frame-executive", "frame-metadata-hash-extension", - "frame-support", - "frame-system", + "frame-support 36.0.0", + "frame-system 36.0.0", "frame-system-benchmarking", "frame-system-rpc-runtime-api", "frame-try-runtime", @@ -2603,8 +2659,8 @@ dependencies = [ "pallet-multisig", "pallet-proxy", "pallet-session", - "pallet-timestamp", - "pallet-transaction-payment", + "pallet-timestamp 35.0.0", + "pallet-transaction-payment 36.0.0", "pallet-transaction-payment-rpc-runtime-api", "pallet-utility", "pallet-xcm", @@ -2872,15 +2928,15 @@ dependencies = [ [[package]] name = "cumulus-pallet-aura-ext" -version = "0.14.0" +version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "52088d88534bd04ea251c030af1fef69845d29ed4fc9be399c1fbd5a311bea61" +checksum = "c5e8af48090936c45483d489ee681acb54277763586b53fa3dbd17173aa474fc" dependencies = [ "cumulus-pallet-parachain-system", - "frame-support", - "frame-system", + "frame-support 36.0.0", + "frame-system 36.0.0", "pallet-aura", - "pallet-timestamp", + "pallet-timestamp 35.0.0", "parity-scale-codec", "scale-info", "sp-application-crypto 37.0.0", @@ -2891,14 +2947,14 @@ dependencies = [ [[package]] name = "cumulus-pallet-dmp-queue" -version = "0.14.0" +version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "162f3379818ae6493b842b5c603010827d3ea5b7093070acb5ab12f824e168fc" +checksum = "7926abe4b165565b8c86a3525ac98e3a962761d05c201c53012460b237ad5887" dependencies = [ "cumulus-primitives-core", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.0", + "frame-system 36.0.0", "log", "parity-scale-codec", "scale-info", @@ -2910,9 +2966,9 @@ dependencies = [ [[package]] name = "cumulus-pallet-parachain-system" -version = "0.14.0" +version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "95f75a9e4dfebf1850c7c946a49cdb8b5e82a143155a40337ea083f412e13071" +checksum = "300d5509bd8ac95bafe158fa475278315175a4eb0422c2cd82e08e8b9dde035c" dependencies = [ "bytes", "cumulus-pallet-parachain-system-proc-macro", @@ -2920,9 +2976,9 @@ dependencies = [ "cumulus-primitives-parachain-inherent", "cumulus-primitives-proof-size-hostfunction", "environmental", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.0", + "frame-system 36.0.0", "impl-trait-for-tuples", "log", "pallet-message-queue", @@ -2959,13 +3015,13 @@ dependencies = [ [[package]] name = "cumulus-pallet-session-benchmarking" -version = "16.0.0" +version = "17.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5d45ca03e091945ecbb293df36823202ce3eba6133454968bf54e3f82c1b58ee" +checksum = "506daacefa861aa2909b64f26e76495ce029227fd8355b97e074cc1d5dc54ab2" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.0", + "frame-system 36.0.0", "pallet-session", "parity-scale-codec", "sp-runtime 38.0.0", @@ -2974,13 +3030,13 @@ dependencies = [ [[package]] name = "cumulus-pallet-xcm" -version = "0.14.0" +version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dccf061aecc7c4b393c6586a0d95900bc0dfc8ac9298313a608d2389bf7f8de2" +checksum = "8d5224285f60e5159bab549f458079d606a7f95ef779def8b89f1a244dc7cf81" dependencies = [ "cumulus-primitives-core", - "frame-support", - "frame-system", + "frame-support 36.0.0", + "frame-system 36.0.0", "parity-scale-codec", "scale-info", "sp-io 37.0.0", @@ -2991,16 +3047,16 @@ dependencies = [ [[package]] name = "cumulus-pallet-xcmp-queue" -version = "0.14.0" +version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "437a52fc63387f1aa2211bc219e1283a935ed36d9ccbb3373faee0398125c466" +checksum = "0adf5409618b21e754fef0ac70f257878d22d61c48fdeefcab666835dcb8e0f0" dependencies = [ "bounded-collections", "bp-xcm-bridge-hub-router", "cumulus-primitives-core", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.0", + "frame-system 36.0.0", "log", "pallet-message-queue", "parity-scale-codec", @@ -3080,15 +3136,15 @@ dependencies = [ [[package]] name = "cumulus-primitives-storage-weight-reclaim" -version = "5.0.0" +version = "6.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ea10ccbf595c8b2e6dd34dcf8f5f213d6dd5e3de0f73b1eae71045ac04c692f" +checksum = "9a82ed8a74984791fb996ddaf89b62fe21aff4aac02597050ac5eed3bc215902" dependencies = [ "cumulus-primitives-core", "cumulus-primitives-proof-size-hostfunction", "docify", - "frame-support", - "frame-system", + "frame-support 36.0.0", + "frame-system 36.0.0", "log", "parity-scale-codec", "scale-info", @@ -3098,12 +3154,12 @@ dependencies = [ [[package]] name = "cumulus-primitives-utility" -version = "0.14.0" +version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "192d7917d70fdb0998311df31430bd28408af9abce79a2245efbf511a8fa4671" +checksum = "05742c520065e3870d419683113ed7f6d35de66f0c80af6828e7878d1bb0ea94" dependencies = [ "cumulus-primitives-core", - "frame-support", + "frame-support 36.0.0", "log", "pallet-asset-conversion", "parity-scale-codec", @@ -3329,7 +3385,21 @@ version = "8.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dbd676fbbab537128ef0278adb5576cf363cff6aa22a7b24effe97347cfab61e" dependencies = [ - "asn1-rs", + "asn1-rs 0.5.2", + "displaydoc", + "nom", + "num-bigint", + "num-traits", + "rusticata-macros", +] + +[[package]] +name = "der-parser" +version = "9.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5cd0a5c643689626bec213c4d8bd4d96acc8ffdb4ad4bb6bc16abf27d5f4b553" +dependencies = [ + "asn1-rs 0.6.1", "displaydoc", "nom", "num-bigint", @@ -3549,19 +3619,10 @@ dependencies = [ "elliptic-curve", "rfc6979", "serdect", - "signature 2.2.0", + "signature", "spki", ] -[[package]] -name = "ed25519" -version = "1.5.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "91cff35c70bba8a626e3185d8cd48cc11b5437e1a5bcd15b9b5fa3c64b6dfee7" -dependencies = [ - "signature 1.6.4", -] - [[package]] name = "ed25519" version = "2.2.3" @@ -3569,31 +3630,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53" dependencies = [ "pkcs8", - "signature 2.2.0", -] - -[[package]] -name = "ed25519-dalek" -version = "1.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c762bae6dcaf24c4c84667b8579785430908723d5c889f469d76a41d59cc7a9d" -dependencies = [ - "curve25519-dalek 3.2.0", - "ed25519 1.5.3", - "rand 0.7.3", - "serde", - "sha2 0.9.9", - "zeroize", + "signature", ] [[package]] name = "ed25519-dalek" -version = "2.1.0" +version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1f628eaec48bfd21b865dc2950cfa014450c01d2fa2b69a86c2fd5844ec523c0" +checksum = "4a3daa8e81a3963a60642bcc1f90a670680bd4a77535faa384e9d1c79d620871" dependencies = [ "curve25519-dalek 4.1.2", - "ed25519 2.2.3", + "ed25519", "rand_core 0.6.4", "serde", "sha2 0.10.8", @@ -3622,7 +3669,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7d9ce6874da5d4415896cd45ffbc4d1cfc0c4f9c079427bd870742c30f2f65a9" dependencies = [ "curve25519-dalek 4.1.2", - "ed25519 2.2.3", + "ed25519", "hashbrown 0.14.3", "hex", "rand_core 0.6.4", @@ -3658,9 +3705,9 @@ dependencies = [ [[package]] name = "emulated-integration-tests-common" -version = "10.0.0" +version = "11.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7ed370859bdc90ced8e87c23f5df05cb360437607583b9c32734780014ff5cd9" +checksum = "aef7c980b99bb2e4edfc9535d4096c1d0b5c8e3b52aab38a497a79563e6005f7" dependencies = [ "asset-test-utils", "bp-messages", @@ -3668,7 +3715,7 @@ dependencies = [ "cumulus-pallet-parachain-system", "cumulus-pallet-xcmp-queue", "cumulus-primitives-core", - "frame-support", + "frame-support 36.0.0", "pallet-assets", "pallet-balances", "pallet-bridge-messages", @@ -3712,13 +3759,13 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f912501176bc6c3594ff9f1e60994d99faa41bd90395866d7aed87214bb5a3a4" dependencies = [ "encointer-primitives", - "frame-support", - "frame-system", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", - "pallet-asset-tx-payment", + "pallet-asset-tx-payment 35.0.0", "pallet-encointer-balances", "pallet-encointer-ceremonies", - "pallet-transaction-payment", + "pallet-transaction-payment 35.0.0", "sp-runtime 38.0.0", ] @@ -3729,7 +3776,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0d0708f366a77b08ec7e4e0b5977294d1498201c21fe560ddb10a714eddf9ca1" dependencies = [ "encointer-primitives", - "frame-support", + "frame-support 35.0.0", "parity-scale-codec", "scale-info", "sp-api", @@ -3762,18 +3809,18 @@ dependencies = [ "encointer-balances-tx-payment", "encointer-balances-tx-payment-rpc-runtime-api", "encointer-primitives", - "frame-benchmarking", + "frame-benchmarking 36.0.0", "frame-executive", "frame-metadata-hash-extension", - "frame-support", - "frame-system", + "frame-support 36.0.0", + "frame-system 36.0.0", "frame-system-benchmarking", "frame-system-rpc-runtime-api", "frame-try-runtime", "hex-literal", "kusama-runtime-constants", "log", - "pallet-asset-tx-payment", + "pallet-asset-tx-payment 36.0.0", "pallet-aura", "pallet-authorship", "pallet-balances", @@ -3795,8 +3842,8 @@ dependencies = [ "pallet-proxy", "pallet-scheduler", "pallet-session", - "pallet-timestamp", - "pallet-transaction-payment", + "pallet-timestamp 35.0.0", + "pallet-transaction-payment 36.0.0", "pallet-transaction-payment-rpc-runtime-api", "pallet-utility", "pallet-xcm", @@ -3851,7 +3898,7 @@ dependencies = [ "bs58 0.5.0", "crc", "ep-core", - "frame-support", + "frame-support 35.0.0", "log", "parity-scale-codec", "scale-info", @@ -4152,7 +4199,7 @@ dependencies = [ "log", "num-traits", "parity-scale-codec", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "scale-info", ] @@ -4163,7 +4210,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "835c052cb0c08c1acf6ffd71c022172e18723949c8282f2b9f27efbc51e64534" dependencies = [ "byteorder", - "rand 0.8.5", + "rand", "rustc-hex", "static_assertions", ] @@ -4181,7 +4228,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e" dependencies = [ "crc32fast", - "libz-sys", "miniz_oxide", ] @@ -4245,9 +4291,35 @@ version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ad6366773db71a556710652c0560300dc938252e009d4d2c1eb9d6e5b38e0860" dependencies = [ - "frame-support", + "frame-support 35.0.0", + "frame-support-procedural", + "frame-system 35.0.0", + "linregress", + "log", + "parity-scale-codec", + "paste", + "scale-info", + "serde", + "sp-api", + "sp-application-crypto 37.0.0", + "sp-core 34.0.0", + "sp-io 37.0.0", + "sp-runtime 38.0.0", + "sp-runtime-interface 28.0.0", + "sp-std", + "sp-storage 21.0.0", + "static_assertions", +] + +[[package]] +name = "frame-benchmarking" +version = "36.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "709b26657ebbba53dc7bb616577375ca462b20fef1b00e8d9b20d2435e87f7bc" +dependencies = [ + "frame-support 36.0.0", "frame-support-procedural", - "frame-system", + "frame-system 36.0.0", "linregress", "log", "parity-scale-codec", @@ -4279,13 +4351,13 @@ dependencies = [ [[package]] name = "frame-election-provider-support" -version = "35.0.0" +version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b3c089c16a066dfb5042cadc27c01738d93258e8f5f7ef7a83b4c8661616d1ac" +checksum = "b1ec289ebad5e601bb165cf7eb6ec2179ae34280ee310d0710a3111d4f8f8f94" dependencies = [ "frame-election-provider-solution-type", - "frame-support", - "frame-system", + "frame-support 36.0.0", + "frame-system 36.0.0", "parity-scale-codec", "scale-info", "sp-arithmetic 26.0.0", @@ -4297,13 +4369,13 @@ dependencies = [ [[package]] name = "frame-executive" -version = "35.0.0" +version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9287dd6070c0ca90b42c9b4fc44f2bc91adf08b73c11c74484c416f0cc9abe04" +checksum = "4d878830330eaa9e8b886279c338556b05702d0059989cb51cfb226b70bf3fa4" dependencies = [ "aquamarine", - "frame-support", - "frame-system", + "frame-support 36.0.0", + "frame-system 36.0.0", "frame-try-runtime", "log", "parity-scale-codec", @@ -4340,14 +4412,14 @@ dependencies = [ [[package]] name = "frame-metadata-hash-extension" -version = "0.3.0" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ba1fa15dc90efe948898c06a3be111628230db100ffa2907e662062e9c9d1abd" +checksum = "cf37fc730bf4b51e82a34c6357eebe32c04dbacf6525e0a7b9726f6a17ec9427" dependencies = [ "array-bytes", "docify", - "frame-support", - "frame-system", + "frame-support 36.0.0", + "frame-system 36.0.0", "log", "parity-scale-codec", "scale-info", @@ -4356,13 +4428,13 @@ dependencies = [ [[package]] name = "frame-remote-externalities" -version = "0.42.0" +version = "0.43.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "36b0819e6a65cd647f33ddef0e73583c2d527e87e4bcd1472e41e9c6bbcfeb67" +checksum = "ff3f2bb3fcc79232818b2d6dd516301b5906cf9e49da77ccd803f19c3d060119" dependencies = [ "futures", "indicatif", - "jsonrpsee", + "jsonrpsee 0.23.2", "log", "parity-scale-codec", "serde", @@ -4419,11 +4491,53 @@ dependencies = [ "tt-call", ] +[[package]] +name = "frame-support" +version = "36.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "512b517645f29d76c79e4c97bf8b0f4dcb6708a2af3be24b1956085dcdcf6ce5" +dependencies = [ + "aquamarine", + "array-bytes", + "bitflags 1.3.2", + "docify", + "environmental", + "frame-metadata 16.0.0", + "frame-support-procedural", + "impl-trait-for-tuples", + "k256", + "log", + "macro_magic", + "parity-scale-codec", + "paste", + "scale-info", + "serde", + "serde_json", + "smallvec", + "sp-api", + "sp-arithmetic 26.0.0", + "sp-core 34.0.0", + "sp-crypto-hashing-proc-macro", + "sp-debug-derive", + "sp-genesis-builder", + "sp-inherents", + "sp-io 37.0.0", + "sp-metadata-ir", + "sp-runtime 38.0.0", + "sp-staking", + "sp-state-machine 0.42.0", + "sp-std", + "sp-tracing 17.0.0", + "sp-weights 31.0.0", + "static_assertions", + "tt-call", +] + [[package]] name = "frame-support-procedural" -version = "30.0.0" +version = "30.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4328bc3667947393eabd1234ae2f07f1c71b63f57b41344db3d9eafe3384adfd" +checksum = "fd94af68373e179c32c360b3c280497a9cf0f45a4f47f0ee6539a6c6c9cf2343" dependencies = [ "Inflector", "cfg-expr", @@ -4432,7 +4546,7 @@ dependencies = [ "frame-support-procedural-tools", "itertools 0.11.0", "macro_magic", - "proc-macro-warning", + "proc-macro-warning 1.0.0", "proc-macro2", "quote", "sp-crypto-hashing", @@ -4471,7 +4585,28 @@ checksum = "6baa2218d90c5a23db08dd0188cfe6aa0af7d36fb9b0fc2f73bc5c4abe4dd812" dependencies = [ "cfg-if", "docify", - "frame-support", + "frame-support 35.0.0", + "log", + "parity-scale-codec", + "scale-info", + "serde", + "sp-core 34.0.0", + "sp-io 37.0.0", + "sp-runtime 38.0.0", + "sp-std", + "sp-version", + "sp-weights 31.0.0", +] + +[[package]] +name = "frame-system" +version = "36.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2c2f10b6943da5d00f45b1b07b101bea49647d0e6c7e755b2852fd947072d7ee" +dependencies = [ + "cfg-if", + "docify", + "frame-support 36.0.0", "log", "parity-scale-codec", "scale-info", @@ -4486,13 +4621,13 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" -version = "35.0.0" +version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "be45f57aefef5fa97fce1482dc1ede197620d8b0bb588b3cec8d84f32557cf8b" +checksum = "15afc91c7780e18274dcea58ed1edb700c48d10e086a9785e3f6708099cd3250" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.0", + "frame-system 36.0.0", "parity-scale-codec", "scale-info", "sp-core 34.0.0", @@ -4512,11 +4647,11 @@ dependencies = [ [[package]] name = "frame-try-runtime" -version = "0.41.0" +version = "0.42.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f2b9c95e0b38d713a46bb71bc395d4ed067c7a0f5370e13282c07c91fd1ec0d" +checksum = "ae6ba8b36a52775ad39ccfb45ff4ad814c3cb45ec74d0a4271889e00bd791c6c" dependencies = [ - "frame-support", + "frame-support 36.0.0", "parity-scale-codec", "sp-api", "sp-runtime 38.0.0", @@ -4553,6 +4688,16 @@ dependencies = [ "futures-util", ] +[[package]] +name = "futures-bounded" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b07bbbe7d7e78809544c6f718d875627addc73a7c3582447abc052cd3dc67e0" +dependencies = [ + "futures-timer", + "futures-util", +] + [[package]] name = "futures-channel" version = "0.3.30" @@ -4613,13 +4758,12 @@ dependencies = [ [[package]] name = "futures-rustls" -version = "0.22.2" +version = "0.24.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d2411eed028cdf8c8034eaf21f9915f956b6c3abec4d4c7949ee67f0721127bd" +checksum = "35bd3cf68c183738046838e300353e4716c674dc5e56890de4826801a6622a28" dependencies = [ "futures-io", - "rustls 0.20.9", - "webpki", + "rustls 0.21.10", ] [[package]] @@ -4687,17 +4831,6 @@ dependencies = [ "zeroize", ] -[[package]] -name = "getrandom" -version = "0.1.16" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" -dependencies = [ - "cfg-if", - "libc", - "wasi 0.9.0+wasi-snapshot-preview1", -] - [[package]] name = "getrandom" version = "0.2.12" @@ -4706,7 +4839,7 @@ checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5" dependencies = [ "cfg-if", "libc", - "wasi 0.11.0+wasi-snapshot-preview1", + "wasi", ] [[package]] @@ -4715,7 +4848,7 @@ version = "0.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6ea1015b5a70616b688dc230cfe50c8af89d972cb132d5a622814d29773b10b9" dependencies = [ - "rand 0.8.5", + "rand", "rand_core 0.6.4", ] @@ -4757,10 +4890,10 @@ dependencies = [ "cumulus-pallet-parachain-system", "cumulus-pallet-xcm", "cumulus-primitives-core", - "frame-benchmarking", + "frame-benchmarking 36.0.0", "frame-executive", - "frame-support", - "frame-system", + "frame-support 36.0.0", + "frame-system 36.0.0", "frame-system-benchmarking", "frame-system-rpc-runtime-api", "frame-try-runtime", @@ -4812,7 +4945,26 @@ dependencies = [ "futures-core", "futures-sink", "futures-util", - "http", + "http 0.2.11", + "indexmap 2.2.6", + "slab", + "tokio", + "tokio-util", + "tracing", +] + +[[package]] +name = "h2" +version = "0.4.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fa82e28a107a8cc405f0839610bdc9b15f1e25ec7d696aa5cf173edbcb1486ab" +dependencies = [ + "atomic-waker", + "bytes", + "fnv", + "futures-core", + "futures-sink", + "http 1.1.0", "indexmap 2.2.6", "slab", "tokio", @@ -4980,13 +5132,47 @@ dependencies = [ ] [[package]] -name = "http-body" +name = "http" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258" +dependencies = [ + "bytes", + "fnv", + "itoa", +] + +[[package]] +name = "http-body" version = "0.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" dependencies = [ "bytes", - "http", + "http 0.2.11", + "pin-project-lite 0.2.13", +] + +[[package]] +name = "http-body" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" +dependencies = [ + "bytes", + "http 1.1.0", +] + +[[package]] +name = "http-body-util" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f" +dependencies = [ + "bytes", + "futures-util", + "http 1.1.0", + "http-body 1.0.1", "pin-project-lite 0.2.13", ] @@ -5024,9 +5210,9 @@ dependencies = [ "futures-channel", "futures-core", "futures-util", - "h2", - "http", - "http-body", + "h2 0.3.22", + "http 0.2.11", + "http-body 0.4.5", "httparse", "httpdate", "itoa", @@ -5038,6 +5224,26 @@ dependencies = [ "want", ] +[[package]] +name = "hyper" +version = "1.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "50dfd22e0e76d0f662d429a5f80fcaf3855009297eab6a0a9f8543834744ba05" +dependencies = [ + "bytes", + "futures-channel", + "futures-util", + "h2 0.4.5", + "http 1.1.0", + "http-body 1.0.1", + "httparse", + "itoa", + "pin-project-lite 0.2.13", + "smallvec", + "tokio", + "want", +] + [[package]] name = "hyper-rustls" version = "0.24.2" @@ -5045,8 +5251,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590" dependencies = [ "futures-util", - "http", - "hyper", + "http 0.2.11", + "hyper 0.14.27", "log", "rustls 0.21.10", "rustls-native-certs 0.6.3", @@ -5054,13 +5260,31 @@ dependencies = [ "tokio-rustls 0.24.1", ] +[[package]] +name = "hyper-rustls" +version = "0.27.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5ee4be2c948921a1a5320b629c4193916ed787a7f7f293fd3f7f5a6c9de74155" +dependencies = [ + "futures-util", + "http 1.1.0", + "hyper 1.4.1", + "hyper-util", + "log", + "rustls 0.23.11", + "rustls-pki-types", + "tokio", + "tokio-rustls 0.26.0", + "tower-service", +] + [[package]] name = "hyper-timeout" version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bbb958482e8c7be4bc3cf272a766a2b0bf1a6755e7a6ae777f017a31d11b13b1" dependencies = [ - "hyper", + "hyper 0.14.27", "pin-project-lite 0.2.13", "tokio", "tokio-io-timeout", @@ -5073,12 +5297,32 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905" dependencies = [ "bytes", - "hyper", + "hyper 0.14.27", "native-tls", "tokio", "tokio-native-tls", ] +[[package]] +name = "hyper-util" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3ab92f4f49ee4fb4f997c784b7a2e0fa70050211e0b6a287f898c3c9785ca956" +dependencies = [ + "bytes", + "futures-channel", + "futures-util", + "http 1.1.0", + "http-body 1.0.1", + "hyper 1.4.1", + "pin-project-lite 0.2.13", + "socket2 0.5.7", + "tokio", + "tower", + "tower-service", + "tracing", +] + [[package]] name = "iana-time-zone" version = "0.1.58" @@ -5168,6 +5412,25 @@ dependencies = [ "windows", ] +[[package]] +name = "igd-next" +version = "0.14.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "064d90fec10d541084e7b39ead8875a5a80d9114a2b18791565253bae25f49e4" +dependencies = [ + "async-trait", + "attohttpc", + "bytes", + "futures", + "http 0.2.11", + "hyper 0.14.27", + "log", + "rand", + "tokio", + "url", + "xmltree", +] + [[package]] name = "impl-codec" version = "0.6.0" @@ -5340,7 +5603,7 @@ version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b58db92f96b720de98181bbbe63c831e87005ab460c1bf306eb2622b4707997f" dependencies = [ - "socket2 0.5.5", + "socket2 0.5.7", "widestring", "windows-sys 0.48.0", "winreg", @@ -5396,6 +5659,26 @@ version = "1.0.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c" +[[package]] +name = "jni" +version = "0.19.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c6df18c2e3db7e453d3c6ac5b3e9d5182664d28788126d39b91f2d1e22b017ec" +dependencies = [ + "cesu8", + "combine", + "jni-sys", + "log", + "thiserror", + "walkdir", +] + +[[package]] +name = "jni-sys" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130" + [[package]] name = "jobserver" version = "0.1.27" @@ -5444,11 +5727,22 @@ version = "0.22.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cfdb12a2381ea5b2e68c3469ec604a007b367778cdb14d09612c8069ebd616ad" dependencies = [ - "jsonrpsee-client-transport", - "jsonrpsee-core", - "jsonrpsee-http-client", + "jsonrpsee-client-transport 0.22.5", + "jsonrpsee-core 0.22.5", + "jsonrpsee-http-client 0.22.5", + "jsonrpsee-types 0.22.5", +] + +[[package]] +name = "jsonrpsee" +version = "0.23.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "62b089779ad7f80768693755a031cc14a7766aba707cbe886674e3f79e9b7e47" +dependencies = [ + "jsonrpsee-core 0.23.2", + "jsonrpsee-http-client 0.23.2", "jsonrpsee-proc-macros", - "jsonrpsee-types", + "jsonrpsee-types 0.23.2", "jsonrpsee-ws-client", "tracing", ] @@ -5460,12 +5754,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4978087a58c3ab02efc5b07c5e5e2803024536106fd5506f558db172c889b3aa" dependencies = [ "futures-util", - "http", - "jsonrpsee-core", + "http 0.2.11", + "jsonrpsee-core 0.22.5", "pin-project", "rustls-native-certs 0.7.0", "rustls-pki-types", - "soketto", + "soketto 0.7.1", "thiserror", "tokio", "tokio-rustls 0.25.0", @@ -5474,6 +5768,29 @@ dependencies = [ "url", ] +[[package]] +name = "jsonrpsee-client-transport" +version = "0.23.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "08163edd8bcc466c33d79e10f695cdc98c00d1e6ddfb95cec41b6b0279dd5432" +dependencies = [ + "base64 0.22.1", + "futures-util", + "http 1.1.0", + "jsonrpsee-core 0.23.2", + "pin-project", + "rustls 0.23.11", + "rustls-pki-types", + "rustls-platform-verifier", + "soketto 0.8.0", + "thiserror", + "tokio", + "tokio-rustls 0.26.0", + "tokio-util", + "tracing", + "url", +] + [[package]] name = "jsonrpsee-core" version = "0.22.5" @@ -5485,11 +5802,37 @@ dependencies = [ "beef", "futures-timer", "futures-util", - "hyper", - "jsonrpsee-types", - "parking_lot 0.12.1", + "hyper 0.14.27", + "jsonrpsee-types 0.22.5", "pin-project", - "rand 0.8.5", + "rustc-hash", + "serde", + "serde_json", + "thiserror", + "tokio", + "tokio-stream", + "tracing", +] + +[[package]] +name = "jsonrpsee-core" +version = "0.23.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "79712302e737d23ca0daa178e752c9334846b08321d439fd89af9a384f8c830b" +dependencies = [ + "anyhow", + "async-trait", + "beef", + "bytes", + "futures-timer", + "futures-util", + "http 1.1.0", + "http-body 1.0.1", + "http-body-util", + "jsonrpsee-types 0.23.2", + "parking_lot 0.12.3", + "pin-project", + "rand", "rustc-hash", "serde", "serde_json", @@ -5506,10 +5849,35 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1ccf93fc4a0bfe05d851d37d7c32b7f370fe94336b52a2f0efc5f1981895c2e5" dependencies = [ "async-trait", - "hyper", - "hyper-rustls", - "jsonrpsee-core", - "jsonrpsee-types", + "hyper 0.14.27", + "hyper-rustls 0.24.2", + "jsonrpsee-core 0.22.5", + "jsonrpsee-types 0.22.5", + "serde", + "serde_json", + "thiserror", + "tokio", + "tower", + "tracing", + "url", +] + +[[package]] +name = "jsonrpsee-http-client" +version = "0.23.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2d90064e04fb9d7282b1c71044ea94d0bbc6eff5621c66f1a0bce9e9de7cf3ac" +dependencies = [ + "async-trait", + "base64 0.22.1", + "http-body 1.0.1", + "hyper 1.4.1", + "hyper-rustls 0.27.2", + "hyper-util", + "jsonrpsee-core 0.23.2", + "jsonrpsee-types 0.23.2", + "rustls 0.23.11", + "rustls-platform-verifier", "serde", "serde_json", "thiserror", @@ -5521,11 +5889,11 @@ dependencies = [ [[package]] name = "jsonrpsee-proc-macros" -version = "0.22.5" +version = "0.23.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7d0bb047e79a143b32ea03974a6bf59b62c2a4c5f5d42a381c907a8bbb3f75c0" +checksum = "7895f186d5921065d96e16bd795e5ca89ac8356ec423fafc6e3d7cf8ec11aee4" dependencies = [ - "heck 0.4.1", + "heck 0.5.0", "proc-macro-crate 3.1.0", "proc-macro2", "quote", @@ -5545,16 +5913,29 @@ dependencies = [ "thiserror", ] +[[package]] +name = "jsonrpsee-types" +version = "0.23.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d9c465fbe385238e861fdc4d1c85e04ada6c1fd246161d26385c1b311724d2af" +dependencies = [ + "beef", + "http 1.1.0", + "serde", + "serde_json", + "thiserror", +] + [[package]] name = "jsonrpsee-ws-client" -version = "0.22.5" +version = "0.23.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "58b9db2dfd5bb1194b0ce921504df9ceae210a345bc2f6c5a61432089bbab070" +checksum = "1c28759775f5cb2f1ea9667672d3fe2b0e701d1f4b7b67954e60afe7fd058b5e" dependencies = [ - "http", - "jsonrpsee-client-transport", - "jsonrpsee-core", - "jsonrpsee-types", + "http 1.1.0", + "jsonrpsee-client-transport 0.23.2", + "jsonrpsee-core 0.23.2", + "jsonrpsee-types 0.23.2", "url", ] @@ -5625,17 +6006,17 @@ dependencies = [ "either", "futures", "home", - "http", - "http-body", - "hyper", - "hyper-rustls", + "http 0.2.11", + "http-body 0.4.5", + "hyper 0.14.27", + "hyper-rustls 0.24.2", "hyper-timeout", "jsonpath-rust", "k8s-openapi", "kube-core", "pem 3.0.4", "pin-project", - "rand 0.8.5", + "rand", "rustls 0.21.10", "rustls-pemfile 1.0.4", "secrecy", @@ -5659,7 +6040,7 @@ checksum = "b5bba93d054786eba7994d03ce522f368ef7d48c88a1826faa28478d85fb63ae" dependencies = [ "chrono", "form_urlencoded", - "http", + "http 0.2.11", "json-patch", "k8s-openapi", "once_cell", @@ -5683,7 +6064,7 @@ dependencies = [ "json-patch", "k8s-openapi", "kube-client", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "pin-project", "serde", "serde_json", @@ -5728,7 +6109,7 @@ dependencies = [ name = "kusama-runtime-constants" version = "1.0.0" dependencies = [ - "frame-support", + "frame-support 36.0.0", "polkadot-primitives", "polkadot-runtime-common", "smallvec", @@ -5779,21 +6160,22 @@ checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058" [[package]] name = "libp2p" -version = "0.51.4" +version = "0.52.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f35eae38201a993ece6bdc823292d6abd1bffed1c4d0f4a3517d2bd8e1d917fe" +checksum = "e94495eb319a85b70a68b85e2389a95bb3555c71c49025b78c691a854a7e6464" dependencies = [ "bytes", + "either", "futures", "futures-timer", - "getrandom 0.2.12", + "getrandom", "instant", - "libp2p-allow-block-list 0.1.1", - "libp2p-connection-limits 0.1.0", - "libp2p-core 0.39.2", + "libp2p-allow-block-list", + "libp2p-connection-limits", + "libp2p-core", "libp2p-dns", "libp2p-identify", - "libp2p-identity 0.1.3", + "libp2p-identity", "libp2p-kad", "libp2p-mdns", "libp2p-metrics", @@ -5801,71 +6183,27 @@ dependencies = [ "libp2p-ping", "libp2p-quic", "libp2p-request-response", - "libp2p-swarm 0.42.2", + "libp2p-swarm", "libp2p-tcp", + "libp2p-upnp", "libp2p-wasm-ext", "libp2p-websocket", "libp2p-yamux", - "multiaddr 0.17.1", - "pin-project", -] - -[[package]] -name = "libp2p" -version = "0.52.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e94495eb319a85b70a68b85e2389a95bb3555c71c49025b78c691a854a7e6464" -dependencies = [ - "bytes", - "either", - "futures", - "futures-timer", - "getrandom 0.2.12", - "instant", - "libp2p-allow-block-list 0.2.0", - "libp2p-connection-limits 0.2.1", - "libp2p-core 0.40.1", - "libp2p-identity 0.2.8", - "libp2p-swarm 0.43.7", "multiaddr 0.18.1", "pin-project", - "rw-stream-sink 0.4.0", + "rw-stream-sink", "thiserror", ] -[[package]] -name = "libp2p-allow-block-list" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "510daa05efbc25184458db837f6f9a5143888f1caa742426d92e1833ddd38a50" -dependencies = [ - "libp2p-core 0.39.2", - "libp2p-identity 0.1.3", - "libp2p-swarm 0.42.2", - "void", -] - [[package]] name = "libp2p-allow-block-list" version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "55b46558c5c0bf99d3e2a1a38fd54ff5476ca66dd1737b12466a1824dd219311" dependencies = [ - "libp2p-core 0.40.1", - "libp2p-identity 0.2.8", - "libp2p-swarm 0.43.7", - "void", -] - -[[package]] -name = "libp2p-connection-limits" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4caa33f1d26ed664c4fe2cca81a08c8e07d4c1c04f2f4ac7655c2dd85467fda0" -dependencies = [ - "libp2p-core 0.39.2", - "libp2p-identity 0.1.3", - "libp2p-swarm 0.42.2", + "libp2p-core", + "libp2p-identity", + "libp2p-swarm", "void", ] @@ -5875,37 +6213,9 @@ version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2f5107ad45cb20b2f6c3628c7b6014b996fcb13a88053f4569c872c6e30abf58" dependencies = [ - "libp2p-core 0.40.1", - "libp2p-identity 0.2.8", - "libp2p-swarm 0.43.7", - "void", -] - -[[package]] -name = "libp2p-core" -version = "0.39.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c1df63c0b582aa434fb09b2d86897fa2b419ffeccf934b36f87fcedc8e835c2" -dependencies = [ - "either", - "fnv", - "futures", - "futures-timer", - "instant", - "libp2p-identity 0.1.3", - "log", - "multiaddr 0.17.1", - "multihash 0.17.0", - "multistream-select 0.12.1", - "once_cell", - "parking_lot 0.12.1", - "pin-project", - "quick-protobuf", - "rand 0.8.5", - "rw-stream-sink 0.3.0", - "smallvec", - "thiserror", - "unsigned-varint", + "libp2p-core", + "libp2p-identity", + "libp2p-swarm", "void", ] @@ -5920,52 +6230,55 @@ dependencies = [ "futures", "futures-timer", "instant", - "libp2p-identity 0.2.8", + "libp2p-identity", "log", "multiaddr 0.18.1", "multihash 0.19.1", - "multistream-select 0.13.0", + "multistream-select", "once_cell", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "pin-project", "quick-protobuf", - "rand 0.8.5", - "rw-stream-sink 0.4.0", + "rand", + "rw-stream-sink", "smallvec", "thiserror", - "unsigned-varint", + "unsigned-varint 0.7.2", "void", ] [[package]] name = "libp2p-dns" -version = "0.39.0" +version = "0.40.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "146ff7034daae62077c415c2376b8057368042df6ab95f5432ad5e88568b1554" +checksum = "e6a18db73084b4da2871438f6239fef35190b05023de7656e877c18a00541a3b" dependencies = [ + "async-trait", "futures", - "libp2p-core 0.39.2", + "libp2p-core", + "libp2p-identity", "log", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "smallvec", - "trust-dns-resolver 0.22.0", + "trust-dns-resolver", ] [[package]] name = "libp2p-identify" -version = "0.42.2" +version = "0.43.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5455f472243e63b9c497ff320ded0314254a9eb751799a39c283c6f20b793f3c" +checksum = "45a96638a0a176bec0a4bcaebc1afa8cf909b114477209d7456ade52c61cd9cd" dependencies = [ "asynchronous-codec", "either", "futures", + "futures-bounded", "futures-timer", - "libp2p-core 0.39.2", - "libp2p-identity 0.1.3", - "libp2p-swarm 0.42.2", + "libp2p-core", + "libp2p-identity", + "libp2p-swarm", "log", - "lru 0.10.1", + "lru 0.12.3", "quick-protobuf", "quick-protobuf-codec", "smallvec", @@ -5973,24 +6286,6 @@ dependencies = [ "void", ] -[[package]] -name = "libp2p-identity" -version = "0.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "276bb57e7af15d8f100d3c11cbdd32c6752b7eef4ba7a18ecf464972c07abcce" -dependencies = [ - "bs58 0.4.0", - "ed25519-dalek 2.1.0", - "log", - "multiaddr 0.17.1", - "multihash 0.17.0", - "quick-protobuf", - "rand 0.8.5", - "sha2 0.10.8", - "thiserror", - "zeroize", -] - [[package]] name = "libp2p-identity" version = "0.2.8" @@ -5998,11 +6293,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "999ec70441b2fb35355076726a6bc466c932e9bdc66f6a11c6c0aa17c7ab9be0" dependencies = [ "bs58 0.5.0", - "ed25519-dalek 2.1.0", + "ed25519-dalek", "hkdf", "multihash 0.19.1", "quick-protobuf", - "rand 0.8.5", + "rand", "sha2 0.10.8", "thiserror", "tracing", @@ -6011,9 +6306,9 @@ dependencies = [ [[package]] name = "libp2p-kad" -version = "0.43.3" +version = "0.44.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "39d5ef876a2b2323d63c258e63c2f8e36f205fe5a11f0b3095d59635650790ff" +checksum = "16ea178dabba6dde6ffc260a8e0452ccdc8f79becf544946692fff9d412fc29d" dependencies = [ "arrayvec 0.7.4", "asynchronous-codec", @@ -6023,36 +6318,37 @@ dependencies = [ "futures", "futures-timer", "instant", - "libp2p-core 0.39.2", - "libp2p-identity 0.1.3", - "libp2p-swarm 0.42.2", + "libp2p-core", + "libp2p-identity", + "libp2p-swarm", "log", "quick-protobuf", - "rand 0.8.5", + "quick-protobuf-codec", + "rand", "sha2 0.10.8", "smallvec", "thiserror", "uint", - "unsigned-varint", + "unsigned-varint 0.7.2", "void", ] [[package]] name = "libp2p-mdns" -version = "0.43.1" +version = "0.44.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "19983e1f949f979a928f2c603de1cf180cc0dc23e4ac93a62651ccb18341460b" +checksum = "42a2567c305232f5ef54185e9604579a894fd0674819402bb0ac0246da82f52a" dependencies = [ "data-encoding", "futures", "if-watch", - "libp2p-core 0.39.2", - "libp2p-identity 0.1.3", - "libp2p-swarm 0.42.2", + "libp2p-core", + "libp2p-identity", + "libp2p-swarm", "log", - "rand 0.8.5", + "rand", "smallvec", - "socket2 0.4.10", + "socket2 0.5.7", "tokio", "trust-dns-proto 0.22.0", "void", @@ -6060,114 +6356,103 @@ dependencies = [ [[package]] name = "libp2p-metrics" -version = "0.12.0" +version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a42ec91e227d7d0dafa4ce88b333cdf5f277253873ab087555c92798db2ddd46" +checksum = "239ba7d28f8d0b5d77760dc6619c05c7e88e74ec8fbbe97f856f20a56745e620" dependencies = [ - "libp2p-core 0.39.2", + "instant", + "libp2p-core", "libp2p-identify", + "libp2p-identity", "libp2p-kad", "libp2p-ping", - "libp2p-swarm 0.42.2", + "libp2p-swarm", + "once_cell", "prometheus-client", ] [[package]] name = "libp2p-noise" -version = "0.42.2" +version = "0.43.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c3673da89d29936bc6435bafc638e2f184180d554ce844db65915113f86ec5e" +checksum = "d2eeec39ad3ad0677551907dd304b2f13f17208ccebe333bef194076cd2e8921" dependencies = [ "bytes", - "curve25519-dalek 3.2.0", + "curve25519-dalek 4.1.2", "futures", - "libp2p-core 0.39.2", - "libp2p-identity 0.1.3", + "libp2p-core", + "libp2p-identity", "log", + "multiaddr 0.18.1", + "multihash 0.19.1", "once_cell", "quick-protobuf", - "rand 0.8.5", + "rand", "sha2 0.10.8", "snow", "static_assertions", "thiserror", - "x25519-dalek 1.1.1", + "x25519-dalek", "zeroize", ] [[package]] name = "libp2p-ping" -version = "0.42.0" +version = "0.43.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3e57759c19c28a73ef1eb3585ca410cefb72c1a709fcf6de1612a378e4219202" +checksum = "e702d75cd0827dfa15f8fd92d15b9932abe38d10d21f47c50438c71dd1b5dae3" dependencies = [ "either", "futures", "futures-timer", "instant", - "libp2p-core 0.39.2", - "libp2p-swarm 0.42.2", + "libp2p-core", + "libp2p-identity", + "libp2p-swarm", "log", - "rand 0.8.5", + "rand", "void", ] [[package]] name = "libp2p-quic" -version = "0.7.0-alpha.3" +version = "0.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c6b26abd81cd2398382a1edfe739b539775be8a90fa6914f39b2ab49571ec735" +checksum = "130d451d83f21b81eb7b35b360bc7972aeafb15177784adc56528db082e6b927" dependencies = [ "bytes", "futures", "futures-timer", "if-watch", - "libp2p-core 0.39.2", - "libp2p-identity 0.1.3", + "libp2p-core", + "libp2p-identity", "libp2p-tls", "log", - "parking_lot 0.12.1", - "quinn-proto", - "rand 0.8.5", - "rustls 0.20.9", + "parking_lot 0.12.3", + "quinn 0.10.2", + "rand", + "ring 0.16.20", + "rustls 0.21.10", + "socket2 0.5.7", "thiserror", "tokio", ] [[package]] name = "libp2p-request-response" -version = "0.24.1" +version = "0.25.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7ffdb374267d42dc5ed5bc53f6e601d4a64ac5964779c6e40bb9e4f14c1e30d5" +checksum = "d8e3b4d67870478db72bac87bfc260ee6641d0734e0e3e275798f089c3fecfd4" dependencies = [ "async-trait", "futures", "instant", - "libp2p-core 0.39.2", - "libp2p-identity 0.1.3", - "libp2p-swarm 0.42.2", - "rand 0.8.5", - "smallvec", -] - -[[package]] -name = "libp2p-swarm" -version = "0.42.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "903b3d592d7694e56204d211f29d31bc004be99386644ba8731fc3e3ef27b296" -dependencies = [ - "either", - "fnv", - "futures", - "futures-timer", - "instant", - "libp2p-core 0.39.2", - "libp2p-identity 0.1.3", - "libp2p-swarm-derive", + "libp2p-core", + "libp2p-identity", + "libp2p-swarm", "log", - "rand 0.8.5", + "rand", "smallvec", - "tokio", "void", ] @@ -6182,103 +6467,125 @@ dependencies = [ "futures", "futures-timer", "instant", - "libp2p-core 0.40.1", - "libp2p-identity 0.2.8", + "libp2p-core", + "libp2p-identity", + "libp2p-swarm-derive", "log", - "multistream-select 0.13.0", + "multistream-select", "once_cell", - "rand 0.8.5", + "rand", "smallvec", + "tokio", "void", ] [[package]] name = "libp2p-swarm-derive" -version = "0.32.0" +version = "0.33.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0fba456131824ab6acd4c7bf61e9c0f0a3014b5fc9868ccb8e10d344594cdc4f" +checksum = "c4d5ec2a3df00c7836d7696c136274c9c59705bac69133253696a6c932cd1d74" dependencies = [ "heck 0.4.1", + "proc-macro-warning 0.4.2", + "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.65", ] [[package]] name = "libp2p-tcp" -version = "0.39.0" +version = "0.40.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "33d33698596d7722d85d3ab0c86c2c322254fce1241e91208e3679b4eb3026cf" +checksum = "b558dd40d1bcd1aaaed9de898e9ec6a436019ecc2420dd0016e712fbb61c5508" dependencies = [ "futures", "futures-timer", "if-watch", "libc", - "libp2p-core 0.39.2", + "libp2p-core", + "libp2p-identity", "log", - "socket2 0.4.10", + "socket2 0.5.7", "tokio", ] [[package]] name = "libp2p-tls" -version = "0.1.0" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ff08d13d0dc66e5e9ba6279c1de417b84fa0d0adc3b03e5732928c180ec02781" +checksum = "8218d1d5482b122ccae396bbf38abdcb283ecc96fa54760e1dfd251f0546ac61" dependencies = [ "futures", "futures-rustls", - "libp2p-core 0.39.2", - "libp2p-identity 0.1.3", + "libp2p-core", + "libp2p-identity", "rcgen", "ring 0.16.20", - "rustls 0.20.9", + "rustls 0.21.10", + "rustls-webpki 0.101.7", "thiserror", - "webpki", - "x509-parser 0.14.0", + "x509-parser 0.15.1", "yasna", ] +[[package]] +name = "libp2p-upnp" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "82775a47b34f10f787ad3e2a22e2c1541e6ebef4fe9f28f3ac553921554c94c1" +dependencies = [ + "futures", + "futures-timer", + "igd-next", + "libp2p-core", + "libp2p-swarm", + "log", + "tokio", + "void", +] + [[package]] name = "libp2p-wasm-ext" -version = "0.39.0" +version = "0.40.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "77dff9d32353a5887adb86c8afc1de1a94d9e8c3bc6df8b2201d7cdf5c848f43" +checksum = "1e5d8e3a9e07da0ef5b55a9f26c009c8fb3c725d492d8bb4b431715786eea79c" dependencies = [ "futures", "js-sys", - "libp2p-core 0.39.2", - "parity-send-wrapper", + "libp2p-core", + "send_wrapper", "wasm-bindgen", "wasm-bindgen-futures", ] [[package]] name = "libp2p-websocket" -version = "0.41.0" +version = "0.42.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "111273f7b3d3510524c752e8b7a5314b7f7a1fee7e68161c01a7d72cbb06db9f" +checksum = "3facf0691bab65f571bc97c6c65ffa836248ca631d631b7691ac91deb7fceb5f" dependencies = [ "either", "futures", "futures-rustls", - "libp2p-core 0.39.2", + "libp2p-core", + "libp2p-identity", "log", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "quicksink", - "rw-stream-sink 0.3.0", - "soketto", + "rw-stream-sink", + "soketto 0.7.1", "url", - "webpki-roots", + "webpki-roots 0.25.4", ] [[package]] name = "libp2p-yamux" -version = "0.43.1" +version = "0.44.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4dcd21d950662700a385d4c6d68e2f5f54d778e97068cdd718522222ef513bda" +checksum = "8eedcb62824c4300efb9cfd4e2a6edaf3ca097b9e68b36dabe45a44469fd6a85" dependencies = [ "futures", - "libp2p-core 0.39.2", + "libp2p-core", "log", "thiserror", "yamux", @@ -6290,7 +6597,7 @@ version = "0.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "85c833ca1e66078851dba29046874e38f08b2c883700aa29a03ddd3b23814ee8" dependencies = [ - "bitflags 2.4.1", + "bitflags 2.6.0", "libc", "redox_syscall 0.4.1", ] @@ -6308,7 +6615,7 @@ dependencies = [ "libsecp256k1-core", "libsecp256k1-gen-ecmult", "libsecp256k1-gen-genmult", - "rand 0.8.5", + "rand", "serde", "sha2 0.9.9", "typenum", @@ -6343,17 +6650,6 @@ dependencies = [ "libsecp256k1-core", ] -[[package]] -name = "libz-sys" -version = "1.1.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "295c17e837573c8c821dbaeb3cceb3d745ad082f7572191409e69cbc1b3fd050" -dependencies = [ - "cc", - "pkg-config", - "vcpkg", -] - [[package]] name = "link-cplusplus" version = "1.0.9" @@ -6413,15 +6709,15 @@ dependencies = [ [[package]] name = "litep2p" -version = "0.5.0" +version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f02542ae3a94b4c4ffa37dc56388c923e286afa3bf65452e3984b50b2a2f316" +checksum = "0f46c51c205264b834ceed95c8b195026e700494bc3991aaba3b4ea9e20626d9" dependencies = [ "async-trait", "bs58 0.4.0", "bytes", "cid 0.10.1", - "ed25519-dalek 1.0.1", + "ed25519-dalek", "futures", "futures-timer", "hex-literal", @@ -6432,12 +6728,12 @@ dependencies = [ "multihash 0.17.0", "network-interface", "nohash-hasher", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "pin-project", - "prost 0.11.9", + "prost 0.12.6", "prost-build 0.11.9", - "quinn", - "rand 0.8.5", + "quinn 0.9.4", + "rand", "rcgen", "ring 0.16.20", "rustls 0.20.9", @@ -6446,7 +6742,7 @@ dependencies = [ "simple-dns", "smallvec", "snow", - "socket2 0.5.5", + "socket2 0.5.7", "static_assertions", "str0m", "thiserror", @@ -6455,13 +6751,13 @@ dependencies = [ "tokio-tungstenite", "tokio-util", "tracing", - "trust-dns-resolver 0.23.2", + "trust-dns-resolver", "uint", - "unsigned-varint", + "unsigned-varint 0.8.0", "url", "webpki", - "x25519-dalek 2.0.0", - "x509-parser 0.15.1", + "x25519-dalek", + "x509-parser 0.16.0", "yasna", "zeroize", ] @@ -6491,15 +6787,6 @@ dependencies = [ "hashbrown 0.12.3", ] -[[package]] -name = "lru" -version = "0.10.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "718e8fae447df0c7e1ba7f5189829e63fd536945c8988d61444c19039f16b670" -dependencies = [ - "hashbrown 0.13.2", -] - [[package]] name = "lru" version = "0.12.3" @@ -6708,7 +6995,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8f3d0b296e374a4e6f3c7b0a1f5a51d748a0d34c85e7dc48fc3fa9a87657fe09" dependencies = [ "libc", - "wasi 0.11.0+wasi-snapshot-preview1", + "wasi", "windows-sys 0.48.0", ] @@ -6728,9 +7015,9 @@ dependencies = [ "hashlink", "lioness", "log", - "parking_lot 0.12.1", - "rand 0.8.5", - "rand_chacha 0.3.1", + "parking_lot 0.12.3", + "rand", + "rand_chacha", "rand_distr", "subtle 2.5.0", "thiserror", @@ -6806,7 +7093,7 @@ dependencies = [ "percent-encoding", "serde", "static_assertions", - "unsigned-varint", + "unsigned-varint 0.7.2", "url", ] @@ -6819,13 +7106,13 @@ dependencies = [ "arrayref", "byteorder", "data-encoding", - "libp2p-identity 0.2.8", + "libp2p-identity", "multibase", "multihash 0.19.1", "percent-encoding", "serde", "static_assertions", - "unsigned-varint", + "unsigned-varint 0.7.2", "url", ] @@ -6854,7 +7141,7 @@ dependencies = [ "multihash-derive", "sha2 0.10.8", "sha3", - "unsigned-varint", + "unsigned-varint 0.7.2", ] [[package]] @@ -6871,7 +7158,7 @@ dependencies = [ "multihash-derive", "sha2 0.10.8", "sha3", - "unsigned-varint", + "unsigned-varint 0.7.2", ] [[package]] @@ -6881,7 +7168,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "076d548d76a0e2a0d4ab471d0b1c36c577786dfc4471242035d97a12a735c492" dependencies = [ "core2", - "unsigned-varint", + "unsigned-varint 0.7.2", ] [[package]] @@ -6895,7 +7182,7 @@ dependencies = [ "proc-macro2", "quote", "syn 1.0.109", - "synstructure", + "synstructure 0.12.6", ] [[package]] @@ -6904,20 +7191,6 @@ version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e5ce46fe64a9d73be07dcbe690a38ce1b293be448fd8ce1e6c1b8062c9f72c6a" -[[package]] -name = "multistream-select" -version = "0.12.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c8552ab875c1313b97b8d20cb857b9fd63e2d1d6a0a1b53ce9821e575405f27a" -dependencies = [ - "bytes", - "futures", - "log", - "pin-project", - "smallvec", - "unsigned-varint", -] - [[package]] name = "multistream-select" version = "0.13.0" @@ -6929,7 +7202,7 @@ dependencies = [ "log", "pin-project", "smallvec", - "unsigned-varint", + "unsigned-varint 0.7.2", ] [[package]] @@ -7072,7 +7345,7 @@ version = "0.27.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053" dependencies = [ - "bitflags 2.4.1", + "bitflags 2.6.0", "cfg-if", "libc", ] @@ -7226,7 +7499,16 @@ version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9bedf36ffb6ba96c2eb7144ef6270557b52e54b20c0a8e1eb2ff99a6c6959bff" dependencies = [ - "asn1-rs", + "asn1-rs 0.5.2", +] + +[[package]] +name = "oid-registry" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1c958dd45046245b9c3c2547369bb634eb461670b2e7e0de552905801a648d1d" +dependencies = [ + "asn1-rs 0.6.1", ] [[package]] @@ -7253,7 +7535,7 @@ version = "0.10.64" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "95a0481286a310808298130d22dd1fef0fa571e05a8f44ec801801e84b216b1f" dependencies = [ - "bitflags 2.4.1", + "bitflags 2.6.0", "cfg-if", "foreign-types", "libc", @@ -7318,14 +7600,14 @@ checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" [[package]] name = "pallet-alliance" -version = "34.0.0" +version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "57abf7d4ed855673270296956b1f02e80d2d5b30477fb7b75ced2ebb40a0d6ef" +checksum = "a6c2c92855904f34ce42de688cc9411ffcb4c3f13751af2dafd52474d540b158" dependencies = [ "array-bytes", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.0", + "frame-system 36.0.0", "log", "pallet-collective", "pallet-identity", @@ -7340,13 +7622,13 @@ dependencies = [ [[package]] name = "pallet-asset-conversion" -version = "17.0.0" +version = "18.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0e9f1c4496f1c366a3ee01b38ba968589db41f5d44c41331111ff5a07964dbde" +checksum = "f726ebb59401c1844a4a8703047bdafcd99a1827cd5d8b2c82abeb8948a7f25b" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.0", + "frame-system 36.0.0", "log", "parity-scale-codec", "scale-info", @@ -7360,14 +7642,14 @@ dependencies = [ [[package]] name = "pallet-asset-conversion-tx-payment" -version = "17.0.0" +version = "18.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "59b413508fc0745307d01c55e686cf00d67f09b6652b7db344b69da305feaae0" +checksum = "e0fde03a96382f4dbe37ef95cb4ef7aade7c0be410cb6c888eda911c94af3eaf" dependencies = [ - "frame-support", - "frame-system", + "frame-support 36.0.0", + "frame-system 36.0.0", "pallet-asset-conversion", - "pallet-transaction-payment", + "pallet-transaction-payment 36.0.0", "parity-scale-codec", "scale-info", "sp-runtime 38.0.0", @@ -7376,13 +7658,13 @@ dependencies = [ [[package]] name = "pallet-asset-rate" -version = "14.0.0" +version = "15.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e83f523d209396ba42743008b64fe021eb6411a8d5ac868978636f0341feacc4" +checksum = "e806842bec955190ec64f8b2179f74f5355137c4cadf04f3269e6196cd19caf9" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.0", + "frame-system 36.0.0", "parity-scale-codec", "scale-info", "sp-core 34.0.0", @@ -7394,12 +7676,31 @@ dependencies = [ name = "pallet-asset-tx-payment" version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7686ab6ba85afc432794a9dbc3e7399cb1a3b1bcfdd487ce0eb2aa81c11c2497" +checksum = "7686ab6ba85afc432794a9dbc3e7399cb1a3b1bcfdd487ce0eb2aa81c11c2497" +dependencies = [ + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", + "pallet-transaction-payment 35.0.0", + "parity-scale-codec", + "scale-info", + "serde", + "sp-core 34.0.0", + "sp-io 37.0.0", + "sp-runtime 38.0.0", + "sp-std", +] + +[[package]] +name = "pallet-asset-tx-payment" +version = "36.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "100a180dfbf30a1c872100ec2dae8a61c0f5e8b3f2d3a5cbb34093826293e2ab" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", - "pallet-transaction-payment", + "frame-benchmarking 36.0.0", + "frame-support 36.0.0", + "frame-system 36.0.0", + "pallet-transaction-payment 36.0.0", "parity-scale-codec", "scale-info", "serde", @@ -7411,13 +7712,14 @@ dependencies = [ [[package]] name = "pallet-assets" -version = "36.0.0" +version = "37.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a58bb6d37a23df83b861e148129dc0130a4b80291f2c9dda3491989ec4c3662" +checksum = "f79ef6a7763fc08177f014052469ee12aefcdad0d99a747372360c2f648d2cc4" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.0", + "frame-system 36.0.0", + "impl-trait-for-tuples", "log", "parity-scale-codec", "scale-info", @@ -7428,14 +7730,14 @@ dependencies = [ [[package]] name = "pallet-aura" -version = "34.0.0" +version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "638e3cbb539540e45503f5ae756b6bbb4e6085269d025afa273e684782f514ac" +checksum = "0861b2a1ad6526948567bb59a3fdc4c7f02ee79b07be8b931a544350ec35ab0c" dependencies = [ - "frame-support", - "frame-system", + "frame-support 36.0.0", + "frame-system 36.0.0", "log", - "pallet-timestamp", + "pallet-timestamp 35.0.0", "parity-scale-codec", "scale-info", "sp-application-crypto 37.0.0", @@ -7446,12 +7748,12 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" -version = "35.0.0" +version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3a5fafb21222ab509f0d9d4bda52730eb342574a0733321e1105e14d5454d6d5" +checksum = "ed2c3666a476132f5846fe4d5e1961a923a58a0f54d873d84566f24ffaa3684f" dependencies = [ - "frame-support", - "frame-system", + "frame-support 36.0.0", + "frame-system 36.0.0", "pallet-session", "parity-scale-codec", "scale-info", @@ -7463,12 +7765,12 @@ dependencies = [ [[package]] name = "pallet-authorship" -version = "35.0.0" +version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b134d987dfc6f2ddc3b4470672318fd59e740868485a25ec15ba909c42e6a622" +checksum = "38885846dbcf03b025fdbd7edb3649046dbc68fa0b419ffe8837ef853a10d31f" dependencies = [ - "frame-support", - "frame-system", + "frame-support 36.0.0", + "frame-system 36.0.0", "impl-trait-for-tuples", "parity-scale-codec", "scale-info", @@ -7478,17 +7780,17 @@ dependencies = [ [[package]] name = "pallet-babe" -version = "35.0.0" +version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "84fa5a4406cd9f43babb90ce6e8f1598d36695c86c8e35094ec4cbf3224086fd" +checksum = "b23d2d814e3cb793659fcf84533f66fdf0ed9cccb66cb2225851f482843ed096" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.0", + "frame-system 36.0.0", "log", "pallet-authorship", "pallet-session", - "pallet-timestamp", + "pallet-timestamp 35.0.0", "parity-scale-codec", "scale-info", "sp-application-crypto 37.0.0", @@ -7503,16 +7805,16 @@ dependencies = [ [[package]] name = "pallet-bags-list" -version = "34.0.0" +version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "381526d7d765b4c895efa9da7c7f7b1965f251de6fe30757a63f535a021f2b69" +checksum = "af34fa3fb6a0abe3577e435988039a9e441f6705ae2d3ad627a23e3f705baa2d" dependencies = [ "aquamarine", "docify", - "frame-benchmarking", + "frame-benchmarking 36.0.0", "frame-election-provider-support", - "frame-support", - "frame-system", + "frame-support 36.0.0", + "frame-system 36.0.0", "log", "pallet-balances", "parity-scale-codec", @@ -7526,14 +7828,14 @@ dependencies = [ [[package]] name = "pallet-balances" -version = "36.0.0" +version = "37.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8dfe056082a1d857b0731572d7f9a96d98356b8610b258814cf75a55cd43c435" +checksum = "6878e240962d3887f0e0654ac343a18845adb95ad493c9d4d5e803c015d4a4c3" dependencies = [ "docify", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.0", + "frame-system 36.0.0", "log", "parity-scale-codec", "scale-info", @@ -7543,12 +7845,12 @@ dependencies = [ [[package]] name = "pallet-beefy" -version = "35.0.0" +version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6005abf441b2c6fc21505f0d3e00a66e40759ddff0311834f3f8ae2c5874b0e5" +checksum = "715dfcd1bf3f1f37af6335d4eb3cef921e746ac54721e2258c4fd968b61eb009" dependencies = [ - "frame-support", - "frame-system", + "frame-support 36.0.0", + "frame-system 36.0.0", "log", "pallet-authorship", "pallet-session", @@ -7564,14 +7866,14 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" -version = "35.0.0" +version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "effb0467f4d9b43be918a6e0ad419c539cd55dceef4c70000cb373701dc3d029" +checksum = "01d70c6f872eb3f2635355ccbea944a4f9ea411c0aa25f6f1a15219e8da11ad2" dependencies = [ "array-bytes", "binary-merkle-tree", - "frame-support", - "frame-system", + "frame-support 36.0.0", + "frame-system 36.0.0", "log", "pallet-beefy", "pallet-mmr", @@ -7590,13 +7892,13 @@ dependencies = [ [[package]] name = "pallet-bounties" -version = "34.0.0" +version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "84e118557f0d4e863a243f2c91ffd4fce624c5afc42b6bd0e04e6f7cc767afd7" +checksum = "0566499e74ba4b7ccbd1b667eef0dab76ca28402a8d501e22b73a363717b05a9" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.0", + "frame-system 36.0.0", "log", "pallet-treasury", "parity-scale-codec", @@ -7609,17 +7911,17 @@ dependencies = [ [[package]] name = "pallet-bridge-grandpa" -version = "0.14.0" +version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "105a956904498bd236266cc4a7e6cff5c83fd1ea6d6d62ff4efb947b48c81245" +checksum = "61d30a4860bb12559dc28b2d46dd865e2066bce83239230f748e2c569a3cadf4" dependencies = [ "bp-header-chain", "bp-runtime", "bp-test-utils", "finality-grandpa", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.0", + "frame-system 36.0.0", "log", "parity-scale-codec", "scale-info", @@ -7631,15 +7933,15 @@ dependencies = [ [[package]] name = "pallet-bridge-messages" -version = "0.14.0" +version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6af9efd8200ffe03ad35043ec4b9a9ce26e0fd015737949fd153764c38bf35dd" +checksum = "e3c0fcb1b9ae50ece73cbe36b72c2778f5d4637e4fb0cfac30cb16f7d4b61d5e" dependencies = [ "bp-messages", "bp-runtime", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.0", + "frame-system 36.0.0", "log", "num-traits", "parity-scale-codec", @@ -7650,17 +7952,17 @@ dependencies = [ [[package]] name = "pallet-bridge-parachains" -version = "0.14.0" +version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1ecd77f4bf6a30f9ac686261c38d764ba4b93edba1448bb6a12bbd1709c190aa" +checksum = "3974fb658cf1b9ca8c2d3c77bf080b2f94c054c2b466b709ef29f6d3726f2231" dependencies = [ "bp-header-chain", "bp-parachains", "bp-polkadot-core", "bp-runtime", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.0", + "frame-system 36.0.0", "log", "pallet-bridge-grandpa", "parity-scale-codec", @@ -7672,16 +7974,16 @@ dependencies = [ [[package]] name = "pallet-bridge-relayers" -version = "0.14.0" +version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e1512f82bb532b1193636953816e08e5f782137ec23f3039083c68ab9a9a7cb4" +checksum = "2c92383f4c7d1eaced8413e39b948227a527a0136f705660580c57753dc11568" dependencies = [ "bp-messages", "bp-relayers", "bp-runtime", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.0", + "frame-system 36.0.0", "log", "pallet-bridge-messages", "parity-scale-codec", @@ -7693,14 +7995,14 @@ dependencies = [ [[package]] name = "pallet-broker" -version = "0.14.0" +version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4f369dabb59f4ec26bedb86f294f71b257e4d2e998a53693e45e711bc573627d" +checksum = "cd0d652c399b6ed776ee3322e60f40e323f86b413719d7696eddb8f64c368ac0" dependencies = [ "bitvec", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.0", + "frame-system 36.0.0", "log", "parity-scale-codec", "scale-info", @@ -7713,13 +8015,13 @@ dependencies = [ [[package]] name = "pallet-child-bounties" -version = "34.0.0" +version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b2eefafbc018dc5a69cec5b1a9bbbc02fd3191464825e0bd5f899d407dfd03b9" +checksum = "38e351f103ebbdd1eb095da8c2379caccc82ebc59a740c2731693d2204286b83" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.0", + "frame-system 36.0.0", "log", "pallet-bounties", "pallet-treasury", @@ -7733,19 +8035,19 @@ dependencies = [ [[package]] name = "pallet-collator-selection" -version = "16.0.0" +version = "17.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4b78dc5ba93d88d019eecb4d77f1ec95d8c288d9e9c4e039ab8a2dea039deea4" +checksum = "f660cc09f2f277a3976da2eef856b5c725ab7ad1192902ef7f4e4bafd992f04f" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.0", + "frame-system 36.0.0", "log", "pallet-authorship", "pallet-balances", "pallet-session", "parity-scale-codec", - "rand 0.8.5", + "rand", "scale-info", "sp-runtime 38.0.0", "sp-staking", @@ -7754,13 +8056,13 @@ dependencies = [ [[package]] name = "pallet-collective" -version = "35.0.0" +version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "64984961a8667e8a16d2445fc98ac3229f9d01def0c1ae1e6f9ce859ec0fedbb" +checksum = "771bf7f6c76c3ea5e965fee0bf1d8a8c79c8c52d75ead65ed3c4d385f333756f" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.0", + "frame-system 36.0.0", "log", "parity-scale-codec", "scale-info", @@ -7772,14 +8074,14 @@ dependencies = [ [[package]] name = "pallet-conviction-voting" -version = "35.0.0" +version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "242927ab508e5f1cb63aa851b7f5662f6886adb688c57458e05449c8ad0376dd" +checksum = "9033f0d23500bbc39298fd50c07b89a2f2d9f07300139b4df8005995ef683875" dependencies = [ "assert_matches", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.0", + "frame-system 36.0.0", "parity-scale-codec", "scale-info", "serde", @@ -7790,13 +8092,13 @@ dependencies = [ [[package]] name = "pallet-core-fellowship" -version = "19.0.0" +version = "20.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "775266859860d3deb767caed33f6147eee1a0ef68386da033f33ab45cb4c913f" +checksum = "99f3caf5d750236fce5f59fa464a9ca5bbefedd97f2570caa96cf7bdd2ec5261" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.0", + "frame-system 36.0.0", "log", "pallet-ranked-collective", "parity-scale-codec", @@ -7810,12 +8112,12 @@ dependencies = [ [[package]] name = "pallet-delegated-staking" -version = "2.0.0" +version = "3.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "72cfda2549b70198f2cdee30f8d72cae469a692f83b3072015062bc2dd6f473b" +checksum = "0596ec5ab55e02b1b5637b3ec2b99027d036fe97a1ab4733ae105474dfa727cf" dependencies = [ - "frame-support", - "frame-system", + "frame-support 36.0.0", + "frame-system 36.0.0", "parity-scale-codec", "scale-info", "sp-runtime 38.0.0", @@ -7825,18 +8127,18 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" -version = "34.0.0" +version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f9cae34d714e3410bcdd932ce0dc927997125e1eaa083dacdeb700439f22b67b" +checksum = "bd1090fdc6ccdd8ff08c60000c970428baaaf0b33e7a6b01a91ec8b697a650a3" dependencies = [ - "frame-benchmarking", + "frame-benchmarking 36.0.0", "frame-election-provider-support", - "frame-support", - "frame-system", + "frame-support 36.0.0", + "frame-system 36.0.0", "log", "pallet-election-provider-support-benchmarking", "parity-scale-codec", - "rand 0.8.5", + "rand", "scale-info", "sp-arithmetic 26.0.0", "sp-core 34.0.0", @@ -7849,13 +8151,13 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" -version = "34.0.0" +version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a5153f459dd839fceb81e1d1df9413cc55f83b55fa110485fdb05f442015fb57" +checksum = "93475989d2f6900caf8f1c847a55d909295c156525a7510c5f1dde176ec7c714" dependencies = [ - "frame-benchmarking", + "frame-benchmarking 36.0.0", "frame-election-provider-support", - "frame-system", + "frame-system 36.0.0", "parity-scale-codec", "sp-npos-elections", "sp-runtime 38.0.0", @@ -7870,12 +8172,12 @@ checksum = "6a0ffd2d4a106903298ead5eec236d9dae348ce73db4b6d32690543e178f4b11" dependencies = [ "approx", "encointer-primitives", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", - "pallet-asset-tx-payment", - "pallet-transaction-payment", + "pallet-asset-tx-payment 35.0.0", + "pallet-transaction-payment 35.0.0", "parity-scale-codec", "scale-info", "sp-runtime 38.0.0", @@ -7889,9 +8191,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "16a3f0caa065fbb9a7274945d35d14b79a27263acb3ad6739f32e349e0e6ca94" dependencies = [ "encointer-primitives", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "pallet-encointer-communities", "parity-scale-codec", @@ -7907,7 +8209,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8f9abb60a54e20083a48be6a14fb267262efe3b1712a6ce9aaf65a32b5791f58" dependencies = [ "encointer-primitives", - "frame-support", + "frame-support 35.0.0", "parity-scale-codec", "sp-api", "sp-std", @@ -7922,14 +8224,14 @@ dependencies = [ "encointer-ceremonies-assignment", "encointer-meetup-validation", "encointer-primitives", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "pallet-encointer-balances", "pallet-encointer-communities", "pallet-encointer-scheduler", - "pallet-timestamp", + "pallet-timestamp 34.0.0", "parity-scale-codec", "scale-info", "sp-application-crypto 37.0.0", @@ -7946,7 +8248,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6d0c64fe6380975c85c8ba5da27e1c6cc9bb1f1a00070cf8a6e827714fd0d1df" dependencies = [ "encointer-primitives", - "frame-support", + "frame-support 35.0.0", "parity-scale-codec", "sp-api", "sp-std", @@ -7959,9 +8261,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "95b7b944c3b3a26225f0925f41010b250fb0b168f1d37f57483c9b73c69ff944" dependencies = [ "encointer-primitives", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "pallet-encointer-balances", "pallet-encointer-scheduler", @@ -7992,9 +8294,9 @@ checksum = "f45135e33671b00a9f00cb87e2364c68903a166b43b5e301b43c7624e045158b" dependencies = [ "approx", "encointer-primitives", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "pallet-encointer-communities", "pallet-encointer-reputation-commitments", @@ -8013,14 +8315,14 @@ checksum = "1be4add4c2fa83d305e40bdf8167d998dc6fdd6369f1b7c50687a728fb6df5e4" dependencies = [ "approx", "encointer-primitives", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "pallet-encointer-ceremonies", "pallet-encointer-communities", "pallet-encointer-scheduler", - "pallet-timestamp", + "pallet-timestamp 34.0.0", "parity-scale-codec", "scale-info", "sp-core 34.0.0", @@ -8035,12 +8337,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d760a2d2922618b1750ccd641e8d1b441d6f38dad5db347de5d3f27dddd8f647" dependencies = [ "encointer-primitives", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "impl-trait-for-tuples", "log", - "pallet-timestamp", + "pallet-timestamp 34.0.0", "parity-scale-codec", "scale-info", "sp-runtime 38.0.0", @@ -8049,15 +8351,15 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" -version = "34.0.0" +version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aad27a480c5d4a4705808b8267d38540d5dfeee50d1e7d5a1684d7bbf98a4aa2" +checksum = "9155f4f762513e0287320411415c76a647152799ad33db1785c9b71c36a14575" dependencies = [ "docify", - "frame-benchmarking", + "frame-benchmarking 36.0.0", "frame-election-provider-support", - "frame-support", - "frame-system", + "frame-support 36.0.0", + "frame-system 36.0.0", "log", "parity-scale-codec", "scale-info", @@ -8069,18 +8371,19 @@ dependencies = [ [[package]] name = "pallet-glutton" -version = "21.0.0" +version = "22.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e8f9b0613037a9f1f1391a2991cc02f96c1cf158b7f266a281ba4cd54a83ad04" +checksum = "9947ef904cd7662b80f8dee58e03431ee409dacada26d394c34a7bb642d3eeea" dependencies = [ "blake2 0.10.6", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.0", + "frame-system 36.0.0", "log", "parity-scale-codec", "scale-info", "sp-core 34.0.0", + "sp-inherents", "sp-io 37.0.0", "sp-runtime 38.0.0", "sp-std", @@ -8088,13 +8391,13 @@ dependencies = [ [[package]] name = "pallet-grandpa" -version = "35.0.0" +version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9cc1bf0bd43c8434b46af7de18f8863bfbbf56efcf8d340b238b511a52cfa03c" +checksum = "8244b686d5cae6a8af1557ed0f49db08f812f0e7942a8d2da554b4da8a69daf0" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.0", + "frame-system 36.0.0", "log", "pallet-authorship", "pallet-session", @@ -8112,14 +8415,14 @@ dependencies = [ [[package]] name = "pallet-identity" -version = "35.0.0" +version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0ad181bf900fcea894911421496e05c4b2bc2dadea8c7d744af091a525af3a48" +checksum = "4555795a3e0e3aa49ea432b7afecb9c71a7db8793a99c68bd8dd3a52a12571f3" dependencies = [ "enumflags2", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.0", + "frame-system 36.0.0", "log", "parity-scale-codec", "scale-info", @@ -8130,13 +8433,13 @@ dependencies = [ [[package]] name = "pallet-im-online" -version = "34.0.0" +version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "41a23e720204fde0302206016aaf1e095ff808ff1a434ec6507d87a40258bfe1" +checksum = "fa761292e95020304b58b50e5187f8bb82f557c8c2d013e3c96ab41d611873b0" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.0", + "frame-system 36.0.0", "log", "pallet-authorship", "parity-scale-codec", @@ -8151,13 +8454,13 @@ dependencies = [ [[package]] name = "pallet-indices" -version = "35.0.0" +version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "639b5e46336d35cb888325da0294e54e558d26be45f767ff26ddfca42b709801" +checksum = "b183880ad5efae06afe6066e76f2bac5acf67f34b3cfab7352ceec46accf4b45" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.0", + "frame-system 36.0.0", "parity-scale-codec", "scale-info", "sp-core 34.0.0", @@ -8169,12 +8472,12 @@ dependencies = [ [[package]] name = "pallet-insecure-randomness-collective-flip" -version = "23.0.0" +version = "24.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bdbcd8635732846a585ee77ecd038e2701e7061ba89eb758d999d52931b02235" +checksum = "30555c1b6d76cca7266b639f127a055a4974f5a0796859933cbfebc9a75753a2" dependencies = [ - "frame-support", - "frame-system", + "frame-support 36.0.0", + "frame-system 36.0.0", "parity-scale-codec", "safe-mix", "scale-info", @@ -8184,13 +8487,13 @@ dependencies = [ [[package]] name = "pallet-membership" -version = "35.0.0" +version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4d48c79ce463ee54a9c6bf4ea82405499abc24999fa64f4a4e8b6336829d68c7" +checksum = "34006cf047f47edbef33874cc64895918e2c5d7562795209068d5fb388c53a30" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.0", + "frame-system 36.0.0", "log", "parity-scale-codec", "scale-info", @@ -8202,14 +8505,14 @@ dependencies = [ [[package]] name = "pallet-message-queue" -version = "38.0.0" +version = "39.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8913838f2059495cd9f0c3f9a402346b2f00287b077f344a1b84f850a164d084" +checksum = "20e65a37881d1998546254a5e50a1f768b3f82deabe774e750f4ea95aba8030c" dependencies = [ "environmental", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.0", + "frame-system 36.0.0", "log", "parity-scale-codec", "scale-info", @@ -8223,13 +8526,13 @@ dependencies = [ [[package]] name = "pallet-mmr" -version = "34.0.0" +version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e836e2f38af303d9ae4c3b8ca512afe81279f2d6922223a8f571478740d09fb3" +checksum = "cf8ccec82827413f031689fef4c714fdb0213d58c7a6e208d33f5eab80483770" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.0", + "frame-system 36.0.0", "log", "parity-scale-codec", "scale-info", @@ -8242,13 +8545,13 @@ dependencies = [ [[package]] name = "pallet-multisig" -version = "35.0.0" +version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2acdab77a60e7fbf76239ad530d00029fa7f9bc2194155c3356221aa76d19868" +checksum = "be58483d827602eb8353ecf36aed65c857f0974db5d27981831e5ebf853040bd" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.0", + "frame-system 36.0.0", "log", "parity-scale-codec", "scale-info", @@ -8259,13 +8562,13 @@ dependencies = [ [[package]] name = "pallet-nft-fractionalization" -version = "17.0.0" +version = "18.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a37b1df43074592e190bc0a9ba443e7520e07db10de8c09aa73b22197a56d77a" +checksum = "7dcaa330221f60feaf3b23d495cccc3bf2a3d6254c596b3c032273c2b46d4078" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.0", + "frame-system 36.0.0", "log", "pallet-assets", "pallet-nfts", @@ -8277,14 +8580,14 @@ dependencies = [ [[package]] name = "pallet-nfts" -version = "29.0.0" +version = "30.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49c68c96f03ef2dd6c23072f315d6ef3e1b4664795f29aab5962db8cc9062ad3" +checksum = "3e1cd476809de3840e19091a083d5a79178af1f108ad489706e1f9e04c8836a4" dependencies = [ "enumflags2", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.0", + "frame-system 36.0.0", "log", "parity-scale-codec", "scale-info", @@ -8296,9 +8599,9 @@ dependencies = [ [[package]] name = "pallet-nfts-runtime-api" -version = "21.0.0" +version = "22.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f1c2745697dcd469b5d8f37e50b116e48198dd5df4c3a6ea7af98c20c548cc30" +checksum = "b0ca7a0446d2d3c27f726a016c6366218df2e0bfef9ed35886b252cfa9757f6c" dependencies = [ "pallet-nfts", "parity-scale-codec", @@ -8308,13 +8611,13 @@ dependencies = [ [[package]] name = "pallet-nis" -version = "35.0.0" +version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6955efc279e63f4463ea29b45c81de013faa243e45a0155b0519df07d5e0a1fb" +checksum = "e77cba0e15749c8de2be65efffa51e02bd051b4e6fcf23360d43c3b6a859187c" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.0", + "frame-system 36.0.0", "parity-scale-codec", "scale-info", "sp-arithmetic 26.0.0", @@ -8325,12 +8628,12 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" -version = "32.0.0" +version = "33.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7faf96228372dcaf4c01e53ba59248b59a4a9ec994f30bee373110900f34c7bc" +checksum = "36f8c994eb7298a394b58f98afd520b521b5d46f6f39eade4657eeaac9962471" dependencies = [ - "frame-support", - "frame-system", + "frame-support 36.0.0", + "frame-system 36.0.0", "log", "pallet-balances", "parity-scale-codec", @@ -8345,14 +8648,14 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" -version = "33.0.0" +version = "34.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "91b308c436d36e4159ec617e9e03e20a54aa4c2cd99729a411b969c1d9062392" +checksum = "39ee599f2861e55fc6113c01e9b14d6e85fda46bac36a906b5dd5a951fa0455c" dependencies = [ - "frame-benchmarking", + "frame-benchmarking 36.0.0", "frame-election-provider-support", - "frame-support", - "frame-system", + "frame-support 36.0.0", + "frame-system 36.0.0", "pallet-bags-list", "pallet-delegated-staking", "pallet-nomination-pools", @@ -8367,9 +8670,9 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" -version = "30.0.0" +version = "31.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "57e14836c36af92c218a801d6dbd84460210f8af7820df400c5ffed6ae15006c" +checksum = "2906899d8f029780f0d9da77b90ae86f42bcfda5ac402c931406cd84852012ed" dependencies = [ "pallet-nomination-pools", "parity-scale-codec", @@ -8379,12 +8682,12 @@ dependencies = [ [[package]] name = "pallet-offences" -version = "34.0.0" +version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d2edc30910e938ef9df027aad650ea03644d0a33a604cec2267fce28951c0530" +checksum = "4859e7bb2af46d2e0f137c2f777adf39f0e5d4d188226158d599f1cfcfb76b9e" dependencies = [ - "frame-support", - "frame-system", + "frame-support 36.0.0", + "frame-system 36.0.0", "log", "pallet-balances", "parity-scale-codec", @@ -8397,14 +8700,14 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" -version = "35.0.0" +version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c605b2a3cf4eab08293ceb8f16a9352fcd71a27f0ab0dbdd8380946ab5800db6" +checksum = "4351b0edafcdf3240f0471c638b39d2c981bde9d17c0172536a0aa3b7c3097ef" dependencies = [ - "frame-benchmarking", + "frame-benchmarking 36.0.0", "frame-election-provider-support", - "frame-support", - "frame-system", + "frame-support 36.0.0", + "frame-system 36.0.0", "log", "pallet-babe", "pallet-balances", @@ -8422,13 +8725,13 @@ dependencies = [ [[package]] name = "pallet-preimage" -version = "35.0.0" +version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e17c6fa28b38ef4cf33203709e3610c89aa8299900c7d0096bdec7b9e90ab2d3" +checksum = "68ac726abc5b1bcd6c8f783514b8e1a48be32c7d15e0b263e4bc28cc1e4e7763" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.0", + "frame-system 36.0.0", "log", "parity-scale-codec", "scale-info", @@ -8440,13 +8743,13 @@ dependencies = [ [[package]] name = "pallet-proxy" -version = "35.0.0" +version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "279b23df802b3edb41d04836cc2f97d59c358b3bd43d39b98fd1fe2e03204b87" +checksum = "b4e12680e176607815a78a0cd10a52af50790292cb950404f30a885e2a7229e9" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.0", + "frame-system 36.0.0", "parity-scale-codec", "scale-info", "sp-io 37.0.0", @@ -8456,13 +8759,13 @@ dependencies = [ [[package]] name = "pallet-ranked-collective" -version = "35.0.0" +version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aac3413b3e5620c0b83bc32855ea16f0c9381fea96b85ffbe9490cb648815c96" +checksum = "862ea8d386ed5737e859470c43cbfd9652c81398cad29e03ae7846c21aaee4c6" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.0", + "frame-system 36.0.0", "impl-trait-for-tuples", "log", "parity-scale-codec", @@ -8476,13 +8779,13 @@ dependencies = [ [[package]] name = "pallet-recovery" -version = "35.0.0" +version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9fe5112bc7fe0282330e01a9c4fb58e42ed9030575eaf8479d54e3d6bd36f889" +checksum = "b24d4131bc79fee0b07550136ca6329faa84c1c3e76ae62a74aef6b1da0b95b4" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.0", + "frame-system 36.0.0", "parity-scale-codec", "scale-info", "sp-io 37.0.0", @@ -8492,14 +8795,14 @@ dependencies = [ [[package]] name = "pallet-referenda" -version = "35.0.0" +version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7c969360bab41c9d50cd99755408690f23241424c3cc15935dd6c47206fc9c23" +checksum = "b2c906a9c4573eb58de4134ec7180bf12c6769df2b9859dae8adcbc5fce78add" dependencies = [ "assert_matches", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.0", + "frame-system 36.0.0", "log", "parity-scale-codec", "scale-info", @@ -8512,13 +8815,13 @@ dependencies = [ [[package]] name = "pallet-salary" -version = "20.0.0" +version = "21.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f82cc83b8982f352ba0a83126d19e04f9bef069dc6ec4c1770ac525622f88eec" +checksum = "d6246871441f85b32d67f70ef13726ac195b05f8e9297df7c46a95a397b8df42" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.0", + "frame-system 36.0.0", "log", "pallet-ranked-collective", "parity-scale-codec", @@ -8532,14 +8835,14 @@ dependencies = [ [[package]] name = "pallet-scheduler" -version = "36.0.0" +version = "37.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "05840a0a1c517438d21873ad2279fea914eec836e1d76d15f29548a8ace6c707" +checksum = "b170d6aa191197d3f50b1193925546972ffc394376ead4d2739eb40909b73c85" dependencies = [ "docify", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.0", + "frame-system 36.0.0", "log", "parity-scale-codec", "scale-info", @@ -8551,15 +8854,15 @@ dependencies = [ [[package]] name = "pallet-session" -version = "35.0.0" +version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7c77e7b0716fdf3cf8ecfcc872d583c972c4c9706842709a1112f26c51f701ae" +checksum = "7c92b24c911c2cfa5351616edc7f2f93427ea6f4f95efdb13f0f5d51997939c3" dependencies = [ - "frame-support", - "frame-system", + "frame-support 36.0.0", + "frame-system 36.0.0", "impl-trait-for-tuples", "log", - "pallet-timestamp", + "pallet-timestamp 35.0.0", "parity-scale-codec", "scale-info", "sp-core 34.0.0", @@ -8574,17 +8877,17 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" -version = "35.0.0" +version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "42b450a525ea08dcdf4b3f33dce8796b2161c5c7917b99fba720d2fcd09b421b" +checksum = "bd02aaf5f10734670346677042ece94fae20dcd5436eafeb9b429d8d6d5b6385" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.0", + "frame-system 36.0.0", "pallet-session", "pallet-staking", "parity-scale-codec", - "rand 0.8.5", + "rand", "sp-runtime 38.0.0", "sp-session", "sp-std", @@ -8592,16 +8895,16 @@ dependencies = [ [[package]] name = "pallet-society" -version = "35.0.0" +version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "236344aaf3ab6d088364aab2f284de04628bf1b7a187686347dbec7ecd0b8cc9" +checksum = "66b60b1d726532317f9965bab4995aa49b73f9b7ca3b9a0f75d158bd84686c5f" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.0", + "frame-system 36.0.0", "log", "parity-scale-codec", - "rand_chacha 0.3.1", + "rand_chacha", "scale-info", "sp-arithmetic 26.0.0", "sp-io 37.0.0", @@ -8611,19 +8914,19 @@ dependencies = [ [[package]] name = "pallet-staking" -version = "35.0.0" +version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e8f63dce0732789c9222056a3292576b7843aa1c7eb5e7e0fcb158dbab8f4455" +checksum = "fbebdb060417654f215fc6f03675e5f44cfc83837d9e523e1b8fd9a4a2e1bdc2" dependencies = [ - "frame-benchmarking", + "frame-benchmarking 36.0.0", "frame-election-provider-support", - "frame-support", - "frame-system", + "frame-support 36.0.0", + "frame-system 36.0.0", "log", "pallet-authorship", "pallet-session", "parity-scale-codec", - "rand_chacha 0.3.1", + "rand_chacha", "scale-info", "serde", "sp-application-crypto 37.0.0", @@ -8668,13 +8971,13 @@ dependencies = [ [[package]] name = "pallet-state-trie-migration" -version = "36.0.0" +version = "37.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2fdd28b85f5c5beb7659a0dee158155b6114dcc747c139f247df944cca132df2" +checksum = "e07f8626f4ff62ac79d6ad0bd01fab7645897ce35706ddb95fa084e75be9306d" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.0", + "frame-system 36.0.0", "log", "parity-scale-codec", "scale-info", @@ -8686,14 +8989,14 @@ dependencies = [ [[package]] name = "pallet-sudo" -version = "35.0.0" +version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d15062b0caa6194e3ab13a10a500b2ed4b9d5915bf30dda18833e1c3bbbf6e85" +checksum = "1bd2a8797c1bb3d3897b4f87a7716111da5eeb8561345277b6e6d70349ec8b35" dependencies = [ "docify", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.0", + "frame-system 36.0.0", "parity-scale-codec", "scale-info", "sp-io 37.0.0", @@ -8708,9 +9011,30 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "34a42af51e32d3ea442e9aaabb935976e4154f89f3604bfb892a316e8d77c0d4" dependencies = [ "docify", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", + "log", + "parity-scale-codec", + "scale-info", + "sp-inherents", + "sp-io 37.0.0", + "sp-runtime 38.0.0", + "sp-std", + "sp-storage 21.0.0", + "sp-timestamp", +] + +[[package]] +name = "pallet-timestamp" +version = "35.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ae789d344be857679b0b98b28a67c747119724847f81d704d3fd03ee13fb6841" +dependencies = [ + "docify", + "frame-benchmarking 36.0.0", + "frame-support 36.0.0", + "frame-system 36.0.0", "log", "parity-scale-codec", "scale-info", @@ -8728,8 +9052,25 @@ version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "349e56fa9f8c4093d912f0654e37b57ae628ad4b4fea67d9f3373e5dfcab2bcc" dependencies = [ - "frame-support", - "frame-system", + "frame-support 35.0.0", + "frame-system 35.0.0", + "parity-scale-codec", + "scale-info", + "serde", + "sp-core 34.0.0", + "sp-io 37.0.0", + "sp-runtime 38.0.0", + "sp-std", +] + +[[package]] +name = "pallet-transaction-payment" +version = "36.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "74fb6114223c8d967c3c2f21cbc845e8ea604ff7e21a8e59d119d5a9257ba886" +dependencies = [ + "frame-support 36.0.0", + "frame-system 36.0.0", "parity-scale-codec", "scale-info", "serde", @@ -8741,11 +9082,11 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" -version = "35.0.0" +version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "331b2011bdf0ede2b607431360a94b7c3198f706bff63cd727c259e815f62389" +checksum = "f4bad1700ad7eb5ab254189e1df894d1d16b3626a3c4b9c45259ec4d9efc262c" dependencies = [ - "pallet-transaction-payment", + "pallet-transaction-payment 36.0.0", "parity-scale-codec", "sp-api", "sp-runtime 38.0.0", @@ -8754,14 +9095,14 @@ dependencies = [ [[package]] name = "pallet-treasury" -version = "34.0.0" +version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1317444c1dd38d7281db919b88331a9a76b483450a78f800d1cb76e21ce33563" +checksum = "9c502615bb4fdd02856a131cb2a612ad40c26435ec938f65f11cae4ff230812b" dependencies = [ "docify", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.0", + "frame-system 36.0.0", "impl-trait-for-tuples", "pallet-balances", "parity-scale-codec", @@ -8774,13 +9115,13 @@ dependencies = [ [[package]] name = "pallet-uniques" -version = "35.0.0" +version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb356a869d24f826d0887f9953f296f0b1f1e3210f84beedc83d858845c5be93" +checksum = "4a59e8599a8c19908e934645f845b5cb546cef1f08745319db7e5b9c24f9e0e4" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.0", + "frame-system 36.0.0", "log", "parity-scale-codec", "scale-info", @@ -8790,13 +9131,13 @@ dependencies = [ [[package]] name = "pallet-utility" -version = "35.0.0" +version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "489431d3b751d07853119fd250145273ea050e84565b3435b5b19c6d3f622b56" +checksum = "3238fe6ad00da6a137be115904c39cab97eb5c7f03da0bb1a20de1bef03f0c71" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.0", + "frame-system 36.0.0", "parity-scale-codec", "scale-info", "sp-core 34.0.0", @@ -8807,13 +9148,13 @@ dependencies = [ [[package]] name = "pallet-vesting" -version = "35.0.0" +version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "79641f9c6720a5f1705a0b7464c13a6cf4c0a3d3c9db523ed73c345130bcaadd" +checksum = "78f7f0f4fe5e1d851e85d81e5e73b6f929f0c35af786ce8be9c9e3363717c136" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.0", + "frame-system 36.0.0", "log", "parity-scale-codec", "scale-info", @@ -8823,13 +9164,13 @@ dependencies = [ [[package]] name = "pallet-whitelist" -version = "34.0.0" +version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a8196f8403117eab3042f49bec96b80290e9bef678017073f62b409e5311476" +checksum = "3e4f27640279229eb73fde0cb06e98b799305e6b0bc724f4dfbef2001ab4ad00" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.0", + "frame-system 36.0.0", "parity-scale-codec", "scale-info", "sp-api", @@ -8839,14 +9180,14 @@ dependencies = [ [[package]] name = "pallet-xcm" -version = "14.0.0" +version = "15.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "870c71f937c78c722fc91a8f8fdf7bc0c74590eb01413eb17c5a72c405c9f134" +checksum = "fe7409458b7fedc5c7d46459da154ccc2dc22a843ce08e8ab6c1743ef5cf972c" dependencies = [ "bounded-collections", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.0", + "frame-system 36.0.0", "log", "pallet-balances", "parity-scale-codec", @@ -8859,18 +9200,18 @@ dependencies = [ "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", - "xcm-fee-payment-runtime-api", + "xcm-runtime-apis", ] [[package]] name = "pallet-xcm-benchmarks" -version = "14.0.0" +version = "15.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "19da3779debfcbaecda285e8d240d0415cc7df7ff0b75bcaa227dbc2fa0cdb5c" +checksum = "2f177a171203cc0bec3cff1bdd5d3b926abfbd0ecf347e044b147194e664f717" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.0", + "frame-system 36.0.0", "log", "parity-scale-codec", "scale-info", @@ -8884,16 +9225,16 @@ dependencies = [ [[package]] name = "pallet-xcm-bridge-hub" -version = "0.9.0" +version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7ae780e414ad9cb180ae0f7a0577f641a51923f2b6d474ac8a500d4f85b9f8bb" +checksum = "b663d0aca0364d576464bd3c976c72ebfe51b3d5f5367686eb7da72c6cb71f23" dependencies = [ "bp-messages", "bp-runtime", "bp-xcm-bridge-hub", "bridge-runtime-common", - "frame-support", - "frame-system", + "frame-support 36.0.0", + "frame-system 36.0.0", "log", "pallet-bridge-messages", "parity-scale-codec", @@ -8908,14 +9249,14 @@ dependencies = [ [[package]] name = "pallet-xcm-bridge-hub-router" -version = "0.12.0" +version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "806996c671acfb8640cb7a29de16c58092b81a6e15b22e3a3fffe0c2a4845b03" +checksum = "f48bd38d4061a51f263f4c08021e66100e16cbda9978fba163d2544637b31dab" dependencies = [ "bp-xcm-bridge-hub-router", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.0", + "frame-system 36.0.0", "log", "parity-scale-codec", "scale-info", @@ -8928,16 +9269,16 @@ dependencies = [ [[package]] name = "parachains-common" -version = "14.0.0" +version = "15.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "41525e5ddae2ae87949323fce5ba5e039ac5ceea2a76bcf34c6e794c111134f7" +checksum = "9319e656eebdf161666e54a4d8e24f73137f702f01600247f7be650bc4d46167" dependencies = [ "cumulus-primitives-core", "cumulus-primitives-utility", - "frame-support", - "frame-system", + "frame-support 36.0.0", + "frame-system 36.0.0", "log", - "pallet-asset-tx-payment", + "pallet-asset-tx-payment 36.0.0", "pallet-assets", "pallet-authorship", "pallet-balances", @@ -8960,21 +9301,21 @@ dependencies = [ [[package]] name = "parachains-runtimes-test-utils" -version = "14.0.0" +version = "15.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "459295caad69abc21337036427d7ecd09e3956c3464ba9be7a0c57655e572f8f" +checksum = "c778447d2e71a418b083c0458579d0f8d13872f43c63142d9e5157edea000bdd" dependencies = [ "cumulus-pallet-parachain-system", "cumulus-pallet-xcmp-queue", "cumulus-primitives-core", "cumulus-primitives-parachain-inherent", "cumulus-test-relay-sproof-builder", - "frame-support", - "frame-system", + "frame-support 36.0.0", + "frame-system 36.0.0", "pallet-balances", "pallet-collator-selection", "pallet-session", - "pallet-timestamp", + "pallet-timestamp 35.0.0", "pallet-xcm", "parity-scale-codec", "polkadot-parachain-primitives", @@ -8997,7 +9338,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4e69bf016dc406eff7d53a7d3f7cf1c2e72c82b9088aac1118591e36dd2cd3e9" dependencies = [ "bitcoin_hashes 0.13.0", - "rand 0.8.5", + "rand", "rand_core 0.6.4", "serde", "unicode-normalization", @@ -9036,12 +9377,6 @@ dependencies = [ "syn 1.0.109", ] -[[package]] -name = "parity-send-wrapper" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aa9777aa91b8ad9dd5aaa04a9b6bcb02c7f1deb952fca5a66034d5e63afc5c6f" - [[package]] name = "parity-util-mem" version = "0.12.0" @@ -9054,7 +9389,7 @@ dependencies = [ "impl-trait-for-tuples", "lru 0.8.1", "parity-util-mem-derive", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "primitive-types", "smallvec", "winapi", @@ -9068,7 +9403,7 @@ checksum = "f557c32c6d268a07c921471619c0295f5efad3a0e76d4f97a05c091a51d110b2" dependencies = [ "proc-macro2", "syn 1.0.109", - "synstructure", + "synstructure 0.12.6", ] [[package]] @@ -9096,9 +9431,9 @@ dependencies = [ [[package]] name = "parking_lot" -version = "0.12.1" +version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" +checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27" dependencies = [ "lock_api", "parking_lot_core 0.9.9", @@ -9189,7 +9524,7 @@ version = "1.0.0" dependencies = [ "cumulus-primitives-core", "emulated-integration-tests-common", - "frame-support", + "frame-support 36.0.0", "kusama-emulated-chain", "parachains-common", "penpal-runtime", @@ -9200,9 +9535,9 @@ dependencies = [ [[package]] name = "penpal-runtime" -version = "0.21.0" +version = "0.22.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "adb845cc69bd90e75e6bb80bd63bb750a0e065fee8f56d4a47cab65f228f3bcc" +checksum = "35e9e9644360684706e3f4abcc85ccec611d142d5f7c2b72c12e7c0d28c49de1" dependencies = [ "assets-common", "cumulus-pallet-aura-ext", @@ -9212,15 +9547,15 @@ dependencies = [ "cumulus-pallet-xcmp-queue", "cumulus-primitives-core", "cumulus-primitives-utility", - "frame-benchmarking", + "frame-benchmarking 36.0.0", "frame-executive", - "frame-support", - "frame-system", + "frame-support 36.0.0", + "frame-system 36.0.0", "frame-system-benchmarking", "frame-system-rpc-runtime-api", "frame-try-runtime", "log", - "pallet-asset-tx-payment", + "pallet-asset-tx-payment 36.0.0", "pallet-assets", "pallet-aura", "pallet-authorship", @@ -9229,8 +9564,8 @@ dependencies = [ "pallet-message-queue", "pallet-session", "pallet-sudo", - "pallet-timestamp", - "pallet-transaction-payment", + "pallet-timestamp 35.0.0", + "pallet-transaction-payment 36.0.0", "pallet-transaction-payment-rpc-runtime-api", "pallet-xcm", "parachains-common", @@ -9258,7 +9593,7 @@ dependencies = [ "staging-xcm-builder", "staging-xcm-executor", "substrate-wasm-builder", - "xcm-fee-payment-runtime-api", + "xcm-runtime-apis", ] [[package]] @@ -9267,7 +9602,7 @@ version = "1.0.0" dependencies = [ "cumulus-primitives-core", "emulated-integration-tests-common", - "frame-support", + "frame-support 36.0.0", "kusama-emulated-chain", "parachains-common", "people-kusama-runtime", @@ -9281,7 +9616,7 @@ dependencies = [ "asset-test-utils", "cumulus-pallet-parachain-system", "emulated-integration-tests-common", - "frame-support", + "frame-support 36.0.0", "kusama-runtime-constants", "kusama-system-emulated-network", "pallet-balances", @@ -9311,11 +9646,11 @@ dependencies = [ "cumulus-primitives-storage-weight-reclaim", "cumulus-primitives-utility", "enumflags2", - "frame-benchmarking", + "frame-benchmarking 36.0.0", "frame-executive", "frame-metadata-hash-extension", - "frame-support", - "frame-system", + "frame-support 36.0.0", + "frame-system 36.0.0", "frame-system-benchmarking", "frame-system-rpc-runtime-api", "frame-try-runtime", @@ -9331,8 +9666,8 @@ dependencies = [ "pallet-multisig", "pallet-proxy", "pallet-session", - "pallet-timestamp", - "pallet-transaction-payment", + "pallet-timestamp 35.0.0", + "pallet-transaction-payment 36.0.0", "pallet-transaction-payment-rpc-runtime-api", "pallet-utility", "pallet-xcm", @@ -9371,7 +9706,7 @@ version = "1.0.0" dependencies = [ "cumulus-primitives-core", "emulated-integration-tests-common", - "frame-support", + "frame-support 36.0.0", "parachains-common", "people-polkadot-runtime", "polkadot-emulated-chain", @@ -9385,7 +9720,7 @@ dependencies = [ "asset-test-utils", "cumulus-pallet-parachain-system", "emulated-integration-tests-common", - "frame-support", + "frame-support 36.0.0", "pallet-balances", "pallet-identity", "pallet-message-queue", @@ -9414,11 +9749,11 @@ dependencies = [ "cumulus-primitives-core", "cumulus-primitives-utility", "enumflags2", - "frame-benchmarking", + "frame-benchmarking 36.0.0", "frame-executive", "frame-metadata-hash-extension", - "frame-support", - "frame-system", + "frame-support 36.0.0", + "frame-system 36.0.0", "frame-system-benchmarking", "frame-system-rpc-runtime-api", "frame-try-runtime", @@ -9433,8 +9768,8 @@ dependencies = [ "pallet-multisig", "pallet-proxy", "pallet-session", - "pallet-timestamp", - "pallet-transaction-payment", + "pallet-timestamp 35.0.0", + "pallet-transaction-payment 36.0.0", "pallet-transaction-payment-rpc-runtime-api", "pallet-utility", "pallet-xcm", @@ -9691,13 +10026,13 @@ name = "polkadot-runtime" version = "1.0.0" dependencies = [ "binary-merkle-tree", - "frame-benchmarking", + "frame-benchmarking 36.0.0", "frame-election-provider-support", "frame-executive", "frame-metadata-hash-extension", "frame-remote-externalities", - "frame-support", - "frame-system", + "frame-support 36.0.0", + "frame-system 36.0.0", "frame-system-benchmarking", "frame-system-rpc-runtime-api", "frame-try-runtime", @@ -9738,8 +10073,8 @@ dependencies = [ "pallet-staking-reward-fn", "pallet-staking-runtime-api", "pallet-state-trie-migration", - "pallet-timestamp", - "pallet-transaction-payment", + "pallet-timestamp 35.0.0", + "pallet-transaction-payment 36.0.0", "pallet-transaction-payment-rpc-runtime-api", "pallet-treasury", "pallet-utility", @@ -9788,15 +10123,15 @@ dependencies = [ [[package]] name = "polkadot-runtime-common" -version = "14.0.0" +version = "15.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "929499dd53b664110a787bd700030c0d5aa55ff5732556007e052711920933e8" +checksum = "28fdcb41bb21c7b14d0341a9a17364ccc04ad34de05d41e7938cb03acbc11066" dependencies = [ "bitvec", - "frame-benchmarking", + "frame-benchmarking 36.0.0", "frame-election-provider-support", - "frame-support", - "frame-system", + "frame-support 36.0.0", + "frame-system 36.0.0", "impl-trait-for-tuples", "libsecp256k1", "log", @@ -9811,8 +10146,8 @@ dependencies = [ "pallet-session", "pallet-staking", "pallet-staking-reward-fn", - "pallet-timestamp", - "pallet-transaction-payment", + "pallet-timestamp 35.0.0", + "pallet-transaction-payment 36.0.0", "pallet-treasury", "pallet-vesting", "parity-scale-codec", @@ -9842,7 +10177,7 @@ dependencies = [ name = "polkadot-runtime-constants" version = "1.0.0" dependencies = [ - "frame-support", + "frame-support 36.0.0", "polkadot-primitives", "polkadot-runtime-common", "smallvec", @@ -9854,12 +10189,12 @@ dependencies = [ [[package]] name = "polkadot-runtime-metrics" -version = "14.0.0" +version = "15.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "17496ddf5f7bc75db80d8b5c8183a1fbc64d984c39238055c67bd45469d97e37" +checksum = "ac75b3fea8464e5681b44733ed11cf09e22ff1e956f6703b918b637bd40e7427" dependencies = [ "bs58 0.5.0", - "frame-benchmarking", + "frame-benchmarking 36.0.0", "parity-scale-codec", "polkadot-primitives", "sp-std", @@ -9868,16 +10203,16 @@ dependencies = [ [[package]] name = "polkadot-runtime-parachains" -version = "14.0.0" +version = "15.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2502de64c7fea2a931712c3e0eb0830ed0af753115472c7ccb2b74c4eba61c65" +checksum = "cc9527e255412d9944a68a13161c0b2eb9cfa8011fab2cb4c5857f2ab80e80cc" dependencies = [ "bitflags 1.3.2", "bitvec", "derive_more", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.0", + "frame-system 36.0.0", "impl-trait-for-tuples", "log", "pallet-authority-discovery", @@ -9888,16 +10223,15 @@ dependencies = [ "pallet-message-queue", "pallet-session", "pallet-staking", - "pallet-timestamp", + "pallet-timestamp 35.0.0", "pallet-vesting", "parity-scale-codec", "polkadot-core-primitives", "polkadot-parachain-primitives", "polkadot-primitives", "polkadot-runtime-metrics", - "rand 0.8.5", - "rand_chacha 0.3.1", - "rustc-hex", + "rand", + "rand_chacha", "scale-info", "serde", "sp-api", @@ -10223,6 +10557,17 @@ dependencies = [ "version_check", ] +[[package]] +name = "proc-macro-warning" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3d1eaa7fa0aa1929ffdf7eeb6eac234dde6268914a14ad44d23521ab6a9b258e" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.65", +] + [[package]] name = "proc-macro-warning" version = "1.0.0" @@ -10253,19 +10598,19 @@ dependencies = [ "fnv", "lazy_static", "memchr", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "thiserror", ] [[package]] name = "prometheus-client" -version = "0.19.0" +version = "0.21.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5d6fa99d535dd930d1249e6c79cb3c2915f9172a540fe2b02a4c8f9ca954721e" +checksum = "3c99afa9a01501019ac3a14d71d9f94050346f55ca471ce90c799a15c58f61e2" dependencies = [ "dtoa", "itoa", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "prometheus-client-derive-encode", ] @@ -10288,11 +10633,11 @@ checksum = "31b476131c3c86cb68032fdc5cb6d5a1045e3e42d96b69fa599fd77701e1f5bf" dependencies = [ "bit-set", "bit-vec", - "bitflags 2.4.1", + "bitflags 2.6.0", "lazy_static", "num-traits", - "rand 0.8.5", - "rand_chacha 0.3.1", + "rand", + "rand_chacha", "rand_xorshift", "regex-syntax 0.8.2", "rusty-fork", @@ -10349,7 +10694,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "22505a5c94da8e3b7c2996394d1c933236c4d743e81a410bcca4e6989fc066a4" dependencies = [ "bytes", - "heck 0.4.1", + "heck 0.5.0", "itertools 0.12.1", "log", "multimap", @@ -10433,15 +10778,15 @@ dependencies = [ [[package]] name = "quick-protobuf-codec" -version = "0.1.0" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1693116345026436eb2f10b677806169c1a1260c1c60eaaffe3fb5a29ae23d8b" +checksum = "f8ededb1cd78531627244d51dd0c7139fbe736c7d57af0092a76f0ffb2f56e98" dependencies = [ "asynchronous-codec", "bytes", "quick-protobuf", "thiserror", - "unsigned-varint", + "unsigned-varint 0.7.2", ] [[package]] @@ -10463,8 +10808,8 @@ checksum = "2e8b432585672228923edbbf64b8b12c14e1112f62e88737655b4a083dbcd78e" dependencies = [ "bytes", "pin-project-lite 0.2.13", - "quinn-proto", - "quinn-udp", + "quinn-proto 0.9.6", + "quinn-udp 0.3.2", "rustc-hash", "rustls 0.20.9", "thiserror", @@ -10473,6 +10818,24 @@ dependencies = [ "webpki", ] +[[package]] +name = "quinn" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8cc2c5017e4b43d5995dcea317bc46c1e09404c0a9664d2908f7f02dfe943d75" +dependencies = [ + "bytes", + "futures-io", + "pin-project-lite 0.2.13", + "quinn-proto 0.10.6", + "quinn-udp 0.4.1", + "rustc-hash", + "rustls 0.21.10", + "thiserror", + "tokio", + "tracing", +] + [[package]] name = "quinn-proto" version = "0.9.6" @@ -10480,7 +10843,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "94b0b33c13a79f669c85defaf4c275dc86a0c0372807d0ca3d78e0bb87274863" dependencies = [ "bytes", - "rand 0.8.5", + "rand", "ring 0.16.20", "rustc-hash", "rustls 0.20.9", @@ -10491,6 +10854,23 @@ dependencies = [ "webpki", ] +[[package]] +name = "quinn-proto" +version = "0.10.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "141bf7dfde2fbc246bfd3fe12f2455aa24b0fbd9af535d8c86c7bd1381ff2b1a" +dependencies = [ + "bytes", + "rand", + "ring 0.16.20", + "rustc-hash", + "rustls 0.21.10", + "slab", + "thiserror", + "tinyvec", + "tracing", +] + [[package]] name = "quinn-udp" version = "0.3.2" @@ -10498,12 +10878,25 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "641538578b21f5e5c8ea733b736895576d0fe329bb883b937db6f4d163dbaaf4" dependencies = [ "libc", - "quinn-proto", + "quinn-proto 0.9.6", "socket2 0.4.10", "tracing", "windows-sys 0.42.0", ] +[[package]] +name = "quinn-udp" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "055b4e778e8feb9f93c4e439f71dc2156ef13360b432b799e179a8c4cdf0b1d7" +dependencies = [ + "bytes", + "libc", + "socket2 0.5.7", + "tracing", + "windows-sys 0.48.0", +] + [[package]] name = "quote" version = "1.0.35" @@ -10519,19 +10912,6 @@ version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" -[[package]] -name = "rand" -version = "0.7.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" -dependencies = [ - "getrandom 0.1.16", - "libc", - "rand_chacha 0.2.2", - "rand_core 0.5.1", - "rand_hc", -] - [[package]] name = "rand" version = "0.8.5" @@ -10539,20 +10919,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" dependencies = [ "libc", - "rand_chacha 0.3.1", + "rand_chacha", "rand_core 0.6.4", ] -[[package]] -name = "rand_chacha" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" -dependencies = [ - "ppv-lite86", - "rand_core 0.5.1", -] - [[package]] name = "rand_chacha" version = "0.3.1" @@ -10568,9 +10938,6 @@ name = "rand_core" version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" -dependencies = [ - "getrandom 0.1.16", -] [[package]] name = "rand_core" @@ -10578,7 +10945,7 @@ version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" dependencies = [ - "getrandom 0.2.12", + "getrandom", ] [[package]] @@ -10588,16 +10955,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31" dependencies = [ "num-traits", - "rand 0.8.5", -] - -[[package]] -name = "rand_hc" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" -dependencies = [ - "rand_core 0.5.1", + "rand", ] [[package]] @@ -10671,7 +11029,7 @@ version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a18479200779601e498ada4e8c1e1f50e3ee19deb0259c25825a98b5603b2cb4" dependencies = [ - "getrandom 0.2.12", + "getrandom", "libredox", "thiserror", ] @@ -10776,10 +11134,10 @@ dependencies = [ "encoding_rs", "futures-core", "futures-util", - "h2", - "http", - "http-body", - "hyper", + "h2 0.3.22", + "http 0.2.11", + "http-body 0.4.5", + "hyper 0.14.27", "hyper-tls", "ipnet", "js-sys", @@ -10847,7 +11205,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "688c63d65483050968b2a8937f7995f443e27041a0f7700aa59b0822aedebb74" dependencies = [ "cc", - "getrandom 0.2.12", + "getrandom", "libc", "spin 0.9.8", "untrusted 0.9.0", @@ -10895,7 +11253,7 @@ dependencies = [ "parity-scale-codec", "primitive-types", "proptest", - "rand 0.8.5", + "rand", "rlp", "ruint-macro", "serde", @@ -10983,7 +11341,7 @@ version = "0.38.31" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6ea3e1a662af26cd7a3ba09c0297a31af215563ecf42817c98df621387f4e949" dependencies = [ - "bitflags 2.4.1", + "bitflags 2.6.0", "errno", "libc", "linux-raw-sys 0.4.12", @@ -10996,7 +11354,6 @@ version = "0.20.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1b80e3dec595989ea8510028f30c408a4630db12c9cbb8de34203b89d6577e99" dependencies = [ - "log", "ring 0.16.20", "sct", "webpki", @@ -11023,7 +11380,22 @@ dependencies = [ "log", "ring 0.17.7", "rustls-pki-types", - "rustls-webpki 0.102.3", + "rustls-webpki 0.102.5", + "subtle 2.5.0", + "zeroize", +] + +[[package]] +name = "rustls" +version = "0.23.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4828ea528154ae444e5a642dbb7d5623354030dc9822b83fd9bb79683c7399d0" +dependencies = [ + "log", + "once_cell", + "ring 0.17.7", + "rustls-pki-types", + "rustls-webpki 0.102.5", "subtle 2.5.0", "zeroize", ] @@ -11078,6 +11450,33 @@ version = "1.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "976295e77ce332211c0d24d92c0e83e50f5c5f046d11082cea19f3df13a3562d" +[[package]] +name = "rustls-platform-verifier" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3e3beb939bcd33c269f4bf946cc829fcd336370267c4a927ac0399c84a3151a1" +dependencies = [ + "core-foundation", + "core-foundation-sys", + "jni", + "log", + "once_cell", + "rustls 0.23.11", + "rustls-native-certs 0.7.0", + "rustls-platform-verifier-android", + "rustls-webpki 0.102.5", + "security-framework", + "security-framework-sys", + "webpki-roots 0.26.3", + "winapi", +] + +[[package]] +name = "rustls-platform-verifier-android" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "84e217e7fdc8466b5b35d30f8c0a30febd29173df4a3a0c2115d306b9c4117ad" + [[package]] name = "rustls-webpki" version = "0.101.7" @@ -11090,9 +11489,9 @@ dependencies = [ [[package]] name = "rustls-webpki" -version = "0.102.3" +version = "0.102.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f3bce581c0dd41bce533ce695a1437fa16a7ab5ac3ccfa99fe1a620a7885eabf" +checksum = "f9a6fccd794a42c2c105b513a2f62bc3fd8f3ba57a4593677ceb0bd035164d78" dependencies = [ "ring 0.17.7", "rustls-pki-types", @@ -11128,17 +11527,6 @@ dependencies = [ "twox-hash", ] -[[package]] -name = "rw-stream-sink" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26338f5e09bb721b85b135ea05af7767c90b52f6de4f087d4f4a3a9d64e7dc04" -dependencies = [ - "futures", - "pin-project", - "static_assertions", -] - [[package]] name = "rw-stream-sink" version = "0.4.0" @@ -11213,9 +11601,9 @@ dependencies = [ [[package]] name = "sc-chain-spec" -version = "34.0.0" +version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ae230af4bbf2f518da9fd2c710e2b1945011d993017ede3e0f816c6d825bb225" +checksum = "e04100ec7ff9cf1f2052b05086c77cc216ff7268b8c4fe41007de420bc1f70be" dependencies = [ "array-bytes", "docify", @@ -11253,15 +11641,15 @@ dependencies = [ [[package]] name = "sc-client-api" -version = "35.0.0" +version = "35.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b1c4e71765e679439a7e5af3f92ad4ebdccc36c02ef485de604bb3dc5d98267" +checksum = "1bb517f4418644aeefd7c29bbe34bfc56ba8b5ea56e0b661a48a4d4d6afef40b" dependencies = [ "fnv", "futures", "log", "parity-scale-codec", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "sc-executor", "sc-transaction-pool-api", "sc-utils", @@ -11281,16 +11669,15 @@ dependencies = [ [[package]] name = "sc-consensus" -version = "0.40.0" +version = "0.41.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5d7149e17ec363316391119f614ffb0da96284f4ed3aa1d67560687f627605b6" +checksum = "2b2927954d83d4c055a8699cad8ae093fc921ce73694da6773bd06d195e9a8dd" dependencies = [ "async-trait", "futures", - "futures-timer", "log", "mockall 0.11.4", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "sc-client-api", "sc-network-types", "sc-utils", @@ -11307,9 +11694,9 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa" -version = "0.26.0" +version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3380570b0c27d2c26dd16a3c73ea99e8b87c0a91b4d7e1e7332dd501d0250d95" +checksum = "c7c6c62a03b54973f1a608a405908af0fe957fefaf77483cce96bd213eee7ed0" dependencies = [ "ahash 0.8.8", "array-bytes", @@ -11321,8 +11708,8 @@ dependencies = [ "futures-timer", "log", "parity-scale-codec", - "parking_lot 0.12.1", - "rand 0.8.5", + "parking_lot 0.12.3", + "rand", "sc-block-builder", "sc-chain-spec", "sc-client-api", @@ -11357,7 +11744,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "39f5767bf6a6bad29365d6d08fcf940ee453d31457ed034cf14f0392877daafd" dependencies = [ "parity-scale-codec", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "sc-executor-common", "sc-executor-polkavm", "sc-executor-wasmtime", @@ -11410,7 +11797,7 @@ dependencies = [ "cfg-if", "libc", "log", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "rustix 0.36.17", "sc-allocator", "sc-executor-common", @@ -11421,9 +11808,9 @@ dependencies = [ [[package]] name = "sc-mixnet" -version = "0.11.0" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f7f295f4c06dfad60e8a5755a3866bb756bcd8208fa2f4d370c92fe2ec0de07c" +checksum = "a5a72a92dc72572a0facd73b410855d7f6edf38b32aef46c4798c74f25e595d5" dependencies = [ "array-bytes", "arrayvec 0.7.4", @@ -11433,9 +11820,9 @@ dependencies = [ "futures-timer", "log", "mixnet", - "multiaddr 0.17.1", + "multiaddr 0.18.1", "parity-scale-codec", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "sc-client-api", "sc-network", "sc-network-types", @@ -11451,9 +11838,9 @@ dependencies = [ [[package]] name = "sc-network" -version = "0.41.0" +version = "0.42.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6dc1b9eea5954cd4cec2a13a264f5c54d2f43e155b4f1065eaf285fa602fce1c" +checksum = "04be75f35cea819bae84be99cde138872b17494acf0e54f5f0ae8b0ed3fbe51a" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -11466,19 +11853,19 @@ dependencies = [ "futures", "futures-timer", "ip_network", - "libp2p 0.51.4", + "libp2p", "linked_hash_set", "litep2p", "log", "mockall 0.11.4", "once_cell", "parity-scale-codec", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "partial_sort", "pin-project", "prost 0.12.6", "prost-build 0.12.6", - "rand 0.8.5", + "rand", "sc-client-api", "sc-network-common", "sc-network-types", @@ -11495,7 +11882,7 @@ dependencies = [ "thiserror", "tokio", "tokio-stream", - "unsigned-varint", + "unsigned-varint 0.7.2", "void", "wasm-timer", "zeroize", @@ -11503,14 +11890,14 @@ dependencies = [ [[package]] name = "sc-network-common" -version = "0.40.0" +version = "0.41.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8a86e8a1a517986fd00fd2c963347f5f459241c2ae4e84083ca34b2078f79651" +checksum = "2ec0c3c5629a418fb26b56963d40c5ca3fd02dd94eb5753e9eb72cea5c2eeb2f" dependencies = [ "async-trait", "bitflags 1.3.2", "futures", - "libp2p-identity 0.1.3", + "libp2p-identity", "parity-scale-codec", "prost-build 0.12.6", "sc-consensus", @@ -11522,14 +11909,13 @@ dependencies = [ [[package]] name = "sc-network-gossip" -version = "0.41.0" +version = "0.42.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "17d8d4b7cc4eb58e9f1e73eb6ba84de8bb0101f14d5c688ae7bd5ff0535ed282" +checksum = "0ae1836528495b6aa5140da39ed0278f5086c21ce530c37964db1b2e2c101ab1" dependencies = [ "ahash 0.8.8", "futures", "futures-timer", - "libp2p 0.51.4", "log", "sc-network", "sc-network-common", @@ -11543,9 +11929,9 @@ dependencies = [ [[package]] name = "sc-network-sync" -version = "0.40.0" +version = "0.41.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4599c3b68457fd150491074de9a3999030953bdc84a79780cb32e6a74c875be8" +checksum = "ee9ab31b84534c487b9fb84e83db47890fcbd350f354b1e6484892d3d42d0020" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -11553,7 +11939,7 @@ dependencies = [ "fork-tree", "futures", "futures-timer", - "libp2p 0.51.4", + "libp2p", "log", "mockall 0.11.4", "parity-scale-codec", @@ -11581,28 +11967,29 @@ dependencies = [ [[package]] name = "sc-network-types" -version = "0.12.0" +version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "efe67b8d4050c438331b82969d40e4a1e665d0dfd9eb0a5e949c02b925b5484d" +checksum = "0c372dbda66644a1df0daa8c0d99c36b6f74db7dca213d2416cd84f507125224" dependencies = [ "bs58 0.5.0", - "ed25519-dalek 2.1.0", - "libp2p-identity 0.1.3", + "ed25519-dalek", + "libp2p-identity", "litep2p", - "multiaddr 0.17.1", - "multihash 0.17.0", - "rand 0.8.5", + "log", + "multiaddr 0.18.1", + "multihash 0.19.1", + "rand", "thiserror", "zeroize", ] [[package]] name = "sc-rpc-api" -version = "0.40.0" +version = "0.41.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5e383ce9ec80c14694256a55a4e70b9929d4559d9b1fc5decf2d344c39d94208" +checksum = "57b8adf62a207985cf7534abf0d940b335fda0a68eb902da05b7270ee30a6293" dependencies = [ - "jsonrpsee", + "jsonrpsee 0.23.2", "parity-scale-codec", "sc-chain-spec", "sc-mixnet", @@ -11619,17 +12006,17 @@ dependencies = [ [[package]] name = "sc-telemetry" -version = "21.0.0" +version = "22.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "85ee91de6648ca949b8080fe8a787c1bf2d66311fec78fba52136959e0b9719c" +checksum = "b1fc8e8ad7f84f2ca864ee361b6207fe21e18c8182c60f209732b2a7c0dcbd31" dependencies = [ "chrono", "futures", - "libp2p 0.51.4", + "libp2p", "log", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "pin-project", - "rand 0.8.5", + "rand", "sc-network", "sc-utils", "serde", @@ -11666,7 +12053,7 @@ dependencies = [ "futures-timer", "lazy_static", "log", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "prometheus", "sp-arithmetic 26.0.0", ] @@ -11908,7 +12295,7 @@ dependencies = [ "crc", "fxhash", "log", - "rand 0.8.5", + "rand", "slab", "thiserror", ] @@ -11958,22 +12345,23 @@ dependencies = [ [[package]] name = "security-framework" -version = "2.9.2" +version = "2.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "05b64fb303737d99b81884b2c63433e9ae28abebe5eb5045dcdd175dc2ecf4de" +checksum = "c627723fd09706bacdb5cf41499e95098555af3c3c29d014dc3c458ef6be11c0" dependencies = [ - "bitflags 1.3.2", + "bitflags 2.6.0", "core-foundation", "core-foundation-sys", "libc", + "num-bigint", "security-framework-sys", ] [[package]] name = "security-framework-sys" -version = "2.9.1" +version = "2.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e932934257d3b408ed8f30db49d85ea163bfe74961f017f405b025af298f0c7a" +checksum = "317936bbbd05227752583946b9e66d7ce3b489f84e11a94a510b4437fef407d7" dependencies = [ "core-foundation-sys", "libc", @@ -12030,6 +12418,12 @@ dependencies = [ "pest", ] +[[package]] +name = "send_wrapper" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cd0b0ec5f1c1ca621c432a25813d8d60c88abe6d3e08a3eb9cf37d97a0fe3d73" + [[package]] name = "separator" version = "0.4.1" @@ -12236,12 +12630,6 @@ dependencies = [ "libc", ] -[[package]] -name = "signature" -version = "1.6.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "74233d3b3b2f6d4b006dc19dee745e73e2a6bfb6f93607cd3b02bd5b00797d7c" - [[package]] name = "signature" version = "2.2.0" @@ -12271,7 +12659,7 @@ version = "0.5.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cae9a3fcdadafb6d97f4c0e007e4247b114ee0f119f650c3cbf3a8b3a1479694" dependencies = [ - "bitflags 2.4.1", + "bitflags 2.6.0", ] [[package]] @@ -12374,8 +12762,8 @@ dependencies = [ "pbkdf2", "pin-project", "poly1305", - "rand 0.8.5", - "rand_chacha 0.3.1", + "rand", + "rand_chacha", "ruzstd", "schnorrkel", "serde", @@ -12385,10 +12773,10 @@ dependencies = [ "siphasher", "slab", "smallvec", - "soketto", + "soketto 0.7.1", "twox-hash", "wasmi", - "x25519-dalek 2.0.0", + "x25519-dalek", "zeroize", ] @@ -12415,10 +12803,10 @@ dependencies = [ "log", "lru 0.12.3", "no-std-net", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "pin-project", - "rand 0.8.5", - "rand_chacha 0.3.1", + "rand", + "rand_chacha", "serde", "serde_json", "siphasher", @@ -12457,12 +12845,12 @@ dependencies = [ [[package]] name = "snowbridge-beacon-primitives" -version = "0.7.0" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6534a4c0a1b5b16003977498df47eba13431c18d11315cdde16675e619d4ed2a" +checksum = "a0ad61e3ab1c48d4c8060c7ef8571c5b6007df26687e8dbfdb6c857d840cfd2c" dependencies = [ "byte-slice-cast", - "frame-support", + "frame-support 36.0.0", "hex", "parity-scale-codec", "rlp", @@ -12480,13 +12868,13 @@ dependencies = [ [[package]] name = "snowbridge-core" -version = "0.7.0" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d118d73d30ad61271306cfb9cfd2f776779508858ede35500aabccff60651f64" +checksum = "668cd71582305168ed51cb0357a4b4ea814c68c7db3898a9ba4d492f712c54e1" dependencies = [ "ethabi-decode", - "frame-support", - "frame-system", + "frame-support 36.0.0", + "frame-system 36.0.0", "hex-literal", "parity-scale-codec", "polkadot-parachain-primitives", @@ -12532,7 +12920,7 @@ dependencies = [ "hex", "lazy_static", "parity-scale-codec", - "rand 0.8.5", + "rand", "scale-info", "snowbridge-amcl", "zeroize", @@ -12552,11 +12940,11 @@ dependencies = [ [[package]] name = "snowbridge-outbound-queue-runtime-api" -version = "0.7.0" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b52ffc85ffa4d58afb0997776ac407366c09e1471a114ce857a3506bc89ecd5" +checksum = "ab6b34950a2abce198fe008ac6a199598053fedcbde2c40fedf981bc55f85dc7" dependencies = [ - "frame-support", + "frame-support 36.0.0", "parity-scale-codec", "snowbridge-core", "snowbridge-outbound-queue-merkle-tree", @@ -12566,16 +12954,16 @@ dependencies = [ [[package]] name = "snowbridge-pallet-ethereum-client" -version = "0.7.0" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a9f974bdf94ade45c6fe5b09a197e48b9ccd17825830d21e0b8d20b4729a2f9" +checksum = "0040c2f5a66bcef85e125968af172200cd01d8558c8b3cb9c2e3f1b72abf7dc1" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.0", + "frame-system 36.0.0", "hex-literal", "log", - "pallet-timestamp", + "pallet-timestamp 35.0.0", "parity-scale-codec", "scale-info", "serde", @@ -12592,9 +12980,9 @@ dependencies = [ [[package]] name = "snowbridge-pallet-ethereum-client-fixtures" -version = "0.15.0" +version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ef95c9cff69443d39b9b4b04b2277fcd62317510d387172618ec467562ad594f" +checksum = "f00da83ce6214f76212ed70190cf0c8845d514132d3f9c6bab2ab2f914356f0c" dependencies = [ "hex-literal", "snowbridge-beacon-primitives", @@ -12605,15 +12993,15 @@ dependencies = [ [[package]] name = "snowbridge-pallet-inbound-queue" -version = "0.7.0" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c4bd73b19ae8b7ff286f1bbd9fce57f5370d28e2fdf3da7b8d891a24101eea03" +checksum = "1bd92623ca85fe55e317654254acac72e5a324676c52f0993b0980c90a3544f8" dependencies = [ "alloy-primitives", "alloy-sol-types", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.0", + "frame-system 36.0.0", "hex-literal", "log", "pallet-balances", @@ -12634,9 +13022,9 @@ dependencies = [ [[package]] name = "snowbridge-pallet-inbound-queue-fixtures" -version = "0.15.0" +version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e513d4b427ea7f3d9e644219bf990bca0fcb0643c566aa892ff4b4c88877c2f0" +checksum = "4b0fd4aebc8d5c244d9e658e911d1a84a06676fd05d9c15fb350bc2e653423ec" dependencies = [ "hex-literal", "snowbridge-beacon-primitives", @@ -12647,15 +13035,15 @@ dependencies = [ [[package]] name = "snowbridge-pallet-outbound-queue" -version = "0.7.0" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c3b64edbfc4438c3200d429ad5835e6106af4ab43d7c9392ef571ee9c4f381e" +checksum = "3cfbea7729bcbea661b323c6090d971afcb2ff14a88d9861aab384705415f9d6" dependencies = [ "bridge-hub-common", "ethabi-decode", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.0", + "frame-system 36.0.0", "parity-scale-codec", "scale-info", "serde", @@ -12670,13 +13058,13 @@ dependencies = [ [[package]] name = "snowbridge-pallet-system" -version = "0.7.0" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "94333776d87827ffa381d557cb61b14d7a5aabd0fc842a4da37912e85deb09bf" +checksum = "f726d9d2bc15b2683995e6f6ae707d2db20085742860acd32d8fb246251681f2" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 36.0.0", + "frame-support 36.0.0", + "frame-system 36.0.0", "log", "parity-scale-codec", "scale-info", @@ -12691,11 +13079,11 @@ dependencies = [ [[package]] name = "snowbridge-router-primitives" -version = "0.13.0" +version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "883ae82583071808e61981f0758d21daa3da54082dd05438eb420fdc02fa2124" +checksum = "8e8e6707ced1308d763117bfe68f85e3f22fcdca7987b32e438c0485570f6ac7" dependencies = [ - "frame-support", + "frame-support 36.0.0", "hex-literal", "log", "parity-scale-codec", @@ -12711,11 +13099,11 @@ dependencies = [ [[package]] name = "snowbridge-runtime-common" -version = "0.7.0" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a933e8a33d57bdd4d8dd7cf518698f0d1312e7a1b498b1b5c8530c489e8a5400" +checksum = "c033e7905056434638a068dca713ec9d15708af6c7590396fc95a216ec64b40b" dependencies = [ - "frame-support", + "frame-support 36.0.0", "log", "parity-scale-codec", "snowbridge-core", @@ -12728,18 +13116,18 @@ dependencies = [ [[package]] name = "snowbridge-runtime-test-common" -version = "0.7.0" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "792a7155e484b7314df7462543af7643a743a82ce8b51dcce5c9f21e565e757d" +checksum = "5bbae06a0abb1ba5ffad59b929263c68cc47b8a286794a7389e781eba20f3481" dependencies = [ "cumulus-pallet-parachain-system", - "frame-support", - "frame-system", + "frame-support 36.0.0", + "frame-system 36.0.0", "pallet-balances", "pallet-collator-selection", "pallet-message-queue", "pallet-session", - "pallet-timestamp", + "pallet-timestamp 35.0.0", "pallet-utility", "pallet-xcm", "parachains-runtimes-test-utils", @@ -12760,9 +13148,9 @@ dependencies = [ [[package]] name = "snowbridge-system-runtime-api" -version = "0.7.0" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1781d85129dde596e9b66e5fe34477ae4394ed35e5d162354b19335af3a2eedb" +checksum = "dca4900b139bfb1c052358b6084aa61658b261900d117aa8996e833a1b344399" dependencies = [ "parity-scale-codec", "snowbridge-core", @@ -12783,12 +13171,12 @@ dependencies = [ [[package]] name = "socket2" -version = "0.5.5" +version = "0.5.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9" +checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c" dependencies = [ "libc", - "windows-sys 0.48.0", + "windows-sys 0.52.0", ] [[package]] @@ -12799,14 +13187,28 @@ checksum = "41d1c5305e39e09653383c2c7244f2f78b3bcae37cf50c64cb4789c9f5096ec2" dependencies = [ "base64 0.13.1", "bytes", - "flate2", "futures", "httparse", "log", - "rand 0.8.5", + "rand", "sha-1 0.9.8", ] +[[package]] +name = "soketto" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "37468c595637c10857701c990f93a40ce0e357cedb0953d1c26c8d8027f9bb53" +dependencies = [ + "base64 0.22.1", + "bytes", + "futures", + "httparse", + "log", + "rand", + "sha1", +] + [[package]] name = "sp-api" version = "33.0.0" @@ -12930,14 +13332,14 @@ dependencies = [ [[package]] name = "sp-blockchain" -version = "35.0.0" +version = "35.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a85f5a7dff5979c1c4830cdf9d6e7fcd21ce7582440adf6bc9c95de672dde848" +checksum = "f27eb18b6ddf7d663f4886f7edba3eb73bd102d68cf10802c1f862e3b3db32ab" dependencies = [ "futures", "log", "parity-scale-codec", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "schnellru", "sp-api", "sp-consensus", @@ -12949,9 +13351,9 @@ dependencies = [ [[package]] name = "sp-consensus" -version = "0.39.0" +version = "0.39.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3376b89c6f4f0d2029cbc029643f1670f79dc018485f8da270e2813b3a81fd77" +checksum = "ab094e8a7e9e5c7f05f8d90592aa1d1cf9b3f547d0dd401daff7ed98af942e12" dependencies = [ "async-trait", "futures", @@ -13074,10 +13476,10 @@ dependencies = [ "merlin", "parity-bip39", "parity-scale-codec", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "paste", "primitive-types", - "rand 0.8.5", + "rand", "scale-info", "schnorrkel", "secp256k1", @@ -13121,10 +13523,10 @@ dependencies = [ "merlin", "parity-bip39", "parity-scale-codec", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "paste", "primitive-types", - "rand 0.8.5", + "rand", "scale-info", "schnorrkel", "secp256k1", @@ -13176,7 +13578,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "722cbecdbf5b94578137dbd07feb51e95f7de221be0c1ff4dcfe0bb4cd986929" dependencies = [ "kvdb", - "parking_lot 0.12.1", + "parking_lot 0.12.3", ] [[package]] @@ -13247,7 +13649,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3e09bba780b55bd9e67979cd8f654a31e4a6cf45426ff371394a65953d2177f2" dependencies = [ "bytes", - "ed25519-dalek 2.1.0", + "ed25519-dalek", "libsecp256k1", "log", "parity-scale-codec", @@ -13274,7 +13676,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5036cad2e48d41f5caf6785226c8be1a7db15bec14a9fd7aa6cca84f34cf689f" dependencies = [ "bytes", - "ed25519-dalek 2.1.0", + "ed25519-dalek", "libsecp256k1", "log", "parity-scale-codec", @@ -13312,7 +13714,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bdbab8b61bd61d5f8625a0c75753b5d5a23be55d3445419acd42caf59cf6236b" dependencies = [ "parity-scale-codec", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "sp-core 31.0.0", "sp-externalities 0.27.0", ] @@ -13324,7 +13726,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0248b4d784cb4a01472276928977121fa39d977a5bb24793b6b15e64b046df42" dependencies = [ "parity-scale-codec", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "sp-core 34.0.0", "sp-externalities 0.29.0", ] @@ -13440,7 +13842,7 @@ dependencies = [ "log", "parity-scale-codec", "paste", - "rand 0.8.5", + "rand", "scale-info", "serde", "simple-mermaid", @@ -13466,7 +13868,7 @@ dependencies = [ "num-traits", "parity-scale-codec", "paste", - "rand 0.8.5", + "rand", "scale-info", "serde", "simple-mermaid", @@ -13570,8 +13972,8 @@ dependencies = [ "hash-db", "log", "parity-scale-codec", - "parking_lot 0.12.1", - "rand 0.8.5", + "parking_lot 0.12.3", + "rand", "smallvec", "sp-core 31.0.0", "sp-externalities 0.27.0", @@ -13592,8 +13994,8 @@ dependencies = [ "hash-db", "log", "parity-scale-codec", - "parking_lot 0.12.1", - "rand 0.8.5", + "parking_lot 0.12.3", + "rand", "smallvec", "sp-core 34.0.0", "sp-externalities 0.29.0", @@ -13612,10 +14014,10 @@ checksum = "b03aa86b1b46549889d32348bc85a8135c725665115567507231a6d85712aaac" dependencies = [ "aes-gcm", "curve25519-dalek 4.1.2", - "ed25519-dalek 2.1.0", + "ed25519-dalek", "hkdf", "parity-scale-codec", - "rand 0.8.5", + "rand", "scale-info", "sha2 0.10.8", "sp-api", @@ -13626,7 +14028,7 @@ dependencies = [ "sp-runtime 38.0.0", "sp-runtime-interface 28.0.0", "thiserror", - "x25519-dalek 2.0.0", + "x25519-dalek", ] [[package]] @@ -13722,8 +14124,8 @@ dependencies = [ "memory-db", "nohash-hasher", "parity-scale-codec", - "parking_lot 0.12.1", - "rand 0.8.5", + "parking_lot 0.12.3", + "rand", "scale-info", "schnellru", "sp-core 31.0.0", @@ -13747,8 +14149,8 @@ dependencies = [ "memory-db", "nohash-hasher", "parity-scale-codec", - "parking_lot 0.12.1", - "rand 0.8.5", + "parking_lot 0.12.3", + "rand", "scale-info", "schnellru", "sp-core 34.0.0", @@ -13929,13 +14331,13 @@ name = "staging-kusama-runtime" version = "1.0.0" dependencies = [ "binary-merkle-tree", - "frame-benchmarking", + "frame-benchmarking 36.0.0", "frame-election-provider-support", "frame-executive", "frame-metadata-hash-extension", "frame-remote-externalities", - "frame-support", - "frame-system", + "frame-support 36.0.0", + "frame-system 36.0.0", "frame-system-benchmarking", "frame-system-rpc-runtime-api", "frame-try-runtime", @@ -13978,8 +14380,8 @@ dependencies = [ "pallet-society", "pallet-staking", "pallet-staking-runtime-api", - "pallet-timestamp", - "pallet-transaction-payment", + "pallet-timestamp 35.0.0", + "pallet-transaction-payment 36.0.0", "pallet-transaction-payment-rpc-runtime-api", "pallet-treasury", "pallet-utility", @@ -14027,13 +14429,13 @@ dependencies = [ [[package]] name = "staging-parachain-info" -version = "0.14.0" +version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7eab4e71683cd8ceb50c1c77badc49772148699ffe33a3e4dbbdb5ea34d90e19" +checksum = "cd00d586b0dac4f42736bdd0ad52213a891b240e011ea82b38938263dd821c25" dependencies = [ "cumulus-primitives-core", - "frame-support", - "frame-system", + "frame-support 36.0.0", + "frame-system 36.0.0", "parity-scale-codec", "scale-info", "sp-runtime 38.0.0", @@ -14042,9 +14444,9 @@ dependencies = [ [[package]] name = "staging-xcm" -version = "14.0.0" +version = "14.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0ec2833832f84bc6dccd89f3a61d09f33441043a5f84ea688ca53c886956213a" +checksum = "536c5c8f8f25589e714a3be6b068d174debcc882e648dc9b0c3bd6ce45434de3" dependencies = [ "array-bytes", "bounded-collections", @@ -14061,15 +14463,15 @@ dependencies = [ [[package]] name = "staging-xcm-builder" -version = "14.0.0" +version = "15.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b0517f2de0dd59ecc2693c0cb707ac30cee3d6576978b7287a4c3c9791b7792f" +checksum = "847fa2afe1bed2751eaabf7b91fa4043037947f17653d7cc59ea202cc44c6bb8" dependencies = [ - "frame-support", - "frame-system", + "frame-support 36.0.0", + "frame-system 36.0.0", "impl-trait-for-tuples", "log", - "pallet-transaction-payment", + "pallet-transaction-payment 36.0.0", "parity-scale-codec", "polkadot-parachain-primitives", "scale-info", @@ -14084,13 +14486,13 @@ dependencies = [ [[package]] name = "staging-xcm-executor" -version = "14.0.0" +version = "15.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a5b83ea34a2ba2083c6f5bfec468fb00535d0e0788a78237d06da32dba76be9" +checksum = "26b98d8219449eaf02e71a7edf1a14b14d4c713dd01d9df66fde1ce30dba4d6d" dependencies = [ "environmental", - "frame-benchmarking", - "frame-support", + "frame-benchmarking 36.0.0", + "frame-support 36.0.0", "impl-trait-for-tuples", "log", "parity-scale-codec", @@ -14241,7 +14643,7 @@ version = "0.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0d8fe06b03b8a291c09507c42f92a2c2c10dd3d62975d02c7f64a92d87bfe09b" dependencies = [ - "hyper", + "hyper 0.14.27", "log", "prometheus", "thiserror", @@ -14250,12 +14652,12 @@ dependencies = [ [[package]] name = "substrate-rpc-client" -version = "0.40.0" +version = "0.41.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e595aa4ad93c8902270fd7540f7626430cc911aa26b55607802f1e58e10890cb" +checksum = "68e021c03690bfce8dc67913e0edcb12bf07aea84bbbc61bcd24e6f790c8161a" dependencies = [ "async-trait", - "jsonrpsee", + "jsonrpsee 0.23.2", "log", "sc-rpc-api", "serde", @@ -14329,7 +14731,7 @@ dependencies = [ "hex", "impl-serde", "instant", - "jsonrpsee", + "jsonrpsee 0.22.5", "parity-scale-codec", "primitive-types", "scale-bits 0.5.0", @@ -14360,7 +14762,7 @@ dependencies = [ "frame-metadata 16.0.0", "heck 0.4.1", "hex", - "jsonrpsee", + "jsonrpsee 0.22.5", "parity-scale-codec", "proc-macro2", "quote", @@ -14493,6 +14895,17 @@ dependencies = [ "unicode-xid", ] +[[package]] +name = "synstructure" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.65", +] + [[package]] name = "system-configuration" version = "0.5.1" @@ -14518,7 +14931,7 @@ dependencies = [ name = "system-parachains-constants" version = "1.0.0" dependencies = [ - "frame-support", + "frame-support 36.0.0", "kusama-runtime-constants", "parachains-common", "polkadot-core-primitives", @@ -14581,18 +14994,18 @@ checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76" [[package]] name = "thiserror" -version = "1.0.60" +version = "1.0.62" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "579e9083ca58dd9dcf91a9923bb9054071b9ebbd800b342194c9feb0ee89fc18" +checksum = "f2675633b1499176c2dff06b0856a27976a8f9d436737b4cf4f312d4d91d8bbb" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.60" +version = "1.0.62" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2470041c06ec3ac1ab38d0356a6119054dedaea53e12fbefc0de730a1c08524" +checksum = "d20468752b09f49e909e55a5d338caa8bedf615594e9d80bc4c565d30faf798c" dependencies = [ "proc-macro2", "quote", @@ -14664,19 +15077,19 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.36.0" +version = "1.38.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61285f6515fa018fb2d1e46eb21223fff441ee8db5d0f1435e8ab4f5cdb80931" +checksum = "ba4f4a02a7a80d6f274636f0aa95c7e383b912d41fe721a31f29e29698585a4a" dependencies = [ "backtrace", "bytes", "libc", "mio", "num_cpus", - "parking_lot 0.12.1", + "parking_lot 0.12.3", "pin-project-lite 0.2.13", "signal-hook-registry", - "socket2 0.5.5", + "socket2 0.5.7", "tokio-macros", "windows-sys 0.48.0", ] @@ -14693,9 +15106,9 @@ dependencies = [ [[package]] name = "tokio-macros" -version = "2.2.0" +version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b" +checksum = "5f5ae998a069d4b5aba8ee9dad856af7d520c3699e6159b185c2acd48155d39a" dependencies = [ "proc-macro2", "quote", @@ -14719,7 +15132,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7f57eb36ecbe0fc510036adff84824dd3c24bb781e21bfa67b69d556aa85214f" dependencies = [ "pin-project", - "rand 0.8.5", + "rand", "tokio", ] @@ -14744,6 +15157,17 @@ dependencies = [ "tokio", ] +[[package]] +name = "tokio-rustls" +version = "0.26.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c7bc40d0e5a97695bb96e27995cd3a08538541b0a846f65bba7a359f36700d4" +dependencies = [ + "rustls 0.23.11", + "rustls-pki-types", + "tokio", +] + [[package]] name = "tokio-stream" version = "0.1.14" @@ -14888,12 +15312,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "61c5bb1d698276a2443e5ecfabc1008bf15a36c12e6a7176e7bf089ea9131140" dependencies = [ "base64 0.21.6", - "bitflags 2.4.1", + "bitflags 2.6.0", "bytes", "futures-core", "futures-util", - "http", - "http-body", + "http 0.2.11", + "http-body 0.4.5", "http-range-header", "mime", "pin-project-lite 0.2.13", @@ -15065,7 +15489,7 @@ dependencies = [ "idna 0.2.3", "ipnet", "lazy_static", - "rand 0.8.5", + "rand", "smallvec", "socket2 0.4.10", "thiserror", @@ -15091,7 +15515,7 @@ dependencies = [ "idna 0.4.0", "ipnet", "once_cell", - "rand 0.8.5", + "rand", "smallvec", "thiserror", "tinyvec", @@ -15100,26 +15524,6 @@ dependencies = [ "url", ] -[[package]] -name = "trust-dns-resolver" -version = "0.22.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aff21aa4dcefb0a1afbfac26deb0adc93888c7d295fb63ab273ef276ba2b7cfe" -dependencies = [ - "cfg-if", - "futures-util", - "ipconfig", - "lazy_static", - "lru-cache", - "parking_lot 0.12.1", - "resolv-conf", - "smallvec", - "thiserror", - "tokio", - "tracing", - "trust-dns-proto 0.22.0", -] - [[package]] name = "trust-dns-resolver" version = "0.23.2" @@ -15131,8 +15535,8 @@ dependencies = [ "ipconfig", "lru-cache", "once_cell", - "parking_lot 0.12.1", - "rand 0.8.5", + "parking_lot 0.12.3", + "rand", "resolv-conf", "smallvec", "thiserror", @@ -15162,10 +15566,10 @@ dependencies = [ "byteorder", "bytes", "data-encoding", - "http", + "http 0.2.11", "httparse", "log", - "rand 0.8.5", + "rand", "rustls 0.21.10", "sha1", "thiserror", @@ -15187,7 +15591,7 @@ checksum = "97fee6b57c6a41524a810daee9286c02d7752c4253064d0b05472833a438f675" dependencies = [ "cfg-if", "digest 0.10.7", - "rand 0.8.5", + "rand", "static_assertions", ] @@ -15280,6 +15684,15 @@ dependencies = [ "bytes", "futures-io", "futures-util", +] + +[[package]] +name = "unsigned-varint" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eb066959b24b5196ae73cb057f45598450d2c5f71460e98c49b738086eff9c06" +dependencies = [ + "bytes", "tokio-util", ] @@ -15325,7 +15738,7 @@ version = "1.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0" dependencies = [ - "getrandom 0.2.12", + "getrandom", ] [[package]] @@ -15367,8 +15780,8 @@ dependencies = [ "arrayref", "constcat", "digest 0.10.7", - "rand 0.8.5", - "rand_chacha 0.3.1", + "rand", + "rand_chacha", "rand_core 0.6.4", "sha2 0.10.8", "sha3", @@ -15404,12 +15817,6 @@ dependencies = [ "try-lock", ] -[[package]] -name = "wasi" -version = "0.9.0+wasi-snapshot-preview1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" - [[package]] name = "wasi" version = "0.11.0+wasi-snapshot-preview1" @@ -15771,7 +16178,7 @@ dependencies = [ "memfd", "memoffset", "paste", - "rand 0.8.5", + "rand", "rustix 0.36.17", "wasmtime-asm-macros", "wasmtime-environ", @@ -15813,11 +16220,17 @@ dependencies = [ [[package]] name = "webpki-roots" -version = "0.22.6" +version = "0.25.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1" + +[[package]] +name = "webpki-roots" +version = "0.26.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87" +checksum = "bd7c23921eeb1713a4e851530e9b9756e4fb0e89978582942612524cf09f01cd" dependencies = [ - "webpki", + "rustls-pki-types", ] [[package]] @@ -16148,17 +16561,6 @@ dependencies = [ "tap", ] -[[package]] -name = "x25519-dalek" -version = "1.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a0c105152107e3b96f6a00a65e86ce82d9b125230e1c4302940eca58ff71f4f" -dependencies = [ - "curve25519-dalek 3.2.0", - "rand_core 0.5.1", - "zeroize", -] - [[package]] name = "x25519-dalek" version = "2.0.0" @@ -16173,17 +16575,16 @@ dependencies = [ [[package]] name = "x509-parser" -version = "0.14.0" +version = "0.15.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e0ecbeb7b67ce215e40e3cc7f2ff902f94a223acf44995934763467e7b1febc8" +checksum = "7069fba5b66b9193bd2c5d3d4ff12b839118f6bcbef5328efafafb5395cf63da" dependencies = [ - "asn1-rs", - "base64 0.13.1", + "asn1-rs 0.5.2", "data-encoding", - "der-parser", + "der-parser 8.2.0", "lazy_static", "nom", - "oid-registry", + "oid-registry 0.6.1", "rusticata-macros", "thiserror", "time", @@ -16191,16 +16592,16 @@ dependencies = [ [[package]] name = "x509-parser" -version = "0.15.1" +version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7069fba5b66b9193bd2c5d3d4ff12b839118f6bcbef5328efafafb5395cf63da" +checksum = "fcbc162f30700d6f3f82a24bf7cc62ffe7caea42c0b2cba8bf7f3ae50cf51f69" dependencies = [ - "asn1-rs", + "asn1-rs 0.6.1", "data-encoding", - "der-parser", + "der-parser 9.0.0", "lazy_static", "nom", - "oid-registry", + "oid-registry 0.7.0", "rusticata-macros", "thiserror", "time", @@ -16219,17 +16620,17 @@ dependencies = [ [[package]] name = "xcm-emulator" -version = "0.12.0" +version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4fec574213c6c373641128fdea17886fb8a9ae5e3a5f25f80371ffd304dfa080" +checksum = "be630e9b41c5d19d227162afe4cf642be24058b179fb1edbfe132f6328c7bde8" dependencies = [ "cumulus-pallet-parachain-system", "cumulus-pallet-xcmp-queue", "cumulus-primitives-core", "cumulus-primitives-parachain-inherent", "cumulus-test-relay-sproof-builder", - "frame-support", - "frame-system", + "frame-support 36.0.0", + "frame-system 36.0.0", "impl-trait-for-tuples", "lazy_static", "log", @@ -16253,44 +16654,60 @@ dependencies = [ ] [[package]] -name = "xcm-fee-payment-runtime-api" -version = "0.4.0" +name = "xcm-procedural" +version = "10.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e0fd01495dfeb643167557631b34b54d312c1e70cf7eb64249ab687d84fd6045" +dependencies = [ + "Inflector", + "proc-macro2", + "quote", + "syn 2.0.65", +] + +[[package]] +name = "xcm-runtime-apis" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1d4261279994b1cb0d16a77cc12734fca18b88b56b65b8740de543af6d6a17dc" +checksum = "30fffcd9128a46abd836c37dd001c2cbe122aeb8904cd7b9bac8358564fb7b56" dependencies = [ - "frame-support", + "frame-support 36.0.0", "parity-scale-codec", "scale-info", "sp-api", - "sp-runtime 38.0.0", "sp-std", "sp-weights 31.0.0", "staging-xcm", + "staging-xcm-executor", ] [[package]] -name = "xcm-procedural" -version = "10.0.0" +name = "xml-rs" +version = "0.8.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e0fd01495dfeb643167557631b34b54d312c1e70cf7eb64249ab687d84fd6045" +checksum = "791978798f0597cfc70478424c2b4fdc2b7a8024aaff78497ef00f24ef674193" + +[[package]] +name = "xmltree" +version = "0.10.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d7d8a75eaf6557bb84a65ace8609883db44a29951042ada9b393151532e41fcb" dependencies = [ - "Inflector", - "proc-macro2", - "quote", - "syn 2.0.65", + "xml-rs", ] [[package]] name = "yamux" -version = "0.10.2" +version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e5d9ba232399af1783a58d8eb26f6b5006fbefe2dc9ef36bd283324792d03ea5" +checksum = "9ed0164ae619f2dc144909a9f082187ebb5893693d8c0196e8085283ccd4b776" dependencies = [ "futures", "log", "nohash-hasher", - "parking_lot 0.12.1", - "rand 0.8.5", + "parking_lot 0.12.3", + "pin-project", + "rand", "static_assertions", ] @@ -16331,9 +16748,9 @@ dependencies = [ [[package]] name = "zeroize" -version = "1.7.0" +version = "1.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "525b4ec142c6b68a2d10f01f7bbf6755599ca3f81ea53b8431b7dd348f5fdb2d" +checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde" dependencies = [ "zeroize_derive", ] @@ -16376,9 +16793,9 @@ dependencies = [ "anyhow", "futures", "hex", - "libp2p 0.52.4", + "libp2p", "multiaddr 0.18.1", - "rand 0.8.5", + "rand", "reqwest", "serde_json", "sha2 0.10.8", @@ -16476,7 +16893,7 @@ dependencies = [ "async-trait", "futures", "nix 0.27.1", - "rand 0.8.5", + "rand", "regex", "reqwest", "thiserror", diff --git a/Cargo.toml b/Cargo.toml index 066fe70f4d..71ee410440 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,66 +11,66 @@ asset-hub-kusama-emulated-chain = { path = "integration-tests/emulated/chains/pa asset-hub-kusama-runtime = { path = "system-parachains/asset-hubs/asset-hub-kusama" } asset-hub-polkadot-emulated-chain = { path = "integration-tests/emulated/chains/parachains/assets/asset-hub-polkadot" } asset-hub-polkadot-runtime = { path = "system-parachains/asset-hubs/asset-hub-polkadot" } -asset-test-utils = { version = "14.0.0" } -assets-common = { version = "0.14.0", default-features = false } +asset-test-utils = { version = "15.0.0" } +assets-common = { version = "0.15.0", default-features = false } authority-discovery-primitives = { version = "33.0.0", default-features = false, package = "sp-authority-discovery" } babe-primitives = { version = "0.39.0", default-features = false, package = "sp-consensus-babe" } beefy-primitives = { version = "20.0.0", default-features = false, package = "sp-consensus-beefy" } binary-merkle-tree = { version = "15.0.0", default-features = false } bp-asset-hub-kusama = { path = "system-parachains/asset-hubs/asset-hub-kusama/primitives", default-features = false } bp-asset-hub-polkadot = { path = "system-parachains/asset-hubs/asset-hub-polkadot/primitives", default-features = false } -bp-bridge-hub-cumulus = { version = "0.14.0", default-features = false } +bp-bridge-hub-cumulus = { version = "0.15.0", default-features = false } bp-bridge-hub-kusama = { path = "system-parachains/bridge-hubs/bridge-hub-kusama/primitives", default-features = false } bp-bridge-hub-polkadot = { path = "system-parachains/bridge-hubs/bridge-hub-polkadot/primitives", default-features = false } -bp-header-chain = { version = "0.14.0", default-features = false } -bp-kusama = { version = "0.12.0", default-features = false } -bp-messages = { version = "0.14.0", default-features = false } -bp-parachains = { version = "0.14.0", default-features = false } -bp-polkadot = { version = "0.12.0", default-features = false } -bp-polkadot-bulletin = { version = "0.11.0", default-features = false } -bp-polkadot-core = { version = "0.14.0", default-features = false } -bp-relayers = { version = "0.14.0", default-features = false } -bp-runtime = { version = "0.14.0", default-features = false } +bp-header-chain = { version = "0.15.0", default-features = false } +bp-kusama = { version = "0.13.0", default-features = false } +bp-messages = { version = "0.15.0", default-features = false } +bp-parachains = { version = "0.15.0", default-features = false } +bp-polkadot = { version = "0.13.0", default-features = false } +bp-polkadot-bulletin = { version = "0.12.0", default-features = false } +bp-polkadot-core = { version = "0.15.0", default-features = false } +bp-relayers = { version = "0.15.0", default-features = false } +bp-runtime = { version = "0.15.0", default-features = false } bp-xcm-bridge-hub-router = { version = "0.13.0", default-features = false } -bridge-hub-common = { version = "0.7.0", default-features = false } +bridge-hub-common = { version = "0.8.0", default-features = false } bridge-hub-kusama-emulated-chain = { path = "integration-tests/emulated/chains/parachains/bridges/bridge-hub-kusama" } bridge-hub-kusama-runtime = { path = "system-parachains/bridge-hubs/bridge-hub-kusama" } bridge-hub-polkadot-emulated-chain = { path = "integration-tests/emulated/chains/parachains/bridges/bridge-hub-polkadot" } bridge-hub-polkadot-runtime = { path = "system-parachains/bridge-hubs/bridge-hub-polkadot" } -bridge-hub-test-utils = { version = "0.14.0" } -bridge-runtime-common = { version = "0.14.0", default-features = false } +bridge-hub-test-utils = { version = "0.15.0" } +bridge-runtime-common = { version = "0.15.0", default-features = false } clap = { version = "4.5.0" } codec = { package = "parity-scale-codec", version = "3.6.9", default-features = false } collectives-polkadot-emulated-chain = { path = "integration-tests/emulated/chains/parachains/collectives/collectives-polkadot" } collectives-polkadot-runtime = { path = "system-parachains/collectives/collectives-polkadot" } collectives-polkadot-runtime-constants = { path = "system-parachains/collectives/collectives-polkadot/constants" } coretime-kusama-runtime = { path = "system-parachains/coretime/coretime-kusama" } -cumulus-pallet-aura-ext = { version = "0.14.0", default-features = false } -cumulus-pallet-dmp-queue = { version = "0.14.0", default-features = false } -cumulus-pallet-parachain-system = { version = "0.14.0", default-features = false } -cumulus-pallet-session-benchmarking = { version = "16.0.0", default-features = false } -cumulus-pallet-xcm = { version = "0.14.0", default-features = false } -cumulus-pallet-xcmp-queue = { version = "0.14.0", default-features = false } +cumulus-pallet-aura-ext = { version = "0.15.0", default-features = false } +cumulus-pallet-dmp-queue = { version = "0.15.0", default-features = false } +cumulus-pallet-parachain-system = { version = "0.15.0", default-features = false } +cumulus-pallet-session-benchmarking = { version = "17.0.0", default-features = false } +cumulus-pallet-xcm = { version = "0.15.0", default-features = false } +cumulus-pallet-xcmp-queue = { version = "0.15.0", default-features = false } cumulus-primitives-aura = { version = "0.14.0", default-features = false } cumulus-primitives-core = { version = "0.14.0", default-features = false } -cumulus-primitives-utility = { version = "0.14.0", default-features = false } -cumulus-primitives-storage-weight-reclaim = { version = "5.0.0", default-features = false } -emulated-integration-tests-common = { version = "10.0.0" } +cumulus-primitives-utility = { version = "0.15.0", default-features = false } +cumulus-primitives-storage-weight-reclaim = { version = "6.0.0", default-features = false } +emulated-integration-tests-common = { version = "11.0.0" } encointer-balances-tx-payment = { version = "~12.1.0", default-features = false } encointer-balances-tx-payment-rpc-runtime-api = { version = "~12.1.0", default-features = false } encointer-kusama-runtime = { path = "system-parachains/encointer" } encointer-primitives = { version = "~12.2.0", default-features = false } enumflags2 = { version = "0.7.7" } -frame-benchmarking = { version = "35.0.0", default-features = false } -frame-election-provider-support = { version = "35.0.0", default-features = false } -frame-executive = { version = "35.0.0", default-features = false } -frame-support = { version = "35.0.0", default-features = false } -frame-system = { version = "35.0.0", default-features = false } -frame-system-benchmarking = { version = "35.0.0", default-features = false } +frame-benchmarking = { version = "36.0.0", default-features = false } +frame-election-provider-support = { version = "36.0.0", default-features = false } +frame-executive = { version = "36.0.0", default-features = false } +frame-support = { version = "36.0.0", default-features = false } +frame-system = { version = "36.0.0", default-features = false } +frame-system-benchmarking = { version = "36.0.0", default-features = false } frame-system-rpc-runtime-api = { version = "33.0.0", default-features = false } -frame-try-runtime = { version = "0.41.0", default-features = false } +frame-try-runtime = { version = "0.42.0", default-features = false } glutton-kusama-runtime = { path = "system-parachains/gluttons/glutton-kusama" } -grandpa = { version = "0.26.0", package = "sc-consensus-grandpa" } +grandpa = { version = "0.27.0", package = "sc-consensus-grandpa" } hex-literal = { version = "0.4.1" } integration-tests-helpers = { path = "integration-tests/emulated/helpers" } kusama-emulated-chain = { path = "integration-tests/emulated/chains/relays/kusama" } @@ -79,33 +79,33 @@ kusama-runtime = { path = "relay/kusama", package = "staging-kusama-runtime" } kusama-runtime-constants = { path = "relay/kusama/constants", default-features = false } kusama-system-emulated-network = { path = "integration-tests/emulated/networks/kusama-system" } log = { version = "0.4.21", default-features = false } -pallet-alliance = { version = "34.0.0", default-features = false } -pallet-asset-conversion = { version = "17.0.0", default-features = false } -pallet-asset-conversion-tx-payment = { version = "17.0.0", default-features = false } -pallet-asset-rate = { version = "14.0.0", default-features = false } -pallet-asset-tx-payment = { version = "35.0.0", default-features = false } -pallet-assets = { version = "36.0.0", default-features = false } -pallet-aura = { version = "34.0.0", default-features = false } -pallet-authority-discovery = { version = "35.0.0", default-features = false } -pallet-authorship = { version = "35.0.0", default-features = false } -pallet-babe = { version = "35.0.0", default-features = false } -pallet-bags-list = { version = "34.0.0", default-features = false } -pallet-balances = { version = "36.0.0", default-features = false } -pallet-beefy = { version = "35.0.0", default-features = false } -pallet-beefy-mmr = { version = "35.0.0", default-features = false } -pallet-bounties = { version = "34.0.0", default-features = false } -pallet-bridge-grandpa = { version = "0.14.0", default-features = false } -pallet-bridge-messages = { version = "0.14.0", default-features = false } -pallet-bridge-parachains = { version = "0.14.0", default-features = false } -pallet-bridge-relayers = { version = "0.14.0", default-features = false } -pallet-broker = { version = "0.14.0", default-features = false } -pallet-child-bounties = { version = "34.0.0", default-features = false } -pallet-collator-selection = { version = "16.0.0", default-features = false } -pallet-collective = { version = "35.0.0", default-features = false } -pallet-conviction-voting = { version = "35.0.0", default-features = false } -pallet-core-fellowship = { version = "19.0.0", default-features = false } -pallet-election-provider-multi-phase = { version = "34.0.0", default-features = false } -pallet-election-provider-support-benchmarking = { version = "34.0.0", default-features = false } +pallet-alliance = { version = "35.0.0", default-features = false } +pallet-asset-conversion = { version = "18.0.0", default-features = false } +pallet-asset-conversion-tx-payment = { version = "18.0.0", default-features = false } +pallet-asset-rate = { version = "15.0.0", default-features = false } +pallet-asset-tx-payment = { version = "36.0.0", default-features = false } +pallet-assets = { version = "37.0.0", default-features = false } +pallet-aura = { version = "35.0.0", default-features = false } +pallet-authority-discovery = { version = "36.0.0", default-features = false } +pallet-authorship = { version = "36.0.0", default-features = false } +pallet-babe = { version = "36.0.0", default-features = false } +pallet-bags-list = { version = "35.0.0", default-features = false } +pallet-balances = { version = "37.0.0", default-features = false } +pallet-beefy = { version = "36.0.0", default-features = false } +pallet-beefy-mmr = { version = "36.0.0", default-features = false } +pallet-bounties = { version = "35.0.0", default-features = false } +pallet-bridge-grandpa = { version = "0.15.0", default-features = false } +pallet-bridge-messages = { version = "0.15.0", default-features = false } +pallet-bridge-parachains = { version = "0.15.0", default-features = false } +pallet-bridge-relayers = { version = "0.15.0", default-features = false } +pallet-broker = { version = "0.15.0", default-features = false } +pallet-child-bounties = { version = "35.0.0", default-features = false } +pallet-collator-selection = { version = "17.0.0", default-features = false } +pallet-collective = { version = "36.0.0", default-features = false } +pallet-conviction-voting = { version = "36.0.0", default-features = false } +pallet-core-fellowship = { version = "20.0.0", default-features = false } +pallet-election-provider-multi-phase = { version = "35.0.0", default-features = false } +pallet-election-provider-support-benchmarking = { version = "35.0.0", default-features = false } pallet-encointer-balances = { version = "~12.1.0", default-features = false } pallet-encointer-bazaar = { version = "~12.1.0", default-features = false } pallet-encointer-bazaar-rpc-runtime-api = { version = "~12.1.0", default-features = false } @@ -116,59 +116,59 @@ pallet-encointer-communities-rpc-runtime-api = { version = "~12.1.0", default-fe pallet-encointer-faucet = { version = "~12.2.0", default-features = false } pallet-encointer-reputation-commitments = { version = "~12.1.0", default-features = false } pallet-encointer-scheduler = { version = "~12.1.0", default-features = false } -pallet-fast-unstake = { version = "34.0.0", default-features = false } -pallet-glutton = { version = "21.0.0", default-features = false } -pallet-grandpa = { version = "35.0.0", default-features = false } -pallet-identity = { version = "35.0.0", default-features = false } -pallet-indices = { version = "35.0.0", default-features = false } -pallet-insecure-randomness-collective-flip = { version = "23.0.0", default-features = false } -pallet-membership = { version = "35.0.0", default-features = false } -pallet-message-queue = { version = "38.0.0", default-features = false } -pallet-mmr = { version = "34.0.0", default-features = false } -pallet-multisig = { version = "35.0.0", default-features = false } -pallet-nft-fractionalization = { version = "17.0.0", default-features = false } -pallet-nfts = { version = "29.0.0", default-features = false } -pallet-nfts-runtime-api = { version = "21.0.0", default-features = false } -pallet-nis = { version = "35.0.0", default-features = false } -pallet-nomination-pools = { version = "32.0.0", default-features = false } -pallet-nomination-pools-benchmarking = { version = "33.0.0", default-features = false } -pallet-nomination-pools-runtime-api = { version = "30.0.0", default-features = false } -pallet-offences = { version = "34.0.0", default-features = false } -pallet-offences-benchmarking = { version = "35.0.0", default-features = false } -pallet-preimage = { version = "35.0.0", default-features = false } -pallet-proxy = { version = "35.0.0", default-features = false } -pallet-ranked-collective = { version = "35.0.0", default-features = false } -pallet-recovery = { version = "35.0.0", default-features = false } -pallet-referenda = { version = "35.0.0", default-features = false } -pallet-salary = { version = "20.0.0", default-features = false } -pallet-scheduler = { version = "36.0.0", default-features = false } -pallet-session = { version = "35.0.0", default-features = false } -pallet-session-benchmarking = { version = "35.0.0", default-features = false } -pallet-society = { version = "35.0.0", default-features = false } -pallet-staking = { version = "35.0.0", default-features = false } +pallet-fast-unstake = { version = "35.0.0", default-features = false } +pallet-glutton = { version = "22.0.0", default-features = false } +pallet-grandpa = { version = "36.0.0", default-features = false } +pallet-identity = { version = "36.0.0", default-features = false } +pallet-indices = { version = "36.0.0", default-features = false } +pallet-insecure-randomness-collective-flip = { version = "24.0.0", default-features = false } +pallet-membership = { version = "36.0.0", default-features = false } +pallet-message-queue = { version = "39.0.0", default-features = false } +pallet-mmr = { version = "35.0.0", default-features = false } +pallet-multisig = { version = "36.0.0", default-features = false } +pallet-nft-fractionalization = { version = "18.0.0", default-features = false } +pallet-nfts = { version = "30.0.0", default-features = false } +pallet-nfts-runtime-api = { version = "22.0.0", default-features = false } +pallet-nis = { version = "36.0.0", default-features = false } +pallet-nomination-pools = { version = "33.0.0", default-features = false } +pallet-nomination-pools-benchmarking = { version = "34.0.0", default-features = false } +pallet-nomination-pools-runtime-api = { version = "31.0.0", default-features = false } +pallet-offences = { version = "35.0.0", default-features = false } +pallet-offences-benchmarking = { version = "36.0.0", default-features = false } +pallet-preimage = { version = "36.0.0", default-features = false } +pallet-proxy = { version = "36.0.0", default-features = false } +pallet-ranked-collective = { version = "36.0.0", default-features = false } +pallet-recovery = { version = "36.0.0", default-features = false } +pallet-referenda = { version = "36.0.0", default-features = false } +pallet-salary = { version = "21.0.0", default-features = false } +pallet-scheduler = { version = "37.0.0", default-features = false } +pallet-session = { version = "36.0.0", default-features = false } +pallet-session-benchmarking = { version = "36.0.0", default-features = false } +pallet-society = { version = "36.0.0", default-features = false } +pallet-staking = { version = "36.0.0", default-features = false } pallet-staking-reward-curve = { version = "12.0.0" } pallet-staking-reward-fn = { version = "22.0.0", default-features = false } pallet-staking-runtime-api = { version = "21.0.0", default-features = false } -pallet-state-trie-migration = { version = "36.0.0", default-features = false } -pallet-sudo = { version = "35.0.0", default-features = false } -pallet-timestamp = { version = "34.0.0", default-features = false } -pallet-transaction-payment = { version = "35.0.0", default-features = false } -pallet-transaction-payment-rpc-runtime-api = { version = "35.0.0", default-features = false } -pallet-treasury = { version = "34.0.0", default-features = false } -pallet-uniques = { version = "35.0.0", default-features = false } -pallet-utility = { version = "35.0.0", default-features = false } -pallet-vesting = { version = "35.0.0", default-features = false } -pallet-whitelist = { version = "34.0.0", default-features = false } -pallet-xcm = { version = "14.0.0", default-features = false } -pallet-xcm-benchmarks = { version = "14.0.0", default-features = false } -pallet-xcm-bridge-hub = { version = "0.9.0", default-features = false } -pallet-xcm-bridge-hub-router = { version = "0.12.0", default-features = false } -parachain-info = { version = "0.14.0", default-features = false, package = "staging-parachain-info" } -parachains-common = { version = "14.0.0", default-features = false } -parachains-runtimes-test-utils = { version = "14.0.0" } +pallet-state-trie-migration = { version = "37.0.0", default-features = false } +pallet-sudo = { version = "36.0.0", default-features = false } +pallet-timestamp = { version = "35.0.0", default-features = false } +pallet-transaction-payment = { version = "36.0.0", default-features = false } +pallet-transaction-payment-rpc-runtime-api = { version = "36.0.0", default-features = false } +pallet-treasury = { version = "35.0.0", default-features = false } +pallet-uniques = { version = "36.0.0", default-features = false } +pallet-utility = { version = "36.0.0", default-features = false } +pallet-vesting = { version = "36.0.0", default-features = false } +pallet-whitelist = { version = "35.0.0", default-features = false } +pallet-xcm = { version = "15.0.0", default-features = false } +pallet-xcm-benchmarks = { version = "15.0.0", default-features = false } +pallet-xcm-bridge-hub = { version = "0.10.0", default-features = false } +pallet-xcm-bridge-hub-router = { version = "0.13.0", default-features = false } +parachain-info = { version = "0.15.0", default-features = false, package = "staging-parachain-info" } +parachains-common = { version = "15.0.0", default-features = false } +parachains-runtimes-test-utils = { version = "15.0.0" } paste = { version = "1.0.14" } penpal-emulated-chain = { path = "integration-tests/emulated/chains/parachains/testing/penpal" } -penpal-runtime = { version = "0.21.0" } +penpal-runtime = { version = "0.22.0" } people-kusama-emulated-chain = { path = "integration-tests/emulated/chains/parachains/people/people-kusama" } people-kusama-runtime = { path = "system-parachains/people/people-kusama" } people-polkadot-emulated-chain = { path = "integration-tests/emulated/chains/parachains/people/people-polkadot" } @@ -178,31 +178,31 @@ polkadot-emulated-chain = { path = "integration-tests/emulated/chains/relays/pol polkadot-parachain-primitives = { version = "13.0.0", default-features = false } polkadot-primitives = { version = "14.0.0", default-features = false } polkadot-runtime = { path = "relay/polkadot" } -polkadot-runtime-common = { version = "14.0.0", default-features = false } +polkadot-runtime-common = { version = "15.0.0", default-features = false } polkadot-runtime-constants = { path = "relay/polkadot/constants", default-features = false } polkadot-system-emulated-network = { path = "integration-tests/emulated/networks/polkadot-system" } primitive-types = { version = "0.12.2", default-features = false } -frame-metadata-hash-extension = { version = "0.3.0", default-features = false } -remote-externalities = { version = "0.42.0", package = "frame-remote-externalities" } -runtime-parachains = { version = "14.0.0", default-features = false, package = "polkadot-runtime-parachains" } -sc-chain-spec = { version = "34.0.0" } +frame-metadata-hash-extension = { version = "0.4.0", default-features = false } +remote-externalities = { version = "0.43.0", package = "frame-remote-externalities" } +runtime-parachains = { version = "15.0.0", default-features = false, package = "polkadot-runtime-parachains" } +sc-chain-spec = { version = "35.0.0" } scale-info = { version = "2.10.0", default-features = false } separator = { version = "0.4.1" } serde = { version = "1.0.196" } serde_json = { version = "1.0.113" } smallvec = { version = "1.13.1" } -snowbridge-beacon-primitives = { version = "0.7.0", default-features = false } -snowbridge-core = { version = "0.7.0", default-features = false } -snowbridge-outbound-queue-runtime-api = { version = "0.7.0", default-features = false } -snowbridge-pallet-ethereum-client = { version = "0.7.0", default-features = false } -snowbridge-pallet-inbound-queue = { version = "0.7.0", default-features = false } -snowbridge-pallet-inbound-queue-fixtures = { version = "0.15.0" } -snowbridge-pallet-outbound-queue = { version = "0.7.0", default-features = false } -snowbridge-pallet-system = { version = "0.7.0", default-features = false } -snowbridge-router-primitives = { version = "0.13.0", default-features = false } -snowbridge-runtime-common = { version = "0.7.0", default-features = false } -snowbridge-runtime-test-common = { version = "0.7.0" } -snowbridge-system-runtime-api = { version = "0.7.0", default-features = false } +snowbridge-beacon-primitives = { version = "0.8.0", default-features = false } +snowbridge-core = { version = "0.8.0", default-features = false } +snowbridge-outbound-queue-runtime-api = { version = "0.8.0", default-features = false } +snowbridge-pallet-ethereum-client = { version = "0.8.0", default-features = false } +snowbridge-pallet-inbound-queue = { version = "0.8.0", default-features = false } +snowbridge-pallet-inbound-queue-fixtures = { version = "0.16.0" } +snowbridge-pallet-outbound-queue = { version = "0.8.0", default-features = false } +snowbridge-pallet-system = { version = "0.8.0", default-features = false } +snowbridge-router-primitives = { version = "0.14.0", default-features = false } +snowbridge-runtime-common = { version = "0.8.0", default-features = false } +snowbridge-runtime-test-common = { version = "0.8.0" } +snowbridge-system-runtime-api = { version = "0.8.0", default-features = false } sp-api = { version = "33.0.0", default-features = false } sp-application-crypto = { version = "37.0.0", default-features = false } sp-arithmetic = { version = "26.0.0", default-features = false } @@ -230,10 +230,10 @@ static_assertions = { version = "1.1.0" } substrate-wasm-builder = { version = "23.0.0" } system-parachains-constants = { path = "system-parachains/constants", default-features = false } tokio = { version = "1.36.0" } -xcm = { version = "14.0.0", default-features = false, package = "staging-xcm" } -xcm-builder = { version = "14.0.0", default-features = false, package = "staging-xcm-builder" } -xcm-emulator = { version = "0.12.0" } -xcm-executor = { version = "14.0.0", default-features = false, package = "staging-xcm-executor" } +xcm = { version = "14.0.1", default-features = false, package = "staging-xcm" } +xcm-builder = { version = "15.0.0", default-features = false, package = "staging-xcm-builder" } +xcm-emulator = { version = "0.13.0" } +xcm-executor = { version = "15.0.0", default-features = false, package = "staging-xcm-executor" } anyhow = { version = "1.0.82" } subxt = { version = "0.35.0", default-features = false } tracing-subscriber = { version = "0.3.18" } From d99131f61a24f18a916b0a95e400c688fd286978 Mon Sep 17 00:00:00 2001 From: Oliver Tale-Yazdi Date: Sun, 14 Jul 2024 12:39:58 +0200 Subject: [PATCH 03/44] Update Collectives Signed-off-by: Oliver Tale-Yazdi --- relay/kusama/src/governance/fellowship.rs | 1 + .../collectives-polkadot/src/ambassador/mod.rs | 8 ++++++++ .../collectives-polkadot/src/fellowship/mod.rs | 1 + 3 files changed, 10 insertions(+) diff --git a/relay/kusama/src/governance/fellowship.rs b/relay/kusama/src/governance/fellowship.rs index 2de35352b4..59c80eb05a 100644 --- a/relay/kusama/src/governance/fellowship.rs +++ b/relay/kusama/src/governance/fellowship.rs @@ -362,6 +362,7 @@ impl pallet_ranked_collective::Config for Runtime type MinRankOfClass = sp_runtime::traits::Identity; type MemberSwappedHandler = (); type VoteWeight = pallet_ranked_collective::Geometric; + type MaxMemberCount = (); #[cfg(feature = "runtime-benchmarks")] type BenchmarkSetup = (); } diff --git a/system-parachains/collectives/collectives-polkadot/src/ambassador/mod.rs b/system-parachains/collectives/collectives-polkadot/src/ambassador/mod.rs index 6bef9702ef..c01cd1999d 100644 --- a/system-parachains/collectives/collectives-polkadot/src/ambassador/mod.rs +++ b/system-parachains/collectives/collectives-polkadot/src/ambassador/mod.rs @@ -141,6 +141,14 @@ impl pallet_ranked_collective::Config for Runtime type BenchmarkSetup = (crate::AmbassadorCore, crate::AmbassadorSalary); } +/// Limits the maximal number of Head Ambassadors to 21. +pub struct AmbassadorMemberCount; +impl MaybeConvert for AmbassadorMemberCount { + fn maybe_convert(rank: Rank) -> Option { + (rank == 3).then(|| 21) + } +} + parameter_types! { pub const AlarmInterval: BlockNumber = 1; pub const SubmissionDeposit: Balance = 0; diff --git a/system-parachains/collectives/collectives-polkadot/src/fellowship/mod.rs b/system-parachains/collectives/collectives-polkadot/src/fellowship/mod.rs index c3db58188a..c6274e7ad4 100644 --- a/system-parachains/collectives/collectives-polkadot/src/fellowship/mod.rs +++ b/system-parachains/collectives/collectives-polkadot/src/fellowship/mod.rs @@ -151,6 +151,7 @@ impl pallet_ranked_collective::Config for Runtime type MinRankOfClass = tracks::MinRankOfClass; type MemberSwappedHandler = (crate::FellowshipCore, crate::FellowshipSalary); type VoteWeight = pallet_ranked_collective::Geometric; + type MaxMemberCount = (); #[cfg(feature = "runtime-benchmarks")] type BenchmarkSetup = (crate::FellowshipCore, crate::FellowshipSalary); } From ec4914be0894d38050eb817b66d50014301bbab3 Mon Sep 17 00:00:00 2001 From: Oliver Tale-Yazdi Date: Sun, 14 Jul 2024 20:00:26 +0200 Subject: [PATCH 04/44] Disable Encointer runtime Signed-off-by: Oliver Tale-Yazdi --- Cargo.toml | 30 +++++++++---------- chain-spec-generator/Cargo.toml | 6 ++-- chain-spec-generator/src/common.rs | 6 ++-- chain-spec-generator/src/main.rs | 8 ++--- .../src/system_parachains_specs.rs | 8 ++--- 5 files changed, 29 insertions(+), 29 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 71ee410440..72bad2f42b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -56,10 +56,10 @@ cumulus-primitives-core = { version = "0.14.0", default-features = false } cumulus-primitives-utility = { version = "0.15.0", default-features = false } cumulus-primitives-storage-weight-reclaim = { version = "6.0.0", default-features = false } emulated-integration-tests-common = { version = "11.0.0" } -encointer-balances-tx-payment = { version = "~12.1.0", default-features = false } -encointer-balances-tx-payment-rpc-runtime-api = { version = "~12.1.0", default-features = false } -encointer-kusama-runtime = { path = "system-parachains/encointer" } -encointer-primitives = { version = "~12.2.0", default-features = false } +#encointer-balances-tx-payment = { version = "~12.1.0", default-features = false } +#encointer-balances-tx-payment-rpc-runtime-api = { version = "~12.1.0", default-features = false } +#encointer-kusama-runtime = { path = "system-parachains/encointer" } +#encointer-primitives = { version = "~12.2.0", default-features = false } enumflags2 = { version = "0.7.7" } frame-benchmarking = { version = "36.0.0", default-features = false } frame-election-provider-support = { version = "36.0.0", default-features = false } @@ -106,16 +106,16 @@ pallet-conviction-voting = { version = "36.0.0", default-features = false } pallet-core-fellowship = { version = "20.0.0", default-features = false } pallet-election-provider-multi-phase = { version = "35.0.0", default-features = false } pallet-election-provider-support-benchmarking = { version = "35.0.0", default-features = false } -pallet-encointer-balances = { version = "~12.1.0", default-features = false } -pallet-encointer-bazaar = { version = "~12.1.0", default-features = false } -pallet-encointer-bazaar-rpc-runtime-api = { version = "~12.1.0", default-features = false } -pallet-encointer-ceremonies = { version = "~12.1.0", default-features = false } -pallet-encointer-ceremonies-rpc-runtime-api = { version = "~12.1.0", default-features = false } -pallet-encointer-communities = { version = "~12.1.0", default-features = false } -pallet-encointer-communities-rpc-runtime-api = { version = "~12.1.0", default-features = false } -pallet-encointer-faucet = { version = "~12.2.0", default-features = false } -pallet-encointer-reputation-commitments = { version = "~12.1.0", default-features = false } -pallet-encointer-scheduler = { version = "~12.1.0", default-features = false } +#pallet-encointer-balances = { version = "~12.1.0", default-features = false } +#pallet-encointer-bazaar = { version = "~12.1.0", default-features = false } +#pallet-encointer-bazaar-rpc-runtime-api = { version = "~12.1.0", default-features = false } +#pallet-encointer-ceremonies = { version = "~12.1.0", default-features = false } +#pallet-encointer-ceremonies-rpc-runtime-api = { version = "~12.1.0", default-features = false } +#pallet-encointer-communities = { version = "~12.1.0", default-features = false } +#pallet-encointer-communities-rpc-runtime-api = { version = "~12.1.0", default-features = false } +#pallet-encointer-faucet = { version = "~12.2.0", default-features = false } +#pallet-encointer-reputation-commitments = { version = "~12.1.0", default-features = false } +#pallet-encointer-scheduler = { version = "~12.1.0", default-features = false } pallet-fast-unstake = { version = "35.0.0", default-features = false } pallet-glutton = { version = "22.0.0", default-features = false } pallet-grandpa = { version = "36.0.0", default-features = false } @@ -282,7 +282,7 @@ members = [ "system-parachains/collectives/collectives-polkadot/constants", "system-parachains/constants", "system-parachains/coretime/coretime-kusama", - "system-parachains/encointer", + #"system-parachains/encointer", "system-parachains/gluttons/glutton-kusama", "system-parachains/people/people-kusama", "system-parachains/people/people-polkadot", diff --git a/chain-spec-generator/Cargo.toml b/chain-spec-generator/Cargo.toml index 7a97e371a7..b08407911d 100644 --- a/chain-spec-generator/Cargo.toml +++ b/chain-spec-generator/Cargo.toml @@ -35,7 +35,7 @@ asset-hub-kusama-runtime = { workspace = true } collectives-polkadot-runtime = { workspace = true } bridge-hub-polkadot-runtime = { workspace = true } bridge-hub-kusama-runtime = { workspace = true } -encointer-kusama-runtime = { workspace = true } +#encointer-kusama-runtime = { workspace = true } glutton-kusama-runtime = { workspace = true } coretime-kusama-runtime = { workspace = true } people-kusama-runtime = { workspace = true } @@ -51,7 +51,7 @@ runtime-benchmarks = [ "collectives-polkadot-runtime/runtime-benchmarks", "coretime-kusama-runtime/runtime-benchmarks", "cumulus-primitives-core/runtime-benchmarks", - "encointer-kusama-runtime/runtime-benchmarks", + #"encointer-kusama-runtime/runtime-benchmarks", "glutton-kusama-runtime/runtime-benchmarks", "kusama-runtime/runtime-benchmarks", "pallet-staking/runtime-benchmarks", @@ -62,5 +62,5 @@ runtime-benchmarks = [ "polkadot-runtime/runtime-benchmarks", "runtime-parachains/runtime-benchmarks", "sp-runtime/runtime-benchmarks", - "encointer-kusama-runtime/runtime-benchmarks" + #"encointer-kusama-runtime/runtime-benchmarks" ] diff --git a/chain-spec-generator/src/common.rs b/chain-spec-generator/src/common.rs index 24162a4600..cce1cd2daf 100644 --- a/chain-spec-generator/src/common.rs +++ b/chain-spec-generator/src/common.rs @@ -19,7 +19,7 @@ use crate::{ relay_chain_specs::{KusamaChainSpec, PolkadotChainSpec}, system_parachains_specs::{ AssetHubKusamaChainSpec, AssetHubPolkadotChainSpec, BridgeHubKusamaChainSpec, - BridgeHubPolkadotChainSpec, CollectivesPolkadotChainSpec, EncointerKusamaChainSpec, + BridgeHubPolkadotChainSpec, CollectivesPolkadotChainSpec, GluttonKusamaChainSpec, PeopleKusamaChainSpec, PeoplePolkadotChainSpec, }, ChainSpec, @@ -88,8 +88,8 @@ pub fn from_json_file(filepath: &str, supported: String) -> Result Ok(Box::new(GluttonKusamaChainSpec::from_json_file(path)?)), - x if x.starts_with("encointer-kusama") => - Ok(Box::new(EncointerKusamaChainSpec::from_json_file(path)?)), + //x if x.starts_with("encointer-kusama") => + // Ok(Box::new(EncointerKusamaChainSpec::from_json_file(path)?)), x if x.starts_with("people-kusama") => Ok(Box::new(PeopleKusamaChainSpec::from_json_file(path)?)), x if x.starts_with("people-polkadot") => diff --git a/chain-spec-generator/src/main.rs b/chain-spec-generator/src/main.rs index 913d976d56..046731a5db 100644 --- a/chain-spec-generator/src/main.rs +++ b/chain-spec-generator/src/main.rs @@ -72,10 +72,10 @@ fn main() -> Result<(), String> { "glutton-kusama-local", Box::new(system_parachains_specs::glutton_kusama_local_testnet_config) as Box<_>, ), - ( - "encointer-kusama-local", - Box::new(system_parachains_specs::encointer_kusama_local_testnet_config) as Box<_>, - ), + //( + // "encointer-kusama-local", + // Box::new(system_parachains_specs::encointer_kusama_local_testnet_config) as Box<_>, + //), ( "coretime-kusama-local", Box::new(system_parachains_specs::coretime_kusama_local_testnet_config) as Box<_>, diff --git a/chain-spec-generator/src/system_parachains_specs.rs b/chain-spec-generator/src/system_parachains_specs.rs index 271f4c4479..a149e157bf 100644 --- a/chain-spec-generator/src/system_parachains_specs.rs +++ b/chain-spec-generator/src/system_parachains_specs.rs @@ -44,7 +44,7 @@ pub type BridgeHubKusamaChainSpec = sc_chain_spec::GenericChainSpec; pub type GluttonKusamaChainSpec = sc_chain_spec::GenericChainSpec; -pub type EncointerKusamaChainSpec = sc_chain_spec::GenericChainSpec; +//pub type EncointerKusamaChainSpec = sc_chain_spec::GenericChainSpec; pub type CoretimeKusamaChainSpec = sc_chain_spec::GenericChainSpec; @@ -62,7 +62,7 @@ const BRIDGE_HUB_POLKADOT_ED: Balance = bridge_hub_polkadot_runtime::Existential const BRIDGE_HUB_KUSAMA_ED: Balance = bridge_hub_kusama_runtime::ExistentialDeposit::get(); -const ENCOINTER_KUSAMA_ED: Balance = encointer_kusama_runtime::ExistentialDeposit::get(); +//const ENCOINTER_KUSAMA_ED: Balance = encointer_kusama_runtime::ExistentialDeposit::get(); const CORETIME_KUSAMA_ED: Balance = coretime_kusama_runtime::ExistentialDeposit::get(); @@ -560,7 +560,7 @@ pub fn glutton_kusama_local_testnet_config() -> Result, Strin } // EncointerKusama -fn encointer_kusama_genesis(endowed_accounts: Vec, id: u32) -> serde_json::Value { +/*fn encointer_kusama_genesis(endowed_accounts: Vec, id: u32) -> serde_json::Value { serde_json::json!({ "balances": asset_hub_kusama_runtime::BalancesConfig { balances: endowed_accounts @@ -624,7 +624,7 @@ pub fn encointer_kusama_local_testnet_config() -> Result, Str .with_properties(properties) .build(), )) -} +}*/ // CoretimeKusama fn coretime_kusama_genesis( From 41438850932930375bec5cf7ce8dd9af96e3dce8 Mon Sep 17 00:00:00 2001 From: Oliver Tale-Yazdi Date: Sun, 14 Jul 2024 20:58:48 +0200 Subject: [PATCH 05/44] Update Kusama coretime Signed-off-by: Oliver Tale-Yazdi --- relay/kusama/constants/src/lib.rs | 12 ++++++++++ relay/kusama/src/lib.rs | 23 +++++++++++++++++++ .../coretime/coretime-kusama/src/coretime.rs | 12 ++-------- 3 files changed, 37 insertions(+), 10 deletions(-) diff --git a/relay/kusama/constants/src/lib.rs b/relay/kusama/constants/src/lib.rs index 335efd102a..09deca9fdf 100644 --- a/relay/kusama/constants/src/lib.rs +++ b/relay/kusama/constants/src/lib.rs @@ -118,6 +118,18 @@ pub mod system_parachain { // System parachains from Kusama point of view. pub type SystemParachains = IsChildSystemParachain; + + /// Coretime constants + // FAIL-CI @donal please check/fix + pub mod coretime { + /// Coretime timeslice period in blocks + /// WARNING: This constant is used accross chains, so additional care should be taken + /// when changing it. + #[cfg(feature = "fast-runtime")] + pub const TIMESLICE_PERIOD: u32 = 10; + #[cfg(not(feature = "fast-runtime"))] + pub const TIMESLICE_PERIOD: u32 = 80; + } } /// Kusama Treasury pallet instance. diff --git a/relay/kusama/src/lib.rs b/relay/kusama/src/lib.rs index a12e731104..ab6bb2b61c 100644 --- a/relay/kusama/src/lib.rs +++ b/relay/kusama/src/lib.rs @@ -22,6 +22,7 @@ use codec::{Decode, Encode, MaxEncodedLen}; use frame_support::weights::constants::{WEIGHT_PROOF_SIZE_PER_KB, WEIGHT_REF_TIME_PER_MICROS}; +use kusama_runtime_constants::system_parachain::coretime::TIMESLICE_PERIOD; use pallet_nis::WithMaximumOf; use polkadot_primitives::{ slashing, AccountId, AccountIndex, ApprovalVotingParams, Balance, BlockNumber, CandidateEvent, @@ -1284,12 +1285,22 @@ impl parachains_scheduler::Config for Runtime { parameter_types! { pub const BrokerId: u32 = system_parachain::BROKER_ID; + pub const BrokerPalletId: PalletId = PalletId(*b"py/broke"); pub MaxXcmTransactWeight: Weight = Weight::from_parts( 250 * WEIGHT_REF_TIME_PER_MICROS, 20 * WEIGHT_PROOF_SIZE_PER_KB ); } +// FAIL-CI @donal please check/fix +pub struct BrokerPot; +impl Get for BrokerPot { + fn get() -> InteriorLocation { + Junction::AccountId32 { network: None, id: BrokerPalletId::get().into_account_truncating() } + .into() + } +} + impl coretime::Config for Runtime { type RuntimeOrigin = RuntimeOrigin; type RuntimeEvent = RuntimeEvent; @@ -1298,10 +1309,20 @@ impl coretime::Config for Runtime { type WeightInfo = weights::runtime_parachains_coretime::WeightInfo; type SendXcm = crate::xcm_config::XcmRouter; type MaxXcmTransactWeight = MaxXcmTransactWeight; + // FAIL-CI @donal please check these three: + type BrokerPotLocation = BrokerPot; + type AssetTransactor = crate::xcm_config::LocalAssetTransactor; + type AccountToLocation = xcm_builder::AliasesIntoAccountId32< + xcm_config::ThisNetwork, + ::AccountId, + >; } parameter_types! { pub const OnDemandTrafficDefaultValue: FixedU128 = FixedU128::from_u32(1); + // FAIL-CI @donal please check/fix + pub const MaxHistoricalRevenue: BlockNumber = 2 * TIMESLICE_PERIOD; + pub const OnDemandPalletId: PalletId = PalletId(*b"py/ondmd"); } impl parachains_assigner_on_demand::Config for Runtime { @@ -1309,6 +1330,8 @@ impl parachains_assigner_on_demand::Config for Runtime { type Currency = Balances; type TrafficDefaultValue = OnDemandTrafficDefaultValue; type WeightInfo = weights::runtime_parachains_assigner_on_demand::WeightInfo; + type MaxHistoricalRevenue = MaxHistoricalRevenue; + type PalletId = OnDemandPalletId; } impl parachains_assigner_coretime::Config for Runtime {} diff --git a/system-parachains/coretime/coretime-kusama/src/coretime.rs b/system-parachains/coretime/coretime-kusama/src/coretime.rs index 8c33500cd2..1afe28a080 100644 --- a/system-parachains/coretime/coretime-kusama/src/coretime.rs +++ b/system-parachains/coretime/coretime-kusama/src/coretime.rs @@ -25,6 +25,7 @@ use frame_support::{ OnUnbalanced, }, }; +use kusama_runtime_constants::system_parachain::coretime; use pallet_broker::{CoreAssignment, CoreIndex, CoretimeInterface, PartsOf57600, RCBlockNumberOf}; use sp_runtime::traits::AccountIdConversion; use xcm::latest::prelude::*; @@ -183,12 +184,6 @@ impl CoretimeInterface for CoretimeAllocator { } } - fn check_notify_revenue_info() -> Option<(RCBlockNumberOf, Self::Balance)> { - let revenue = CoretimeRevenue::get(); - CoretimeRevenue::set(&None); - revenue - } - #[cfg(feature = "runtime-benchmarks")] fn ensure_notify_revenue_info(when: RCBlockNumberOf, revenue: Self::Balance) { CoretimeRevenue::set(&Some((when, revenue))); @@ -203,10 +198,7 @@ impl pallet_broker::Config for Runtime { type RuntimeEvent = RuntimeEvent; type Currency = Balances; type OnRevenue = BurnRevenue; - #[cfg(feature = "fast-runtime")] - type TimeslicePeriod = ConstU32<10>; - #[cfg(not(feature = "fast-runtime"))] - type TimeslicePeriod = ConstU32<80>; + type TimeslicePeriod = ConstU32<{ coretime::TIMESLICE_PERIOD }>; type MaxLeasedCores = ConstU32<50>; type MaxReservedCores = ConstU32<10>; type Coretime = CoretimeAllocator; From 1c0af2dd9f7ae91868a40ee856d704cb1e37e3d7 Mon Sep 17 00:00:00 2001 From: Oliver Tale-Yazdi Date: Sun, 14 Jul 2024 20:59:41 +0200 Subject: [PATCH 06/44] Update Treasury Signed-off-by: Oliver Tale-Yazdi --- relay/kusama/src/lib.rs | 11 ++--- relay/kusama/src/weights/pallet_treasury.rs | 45 ------------------ relay/polkadot/src/lib.rs | 6 +-- relay/polkadot/src/weights/pallet_treasury.rs | 45 ------------------ .../src/ambassador/mod.rs | 23 ---------- .../src/fellowship/mod.rs | 23 ---------- .../pallet_treasury_ambassador_treasury.rs | 46 ------------------- .../pallet_treasury_fellowship_treasury.rs | 46 ------------------- 8 files changed, 5 insertions(+), 240 deletions(-) diff --git a/relay/kusama/src/lib.rs b/relay/kusama/src/lib.rs index ab6bb2b61c..c65a31063c 100644 --- a/relay/kusama/src/lib.rs +++ b/relay/kusama/src/lib.rs @@ -93,8 +93,9 @@ use sp_core::{ConstU128, OpaqueMetadata, H256}; use sp_runtime::{ create_runtime_str, generic, impl_opaque_keys, traits::{ - AccountIdLookup, BlakeTwo256, Block as BlockT, ConvertInto, Extrinsic as ExtrinsicT, - IdentityLookup, Keccak256, OpaqueKeys, SaturatedConversion, Verify, + AccountIdConversion, AccountIdLookup, BlakeTwo256, Block as BlockT, ConvertInto, + Extrinsic as ExtrinsicT, IdentityLookup, Keccak256, OpaqueKeys, SaturatedConversion, + Verify, }, transaction_validity::{TransactionPriority, TransactionSource, TransactionValidity}, ApplyExtrinsicResult, FixedU128, KeyTypeId, Perbill, Percent, Permill, RuntimeDebug, @@ -741,13 +742,8 @@ parameter_types! { impl pallet_treasury::Config for Runtime { type PalletId = TreasuryPalletId; type Currency = Balances; - type ApproveOrigin = EitherOfDiverse, Treasurer>; type RejectOrigin = EitherOfDiverse, Treasurer>; type RuntimeEvent = RuntimeEvent; - type OnSlash = Treasury; - type ProposalBond = ProposalBond; - type ProposalBondMinimum = ProposalBondMinimum; - type ProposalBondMaximum = ProposalBondMaximum; type SpendPeriod = SpendPeriod; type Burn = Burn; type BurnDestination = Society; @@ -797,6 +793,7 @@ impl pallet_bounties::Config for Runtime { type DataDepositPerByte = DataDepositPerByte; type RuntimeEvent = RuntimeEvent; type MaximumReasonLength = MaximumReasonLength; + type OnSlash = Treasury; type WeightInfo = weights::pallet_bounties::WeightInfo; } diff --git a/relay/kusama/src/weights/pallet_treasury.rs b/relay/kusama/src/weights/pallet_treasury.rs index ae737aaec8..e35acbb746 100644 --- a/relay/kusama/src/weights/pallet_treasury.rs +++ b/relay/kusama/src/weights/pallet_treasury.rs @@ -62,51 +62,6 @@ impl pallet_treasury::WeightInfo for WeightInfo { .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(3)) } - /// Storage: `Treasury::ProposalCount` (r:1 w:1) - /// Proof: `Treasury::ProposalCount` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`) - /// Storage: `Treasury::Proposals` (r:0 w:1) - /// Proof: `Treasury::Proposals` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) - fn propose_spend() -> Weight { - // Proof Size summary in bytes: - // Measured: `210` - // Estimated: `1489` - // Minimum execution time: 20_638_000 picoseconds. - Weight::from_parts(21_268_000, 0) - .saturating_add(Weight::from_parts(0, 1489)) - .saturating_add(T::DbWeight::get().reads(1)) - .saturating_add(T::DbWeight::get().writes(2)) - } - /// Storage: `Treasury::Proposals` (r:1 w:1) - /// Proof: `Treasury::Proposals` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) - /// Storage: `System::Account` (r:1 w:1) - /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `MaxEncodedLen`) - fn reject_proposal() -> Weight { - // Proof Size summary in bytes: - // Measured: `368` - // Estimated: `3593` - // Minimum execution time: 34_278_000 picoseconds. - Weight::from_parts(34_910_000, 0) - .saturating_add(Weight::from_parts(0, 3593)) - .saturating_add(T::DbWeight::get().reads(2)) - .saturating_add(T::DbWeight::get().writes(2)) - } - /// Storage: `Treasury::Proposals` (r:1 w:0) - /// Proof: `Treasury::Proposals` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) - /// Storage: `Treasury::Approvals` (r:1 w:1) - /// Proof: `Treasury::Approvals` (`max_values`: Some(1), `max_size`: Some(402), added: 897, mode: `MaxEncodedLen`) - /// The range of component `p` is `[0, 99]`. - fn approve_proposal(p: u32, ) -> Weight { - // Proof Size summary in bytes: - // Measured: `537 + p * (8 ±0)` - // Estimated: `3573` - // Minimum execution time: 7_257_000 picoseconds. - Weight::from_parts(11_672_494, 0) - .saturating_add(Weight::from_parts(0, 3573)) - // Standard Error: 1_672 - .saturating_add(Weight::from_parts(92_309, 0).saturating_mul(p.into())) - .saturating_add(T::DbWeight::get().reads(2)) - .saturating_add(T::DbWeight::get().writes(1)) - } /// Storage: `Treasury::Approvals` (r:1 w:1) /// Proof: `Treasury::Approvals` (`max_values`: Some(1), `max_size`: Some(402), added: 897, mode: `MaxEncodedLen`) fn remove_approval() -> Weight { diff --git a/relay/polkadot/src/lib.rs b/relay/polkadot/src/lib.rs index fd36be70e1..b38a1ee0b0 100644 --- a/relay/polkadot/src/lib.rs +++ b/relay/polkadot/src/lib.rs @@ -854,13 +854,8 @@ parameter_types! { impl pallet_treasury::Config for Runtime { type PalletId = TreasuryPalletId; type Currency = Balances; - type ApproveOrigin = EitherOfDiverse, Treasurer>; type RejectOrigin = EitherOfDiverse, Treasurer>; type RuntimeEvent = RuntimeEvent; - type OnSlash = Treasury; - type ProposalBond = ProposalBond; - type ProposalBondMinimum = ProposalBondMinimum; - type ProposalBondMaximum = ProposalBondMaximum; type SpendPeriod = SpendPeriod; type Burn = Burn; type BurnDestination = (); @@ -910,6 +905,7 @@ impl pallet_bounties::Config for Runtime { type ChildBountyManager = ChildBounties; type DataDepositPerByte = DataDepositPerByte; type MaximumReasonLength = MaximumReasonLength; + type OnSlash = Treasury; type WeightInfo = weights::pallet_bounties::WeightInfo; } diff --git a/relay/polkadot/src/weights/pallet_treasury.rs b/relay/polkadot/src/weights/pallet_treasury.rs index a973f9ed92..182822974a 100644 --- a/relay/polkadot/src/weights/pallet_treasury.rs +++ b/relay/polkadot/src/weights/pallet_treasury.rs @@ -62,51 +62,6 @@ impl pallet_treasury::WeightInfo for WeightInfo { .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(3)) } - /// Storage: `Treasury::ProposalCount` (r:1 w:1) - /// Proof: `Treasury::ProposalCount` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`) - /// Storage: `Treasury::Proposals` (r:0 w:1) - /// Proof: `Treasury::Proposals` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) - fn propose_spend() -> Weight { - // Proof Size summary in bytes: - // Measured: `143` - // Estimated: `1489` - // Minimum execution time: 20_572_000 picoseconds. - Weight::from_parts(21_023_000, 0) - .saturating_add(Weight::from_parts(0, 1489)) - .saturating_add(T::DbWeight::get().reads(1)) - .saturating_add(T::DbWeight::get().writes(2)) - } - /// Storage: `Treasury::Proposals` (r:1 w:1) - /// Proof: `Treasury::Proposals` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) - /// Storage: `System::Account` (r:1 w:1) - /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `MaxEncodedLen`) - fn reject_proposal() -> Weight { - // Proof Size summary in bytes: - // Measured: `301` - // Estimated: `3593` - // Minimum execution time: 31_500_000 picoseconds. - Weight::from_parts(32_257_000, 0) - .saturating_add(Weight::from_parts(0, 3593)) - .saturating_add(T::DbWeight::get().reads(2)) - .saturating_add(T::DbWeight::get().writes(2)) - } - /// Storage: `Treasury::Proposals` (r:1 w:0) - /// Proof: `Treasury::Proposals` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) - /// Storage: `Treasury::Approvals` (r:1 w:1) - /// Proof: `Treasury::Approvals` (`max_values`: Some(1), `max_size`: Some(402), added: 897, mode: `MaxEncodedLen`) - /// The range of component `p` is `[0, 99]`. - fn approve_proposal(p: u32, ) -> Weight { - // Proof Size summary in bytes: - // Measured: `470 + p * (8 ±0)` - // Estimated: `3573` - // Minimum execution time: 6_910_000 picoseconds. - Weight::from_parts(8_782_990, 0) - .saturating_add(Weight::from_parts(0, 3573)) - // Standard Error: 1_895 - .saturating_add(Weight::from_parts(105_912, 0).saturating_mul(p.into())) - .saturating_add(T::DbWeight::get().reads(2)) - .saturating_add(T::DbWeight::get().writes(1)) - } /// Storage: `Treasury::Approvals` (r:1 w:1) /// Proof: `Treasury::Approvals` (`max_values`: Some(1), `max_size`: Some(402), added: 897, mode: `MaxEncodedLen`) fn remove_approval() -> Weight { diff --git a/system-parachains/collectives/collectives-polkadot/src/ambassador/mod.rs b/system-parachains/collectives/collectives-polkadot/src/ambassador/mod.rs index c01cd1999d..4e0f26ff81 100644 --- a/system-parachains/collectives/collectives-polkadot/src/ambassador/mod.rs +++ b/system-parachains/collectives/collectives-polkadot/src/ambassador/mod.rs @@ -306,29 +306,6 @@ pub type AmbassadorTreasuryPaymaster = PayOverXcm< pub type AmbassadorTreasuryInstance = pallet_treasury::Instance2; impl pallet_treasury::Config for Runtime { - // The creation of proposals via the treasury pallet is deprecated and should not be utilized. - // Instead, public or fellowship referenda should be used to propose and command the treasury - // spend or spend_local dispatchables. The parameters below have been configured accordingly to - // discourage its use. - #[cfg(not(feature = "runtime-benchmarks"))] - type ApproveOrigin = frame_support::traits::NeverEnsureOrigin; - #[cfg(feature = "runtime-benchmarks")] - type ApproveOrigin = EnsureRoot; - type OnSlash = (); - #[cfg(not(feature = "runtime-benchmarks"))] - type ProposalBond = ProposalBond; - #[cfg(feature = "runtime-benchmarks")] - type ProposalBond = ProposalBondForBenchmark; - #[cfg(not(feature = "runtime-benchmarks"))] - type ProposalBondMinimum = MaxBalance; - #[cfg(feature = "runtime-benchmarks")] - type ProposalBondMinimum = ConstU128<{ ExistentialDeposit::get() * 100 }>; - #[cfg(not(feature = "runtime-benchmarks"))] - type ProposalBondMaximum = MaxBalance; - #[cfg(feature = "runtime-benchmarks")] - type ProposalBondMaximum = ConstU128<{ ExistentialDeposit::get() * 500 }>; - // end. - type WeightInfo = weights::pallet_treasury_ambassador_treasury::WeightInfo; type RuntimeEvent = RuntimeEvent; type PalletId = AmbassadorTreasuryPalletId; diff --git a/system-parachains/collectives/collectives-polkadot/src/fellowship/mod.rs b/system-parachains/collectives/collectives-polkadot/src/fellowship/mod.rs index c6274e7ad4..f73b013fcd 100644 --- a/system-parachains/collectives/collectives-polkadot/src/fellowship/mod.rs +++ b/system-parachains/collectives/collectives-polkadot/src/fellowship/mod.rs @@ -292,29 +292,6 @@ pub type FellowshipTreasuryPaymaster = PayOverXcm< pub type FellowshipTreasuryInstance = pallet_treasury::Instance1; impl pallet_treasury::Config for Runtime { - // The creation of proposals via the treasury pallet is deprecated and should not be utilized. - // Instead, public or fellowship referenda should be used to propose and command the treasury - // spend or spend_local dispatchables. The parameters below have been configured accordingly to - // discourage its use. - #[cfg(not(feature = "runtime-benchmarks"))] - type ApproveOrigin = frame_support::traits::NeverEnsureOrigin; - #[cfg(feature = "runtime-benchmarks")] - type ApproveOrigin = EnsureRoot; - type OnSlash = (); - #[cfg(not(feature = "runtime-benchmarks"))] - type ProposalBond = ProposalBond; - #[cfg(feature = "runtime-benchmarks")] - type ProposalBond = ProposalBondForBenchmark; - #[cfg(not(feature = "runtime-benchmarks"))] - type ProposalBondMinimum = MaxBalance; - #[cfg(feature = "runtime-benchmarks")] - type ProposalBondMinimum = ConstU128<{ ExistentialDeposit::get() * 100 }>; - #[cfg(not(feature = "runtime-benchmarks"))] - type ProposalBondMaximum = MaxBalance; - #[cfg(feature = "runtime-benchmarks")] - type ProposalBondMaximum = ConstU128<{ ExistentialDeposit::get() * 500 }>; - // end. - type WeightInfo = weights::pallet_treasury_fellowship_treasury::WeightInfo; type RuntimeEvent = RuntimeEvent; type PalletId = FellowshipTreasuryPalletId; diff --git a/system-parachains/collectives/collectives-polkadot/src/weights/pallet_treasury_ambassador_treasury.rs b/system-parachains/collectives/collectives-polkadot/src/weights/pallet_treasury_ambassador_treasury.rs index f3b72d9b69..70cf370641 100644 --- a/system-parachains/collectives/collectives-polkadot/src/weights/pallet_treasury_ambassador_treasury.rs +++ b/system-parachains/collectives/collectives-polkadot/src/weights/pallet_treasury_ambassador_treasury.rs @@ -62,52 +62,6 @@ impl pallet_treasury::WeightInfo for WeightInfo { .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(3)) } - /// Storage: `AmbassadorTreasury::ProposalCount` (r:1 w:1) - /// Proof: `AmbassadorTreasury::ProposalCount` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`) - /// Storage: `AmbassadorTreasury::Proposals` (r:0 w:1) - /// Proof: `AmbassadorTreasury::Proposals` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) - fn propose_spend() -> Weight { - // Proof Size summary in bytes: - // Measured: `143` - // Estimated: `1489` - // Minimum execution time: 21_000_000 picoseconds. - Weight::from_parts(25_000_000, 0) - .saturating_add(Weight::from_parts(0, 1489)) - .saturating_add(T::DbWeight::get().reads(1)) - .saturating_add(T::DbWeight::get().writes(2)) - } - /// Storage: `AmbassadorTreasury::Proposals` (r:1 w:1) - /// Proof: `AmbassadorTreasury::Proposals` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) - /// Storage: `System::Account` (r:1 w:1) - /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `MaxEncodedLen`) - fn reject_proposal() -> Weight { - // Proof Size summary in bytes: - // Measured: `301` - // Estimated: `3593` - // Minimum execution time: 23_000_000 picoseconds. - Weight::from_parts(23_000_000, 0) - .saturating_add(Weight::from_parts(0, 3593)) - .saturating_add(T::DbWeight::get().reads(2)) - .saturating_add(T::DbWeight::get().writes(2)) - } - /// Storage: `AmbassadorTreasury::Proposals` (r:1 w:0) - /// Proof: `AmbassadorTreasury::Proposals` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) - /// Storage: `AmbassadorTreasury::Approvals` (r:1 w:1) - /// Proof: `AmbassadorTreasury::Approvals` (`max_values`: Some(1), `max_size`: Some(402), added: 897, mode: `MaxEncodedLen`) - /// The range of component `p` is `[0, 99]`. - /// The range of component `p` is `[0, 99]`. - fn approve_proposal(p: u32, ) -> Weight { - // Proof Size summary in bytes: - // Measured: `504 + p * (7 ±0)` - // Estimated: `3573` - // Minimum execution time: 6_000_000 picoseconds. - Weight::from_parts(10_109_090, 0) - .saturating_add(Weight::from_parts(0, 3573)) - // Standard Error: 11_497 - .saturating_add(Weight::from_parts(22_038, 0).saturating_mul(p.into())) - .saturating_add(T::DbWeight::get().reads(2)) - .saturating_add(T::DbWeight::get().writes(1)) - } /// Storage: `AmbassadorTreasury::Approvals` (r:1 w:1) /// Proof: `AmbassadorTreasury::Approvals` (`max_values`: Some(1), `max_size`: Some(402), added: 897, mode: `MaxEncodedLen`) fn remove_approval() -> Weight { diff --git a/system-parachains/collectives/collectives-polkadot/src/weights/pallet_treasury_fellowship_treasury.rs b/system-parachains/collectives/collectives-polkadot/src/weights/pallet_treasury_fellowship_treasury.rs index 4e61bc6767..70e88a3eff 100644 --- a/system-parachains/collectives/collectives-polkadot/src/weights/pallet_treasury_fellowship_treasury.rs +++ b/system-parachains/collectives/collectives-polkadot/src/weights/pallet_treasury_fellowship_treasury.rs @@ -62,52 +62,6 @@ impl pallet_treasury::WeightInfo for WeightInfo { .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(3)) } - /// Storage: `FellowshipTreasury::ProposalCount` (r:1 w:1) - /// Proof: `FellowshipTreasury::ProposalCount` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`) - /// Storage: `FellowshipTreasury::Proposals` (r:0 w:1) - /// Proof: `FellowshipTreasury::Proposals` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) - fn propose_spend() -> Weight { - // Proof Size summary in bytes: - // Measured: `143` - // Estimated: `1489` - // Minimum execution time: 22_000_000 picoseconds. - Weight::from_parts(38_000_000, 0) - .saturating_add(Weight::from_parts(0, 1489)) - .saturating_add(T::DbWeight::get().reads(1)) - .saturating_add(T::DbWeight::get().writes(2)) - } - /// Storage: `FellowshipTreasury::Proposals` (r:1 w:1) - /// Proof: `FellowshipTreasury::Proposals` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) - /// Storage: `System::Account` (r:1 w:1) - /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `MaxEncodedLen`) - fn reject_proposal() -> Weight { - // Proof Size summary in bytes: - // Measured: `301` - // Estimated: `3593` - // Minimum execution time: 23_000_000 picoseconds. - Weight::from_parts(24_000_000, 0) - .saturating_add(Weight::from_parts(0, 3593)) - .saturating_add(T::DbWeight::get().reads(2)) - .saturating_add(T::DbWeight::get().writes(2)) - } - /// Storage: `FellowshipTreasury::Proposals` (r:1 w:0) - /// Proof: `FellowshipTreasury::Proposals` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) - /// Storage: `FellowshipTreasury::Approvals` (r:1 w:1) - /// Proof: `FellowshipTreasury::Approvals` (`max_values`: Some(1), `max_size`: Some(402), added: 897, mode: `MaxEncodedLen`) - /// The range of component `p` is `[0, 99]`. - /// The range of component `p` is `[0, 99]`. - fn approve_proposal(p: u32, ) -> Weight { - // Proof Size summary in bytes: - // Measured: `504 + p * (7 ±0)` - // Estimated: `3573` - // Minimum execution time: 7_000_000 picoseconds. - Weight::from_parts(9_854_545, 0) - .saturating_add(Weight::from_parts(0, 3573)) - // Standard Error: 9_893 - .saturating_add(Weight::from_parts(29_201, 0).saturating_mul(p.into())) - .saturating_add(T::DbWeight::get().reads(2)) - .saturating_add(T::DbWeight::get().writes(1)) - } /// Storage: `FellowshipTreasury::Approvals` (r:1 w:1) /// Proof: `FellowshipTreasury::Approvals` (`max_values`: Some(1), `max_size`: Some(402), added: 897, mode: `MaxEncodedLen`) fn remove_approval() -> Weight { From 7fed1b476036a79396e81482a1d25f8c96cd1615 Mon Sep 17 00:00:00 2001 From: Oliver Tale-Yazdi Date: Sun, 14 Jul 2024 21:00:07 +0200 Subject: [PATCH 07/44] Update collectives Signed-off-by: Oliver Tale-Yazdi --- .../src/ambassador/mod.rs | 28 +++++++++++++++++-- .../src/fellowship/mod.rs | 2 ++ 2 files changed, 27 insertions(+), 3 deletions(-) diff --git a/system-parachains/collectives/collectives-polkadot/src/ambassador/mod.rs b/system-parachains/collectives/collectives-polkadot/src/ambassador/mod.rs index 4e0f26ff81..3443b43bea 100644 --- a/system-parachains/collectives/collectives-polkadot/src/ambassador/mod.rs +++ b/system-parachains/collectives/collectives-polkadot/src/ambassador/mod.rs @@ -43,12 +43,13 @@ use frame_support::{ }; use frame_system::EnsureRootWithSuccess; use origins::pallet_origins::{EnsureAmbassadorsFrom, HeadAmbassadors, Origin, SeniorAmbassadors}; -use pallet_ranked_collective::{Rank, Votes}; +use pallet_ranked_collective::{MemberIndex, Rank, Votes}; use polkadot_runtime_common::impls::{LocatableAssetConverter, VersionedLocationConverter}; use sp_core::ConstU128; use sp_runtime::{ traits::{ - CheckedReduceBy, Convert, ConvertToValue, IdentityLookup, Replace, ReplaceWithDefault, + CheckedReduceBy, Convert, ConvertToValue, IdentityLookup, MaybeConvert, Replace, + ReplaceWithDefault, }, Permill, }; @@ -137,11 +138,14 @@ impl pallet_ranked_collective::Config for Runtime type VoteWeight = VoteWeight; type ExchangeOrigin = OpenGovOrHeadAmbassadors; type MemberSwappedHandler = (crate::AmbassadorCore, crate::AmbassadorSalary); + type MaxMemberCount = AmbassadorMemberCount; #[cfg(feature = "runtime-benchmarks")] type BenchmarkSetup = (crate::AmbassadorCore, crate::AmbassadorSalary); } -/// Limits the maximal number of Head Ambassadors to 21. +/// Limits the number of Head Ambassadors to 21. +/// +/// The value of 21 comes from the initial OpenGov proposal: pub struct AmbassadorMemberCount; impl MaybeConvert for AmbassadorMemberCount { fn maybe_convert(rank: Rank) -> Option { @@ -219,6 +223,7 @@ impl pallet_core_fellowship::Config for Runtime { >; type ApproveOrigin = PromoteOrigin; type PromoteOrigin = PromoteOrigin; + type FastPromoteOrigin = frame_support::traits::NeverEnsureOrigin; type EvidenceSize = ConstU32<65536>; // TODO https://github.com/polkadot-fellows/runtimes/issues/370 type MaxRank = ConstU32<9>; @@ -347,3 +352,20 @@ impl pallet_treasury::Config for Runtime { ConstU32<1000>, >; } + +#[cfg(test)] +mod tests { + use super::*; + + type Limit = + >::MaxMemberCount; + + #[test] + fn ambassador_rank_limit_works() { + assert_eq!(Limit::maybe_convert(0), None); + assert_eq!(Limit::maybe_convert(1), None); + assert_eq!(Limit::maybe_convert(2), None); + assert_eq!(Limit::maybe_convert(3), Some(21)); + assert_eq!(Limit::maybe_convert(4), None); + } +} diff --git a/system-parachains/collectives/collectives-polkadot/src/fellowship/mod.rs b/system-parachains/collectives/collectives-polkadot/src/fellowship/mod.rs index f73b013fcd..0bbae69067 100644 --- a/system-parachains/collectives/collectives-polkadot/src/fellowship/mod.rs +++ b/system-parachains/collectives/collectives-polkadot/src/fellowship/mod.rs @@ -209,6 +209,8 @@ impl pallet_core_fellowship::Config for Runtime { >, EnsureCanPromoteTo, >; + // FAIL-CI @ggwpez use `EnsureCanFastPromoteTo` from https://github.com/polkadot-fellows/runtimes/pull/356/files + type FastPromoteOrigin = Self::PromoteOrigin; type EvidenceSize = ConstU32<65536>; type MaxRank = ConstU32<9>; } From 02656641c1d38f591b1c0a7a6d25b7c43b04d07b Mon Sep 17 00:00:00 2001 From: Oliver Tale-Yazdi Date: Sun, 14 Jul 2024 21:00:16 +0200 Subject: [PATCH 08/44] Mock weights Signed-off-by: Oliver Tale-Yazdi --- chain-spec-generator/src/common.rs | 4 ++-- .../weights/runtime_parachains_coretime.rs | 10 ++++++++ .../pallet_core_fellowship_ambassador_core.rs | 23 +++++++++++++++++++ .../pallet_core_fellowship_fellowship_core.rs | 23 +++++++++++++++++++ .../src/weights/pallet_broker.rs | 8 +++++++ 5 files changed, 66 insertions(+), 2 deletions(-) diff --git a/chain-spec-generator/src/common.rs b/chain-spec-generator/src/common.rs index cce1cd2daf..ea89e7f33c 100644 --- a/chain-spec-generator/src/common.rs +++ b/chain-spec-generator/src/common.rs @@ -19,8 +19,8 @@ use crate::{ relay_chain_specs::{KusamaChainSpec, PolkadotChainSpec}, system_parachains_specs::{ AssetHubKusamaChainSpec, AssetHubPolkadotChainSpec, BridgeHubKusamaChainSpec, - BridgeHubPolkadotChainSpec, CollectivesPolkadotChainSpec, - GluttonKusamaChainSpec, PeopleKusamaChainSpec, PeoplePolkadotChainSpec, + BridgeHubPolkadotChainSpec, CollectivesPolkadotChainSpec, GluttonKusamaChainSpec, + PeopleKusamaChainSpec, PeoplePolkadotChainSpec, }, ChainSpec, }; diff --git a/relay/kusama/src/weights/runtime_parachains_coretime.rs b/relay/kusama/src/weights/runtime_parachains_coretime.rs index fbe5848f9e..d141d340a3 100644 --- a/relay/kusama/src/weights/runtime_parachains_coretime.rs +++ b/relay/kusama/src/weights/runtime_parachains_coretime.rs @@ -46,6 +46,16 @@ use core::marker::PhantomData; /// Weight functions for `runtime_parachains::coretime`. pub struct WeightInfo(PhantomData); impl runtime_parachains::coretime::WeightInfo for WeightInfo { + fn request_revenue_at() -> Weight { + // Proof Size summary in bytes: + // Measured: `2963` + // Estimated: `6428` + // Minimum execution time: 36_613_000 picoseconds. + Weight::from_parts(37_637_000, 0) + .saturating_add(Weight::from_parts(0, 6428)) + .saturating_add(T::DbWeight::get().reads(6)) + .saturating_add(T::DbWeight::get().writes(3)) + } /// Storage: `Configuration::PendingConfigs` (r:1 w:1) /// Proof: `Configuration::PendingConfigs` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) /// Storage: `Configuration::BypassConsistencyCheck` (r:1 w:0) diff --git a/system-parachains/collectives/collectives-polkadot/src/weights/pallet_core_fellowship_ambassador_core.rs b/system-parachains/collectives/collectives-polkadot/src/weights/pallet_core_fellowship_ambassador_core.rs index 394f712e9b..56c072780c 100644 --- a/system-parachains/collectives/collectives-polkadot/src/weights/pallet_core_fellowship_ambassador_core.rs +++ b/system-parachains/collectives/collectives-polkadot/src/weights/pallet_core_fellowship_ambassador_core.rs @@ -57,6 +57,29 @@ impl pallet_core_fellowship::WeightInfo for WeightInfo< .saturating_add(Weight::from_parts(0, 0)) .saturating_add(T::DbWeight::get().writes(1)) } + fn promote_fast(r: u32, ) -> Weight { + // Proof Size summary in bytes: + // Measured: `16844` + // Estimated: `19894 + r * (2489 ±0)` + // Minimum execution time: 45_065_000 picoseconds. + Weight::from_parts(34_090_392, 19894) + // Standard Error: 18_620 + .saturating_add(Weight::from_parts(13_578_046, 0).saturating_mul(r.into())) + .saturating_add(T::DbWeight::get().reads(3_u64)) + .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into()))) + .saturating_add(T::DbWeight::get().writes(3_u64)) + .saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(r.into()))) + .saturating_add(Weight::from_parts(0, 2489).saturating_mul(r.into())) + } + fn set_partial_params() -> Weight { + // Proof Size summary in bytes: + // Measured: `0` + // Estimated: `0` + // Minimum execution time: 11_000_000 picoseconds. + Weight::from_parts(11_000_000, 0) + .saturating_add(Weight::from_parts(0, 0)) + .saturating_add(T::DbWeight::get().writes(1)) + } /// Storage: `AmbassadorCore::Member` (r:1 w:1) /// Proof: `AmbassadorCore::Member` (`max_values`: None, `max_size`: Some(49), added: 2524, mode: `MaxEncodedLen`) /// Storage: `AmbassadorCollective::Members` (r:1 w:1) diff --git a/system-parachains/collectives/collectives-polkadot/src/weights/pallet_core_fellowship_fellowship_core.rs b/system-parachains/collectives/collectives-polkadot/src/weights/pallet_core_fellowship_fellowship_core.rs index d2f15c8553..0f0ce96200 100644 --- a/system-parachains/collectives/collectives-polkadot/src/weights/pallet_core_fellowship_fellowship_core.rs +++ b/system-parachains/collectives/collectives-polkadot/src/weights/pallet_core_fellowship_fellowship_core.rs @@ -57,6 +57,29 @@ impl pallet_core_fellowship::WeightInfo for WeightInfo< .saturating_add(Weight::from_parts(0, 0)) .saturating_add(T::DbWeight::get().writes(1)) } + fn promote_fast(r: u32, ) -> Weight { + // Proof Size summary in bytes: + // Measured: `16844` + // Estimated: `19894 + r * (2489 ±0)` + // Minimum execution time: 45_065_000 picoseconds. + Weight::from_parts(34_090_392, 19894) + // Standard Error: 18_620 + .saturating_add(Weight::from_parts(13_578_046, 0).saturating_mul(r.into())) + .saturating_add(T::DbWeight::get().reads(3_u64)) + .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into()))) + .saturating_add(T::DbWeight::get().writes(3_u64)) + .saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(r.into()))) + .saturating_add(Weight::from_parts(0, 2489).saturating_mul(r.into())) + } + fn set_partial_params() -> Weight { + // Proof Size summary in bytes: + // Measured: `0` + // Estimated: `0` + // Minimum execution time: 11_000_000 picoseconds. + Weight::from_parts(11_000_000, 0) + .saturating_add(Weight::from_parts(0, 0)) + .saturating_add(T::DbWeight::get().writes(1)) + } /// Storage: `FellowshipCore::Member` (r:1 w:1) /// Proof: `FellowshipCore::Member` (`max_values`: None, `max_size`: Some(49), added: 2524, mode: `MaxEncodedLen`) /// Storage: `FellowshipCollective::Members` (r:1 w:1) diff --git a/system-parachains/coretime/coretime-kusama/src/weights/pallet_broker.rs b/system-parachains/coretime/coretime-kusama/src/weights/pallet_broker.rs index bc02a717e5..8b67374be4 100644 --- a/system-parachains/coretime/coretime-kusama/src/weights/pallet_broker.rs +++ b/system-parachains/coretime/coretime-kusama/src/weights/pallet_broker.rs @@ -57,6 +57,14 @@ impl pallet_broker::WeightInfo for WeightInfo { .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } + + fn notify_revenue() -> Weight { + Weight::from_parts(7_000_000, 7000) + } + + fn on_new_timeslice() -> Weight { + Weight::from_parts(7_000_000, 7000) + } /// Storage: `Broker::Configuration` (r:0 w:1) /// Proof: `Broker::Configuration` (`max_values`: Some(1), `max_size`: Some(31), added: 526, mode: `MaxEncodedLen`) From 36c9a7fc2413256d5fd2253ada3db19f517c8d66 Mon Sep 17 00:00:00 2001 From: s0me0ne-unkn0wn <48632512+s0me0ne-unkn0wn@users.noreply.github.com> Date: Wed, 17 Jul 2024 13:49:53 +0200 Subject: [PATCH 09/44] Kusama coretime revenue integration (#384) Based on #381 CC @ggwpez --- relay/kusama/Cargo.toml | 2 +- relay/kusama/constants/Cargo.toml | 1 + relay/kusama/constants/src/lib.rs | 2 +- .../coretime/coretime-kusama/Cargo.toml | 2 +- .../coretime/coretime-kusama/src/coretime.rs | 81 ++++++++++++++++--- .../coretime/coretime-kusama/src/lib.rs | 1 + 6 files changed, 76 insertions(+), 13 deletions(-) diff --git a/relay/kusama/Cargo.toml b/relay/kusama/Cargo.toml index b2df38038f..e3e0bffb9b 100644 --- a/relay/kusama/Cargo.toml +++ b/relay/kusama/Cargo.toml @@ -317,7 +317,7 @@ metadata-hash = ["substrate-wasm-builder?/metadata-hash"] on-chain-release-build = ["sp-api/disable-logging", "metadata-hash"] # Set timing constants (e.g. session period) to faster versions to speed up testing. -fast-runtime = [] +fast-runtime = ["kusama-runtime-constants/fast-runtime"] runtime-metrics = ["runtime-parachains/runtime-metrics", "sp-io/with-tracing"] diff --git a/relay/kusama/constants/Cargo.toml b/relay/kusama/constants/Cargo.toml index 1c8a03a016..1c27740baf 100644 --- a/relay/kusama/constants/Cargo.toml +++ b/relay/kusama/constants/Cargo.toml @@ -29,3 +29,4 @@ std = [ "sp-weights/std", "xcm-builder/std", ] +fast-runtime = [] diff --git a/relay/kusama/constants/src/lib.rs b/relay/kusama/constants/src/lib.rs index 09deca9fdf..739446be85 100644 --- a/relay/kusama/constants/src/lib.rs +++ b/relay/kusama/constants/src/lib.rs @@ -126,7 +126,7 @@ pub mod system_parachain { /// WARNING: This constant is used accross chains, so additional care should be taken /// when changing it. #[cfg(feature = "fast-runtime")] - pub const TIMESLICE_PERIOD: u32 = 10; + pub const TIMESLICE_PERIOD: u32 = 20; #[cfg(not(feature = "fast-runtime"))] pub const TIMESLICE_PERIOD: u32 = 80; } diff --git a/system-parachains/coretime/coretime-kusama/Cargo.toml b/system-parachains/coretime/coretime-kusama/Cargo.toml index 810e50bffd..78e591e1ef 100644 --- a/system-parachains/coretime/coretime-kusama/Cargo.toml +++ b/system-parachains/coretime/coretime-kusama/Cargo.toml @@ -204,7 +204,7 @@ try-runtime = [ "sp-runtime/try-runtime", ] -fast-runtime = [] +fast-runtime = ["kusama-runtime-constants/fast-runtime"] # Enable metadata hash generation at compile time for the `CheckMetadataHash` extension. metadata-hash = ["substrate-wasm-builder?/metadata-hash"] diff --git a/system-parachains/coretime/coretime-kusama/src/coretime.rs b/system-parachains/coretime/coretime-kusama/src/coretime.rs index 1afe28a080..e7c5211873 100644 --- a/system-parachains/coretime/coretime-kusama/src/coretime.rs +++ b/system-parachains/coretime/coretime-kusama/src/coretime.rs @@ -21,14 +21,18 @@ use cumulus_primitives_core::relay_chain; use frame_support::{ parameter_types, traits::{ - fungible::{Balanced, Credit}, - OnUnbalanced, + fungible::{Balanced, Credit, Inspect}, + tokens::{Fortitude, Preservation}, + DefensiveResult, OnUnbalanced, }, }; +use frame_system::Pallet as System; use kusama_runtime_constants::system_parachain::coretime; use pallet_broker::{CoreAssignment, CoreIndex, CoretimeInterface, PartsOf57600, RCBlockNumberOf}; +use parachains_common::{AccountId, Balance}; use sp_runtime::traits::AccountIdConversion; use xcm::latest::prelude::*; +use xcm_executor::traits::TransactAsset; /// A type containing the encoding of the coretime pallet in the Relay chain runtime. Used to /// construct any remote calls. The codec index must correspond to the index of `Coretime` in the @@ -65,13 +69,52 @@ parameter_types! { /// Burn revenue from coretime sales. See /// [RFC-010](https://polkadot-fellows.github.io/RFCs/approved/0010-burn-coretime-revenue.html). -pub struct BurnRevenue; -impl OnUnbalanced> for BurnRevenue { - fn on_nonzero_unbalanced(credit: Credit) { - let _ = >::resolve(&CoretimeBurnAccount::get(), credit); +pub struct BurnCoretimeRevenue; +impl OnUnbalanced> for BurnCoretimeRevenue { + fn on_nonzero_unbalanced(amount: Credit) { + let acc = CoretimeBurnAccount::get(); + if !System::::account_exists(&acc) { + System::::inc_providers(&acc); + } + Balances::resolve(&acc, amount).defensive_ok(); } } +type AssetTransactor = ::AssetTransactor; + +fn burn_at_relay(stash: &AccountId, value: Balance) -> Result<(), XcmError> { + let dest = Location::parent(); + let stash_location = + Junction::AccountId32 { network: None, id: stash.clone().into() }.into_location(); + let asset = Asset { id: AssetId(Location::parent()), fun: Fungible(value) }; + let dummy_xcm_context = XcmContext { origin: None, message_id: [0; 32], topic: None }; + + let withdrawn = AssetTransactor::withdraw_asset(&asset, &stash_location, None)?; + + AssetTransactor::can_check_out(&dest, &asset, &dummy_xcm_context)?; + + let parent_assets = Into::::into(withdrawn) + .reanchored(&dest, &Here.into()) + .defensive_map_err(|_| XcmError::ReanchorFailed)?; + + PolkadotXcm::send_xcm( + Here, + Location::parent(), + Xcm(vec![ + Instruction::UnpaidExecution { + weight_limit: WeightLimit::Unlimited, + check_origin: None, + }, + ReceiveTeleportedAsset(parent_assets.clone()), + BurnAsset(parent_assets), + ]), + )?; + + AssetTransactor::check_out(&dest, &asset, &dummy_xcm_context); + + Ok(()) +} + parameter_types! { /// The revenue from on-demand coretime sales. This is distributed amonst those who contributed /// regions to the pool. @@ -184,9 +227,27 @@ impl CoretimeInterface for CoretimeAllocator { } } - #[cfg(feature = "runtime-benchmarks")] - fn ensure_notify_revenue_info(when: RCBlockNumberOf, revenue: Self::Balance) { - CoretimeRevenue::set(&Some((when, revenue))); + fn on_new_timeslice(t: pallet_broker::Timeslice) { + // Burn roughly once per day. Unchecked math: RHS hardcoded as non-zero. + if t % 180 != 0 { + return + } + + let stash = CoretimeBurnAccount::get(); + let value = + Balances::reducible_balance(&stash, Preservation::Expendable, Fortitude::Polite); + + if value > 0 { + log::debug!(target: "runtime::coretime", "Going to burn {value} stashed tokens at RC"); + match burn_at_relay(&stash, value) { + Ok(()) => { + log::debug!(target: "runtime::coretime", "Succesfully burnt {value} tokens"); + }, + Err(err) => { + log::error!(target: "runtime::coretime", "burn_at_relay failed: {err:?}"); + }, + } + } } } @@ -197,7 +258,7 @@ parameter_types! { impl pallet_broker::Config for Runtime { type RuntimeEvent = RuntimeEvent; type Currency = Balances; - type OnRevenue = BurnRevenue; + type OnRevenue = BurnCoretimeRevenue; type TimeslicePeriod = ConstU32<{ coretime::TIMESLICE_PERIOD }>; type MaxLeasedCores = ConstU32<50>; type MaxReservedCores = ConstU32<10>; diff --git a/system-parachains/coretime/coretime-kusama/src/lib.rs b/system-parachains/coretime/coretime-kusama/src/lib.rs index aefd31d6f8..e3a6e56091 100644 --- a/system-parachains/coretime/coretime-kusama/src/lib.rs +++ b/system-parachains/coretime/coretime-kusama/src/lib.rs @@ -115,6 +115,7 @@ pub type Migrations = ( cumulus_pallet_xcmp_queue::migration::v5::MigrateV4ToV5, pallet_broker::migration::MigrateV0ToV1, pallet_broker::migration::MigrateV1ToV2, + pallet_broker::migration::MigrateV2ToV3, ); /// Executive: handles dispatch to the various modules. From 6ca6fcba45fc78bc20e62a6e0a03f625b0071366 Mon Sep 17 00:00:00 2001 From: clangenb <37865735+clangenb@users.noreply.github.com> Date: Wed, 17 Jul 2024 14:01:51 +0200 Subject: [PATCH 10/44] re-enable & bump encointer to polkadot-v1.14.0 (#385) Simply updates the encointer-pallets to v1.14.0. Nothing else happened there in the meantime. cc @brenzi --- Cargo.lock | 1070 +++++++---------- Cargo.toml | 30 +- chain-spec-generator/Cargo.toml | 6 +- chain-spec-generator/src/common.rs | 8 +- chain-spec-generator/src/main.rs | 8 +- .../src/system_parachains_specs.rs | 8 +- 6 files changed, 492 insertions(+), 638 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0f0955c41d..f2a9029ced 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -577,7 +577,7 @@ dependencies = [ "asset-hub-kusama-runtime", "cumulus-primitives-core", "emulated-integration-tests-common", - "frame-support 36.0.0", + "frame-support", "kusama-emulated-chain", "parachains-common", "penpal-emulated-chain", @@ -595,7 +595,7 @@ dependencies = [ "asset-test-utils", "cumulus-pallet-parachain-system", "emulated-integration-tests-common", - "frame-support 36.0.0", + "frame-support", "integration-tests-helpers", "kusama-runtime-constants", "kusama-system-emulated-network", @@ -636,11 +636,11 @@ dependencies = [ "cumulus-primitives-core", "cumulus-primitives-storage-weight-reclaim", "cumulus-primitives-utility", - "frame-benchmarking 36.0.0", + "frame-benchmarking", "frame-executive", "frame-metadata-hash-extension", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-support", + "frame-system", "frame-system-benchmarking", "frame-system-rpc-runtime-api", "frame-try-runtime", @@ -662,8 +662,8 @@ dependencies = [ "pallet-proxy", "pallet-session", "pallet-state-trie-migration", - "pallet-timestamp 35.0.0", - "pallet-transaction-payment 36.0.0", + "pallet-timestamp", + "pallet-transaction-payment", "pallet-transaction-payment-rpc-runtime-api", "pallet-uniques", "pallet-utility", @@ -711,7 +711,7 @@ dependencies = [ "asset-hub-polkadot-runtime", "cumulus-primitives-core", "emulated-integration-tests-common", - "frame-support 36.0.0", + "frame-support", "parachains-common", "penpal-emulated-chain", "polkadot-emulated-chain", @@ -731,7 +731,7 @@ dependencies = [ "cumulus-pallet-parachain-system", "cumulus-pallet-xcmp-queue", "emulated-integration-tests-common", - "frame-support 36.0.0", + "frame-support", "integration-tests-helpers", "pallet-asset-conversion", "pallet-assets", @@ -769,11 +769,11 @@ dependencies = [ "cumulus-primitives-aura", "cumulus-primitives-core", "cumulus-primitives-utility", - "frame-benchmarking 36.0.0", + "frame-benchmarking", "frame-executive", "frame-metadata-hash-extension", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-support", + "frame-system", "frame-system-benchmarking", "frame-system-rpc-runtime-api", "frame-try-runtime", @@ -793,8 +793,8 @@ dependencies = [ "pallet-nfts-runtime-api", "pallet-proxy", "pallet-session", - "pallet-timestamp 35.0.0", - "pallet-transaction-payment 36.0.0", + "pallet-timestamp", + "pallet-transaction-payment", "pallet-transaction-payment-rpc-runtime-api", "pallet-uniques", "pallet-utility", @@ -844,13 +844,13 @@ dependencies = [ "cumulus-pallet-parachain-system", "cumulus-pallet-xcmp-queue", "cumulus-primitives-core", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-support", + "frame-system", "pallet-assets", "pallet-balances", "pallet-collator-selection", "pallet-session", - "pallet-timestamp 35.0.0", + "pallet-timestamp", "pallet-xcm", "pallet-xcm-bridge-hub-router", "parachains-common", @@ -873,7 +873,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d4e2360c96927aa33b3fef7190eabf2aa4129fe3505c11dfa860ada0f27fd1b1" dependencies = [ "cumulus-primitives-core", - "frame-support 36.0.0", + "frame-support", "impl-trait-for-tuples", "log", "pallet-asset-conversion", @@ -1380,7 +1380,7 @@ name = "bp-asset-hub-kusama" version = "1.0.0" dependencies = [ "bp-xcm-bridge-hub-router", - "frame-support 36.0.0", + "frame-support", "parity-scale-codec", "scale-info", "sp-std", @@ -1393,7 +1393,7 @@ name = "bp-asset-hub-polkadot" version = "1.0.0" dependencies = [ "bp-xcm-bridge-hub-router", - "frame-support 36.0.0", + "frame-support", "parity-scale-codec", "scale-info", "sp-std", @@ -1410,8 +1410,8 @@ dependencies = [ "bp-messages", "bp-polkadot-core", "bp-runtime", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-support", + "frame-system", "polkadot-primitives", "sp-api", "sp-std", @@ -1424,7 +1424,7 @@ dependencies = [ "bp-bridge-hub-cumulus", "bp-messages", "bp-runtime", - "frame-support 36.0.0", + "frame-support", "kusama-runtime-constants", "polkadot-runtime-constants", "snowbridge-core", @@ -1443,7 +1443,7 @@ dependencies = [ "bp-messages", "bp-polkadot-bulletin", "bp-runtime", - "frame-support 36.0.0", + "frame-support", "kusama-runtime-constants", "polkadot-runtime-constants", "snowbridge-core", @@ -1462,7 +1462,7 @@ checksum = "57cac4b71008e46d43e346476ed1be85cf7b505efacee17dad84d687344bf1b1" dependencies = [ "bp-runtime", "finality-grandpa", - "frame-support 36.0.0", + "frame-support", "parity-scale-codec", "scale-info", "serde", @@ -1481,7 +1481,7 @@ dependencies = [ "bp-header-chain", "bp-polkadot-core", "bp-runtime", - "frame-support 36.0.0", + "frame-support", "sp-api", "sp-std", ] @@ -1494,7 +1494,7 @@ checksum = "f97eec00a98efeb052ac9fc9676d9fccf5acd19e3b18530f3d72af1a1faf21ec" dependencies = [ "bp-header-chain", "bp-runtime", - "frame-support 36.0.0", + "frame-support", "parity-scale-codec", "scale-info", "serde", @@ -1511,7 +1511,7 @@ dependencies = [ "bp-header-chain", "bp-polkadot-core", "bp-runtime", - "frame-support 36.0.0", + "frame-support", "impl-trait-for-tuples", "parity-scale-codec", "scale-info", @@ -1529,7 +1529,7 @@ dependencies = [ "bp-header-chain", "bp-polkadot-core", "bp-runtime", - "frame-support 36.0.0", + "frame-support", "sp-api", "sp-std", ] @@ -1544,8 +1544,8 @@ dependencies = [ "bp-messages", "bp-polkadot-core", "bp-runtime", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-support", + "frame-system", "parity-scale-codec", "scale-info", "sp-api", @@ -1561,8 +1561,8 @@ checksum = "6ef2272823ecfee580c00f6542dfcab3ec7abdb00857af853429736847c3a2d9" dependencies = [ "bp-messages", "bp-runtime", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-support", + "frame-system", "parity-scale-codec", "parity-util-mem", "scale-info", @@ -1580,7 +1580,7 @@ checksum = "5a589f5bb70baa4377a798823be752042aa6c220d51afc559716667e29b0203d" dependencies = [ "bp-messages", "bp-runtime", - "frame-support 36.0.0", + "frame-support", "parity-scale-codec", "scale-info", "sp-runtime 38.0.0", @@ -1593,8 +1593,8 @@ version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "904644c23b437dde65741f3148067624ed0b4d8360f68adf9e92273aeb970814" dependencies = [ - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-support", + "frame-system", "hash-db", "impl-trait-for-tuples", "log", @@ -1660,7 +1660,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fd1e0c182cdd2ce204425d011965d2c6344360b48dd9aa3f4c470713cfaae9ba" dependencies = [ "cumulus-primitives-core", - "frame-support 36.0.0", + "frame-support", "pallet-message-queue", "parity-scale-codec", "scale-info", @@ -1678,7 +1678,7 @@ dependencies = [ "bridge-hub-common", "bridge-hub-kusama-runtime", "emulated-integration-tests-common", - "frame-support 36.0.0", + "frame-support", "parachains-common", "sp-core 34.0.0", ] @@ -1693,7 +1693,7 @@ dependencies = [ "bridge-hub-kusama-runtime", "cumulus-pallet-xcmp-queue", "emulated-integration-tests-common", - "frame-support 36.0.0", + "frame-support", "hex-literal", "integration-tests-helpers", "kusama-polkadot-system-emulated-network", @@ -1750,11 +1750,11 @@ dependencies = [ "cumulus-primitives-core", "cumulus-primitives-storage-weight-reclaim", "cumulus-primitives-utility", - "frame-benchmarking 36.0.0", + "frame-benchmarking", "frame-executive", "frame-metadata-hash-extension", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-support", + "frame-system", "frame-system-benchmarking", "frame-system-rpc-runtime-api", "frame-try-runtime", @@ -1772,8 +1772,8 @@ dependencies = [ "pallet-message-queue", "pallet-multisig", "pallet-session", - "pallet-timestamp 35.0.0", - "pallet-transaction-payment 36.0.0", + "pallet-timestamp", + "pallet-transaction-payment", "pallet-transaction-payment-rpc-runtime-api", "pallet-utility", "pallet-xcm", @@ -1831,7 +1831,7 @@ dependencies = [ "bridge-hub-common", "bridge-hub-polkadot-runtime", "emulated-integration-tests-common", - "frame-support 36.0.0", + "frame-support", "parachains-common", "sp-core 34.0.0", ] @@ -1846,7 +1846,7 @@ dependencies = [ "bridge-hub-polkadot-runtime", "cumulus-pallet-xcmp-queue", "emulated-integration-tests-common", - "frame-support 36.0.0", + "frame-support", "hex-literal", "integration-tests-helpers", "kusama-polkadot-system-emulated-network", @@ -1901,11 +1901,11 @@ dependencies = [ "cumulus-primitives-aura", "cumulus-primitives-core", "cumulus-primitives-utility", - "frame-benchmarking 36.0.0", + "frame-benchmarking", "frame-executive", "frame-metadata-hash-extension", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-support", + "frame-system", "frame-system-benchmarking", "frame-system-rpc-runtime-api", "frame-try-runtime", @@ -1923,8 +1923,8 @@ dependencies = [ "pallet-message-queue", "pallet-multisig", "pallet-session", - "pallet-timestamp 35.0.0", - "pallet-transaction-payment 36.0.0", + "pallet-timestamp", + "pallet-transaction-payment", "pallet-transaction-payment-rpc-runtime-api", "pallet-utility", "pallet-xcm", @@ -1991,8 +1991,8 @@ dependencies = [ "bridge-runtime-common", "cumulus-pallet-parachain-system", "cumulus-pallet-xcmp-queue", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-support", + "frame-system", "impl-trait-for-tuples", "log", "pallet-balances", @@ -2000,7 +2000,7 @@ dependencies = [ "pallet-bridge-messages", "pallet-bridge-parachains", "pallet-bridge-relayers", - "pallet-timestamp 35.0.0", + "pallet-timestamp", "pallet-utility", "parachains-common", "parachains-runtimes-test-utils", @@ -2030,15 +2030,15 @@ dependencies = [ "bp-runtime", "bp-xcm-bridge-hub", "bp-xcm-bridge-hub-router", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-support", + "frame-system", "hash-db", "log", "pallet-bridge-grandpa", "pallet-bridge-messages", "pallet-bridge-parachains", "pallet-bridge-relayers", - "pallet-transaction-payment 36.0.0", + "pallet-transaction-payment", "pallet-utility", "parity-scale-codec", "scale-info", @@ -2375,7 +2375,7 @@ dependencies = [ "collectives-polkadot-runtime", "cumulus-primitives-core", "emulated-integration-tests-common", - "frame-support 36.0.0", + "frame-support", "parachains-common", "sp-core 34.0.0", ] @@ -2392,7 +2392,7 @@ dependencies = [ "cumulus-pallet-parachain-system", "cumulus-pallet-xcmp-queue", "emulated-integration-tests-common", - "frame-support 36.0.0", + "frame-support", "integration-tests-helpers", "pallet-asset-rate", "pallet-assets", @@ -2428,11 +2428,11 @@ dependencies = [ "cumulus-primitives-aura", "cumulus-primitives-core", "cumulus-primitives-utility", - "frame-benchmarking 36.0.0", + "frame-benchmarking", "frame-executive", "frame-metadata-hash-extension", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-support", + "frame-system", "frame-system-benchmarking", "frame-system-rpc-runtime-api", "frame-try-runtime", @@ -2455,8 +2455,8 @@ dependencies = [ "pallet-salary", "pallet-scheduler", "pallet-session", - "pallet-timestamp 35.0.0", - "pallet-transaction-payment 36.0.0", + "pallet-timestamp", + "pallet-transaction-payment", "pallet-transaction-payment-rpc-runtime-api", "pallet-treasury", "pallet-utility", @@ -2639,11 +2639,11 @@ dependencies = [ "cumulus-primitives-core", "cumulus-primitives-storage-weight-reclaim", "cumulus-primitives-utility", - "frame-benchmarking 36.0.0", + "frame-benchmarking", "frame-executive", "frame-metadata-hash-extension", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-support", + "frame-system", "frame-system-benchmarking", "frame-system-rpc-runtime-api", "frame-try-runtime", @@ -2659,8 +2659,8 @@ dependencies = [ "pallet-multisig", "pallet-proxy", "pallet-session", - "pallet-timestamp 35.0.0", - "pallet-transaction-payment 36.0.0", + "pallet-timestamp", + "pallet-transaction-payment", "pallet-transaction-payment-rpc-runtime-api", "pallet-utility", "pallet-xcm", @@ -2933,10 +2933,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c5e8af48090936c45483d489ee681acb54277763586b53fa3dbd17173aa474fc" dependencies = [ "cumulus-pallet-parachain-system", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-support", + "frame-system", "pallet-aura", - "pallet-timestamp 35.0.0", + "pallet-timestamp", "parity-scale-codec", "scale-info", "sp-application-crypto 37.0.0", @@ -2952,9 +2952,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7926abe4b165565b8c86a3525ac98e3a962761d05c201c53012460b237ad5887" dependencies = [ "cumulus-primitives-core", - "frame-benchmarking 36.0.0", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "log", "parity-scale-codec", "scale-info", @@ -2976,9 +2976,9 @@ dependencies = [ "cumulus-primitives-parachain-inherent", "cumulus-primitives-proof-size-hostfunction", "environmental", - "frame-benchmarking 36.0.0", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "impl-trait-for-tuples", "log", "pallet-message-queue", @@ -3019,9 +3019,9 @@ version = "17.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "506daacefa861aa2909b64f26e76495ce029227fd8355b97e074cc1d5dc54ab2" dependencies = [ - "frame-benchmarking 36.0.0", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "pallet-session", "parity-scale-codec", "sp-runtime 38.0.0", @@ -3035,8 +3035,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8d5224285f60e5159bab549f458079d606a7f95ef779def8b89f1a244dc7cf81" dependencies = [ "cumulus-primitives-core", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-support", + "frame-system", "parity-scale-codec", "scale-info", "sp-io 37.0.0", @@ -3054,9 +3054,9 @@ dependencies = [ "bounded-collections", "bp-xcm-bridge-hub-router", "cumulus-primitives-core", - "frame-benchmarking 36.0.0", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "log", "pallet-message-queue", "parity-scale-codec", @@ -3143,8 +3143,8 @@ dependencies = [ "cumulus-primitives-core", "cumulus-primitives-proof-size-hostfunction", "docify", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-support", + "frame-system", "log", "parity-scale-codec", "scale-info", @@ -3159,7 +3159,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "05742c520065e3870d419683113ed7f6d35de66f0c80af6828e7878d1bb0ea94" dependencies = [ "cumulus-primitives-core", - "frame-support 36.0.0", + "frame-support", "log", "pallet-asset-conversion", "parity-scale-codec", @@ -3715,7 +3715,7 @@ dependencies = [ "cumulus-pallet-parachain-system", "cumulus-pallet-xcmp-queue", "cumulus-primitives-core", - "frame-support 36.0.0", + "frame-support", "pallet-assets", "pallet-balances", "pallet-bridge-messages", @@ -3754,29 +3754,29 @@ dependencies = [ [[package]] name = "encointer-balances-tx-payment" -version = "12.1.0" +version = "13.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f912501176bc6c3594ff9f1e60994d99faa41bd90395866d7aed87214bb5a3a4" +checksum = "3e0a21785d37fcc1d2bc52c4b962ed0ecc1ea0ad7b1421c84c57edb9e11a3d34" dependencies = [ "encointer-primitives", - "frame-support 35.0.0", - "frame-system 35.0.0", + "frame-support", + "frame-system", "log", - "pallet-asset-tx-payment 35.0.0", + "pallet-asset-tx-payment", "pallet-encointer-balances", "pallet-encointer-ceremonies", - "pallet-transaction-payment 35.0.0", + "pallet-transaction-payment", "sp-runtime 38.0.0", ] [[package]] name = "encointer-balances-tx-payment-rpc-runtime-api" -version = "12.1.0" +version = "13.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0d0708f366a77b08ec7e4e0b5977294d1498201c21fe560ddb10a714eddf9ca1" +checksum = "449bca6d70a53456d223f2da58189e56a69eff96249b3d660d7d6123d0c824e9" dependencies = [ "encointer-primitives", - "frame-support 35.0.0", + "frame-support", "parity-scale-codec", "scale-info", "sp-api", @@ -3785,9 +3785,9 @@ dependencies = [ [[package]] name = "encointer-ceremonies-assignment" -version = "12.1.0" +version = "13.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4843d58de5b199ce7df902d13ee032b306dd753c49a70996b67f4457a209d817" +checksum = "1b698a2f681dee5795ef660661df3165d3287807ba4e78fcc874880b18b3f7ec" dependencies = [ "encointer-primitives", "sp-runtime 38.0.0", @@ -3809,18 +3809,18 @@ dependencies = [ "encointer-balances-tx-payment", "encointer-balances-tx-payment-rpc-runtime-api", "encointer-primitives", - "frame-benchmarking 36.0.0", + "frame-benchmarking", "frame-executive", "frame-metadata-hash-extension", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-support", + "frame-system", "frame-system-benchmarking", "frame-system-rpc-runtime-api", "frame-try-runtime", "hex-literal", "kusama-runtime-constants", "log", - "pallet-asset-tx-payment 36.0.0", + "pallet-asset-tx-payment", "pallet-aura", "pallet-authorship", "pallet-balances", @@ -3842,8 +3842,8 @@ dependencies = [ "pallet-proxy", "pallet-scheduler", "pallet-session", - "pallet-timestamp 35.0.0", - "pallet-transaction-payment 36.0.0", + "pallet-timestamp", + "pallet-transaction-payment", "pallet-transaction-payment-rpc-runtime-api", "pallet-utility", "pallet-xcm", @@ -3877,9 +3877,9 @@ dependencies = [ [[package]] name = "encointer-meetup-validation" -version = "12.1.0" +version = "13.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c7662dc01216f37278396d7375663d11af6ea676c78b9263745d50db507b477" +checksum = "cdf1aa5d61d721fdee928075eac65a2e457d9f63043d3ad43904dab6b4e16938" dependencies = [ "encointer-primitives", "parity-scale-codec", @@ -3891,14 +3891,14 @@ dependencies = [ [[package]] name = "encointer-primitives" -version = "12.2.0" +version = "13.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a8c009e8a0f388b7e6c7cc59bf81a6f9783eb7493c5230282f1c899ec6e2c637" +checksum = "29aaceec9b0e69c648b760ffdf6b52e21e7a95dc3a3dbae2a0de0745ad43ea00" dependencies = [ "bs58 0.5.0", "crc", "ep-core", - "frame-support 35.0.0", + "frame-support", "log", "parity-scale-codec", "scale-info", @@ -3986,9 +3986,9 @@ checksum = "e48c92028aaa870e83d51c64e5d4e0b6981b360c522198c23959f219a4e1b15b" [[package]] name = "ep-core" -version = "12.0.0" +version = "13.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "21fa8791695ac76e98d9f7044201ae8e1ac036ae00a347337794c5d8a645e4ad" +checksum = "764f4e44c23280f490bcc465af0f0f790f860f2cb1a378d8caf6da4c3cc5c013" dependencies = [ "array-bytes", "impl-serde", @@ -4285,41 +4285,15 @@ version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa" -[[package]] -name = "frame-benchmarking" -version = "35.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ad6366773db71a556710652c0560300dc938252e009d4d2c1eb9d6e5b38e0860" -dependencies = [ - "frame-support 35.0.0", - "frame-support-procedural", - "frame-system 35.0.0", - "linregress", - "log", - "parity-scale-codec", - "paste", - "scale-info", - "serde", - "sp-api", - "sp-application-crypto 37.0.0", - "sp-core 34.0.0", - "sp-io 37.0.0", - "sp-runtime 38.0.0", - "sp-runtime-interface 28.0.0", - "sp-std", - "sp-storage 21.0.0", - "static_assertions", -] - [[package]] name = "frame-benchmarking" version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "709b26657ebbba53dc7bb616577375ca462b20fef1b00e8d9b20d2435e87f7bc" dependencies = [ - "frame-support 36.0.0", + "frame-support", "frame-support-procedural", - "frame-system 36.0.0", + "frame-system", "linregress", "log", "parity-scale-codec", @@ -4356,8 +4330,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b1ec289ebad5e601bb165cf7eb6ec2179ae34280ee310d0710a3111d4f8f8f94" dependencies = [ "frame-election-provider-solution-type", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-support", + "frame-system", "parity-scale-codec", "scale-info", "sp-arithmetic 26.0.0", @@ -4374,8 +4348,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4d878830330eaa9e8b886279c338556b05702d0059989cb51cfb226b70bf3fa4" dependencies = [ "aquamarine", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-support", + "frame-system", "frame-try-runtime", "log", "parity-scale-codec", @@ -4418,8 +4392,8 @@ checksum = "cf37fc730bf4b51e82a34c6357eebe32c04dbacf6525e0a7b9726f6a17ec9427" dependencies = [ "array-bytes", "docify", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-support", + "frame-system", "log", "parity-scale-codec", "scale-info", @@ -4449,48 +4423,6 @@ dependencies = [ "tokio-retry", ] -[[package]] -name = "frame-support" -version = "35.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ab6d7780b7f337c8a072f0a7480cbc7b580f9bf871c434fae65e8935053ee5ef" -dependencies = [ - "aquamarine", - "array-bytes", - "bitflags 1.3.2", - "docify", - "environmental", - "frame-metadata 16.0.0", - "frame-support-procedural", - "impl-trait-for-tuples", - "k256", - "log", - "macro_magic", - "parity-scale-codec", - "paste", - "scale-info", - "serde", - "serde_json", - "smallvec", - "sp-api", - "sp-arithmetic 26.0.0", - "sp-core 34.0.0", - "sp-crypto-hashing-proc-macro", - "sp-debug-derive", - "sp-genesis-builder", - "sp-inherents", - "sp-io 37.0.0", - "sp-metadata-ir", - "sp-runtime 38.0.0", - "sp-staking", - "sp-state-machine 0.42.0", - "sp-std", - "sp-tracing 17.0.0", - "sp-weights 31.0.0", - "static_assertions", - "tt-call", -] - [[package]] name = "frame-support" version = "36.0.0" @@ -4577,27 +4509,6 @@ dependencies = [ "syn 2.0.65", ] -[[package]] -name = "frame-system" -version = "35.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6baa2218d90c5a23db08dd0188cfe6aa0af7d36fb9b0fc2f73bc5c4abe4dd812" -dependencies = [ - "cfg-if", - "docify", - "frame-support 35.0.0", - "log", - "parity-scale-codec", - "scale-info", - "serde", - "sp-core 34.0.0", - "sp-io 37.0.0", - "sp-runtime 38.0.0", - "sp-std", - "sp-version", - "sp-weights 31.0.0", -] - [[package]] name = "frame-system" version = "36.0.0" @@ -4606,7 +4517,7 @@ checksum = "2c2f10b6943da5d00f45b1b07b101bea49647d0e6c7e755b2852fd947072d7ee" dependencies = [ "cfg-if", "docify", - "frame-support 36.0.0", + "frame-support", "log", "parity-scale-codec", "scale-info", @@ -4625,9 +4536,9 @@ version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "15afc91c7780e18274dcea58ed1edb700c48d10e086a9785e3f6708099cd3250" dependencies = [ - "frame-benchmarking 36.0.0", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "parity-scale-codec", "scale-info", "sp-core 34.0.0", @@ -4651,7 +4562,7 @@ version = "0.42.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ae6ba8b36a52775ad39ccfb45ff4ad814c3cb45ec74d0a4271889e00bd791c6c" dependencies = [ - "frame-support 36.0.0", + "frame-support", "parity-scale-codec", "sp-api", "sp-runtime 38.0.0", @@ -4890,10 +4801,10 @@ dependencies = [ "cumulus-pallet-parachain-system", "cumulus-pallet-xcm", "cumulus-primitives-core", - "frame-benchmarking 36.0.0", + "frame-benchmarking", "frame-executive", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-support", + "frame-system", "frame-system-benchmarking", "frame-system-rpc-runtime-api", "frame-try-runtime", @@ -6109,7 +6020,7 @@ dependencies = [ name = "kusama-runtime-constants" version = "1.0.0" dependencies = [ - "frame-support 36.0.0", + "frame-support", "polkadot-primitives", "polkadot-runtime-common", "smallvec", @@ -7605,9 +7516,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a6c2c92855904f34ce42de688cc9411ffcb4c3f13751af2dafd52474d540b158" dependencies = [ "array-bytes", - "frame-benchmarking 36.0.0", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "log", "pallet-collective", "pallet-identity", @@ -7626,9 +7537,9 @@ version = "18.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f726ebb59401c1844a4a8703047bdafcd99a1827cd5d8b2c82abeb8948a7f25b" dependencies = [ - "frame-benchmarking 36.0.0", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "log", "parity-scale-codec", "scale-info", @@ -7646,10 +7557,10 @@ version = "18.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e0fde03a96382f4dbe37ef95cb4ef7aade7c0be410cb6c888eda911c94af3eaf" dependencies = [ - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-support", + "frame-system", "pallet-asset-conversion", - "pallet-transaction-payment 36.0.0", + "pallet-transaction-payment", "parity-scale-codec", "scale-info", "sp-runtime 38.0.0", @@ -7662,9 +7573,9 @@ version = "15.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e806842bec955190ec64f8b2179f74f5355137c4cadf04f3269e6196cd19caf9" dependencies = [ - "frame-benchmarking 36.0.0", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "parity-scale-codec", "scale-info", "sp-core 34.0.0", @@ -7672,35 +7583,16 @@ dependencies = [ "sp-std", ] -[[package]] -name = "pallet-asset-tx-payment" -version = "35.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7686ab6ba85afc432794a9dbc3e7399cb1a3b1bcfdd487ce0eb2aa81c11c2497" -dependencies = [ - "frame-benchmarking 35.0.0", - "frame-support 35.0.0", - "frame-system 35.0.0", - "pallet-transaction-payment 35.0.0", - "parity-scale-codec", - "scale-info", - "serde", - "sp-core 34.0.0", - "sp-io 37.0.0", - "sp-runtime 38.0.0", - "sp-std", -] - [[package]] name = "pallet-asset-tx-payment" version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "100a180dfbf30a1c872100ec2dae8a61c0f5e8b3f2d3a5cbb34093826293e2ab" dependencies = [ - "frame-benchmarking 36.0.0", - "frame-support 36.0.0", - "frame-system 36.0.0", - "pallet-transaction-payment 36.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", + "pallet-transaction-payment", "parity-scale-codec", "scale-info", "serde", @@ -7716,9 +7608,9 @@ version = "37.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f79ef6a7763fc08177f014052469ee12aefcdad0d99a747372360c2f648d2cc4" dependencies = [ - "frame-benchmarking 36.0.0", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "impl-trait-for-tuples", "log", "parity-scale-codec", @@ -7734,10 +7626,10 @@ version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0861b2a1ad6526948567bb59a3fdc4c7f02ee79b07be8b931a544350ec35ab0c" dependencies = [ - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-support", + "frame-system", "log", - "pallet-timestamp 35.0.0", + "pallet-timestamp", "parity-scale-codec", "scale-info", "sp-application-crypto 37.0.0", @@ -7752,8 +7644,8 @@ version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ed2c3666a476132f5846fe4d5e1961a923a58a0f54d873d84566f24ffaa3684f" dependencies = [ - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-support", + "frame-system", "pallet-session", "parity-scale-codec", "scale-info", @@ -7769,8 +7661,8 @@ version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "38885846dbcf03b025fdbd7edb3649046dbc68fa0b419ffe8837ef853a10d31f" dependencies = [ - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-support", + "frame-system", "impl-trait-for-tuples", "parity-scale-codec", "scale-info", @@ -7784,13 +7676,13 @@ version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b23d2d814e3cb793659fcf84533f66fdf0ed9cccb66cb2225851f482843ed096" dependencies = [ - "frame-benchmarking 36.0.0", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "log", "pallet-authorship", "pallet-session", - "pallet-timestamp 35.0.0", + "pallet-timestamp", "parity-scale-codec", "scale-info", "sp-application-crypto 37.0.0", @@ -7811,10 +7703,10 @@ checksum = "af34fa3fb6a0abe3577e435988039a9e441f6705ae2d3ad627a23e3f705baa2d" dependencies = [ "aquamarine", "docify", - "frame-benchmarking 36.0.0", + "frame-benchmarking", "frame-election-provider-support", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-support", + "frame-system", "log", "pallet-balances", "parity-scale-codec", @@ -7833,9 +7725,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6878e240962d3887f0e0654ac343a18845adb95ad493c9d4d5e803c015d4a4c3" dependencies = [ "docify", - "frame-benchmarking 36.0.0", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "log", "parity-scale-codec", "scale-info", @@ -7849,8 +7741,8 @@ version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "715dfcd1bf3f1f37af6335d4eb3cef921e746ac54721e2258c4fd968b61eb009" dependencies = [ - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-support", + "frame-system", "log", "pallet-authorship", "pallet-session", @@ -7872,8 +7764,8 @@ checksum = "01d70c6f872eb3f2635355ccbea944a4f9ea411c0aa25f6f1a15219e8da11ad2" dependencies = [ "array-bytes", "binary-merkle-tree", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-support", + "frame-system", "log", "pallet-beefy", "pallet-mmr", @@ -7896,9 +7788,9 @@ version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0566499e74ba4b7ccbd1b667eef0dab76ca28402a8d501e22b73a363717b05a9" dependencies = [ - "frame-benchmarking 36.0.0", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "log", "pallet-treasury", "parity-scale-codec", @@ -7919,9 +7811,9 @@ dependencies = [ "bp-runtime", "bp-test-utils", "finality-grandpa", - "frame-benchmarking 36.0.0", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "log", "parity-scale-codec", "scale-info", @@ -7939,9 +7831,9 @@ checksum = "e3c0fcb1b9ae50ece73cbe36b72c2778f5d4637e4fb0cfac30cb16f7d4b61d5e" dependencies = [ "bp-messages", "bp-runtime", - "frame-benchmarking 36.0.0", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "log", "num-traits", "parity-scale-codec", @@ -7960,9 +7852,9 @@ dependencies = [ "bp-parachains", "bp-polkadot-core", "bp-runtime", - "frame-benchmarking 36.0.0", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "log", "pallet-bridge-grandpa", "parity-scale-codec", @@ -7981,9 +7873,9 @@ dependencies = [ "bp-messages", "bp-relayers", "bp-runtime", - "frame-benchmarking 36.0.0", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "log", "pallet-bridge-messages", "parity-scale-codec", @@ -8000,9 +7892,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cd0d652c399b6ed776ee3322e60f40e323f86b413719d7696eddb8f64c368ac0" dependencies = [ "bitvec", - "frame-benchmarking 36.0.0", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "log", "parity-scale-codec", "scale-info", @@ -8019,9 +7911,9 @@ version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "38e351f103ebbdd1eb095da8c2379caccc82ebc59a740c2731693d2204286b83" dependencies = [ - "frame-benchmarking 36.0.0", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "log", "pallet-bounties", "pallet-treasury", @@ -8039,9 +7931,9 @@ version = "17.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f660cc09f2f277a3976da2eef856b5c725ab7ad1192902ef7f4e4bafd992f04f" dependencies = [ - "frame-benchmarking 36.0.0", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "log", "pallet-authorship", "pallet-balances", @@ -8060,9 +7952,9 @@ version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "771bf7f6c76c3ea5e965fee0bf1d8a8c79c8c52d75ead65ed3c4d385f333756f" dependencies = [ - "frame-benchmarking 36.0.0", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "log", "parity-scale-codec", "scale-info", @@ -8079,9 +7971,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9033f0d23500bbc39298fd50c07b89a2f2d9f07300139b4df8005995ef683875" dependencies = [ "assert_matches", - "frame-benchmarking 36.0.0", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "parity-scale-codec", "scale-info", "serde", @@ -8096,9 +7988,9 @@ version = "20.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "99f3caf5d750236fce5f59fa464a9ca5bbefedd97f2570caa96cf7bdd2ec5261" dependencies = [ - "frame-benchmarking 36.0.0", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "log", "pallet-ranked-collective", "parity-scale-codec", @@ -8116,8 +8008,8 @@ version = "3.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0596ec5ab55e02b1b5637b3ec2b99027d036fe97a1ab4733ae105474dfa727cf" dependencies = [ - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-support", + "frame-system", "parity-scale-codec", "scale-info", "sp-runtime 38.0.0", @@ -8131,10 +8023,10 @@ version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bd1090fdc6ccdd8ff08c60000c970428baaaf0b33e7a6b01a91ec8b697a650a3" dependencies = [ - "frame-benchmarking 36.0.0", + "frame-benchmarking", "frame-election-provider-support", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-support", + "frame-system", "log", "pallet-election-provider-support-benchmarking", "parity-scale-codec", @@ -8155,9 +8047,9 @@ version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "93475989d2f6900caf8f1c847a55d909295c156525a7510c5f1dde176ec7c714" dependencies = [ - "frame-benchmarking 36.0.0", + "frame-benchmarking", "frame-election-provider-support", - "frame-system 36.0.0", + "frame-system", "parity-scale-codec", "sp-npos-elections", "sp-runtime 38.0.0", @@ -8166,18 +8058,18 @@ dependencies = [ [[package]] name = "pallet-encointer-balances" -version = "12.1.0" +version = "13.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6a0ffd2d4a106903298ead5eec236d9dae348ce73db4b6d32690543e178f4b11" +checksum = "85fe03301d9f19ce476b6ce91e0531c6c91b6cb26df88ff4a490ab7493afe026" dependencies = [ "approx", "encointer-primitives", - "frame-benchmarking 35.0.0", - "frame-support 35.0.0", - "frame-system 35.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "log", - "pallet-asset-tx-payment 35.0.0", - "pallet-transaction-payment 35.0.0", + "pallet-asset-tx-payment", + "pallet-transaction-payment", "parity-scale-codec", "scale-info", "sp-runtime 38.0.0", @@ -8186,14 +8078,14 @@ dependencies = [ [[package]] name = "pallet-encointer-bazaar" -version = "12.1.0" +version = "13.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "16a3f0caa065fbb9a7274945d35d14b79a27263acb3ad6739f32e349e0e6ca94" +checksum = "10d38c490fdd90b649b3ec68a8bb25d3cdfaa11223122482737114e00e29f8a5" dependencies = [ "encointer-primitives", - "frame-benchmarking 35.0.0", - "frame-support 35.0.0", - "frame-system 35.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "log", "pallet-encointer-communities", "parity-scale-codec", @@ -8204,12 +8096,12 @@ dependencies = [ [[package]] name = "pallet-encointer-bazaar-rpc-runtime-api" -version = "12.1.0" +version = "13.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f9abb60a54e20083a48be6a14fb267262efe3b1712a6ce9aaf65a32b5791f58" +checksum = "bdfc381df1d6346e244994d4a5729b79b60f964ba4c13e29ea2f057627e1db25" dependencies = [ "encointer-primitives", - "frame-support 35.0.0", + "frame-support", "parity-scale-codec", "sp-api", "sp-std", @@ -8217,21 +8109,21 @@ dependencies = [ [[package]] name = "pallet-encointer-ceremonies" -version = "12.1.0" +version = "13.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2384656184280a803be722af24193248509874df198acd41b318f5d6f37c7f0f" +checksum = "b76d07f98908e1528413fc4f07162adaaadec0ebe8043fe1beb23ccd2b571b7a" dependencies = [ "encointer-ceremonies-assignment", "encointer-meetup-validation", "encointer-primitives", - "frame-benchmarking 35.0.0", - "frame-support 35.0.0", - "frame-system 35.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "log", "pallet-encointer-balances", "pallet-encointer-communities", "pallet-encointer-scheduler", - "pallet-timestamp 34.0.0", + "pallet-timestamp", "parity-scale-codec", "scale-info", "sp-application-crypto 37.0.0", @@ -8243,12 +8135,12 @@ dependencies = [ [[package]] name = "pallet-encointer-ceremonies-rpc-runtime-api" -version = "12.1.0" +version = "13.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6d0c64fe6380975c85c8ba5da27e1c6cc9bb1f1a00070cf8a6e827714fd0d1df" +checksum = "c186e855a19f98ba75ef8d674e71533584620a3d7a8ff653631c391f7a4a9b79" dependencies = [ "encointer-primitives", - "frame-support 35.0.0", + "frame-support", "parity-scale-codec", "sp-api", "sp-std", @@ -8256,14 +8148,14 @@ dependencies = [ [[package]] name = "pallet-encointer-communities" -version = "12.1.0" +version = "13.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "95b7b944c3b3a26225f0925f41010b250fb0b168f1d37f57483c9b73c69ff944" +checksum = "ffbd4cb15599fc47c662234cfdb2c1c63f39106c4099383d84c981fe5c40af0e" dependencies = [ "encointer-primitives", - "frame-benchmarking 35.0.0", - "frame-support 35.0.0", - "frame-system 35.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "log", "pallet-encointer-balances", "pallet-encointer-scheduler", @@ -8276,9 +8168,9 @@ dependencies = [ [[package]] name = "pallet-encointer-communities-rpc-runtime-api" -version = "12.1.0" +version = "13.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "41510010990ea29c43476fa495721756e71b3828f0df41b6333230302bd0c95b" +checksum = "0bf0ab6667ef6adb7712810f90301e3047e2b7d18ef0e81017dfc9b823d8696f" dependencies = [ "encointer-primitives", "parity-scale-codec", @@ -8288,15 +8180,15 @@ dependencies = [ [[package]] name = "pallet-encointer-faucet" -version = "12.2.0" +version = "13.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f45135e33671b00a9f00cb87e2364c68903a166b43b5e301b43c7624e045158b" +checksum = "e3493685d55804d44c674429c7f6eae641700542a4295eea9604677a006ecd46" dependencies = [ "approx", "encointer-primitives", - "frame-benchmarking 35.0.0", - "frame-support 35.0.0", - "frame-system 35.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "log", "pallet-encointer-communities", "pallet-encointer-reputation-commitments", @@ -8309,20 +8201,20 @@ dependencies = [ [[package]] name = "pallet-encointer-reputation-commitments" -version = "12.1.0" +version = "13.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1be4add4c2fa83d305e40bdf8167d998dc6fdd6369f1b7c50687a728fb6df5e4" +checksum = "dfb74f5a90b77739db9829a5aa640afc002fd9ebe05ecf07dd61898a98909d5d" dependencies = [ "approx", "encointer-primitives", - "frame-benchmarking 35.0.0", - "frame-support 35.0.0", - "frame-system 35.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "log", "pallet-encointer-ceremonies", "pallet-encointer-communities", "pallet-encointer-scheduler", - "pallet-timestamp 34.0.0", + "pallet-timestamp", "parity-scale-codec", "scale-info", "sp-core 34.0.0", @@ -8332,17 +8224,17 @@ dependencies = [ [[package]] name = "pallet-encointer-scheduler" -version = "12.1.0" +version = "13.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d760a2d2922618b1750ccd641e8d1b441d6f38dad5db347de5d3f27dddd8f647" +checksum = "cc3be9d4a09bd65fad4968354b320cd3cd1913950891293e00fbc879fc09b5d6" dependencies = [ "encointer-primitives", - "frame-benchmarking 35.0.0", - "frame-support 35.0.0", - "frame-system 35.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "impl-trait-for-tuples", "log", - "pallet-timestamp 34.0.0", + "pallet-timestamp", "parity-scale-codec", "scale-info", "sp-runtime 38.0.0", @@ -8356,10 +8248,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9155f4f762513e0287320411415c76a647152799ad33db1785c9b71c36a14575" dependencies = [ "docify", - "frame-benchmarking 36.0.0", + "frame-benchmarking", "frame-election-provider-support", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-support", + "frame-system", "log", "parity-scale-codec", "scale-info", @@ -8376,9 +8268,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9947ef904cd7662b80f8dee58e03431ee409dacada26d394c34a7bb642d3eeea" dependencies = [ "blake2 0.10.6", - "frame-benchmarking 36.0.0", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "log", "parity-scale-codec", "scale-info", @@ -8395,9 +8287,9 @@ version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8244b686d5cae6a8af1557ed0f49db08f812f0e7942a8d2da554b4da8a69daf0" dependencies = [ - "frame-benchmarking 36.0.0", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "log", "pallet-authorship", "pallet-session", @@ -8420,9 +8312,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4555795a3e0e3aa49ea432b7afecb9c71a7db8793a99c68bd8dd3a52a12571f3" dependencies = [ "enumflags2", - "frame-benchmarking 36.0.0", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "log", "parity-scale-codec", "scale-info", @@ -8437,9 +8329,9 @@ version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fa761292e95020304b58b50e5187f8bb82f557c8c2d013e3c96ab41d611873b0" dependencies = [ - "frame-benchmarking 36.0.0", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "log", "pallet-authorship", "parity-scale-codec", @@ -8458,9 +8350,9 @@ version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b183880ad5efae06afe6066e76f2bac5acf67f34b3cfab7352ceec46accf4b45" dependencies = [ - "frame-benchmarking 36.0.0", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "parity-scale-codec", "scale-info", "sp-core 34.0.0", @@ -8476,8 +8368,8 @@ version = "24.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "30555c1b6d76cca7266b639f127a055a4974f5a0796859933cbfebc9a75753a2" dependencies = [ - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-support", + "frame-system", "parity-scale-codec", "safe-mix", "scale-info", @@ -8491,9 +8383,9 @@ version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "34006cf047f47edbef33874cc64895918e2c5d7562795209068d5fb388c53a30" dependencies = [ - "frame-benchmarking 36.0.0", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "log", "parity-scale-codec", "scale-info", @@ -8510,9 +8402,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "20e65a37881d1998546254a5e50a1f768b3f82deabe774e750f4ea95aba8030c" dependencies = [ "environmental", - "frame-benchmarking 36.0.0", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "log", "parity-scale-codec", "scale-info", @@ -8530,9 +8422,9 @@ version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cf8ccec82827413f031689fef4c714fdb0213d58c7a6e208d33f5eab80483770" dependencies = [ - "frame-benchmarking 36.0.0", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "log", "parity-scale-codec", "scale-info", @@ -8549,9 +8441,9 @@ version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "be58483d827602eb8353ecf36aed65c857f0974db5d27981831e5ebf853040bd" dependencies = [ - "frame-benchmarking 36.0.0", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "log", "parity-scale-codec", "scale-info", @@ -8566,9 +8458,9 @@ version = "18.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7dcaa330221f60feaf3b23d495cccc3bf2a3d6254c596b3c032273c2b46d4078" dependencies = [ - "frame-benchmarking 36.0.0", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "log", "pallet-assets", "pallet-nfts", @@ -8585,9 +8477,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3e1cd476809de3840e19091a083d5a79178af1f108ad489706e1f9e04c8836a4" dependencies = [ "enumflags2", - "frame-benchmarking 36.0.0", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "log", "parity-scale-codec", "scale-info", @@ -8615,9 +8507,9 @@ version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e77cba0e15749c8de2be65efffa51e02bd051b4e6fcf23360d43c3b6a859187c" dependencies = [ - "frame-benchmarking 36.0.0", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "parity-scale-codec", "scale-info", "sp-arithmetic 26.0.0", @@ -8632,8 +8524,8 @@ version = "33.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "36f8c994eb7298a394b58f98afd520b521b5d46f6f39eade4657eeaac9962471" dependencies = [ - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-support", + "frame-system", "log", "pallet-balances", "parity-scale-codec", @@ -8652,10 +8544,10 @@ version = "34.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "39ee599f2861e55fc6113c01e9b14d6e85fda46bac36a906b5dd5a951fa0455c" dependencies = [ - "frame-benchmarking 36.0.0", + "frame-benchmarking", "frame-election-provider-support", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-support", + "frame-system", "pallet-bags-list", "pallet-delegated-staking", "pallet-nomination-pools", @@ -8686,8 +8578,8 @@ version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4859e7bb2af46d2e0f137c2f777adf39f0e5d4d188226158d599f1cfcfb76b9e" dependencies = [ - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-support", + "frame-system", "log", "pallet-balances", "parity-scale-codec", @@ -8704,10 +8596,10 @@ version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4351b0edafcdf3240f0471c638b39d2c981bde9d17c0172536a0aa3b7c3097ef" dependencies = [ - "frame-benchmarking 36.0.0", + "frame-benchmarking", "frame-election-provider-support", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-support", + "frame-system", "log", "pallet-babe", "pallet-balances", @@ -8729,9 +8621,9 @@ version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "68ac726abc5b1bcd6c8f783514b8e1a48be32c7d15e0b263e4bc28cc1e4e7763" dependencies = [ - "frame-benchmarking 36.0.0", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "log", "parity-scale-codec", "scale-info", @@ -8747,9 +8639,9 @@ version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b4e12680e176607815a78a0cd10a52af50790292cb950404f30a885e2a7229e9" dependencies = [ - "frame-benchmarking 36.0.0", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "parity-scale-codec", "scale-info", "sp-io 37.0.0", @@ -8763,9 +8655,9 @@ version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "862ea8d386ed5737e859470c43cbfd9652c81398cad29e03ae7846c21aaee4c6" dependencies = [ - "frame-benchmarking 36.0.0", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "impl-trait-for-tuples", "log", "parity-scale-codec", @@ -8783,9 +8675,9 @@ version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b24d4131bc79fee0b07550136ca6329faa84c1c3e76ae62a74aef6b1da0b95b4" dependencies = [ - "frame-benchmarking 36.0.0", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "parity-scale-codec", "scale-info", "sp-io 37.0.0", @@ -8800,9 +8692,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b2c906a9c4573eb58de4134ec7180bf12c6769df2b9859dae8adcbc5fce78add" dependencies = [ "assert_matches", - "frame-benchmarking 36.0.0", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "log", "parity-scale-codec", "scale-info", @@ -8819,9 +8711,9 @@ version = "21.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d6246871441f85b32d67f70ef13726ac195b05f8e9297df7c46a95a397b8df42" dependencies = [ - "frame-benchmarking 36.0.0", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "log", "pallet-ranked-collective", "parity-scale-codec", @@ -8840,9 +8732,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b170d6aa191197d3f50b1193925546972ffc394376ead4d2739eb40909b73c85" dependencies = [ "docify", - "frame-benchmarking 36.0.0", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "log", "parity-scale-codec", "scale-info", @@ -8858,11 +8750,11 @@ version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7c92b24c911c2cfa5351616edc7f2f93427ea6f4f95efdb13f0f5d51997939c3" dependencies = [ - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-support", + "frame-system", "impl-trait-for-tuples", "log", - "pallet-timestamp 35.0.0", + "pallet-timestamp", "parity-scale-codec", "scale-info", "sp-core 34.0.0", @@ -8881,9 +8773,9 @@ version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bd02aaf5f10734670346677042ece94fae20dcd5436eafeb9b429d8d6d5b6385" dependencies = [ - "frame-benchmarking 36.0.0", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "pallet-session", "pallet-staking", "parity-scale-codec", @@ -8899,9 +8791,9 @@ version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "66b60b1d726532317f9965bab4995aa49b73f9b7ca3b9a0f75d158bd84686c5f" dependencies = [ - "frame-benchmarking 36.0.0", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "log", "parity-scale-codec", "rand_chacha", @@ -8918,10 +8810,10 @@ version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fbebdb060417654f215fc6f03675e5f44cfc83837d9e523e1b8fd9a4a2e1bdc2" dependencies = [ - "frame-benchmarking 36.0.0", + "frame-benchmarking", "frame-election-provider-support", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-support", + "frame-system", "log", "pallet-authorship", "pallet-session", @@ -8975,9 +8867,9 @@ version = "37.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e07f8626f4ff62ac79d6ad0bd01fab7645897ce35706ddb95fa084e75be9306d" dependencies = [ - "frame-benchmarking 36.0.0", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "log", "parity-scale-codec", "scale-info", @@ -8994,35 +8886,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1bd2a8797c1bb3d3897b4f87a7716111da5eeb8561345277b6e6d70349ec8b35" dependencies = [ "docify", - "frame-benchmarking 36.0.0", - "frame-support 36.0.0", - "frame-system 36.0.0", - "parity-scale-codec", - "scale-info", - "sp-io 37.0.0", - "sp-runtime 38.0.0", - "sp-std", -] - -[[package]] -name = "pallet-timestamp" -version = "34.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34a42af51e32d3ea442e9aaabb935976e4154f89f3604bfb892a316e8d77c0d4" -dependencies = [ - "docify", - "frame-benchmarking 35.0.0", - "frame-support 35.0.0", - "frame-system 35.0.0", - "log", + "frame-benchmarking", + "frame-support", + "frame-system", "parity-scale-codec", "scale-info", - "sp-inherents", "sp-io 37.0.0", "sp-runtime 38.0.0", "sp-std", - "sp-storage 21.0.0", - "sp-timestamp", ] [[package]] @@ -9032,9 +8903,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ae789d344be857679b0b98b28a67c747119724847f81d704d3fd03ee13fb6841" dependencies = [ "docify", - "frame-benchmarking 36.0.0", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "log", "parity-scale-codec", "scale-info", @@ -9046,31 +8917,14 @@ dependencies = [ "sp-timestamp", ] -[[package]] -name = "pallet-transaction-payment" -version = "35.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "349e56fa9f8c4093d912f0654e37b57ae628ad4b4fea67d9f3373e5dfcab2bcc" -dependencies = [ - "frame-support 35.0.0", - "frame-system 35.0.0", - "parity-scale-codec", - "scale-info", - "serde", - "sp-core 34.0.0", - "sp-io 37.0.0", - "sp-runtime 38.0.0", - "sp-std", -] - [[package]] name = "pallet-transaction-payment" version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "74fb6114223c8d967c3c2f21cbc845e8ea604ff7e21a8e59d119d5a9257ba886" dependencies = [ - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-support", + "frame-system", "parity-scale-codec", "scale-info", "serde", @@ -9086,7 +8940,7 @@ version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f4bad1700ad7eb5ab254189e1df894d1d16b3626a3c4b9c45259ec4d9efc262c" dependencies = [ - "pallet-transaction-payment 36.0.0", + "pallet-transaction-payment", "parity-scale-codec", "sp-api", "sp-runtime 38.0.0", @@ -9100,9 +8954,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9c502615bb4fdd02856a131cb2a612ad40c26435ec938f65f11cae4ff230812b" dependencies = [ "docify", - "frame-benchmarking 36.0.0", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "impl-trait-for-tuples", "pallet-balances", "parity-scale-codec", @@ -9119,9 +8973,9 @@ version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4a59e8599a8c19908e934645f845b5cb546cef1f08745319db7e5b9c24f9e0e4" dependencies = [ - "frame-benchmarking 36.0.0", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "log", "parity-scale-codec", "scale-info", @@ -9135,9 +8989,9 @@ version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3238fe6ad00da6a137be115904c39cab97eb5c7f03da0bb1a20de1bef03f0c71" dependencies = [ - "frame-benchmarking 36.0.0", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "parity-scale-codec", "scale-info", "sp-core 34.0.0", @@ -9152,9 +9006,9 @@ version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "78f7f0f4fe5e1d851e85d81e5e73b6f929f0c35af786ce8be9c9e3363717c136" dependencies = [ - "frame-benchmarking 36.0.0", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "log", "parity-scale-codec", "scale-info", @@ -9168,9 +9022,9 @@ version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3e4f27640279229eb73fde0cb06e98b799305e6b0bc724f4dfbef2001ab4ad00" dependencies = [ - "frame-benchmarking 36.0.0", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "parity-scale-codec", "scale-info", "sp-api", @@ -9185,9 +9039,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fe7409458b7fedc5c7d46459da154ccc2dc22a843ce08e8ab6c1743ef5cf972c" dependencies = [ "bounded-collections", - "frame-benchmarking 36.0.0", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "log", "pallet-balances", "parity-scale-codec", @@ -9209,9 +9063,9 @@ version = "15.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2f177a171203cc0bec3cff1bdd5d3b926abfbd0ecf347e044b147194e664f717" dependencies = [ - "frame-benchmarking 36.0.0", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "log", "parity-scale-codec", "scale-info", @@ -9233,8 +9087,8 @@ dependencies = [ "bp-runtime", "bp-xcm-bridge-hub", "bridge-runtime-common", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-support", + "frame-system", "log", "pallet-bridge-messages", "parity-scale-codec", @@ -9254,9 +9108,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f48bd38d4061a51f263f4c08021e66100e16cbda9978fba163d2544637b31dab" dependencies = [ "bp-xcm-bridge-hub-router", - "frame-benchmarking 36.0.0", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "log", "parity-scale-codec", "scale-info", @@ -9275,10 +9129,10 @@ checksum = "9319e656eebdf161666e54a4d8e24f73137f702f01600247f7be650bc4d46167" dependencies = [ "cumulus-primitives-core", "cumulus-primitives-utility", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-support", + "frame-system", "log", - "pallet-asset-tx-payment 36.0.0", + "pallet-asset-tx-payment", "pallet-assets", "pallet-authorship", "pallet-balances", @@ -9310,12 +9164,12 @@ dependencies = [ "cumulus-primitives-core", "cumulus-primitives-parachain-inherent", "cumulus-test-relay-sproof-builder", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-support", + "frame-system", "pallet-balances", "pallet-collator-selection", "pallet-session", - "pallet-timestamp 35.0.0", + "pallet-timestamp", "pallet-xcm", "parity-scale-codec", "polkadot-parachain-primitives", @@ -9524,7 +9378,7 @@ version = "1.0.0" dependencies = [ "cumulus-primitives-core", "emulated-integration-tests-common", - "frame-support 36.0.0", + "frame-support", "kusama-emulated-chain", "parachains-common", "penpal-runtime", @@ -9547,15 +9401,15 @@ dependencies = [ "cumulus-pallet-xcmp-queue", "cumulus-primitives-core", "cumulus-primitives-utility", - "frame-benchmarking 36.0.0", + "frame-benchmarking", "frame-executive", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-support", + "frame-system", "frame-system-benchmarking", "frame-system-rpc-runtime-api", "frame-try-runtime", "log", - "pallet-asset-tx-payment 36.0.0", + "pallet-asset-tx-payment", "pallet-assets", "pallet-aura", "pallet-authorship", @@ -9564,8 +9418,8 @@ dependencies = [ "pallet-message-queue", "pallet-session", "pallet-sudo", - "pallet-timestamp 35.0.0", - "pallet-transaction-payment 36.0.0", + "pallet-timestamp", + "pallet-transaction-payment", "pallet-transaction-payment-rpc-runtime-api", "pallet-xcm", "parachains-common", @@ -9602,7 +9456,7 @@ version = "1.0.0" dependencies = [ "cumulus-primitives-core", "emulated-integration-tests-common", - "frame-support 36.0.0", + "frame-support", "kusama-emulated-chain", "parachains-common", "people-kusama-runtime", @@ -9616,7 +9470,7 @@ dependencies = [ "asset-test-utils", "cumulus-pallet-parachain-system", "emulated-integration-tests-common", - "frame-support 36.0.0", + "frame-support", "kusama-runtime-constants", "kusama-system-emulated-network", "pallet-balances", @@ -9646,11 +9500,11 @@ dependencies = [ "cumulus-primitives-storage-weight-reclaim", "cumulus-primitives-utility", "enumflags2", - "frame-benchmarking 36.0.0", + "frame-benchmarking", "frame-executive", "frame-metadata-hash-extension", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-support", + "frame-system", "frame-system-benchmarking", "frame-system-rpc-runtime-api", "frame-try-runtime", @@ -9666,8 +9520,8 @@ dependencies = [ "pallet-multisig", "pallet-proxy", "pallet-session", - "pallet-timestamp 35.0.0", - "pallet-transaction-payment 36.0.0", + "pallet-timestamp", + "pallet-transaction-payment", "pallet-transaction-payment-rpc-runtime-api", "pallet-utility", "pallet-xcm", @@ -9706,7 +9560,7 @@ version = "1.0.0" dependencies = [ "cumulus-primitives-core", "emulated-integration-tests-common", - "frame-support 36.0.0", + "frame-support", "parachains-common", "people-polkadot-runtime", "polkadot-emulated-chain", @@ -9720,7 +9574,7 @@ dependencies = [ "asset-test-utils", "cumulus-pallet-parachain-system", "emulated-integration-tests-common", - "frame-support 36.0.0", + "frame-support", "pallet-balances", "pallet-identity", "pallet-message-queue", @@ -9749,11 +9603,11 @@ dependencies = [ "cumulus-primitives-core", "cumulus-primitives-utility", "enumflags2", - "frame-benchmarking 36.0.0", + "frame-benchmarking", "frame-executive", "frame-metadata-hash-extension", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-support", + "frame-system", "frame-system-benchmarking", "frame-system-rpc-runtime-api", "frame-try-runtime", @@ -9768,8 +9622,8 @@ dependencies = [ "pallet-multisig", "pallet-proxy", "pallet-session", - "pallet-timestamp 35.0.0", - "pallet-transaction-payment 36.0.0", + "pallet-timestamp", + "pallet-transaction-payment", "pallet-transaction-payment-rpc-runtime-api", "pallet-utility", "pallet-xcm", @@ -10026,13 +9880,13 @@ name = "polkadot-runtime" version = "1.0.0" dependencies = [ "binary-merkle-tree", - "frame-benchmarking 36.0.0", + "frame-benchmarking", "frame-election-provider-support", "frame-executive", "frame-metadata-hash-extension", "frame-remote-externalities", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-support", + "frame-system", "frame-system-benchmarking", "frame-system-rpc-runtime-api", "frame-try-runtime", @@ -10073,8 +9927,8 @@ dependencies = [ "pallet-staking-reward-fn", "pallet-staking-runtime-api", "pallet-state-trie-migration", - "pallet-timestamp 35.0.0", - "pallet-transaction-payment 36.0.0", + "pallet-timestamp", + "pallet-transaction-payment", "pallet-transaction-payment-rpc-runtime-api", "pallet-treasury", "pallet-utility", @@ -10128,10 +9982,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "28fdcb41bb21c7b14d0341a9a17364ccc04ad34de05d41e7938cb03acbc11066" dependencies = [ "bitvec", - "frame-benchmarking 36.0.0", + "frame-benchmarking", "frame-election-provider-support", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-support", + "frame-system", "impl-trait-for-tuples", "libsecp256k1", "log", @@ -10146,8 +10000,8 @@ dependencies = [ "pallet-session", "pallet-staking", "pallet-staking-reward-fn", - "pallet-timestamp 35.0.0", - "pallet-transaction-payment 36.0.0", + "pallet-timestamp", + "pallet-transaction-payment", "pallet-treasury", "pallet-vesting", "parity-scale-codec", @@ -10177,7 +10031,7 @@ dependencies = [ name = "polkadot-runtime-constants" version = "1.0.0" dependencies = [ - "frame-support 36.0.0", + "frame-support", "polkadot-primitives", "polkadot-runtime-common", "smallvec", @@ -10194,7 +10048,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ac75b3fea8464e5681b44733ed11cf09e22ff1e956f6703b918b637bd40e7427" dependencies = [ "bs58 0.5.0", - "frame-benchmarking 36.0.0", + "frame-benchmarking", "parity-scale-codec", "polkadot-primitives", "sp-std", @@ -10210,9 +10064,9 @@ dependencies = [ "bitflags 1.3.2", "bitvec", "derive_more", - "frame-benchmarking 36.0.0", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "impl-trait-for-tuples", "log", "pallet-authority-discovery", @@ -10223,7 +10077,7 @@ dependencies = [ "pallet-message-queue", "pallet-session", "pallet-staking", - "pallet-timestamp 35.0.0", + "pallet-timestamp", "pallet-vesting", "parity-scale-codec", "polkadot-core-primitives", @@ -12850,7 +12704,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a0ad61e3ab1c48d4c8060c7ef8571c5b6007df26687e8dbfdb6c857d840cfd2c" dependencies = [ "byte-slice-cast", - "frame-support 36.0.0", + "frame-support", "hex", "parity-scale-codec", "rlp", @@ -12873,8 +12727,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "668cd71582305168ed51cb0357a4b4ea814c68c7db3898a9ba4d492f712c54e1" dependencies = [ "ethabi-decode", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-support", + "frame-system", "hex-literal", "parity-scale-codec", "polkadot-parachain-primitives", @@ -12944,7 +12798,7 @@ version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ab6b34950a2abce198fe008ac6a199598053fedcbde2c40fedf981bc55f85dc7" dependencies = [ - "frame-support 36.0.0", + "frame-support", "parity-scale-codec", "snowbridge-core", "snowbridge-outbound-queue-merkle-tree", @@ -12958,12 +12812,12 @@ version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0040c2f5a66bcef85e125968af172200cd01d8558c8b3cb9c2e3f1b72abf7dc1" dependencies = [ - "frame-benchmarking 36.0.0", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "hex-literal", "log", - "pallet-timestamp 35.0.0", + "pallet-timestamp", "parity-scale-codec", "scale-info", "serde", @@ -12999,9 +12853,9 @@ checksum = "1bd92623ca85fe55e317654254acac72e5a324676c52f0993b0980c90a3544f8" dependencies = [ "alloy-primitives", "alloy-sol-types", - "frame-benchmarking 36.0.0", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "hex-literal", "log", "pallet-balances", @@ -13041,9 +12895,9 @@ checksum = "3cfbea7729bcbea661b323c6090d971afcb2ff14a88d9861aab384705415f9d6" dependencies = [ "bridge-hub-common", "ethabi-decode", - "frame-benchmarking 36.0.0", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "parity-scale-codec", "scale-info", "serde", @@ -13062,9 +12916,9 @@ version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f726d9d2bc15b2683995e6f6ae707d2db20085742860acd32d8fb246251681f2" dependencies = [ - "frame-benchmarking 36.0.0", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-benchmarking", + "frame-support", + "frame-system", "log", "parity-scale-codec", "scale-info", @@ -13083,7 +12937,7 @@ version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8e8e6707ced1308d763117bfe68f85e3f22fcdca7987b32e438c0485570f6ac7" dependencies = [ - "frame-support 36.0.0", + "frame-support", "hex-literal", "log", "parity-scale-codec", @@ -13103,7 +12957,7 @@ version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c033e7905056434638a068dca713ec9d15708af6c7590396fc95a216ec64b40b" dependencies = [ - "frame-support 36.0.0", + "frame-support", "log", "parity-scale-codec", "snowbridge-core", @@ -13121,13 +12975,13 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5bbae06a0abb1ba5ffad59b929263c68cc47b8a286794a7389e781eba20f3481" dependencies = [ "cumulus-pallet-parachain-system", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-support", + "frame-system", "pallet-balances", "pallet-collator-selection", "pallet-message-queue", "pallet-session", - "pallet-timestamp 35.0.0", + "pallet-timestamp", "pallet-utility", "pallet-xcm", "parachains-runtimes-test-utils", @@ -14331,13 +14185,13 @@ name = "staging-kusama-runtime" version = "1.0.0" dependencies = [ "binary-merkle-tree", - "frame-benchmarking 36.0.0", + "frame-benchmarking", "frame-election-provider-support", "frame-executive", "frame-metadata-hash-extension", "frame-remote-externalities", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-support", + "frame-system", "frame-system-benchmarking", "frame-system-rpc-runtime-api", "frame-try-runtime", @@ -14380,8 +14234,8 @@ dependencies = [ "pallet-society", "pallet-staking", "pallet-staking-runtime-api", - "pallet-timestamp 35.0.0", - "pallet-transaction-payment 36.0.0", + "pallet-timestamp", + "pallet-transaction-payment", "pallet-transaction-payment-rpc-runtime-api", "pallet-treasury", "pallet-utility", @@ -14434,8 +14288,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cd00d586b0dac4f42736bdd0ad52213a891b240e011ea82b38938263dd821c25" dependencies = [ "cumulus-primitives-core", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-support", + "frame-system", "parity-scale-codec", "scale-info", "sp-runtime 38.0.0", @@ -14467,11 +14321,11 @@ version = "15.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "847fa2afe1bed2751eaabf7b91fa4043037947f17653d7cc59ea202cc44c6bb8" dependencies = [ - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-support", + "frame-system", "impl-trait-for-tuples", "log", - "pallet-transaction-payment 36.0.0", + "pallet-transaction-payment", "parity-scale-codec", "polkadot-parachain-primitives", "scale-info", @@ -14491,8 +14345,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "26b98d8219449eaf02e71a7edf1a14b14d4c713dd01d9df66fde1ce30dba4d6d" dependencies = [ "environmental", - "frame-benchmarking 36.0.0", - "frame-support 36.0.0", + "frame-benchmarking", + "frame-support", "impl-trait-for-tuples", "log", "parity-scale-codec", @@ -14931,7 +14785,7 @@ dependencies = [ name = "system-parachains-constants" version = "1.0.0" dependencies = [ - "frame-support 36.0.0", + "frame-support", "kusama-runtime-constants", "parachains-common", "polkadot-core-primitives", @@ -16629,8 +16483,8 @@ dependencies = [ "cumulus-primitives-core", "cumulus-primitives-parachain-inherent", "cumulus-test-relay-sproof-builder", - "frame-support 36.0.0", - "frame-system 36.0.0", + "frame-support", + "frame-system", "impl-trait-for-tuples", "lazy_static", "log", @@ -16671,7 +16525,7 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "30fffcd9128a46abd836c37dd001c2cbe122aeb8904cd7b9bac8358564fb7b56" dependencies = [ - "frame-support 36.0.0", + "frame-support", "parity-scale-codec", "scale-info", "sp-api", diff --git a/Cargo.toml b/Cargo.toml index 72bad2f42b..73ecc18ce8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -56,10 +56,10 @@ cumulus-primitives-core = { version = "0.14.0", default-features = false } cumulus-primitives-utility = { version = "0.15.0", default-features = false } cumulus-primitives-storage-weight-reclaim = { version = "6.0.0", default-features = false } emulated-integration-tests-common = { version = "11.0.0" } -#encointer-balances-tx-payment = { version = "~12.1.0", default-features = false } -#encointer-balances-tx-payment-rpc-runtime-api = { version = "~12.1.0", default-features = false } -#encointer-kusama-runtime = { path = "system-parachains/encointer" } -#encointer-primitives = { version = "~12.2.0", default-features = false } +encointer-balances-tx-payment = { version = "~13.1.0", default-features = false } +encointer-balances-tx-payment-rpc-runtime-api = { version = "~13.1.0", default-features = false } +encointer-kusama-runtime = { path = "system-parachains/encointer" } +encointer-primitives = { version = "~13.2.0", default-features = false } enumflags2 = { version = "0.7.7" } frame-benchmarking = { version = "36.0.0", default-features = false } frame-election-provider-support = { version = "36.0.0", default-features = false } @@ -106,16 +106,16 @@ pallet-conviction-voting = { version = "36.0.0", default-features = false } pallet-core-fellowship = { version = "20.0.0", default-features = false } pallet-election-provider-multi-phase = { version = "35.0.0", default-features = false } pallet-election-provider-support-benchmarking = { version = "35.0.0", default-features = false } -#pallet-encointer-balances = { version = "~12.1.0", default-features = false } -#pallet-encointer-bazaar = { version = "~12.1.0", default-features = false } -#pallet-encointer-bazaar-rpc-runtime-api = { version = "~12.1.0", default-features = false } -#pallet-encointer-ceremonies = { version = "~12.1.0", default-features = false } -#pallet-encointer-ceremonies-rpc-runtime-api = { version = "~12.1.0", default-features = false } -#pallet-encointer-communities = { version = "~12.1.0", default-features = false } -#pallet-encointer-communities-rpc-runtime-api = { version = "~12.1.0", default-features = false } -#pallet-encointer-faucet = { version = "~12.2.0", default-features = false } -#pallet-encointer-reputation-commitments = { version = "~12.1.0", default-features = false } -#pallet-encointer-scheduler = { version = "~12.1.0", default-features = false } +pallet-encointer-balances = { version = "~13.1.0", default-features = false } +pallet-encointer-bazaar = { version = "~13.1.0", default-features = false } +pallet-encointer-bazaar-rpc-runtime-api = { version = "~13.1.0", default-features = false } +pallet-encointer-ceremonies = { version = "~13.1.0", default-features = false } +pallet-encointer-ceremonies-rpc-runtime-api = { version = "~13.1.0", default-features = false } +pallet-encointer-communities = { version = "~13.1.0", default-features = false } +pallet-encointer-communities-rpc-runtime-api = { version = "~13.1.0", default-features = false } +pallet-encointer-faucet = { version = "~13.2.0", default-features = false } +pallet-encointer-reputation-commitments = { version = "~13.1.0", default-features = false } +pallet-encointer-scheduler = { version = "~13.1.0", default-features = false } pallet-fast-unstake = { version = "35.0.0", default-features = false } pallet-glutton = { version = "22.0.0", default-features = false } pallet-grandpa = { version = "36.0.0", default-features = false } @@ -282,7 +282,7 @@ members = [ "system-parachains/collectives/collectives-polkadot/constants", "system-parachains/constants", "system-parachains/coretime/coretime-kusama", - #"system-parachains/encointer", + "system-parachains/encointer", "system-parachains/gluttons/glutton-kusama", "system-parachains/people/people-kusama", "system-parachains/people/people-polkadot", diff --git a/chain-spec-generator/Cargo.toml b/chain-spec-generator/Cargo.toml index b08407911d..7a97e371a7 100644 --- a/chain-spec-generator/Cargo.toml +++ b/chain-spec-generator/Cargo.toml @@ -35,7 +35,7 @@ asset-hub-kusama-runtime = { workspace = true } collectives-polkadot-runtime = { workspace = true } bridge-hub-polkadot-runtime = { workspace = true } bridge-hub-kusama-runtime = { workspace = true } -#encointer-kusama-runtime = { workspace = true } +encointer-kusama-runtime = { workspace = true } glutton-kusama-runtime = { workspace = true } coretime-kusama-runtime = { workspace = true } people-kusama-runtime = { workspace = true } @@ -51,7 +51,7 @@ runtime-benchmarks = [ "collectives-polkadot-runtime/runtime-benchmarks", "coretime-kusama-runtime/runtime-benchmarks", "cumulus-primitives-core/runtime-benchmarks", - #"encointer-kusama-runtime/runtime-benchmarks", + "encointer-kusama-runtime/runtime-benchmarks", "glutton-kusama-runtime/runtime-benchmarks", "kusama-runtime/runtime-benchmarks", "pallet-staking/runtime-benchmarks", @@ -62,5 +62,5 @@ runtime-benchmarks = [ "polkadot-runtime/runtime-benchmarks", "runtime-parachains/runtime-benchmarks", "sp-runtime/runtime-benchmarks", - #"encointer-kusama-runtime/runtime-benchmarks" + "encointer-kusama-runtime/runtime-benchmarks" ] diff --git a/chain-spec-generator/src/common.rs b/chain-spec-generator/src/common.rs index ea89e7f33c..24162a4600 100644 --- a/chain-spec-generator/src/common.rs +++ b/chain-spec-generator/src/common.rs @@ -19,8 +19,8 @@ use crate::{ relay_chain_specs::{KusamaChainSpec, PolkadotChainSpec}, system_parachains_specs::{ AssetHubKusamaChainSpec, AssetHubPolkadotChainSpec, BridgeHubKusamaChainSpec, - BridgeHubPolkadotChainSpec, CollectivesPolkadotChainSpec, GluttonKusamaChainSpec, - PeopleKusamaChainSpec, PeoplePolkadotChainSpec, + BridgeHubPolkadotChainSpec, CollectivesPolkadotChainSpec, EncointerKusamaChainSpec, + GluttonKusamaChainSpec, PeopleKusamaChainSpec, PeoplePolkadotChainSpec, }, ChainSpec, }; @@ -88,8 +88,8 @@ pub fn from_json_file(filepath: &str, supported: String) -> Result Ok(Box::new(GluttonKusamaChainSpec::from_json_file(path)?)), - //x if x.starts_with("encointer-kusama") => - // Ok(Box::new(EncointerKusamaChainSpec::from_json_file(path)?)), + x if x.starts_with("encointer-kusama") => + Ok(Box::new(EncointerKusamaChainSpec::from_json_file(path)?)), x if x.starts_with("people-kusama") => Ok(Box::new(PeopleKusamaChainSpec::from_json_file(path)?)), x if x.starts_with("people-polkadot") => diff --git a/chain-spec-generator/src/main.rs b/chain-spec-generator/src/main.rs index 046731a5db..913d976d56 100644 --- a/chain-spec-generator/src/main.rs +++ b/chain-spec-generator/src/main.rs @@ -72,10 +72,10 @@ fn main() -> Result<(), String> { "glutton-kusama-local", Box::new(system_parachains_specs::glutton_kusama_local_testnet_config) as Box<_>, ), - //( - // "encointer-kusama-local", - // Box::new(system_parachains_specs::encointer_kusama_local_testnet_config) as Box<_>, - //), + ( + "encointer-kusama-local", + Box::new(system_parachains_specs::encointer_kusama_local_testnet_config) as Box<_>, + ), ( "coretime-kusama-local", Box::new(system_parachains_specs::coretime_kusama_local_testnet_config) as Box<_>, diff --git a/chain-spec-generator/src/system_parachains_specs.rs b/chain-spec-generator/src/system_parachains_specs.rs index a149e157bf..271f4c4479 100644 --- a/chain-spec-generator/src/system_parachains_specs.rs +++ b/chain-spec-generator/src/system_parachains_specs.rs @@ -44,7 +44,7 @@ pub type BridgeHubKusamaChainSpec = sc_chain_spec::GenericChainSpec; pub type GluttonKusamaChainSpec = sc_chain_spec::GenericChainSpec; -//pub type EncointerKusamaChainSpec = sc_chain_spec::GenericChainSpec; +pub type EncointerKusamaChainSpec = sc_chain_spec::GenericChainSpec; pub type CoretimeKusamaChainSpec = sc_chain_spec::GenericChainSpec; @@ -62,7 +62,7 @@ const BRIDGE_HUB_POLKADOT_ED: Balance = bridge_hub_polkadot_runtime::Existential const BRIDGE_HUB_KUSAMA_ED: Balance = bridge_hub_kusama_runtime::ExistentialDeposit::get(); -//const ENCOINTER_KUSAMA_ED: Balance = encointer_kusama_runtime::ExistentialDeposit::get(); +const ENCOINTER_KUSAMA_ED: Balance = encointer_kusama_runtime::ExistentialDeposit::get(); const CORETIME_KUSAMA_ED: Balance = coretime_kusama_runtime::ExistentialDeposit::get(); @@ -560,7 +560,7 @@ pub fn glutton_kusama_local_testnet_config() -> Result, Strin } // EncointerKusama -/*fn encointer_kusama_genesis(endowed_accounts: Vec, id: u32) -> serde_json::Value { +fn encointer_kusama_genesis(endowed_accounts: Vec, id: u32) -> serde_json::Value { serde_json::json!({ "balances": asset_hub_kusama_runtime::BalancesConfig { balances: endowed_accounts @@ -624,7 +624,7 @@ pub fn encointer_kusama_local_testnet_config() -> Result, Str .with_properties(properties) .build(), )) -}*/ +} // CoretimeKusama fn coretime_kusama_genesis( From 0be46e0a2feccbcb4ed3ead6d2813f63b020218e Mon Sep 17 00:00:00 2001 From: Oliver Tale-Yazdi Date: Wed, 17 Jul 2024 14:07:17 +0200 Subject: [PATCH 11/44] Clippy Signed-off-by: Oliver Tale-Yazdi --- .../collectives/collectives-polkadot/src/ambassador/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system-parachains/collectives/collectives-polkadot/src/ambassador/mod.rs b/system-parachains/collectives/collectives-polkadot/src/ambassador/mod.rs index 3443b43bea..46e614314e 100644 --- a/system-parachains/collectives/collectives-polkadot/src/ambassador/mod.rs +++ b/system-parachains/collectives/collectives-polkadot/src/ambassador/mod.rs @@ -149,7 +149,7 @@ impl pallet_ranked_collective::Config for Runtime pub struct AmbassadorMemberCount; impl MaybeConvert for AmbassadorMemberCount { fn maybe_convert(rank: Rank) -> Option { - (rank == 3).then(|| 21) + (rank == 3).then_some(21) } } From b0b1a81b457d0678d2b0baf3968fd3b2e7671a0e Mon Sep 17 00:00:00 2001 From: Oliver Tale-Yazdi Date: Wed, 17 Jul 2024 14:48:20 +0200 Subject: [PATCH 12/44] Update CHANGELOG Signed-off-by: Oliver Tale-Yazdi --- CHANGELOG.md | 26 +++++++++++++++++--------- 1 file changed, 17 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 30d410eb72..a03a525d7c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,15 +9,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ### Added - Kusama: Relay General Admin Origin mapping to xcm Location ([polkadot-fellows/runtimes#383](https://github.com/polkadot-fellows/runtimes/pull/383)) - -### Changed - -- Bounties: Remove payout delay ([polkadot-fellows/runtimes#386](https://github.com/polkadot-fellows/runtimes/pull/386)) - -## [1.2.8] 03.07.2024 - -### Added - +- Introduce a new dispatchable function `set_partial_params` in `pallet-core-fellowship` ([SDK v1.14 #3843](https://github.com/paritytech/polkadot-sdk/pull/3843) from [#381](https://github.com/polkadot-fellows/runtimes/pull/381)). +- RFC-5: Add request revenue info ([SDK v1.14 #3940](https://github.com/paritytech/polkadot-sdk/pull/3940) from [#381](https://github.com/polkadot-fellows/runtimes/pull/381)). +- Introduce a new dispatchable function `set_partial_params` in `pallet-core-fellowship` ([runtimes#381](https://github.com/polkadot-fellows/runtimes/pull/381), [SDK v1.14 #3843](https://github.com/paritytech/polkadot-sdk/pull/3843)). +- RFC-5: Add request revenue info ([runtimes#381](https://github.com/polkadot-fellows/runtimes/pull/381), [SDK v1.14 #3940](https://github.com/paritytech/polkadot-sdk/pull/3940)). +- Core-Fellowship: new `promote_fast` call ([runtimes#381](https://github.com/polkadot-fellows/runtimes/pull/381), [SDK v1.14 #4877](https://github.com/paritytech/polkadot-sdk/pull/4877)). +- Pallet ranked collective: max member count per rank ([runtimes#381](https://github.com/polkadot-fellows/runtimes/pull/381), [SDK v1.14 #4807](https://github.com/paritytech/polkadot-sdk/pull/4807)). +- Pallet assets: optional auto-increment for the asset ID ([runtimes#381](https://github.com/polkadot-fellows/runtimes/pull/381), [SDK v1.14 #4757](https://github.com/paritytech/polkadot-sdk/pull/4757)). + #### From [#322](https://github.com/polkadot-fellows/runtimes/pull/322): - Add `claim_assets` extrinsic to `pallet-xcm` ([SDK v1.9 #3403](https://github.com/paritytech/polkadot-sdk/pull/3403)). @@ -46,6 +45,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ### Changed +- Bounties: Remove payout delay ([polkadot-fellows/runtimes#386](https://github.com/polkadot-fellows/runtimes/pull/386)). + #### From [#322](https://github.com/polkadot-fellows/runtimes/pull/322): - AdaptPrice trait is now price controlled ([SDK v1.13 #4521](https://github.com/paritytech/polkadot-sdk/pull/4521)). @@ -63,6 +64,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ### Fixed +- Fix claim queue size ([runtimes#381](https://github.com/polkadot-fellows/runtimes/pull/381), [SDK v1.14 #4691](https://github.com/paritytech/polkadot-sdk/pull/4691)). +- `pallet-referenda`: Ensure to schedule referendas earliest at the next block ([runtimes#381](https://github.com/polkadot-fellows/runtimes/pull/381), [SDK v1.14 #4823](https://github.com/paritytech/polkadot-sdk/pull/4823)). +- Don't partially modify HRMP pages ([runtimes#381](https://github.com/polkadot-fellows/runtimes/pull/381), [SDK v1.14 #4710](https://github.com/paritytech/polkadot-sdk/pull/4710)). + #### From [#322](https://github.com/polkadot-fellows/runtimes/pull/322): - CheckWeight checks for combined extrinsic length and proof size ([SDK v1.12 #4326](https://github.com/paritytech/polkadot-sdk/pull/4326)). @@ -97,6 +102,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ### Removed +- Remove deprecated calls from treasury pallet ([runtimes#381](https://github.com/polkadot-fellows/runtimes/pull/381), [SDK v1.14 #3820](https://github.com/paritytech/polkadot-sdk/pull/3820)). +- Treasury pallet: - remove unused config parameters ([runtimes#381](https://github.com/polkadot-fellows/runtimes/pull/381), [SDK v1.14 #4831](https://github.com/paritytech/polkadot-sdk/pull/4831)). + #### From [#322](https://github.com/polkadot-fellows/runtimes/pull/322): - Deprecate dmp-queue pallet ([SDK v1.13 #4475](https://github.com/paritytech/polkadot-sdk/pull/4475)). From 4104b1739c24e8f1797f684dc863e2519bb4c4cc Mon Sep 17 00:00:00 2001 From: Oliver Tale-Yazdi Date: Wed, 17 Jul 2024 15:09:17 +0200 Subject: [PATCH 13/44] Clippy Signed-off-by: Oliver Tale-Yazdi --- system-parachains/coretime/coretime-kusama/src/coretime.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system-parachains/coretime/coretime-kusama/src/coretime.rs b/system-parachains/coretime/coretime-kusama/src/coretime.rs index e7c5211873..fc8a408e87 100644 --- a/system-parachains/coretime/coretime-kusama/src/coretime.rs +++ b/system-parachains/coretime/coretime-kusama/src/coretime.rs @@ -94,7 +94,7 @@ fn burn_at_relay(stash: &AccountId, value: Balance) -> Result<(), XcmError> { AssetTransactor::can_check_out(&dest, &asset, &dummy_xcm_context)?; let parent_assets = Into::::into(withdrawn) - .reanchored(&dest, &Here.into()) + .reanchored(&dest, &Here) .defensive_map_err(|_| XcmError::ReanchorFailed)?; PolkadotXcm::send_xcm( From 235d14e1a8d43901a606f41523f3472a188e3fe5 Mon Sep 17 00:00:00 2001 From: Oliver Tale-Yazdi Date: Wed, 17 Jul 2024 15:29:57 +0200 Subject: [PATCH 14/44] Clippy Signed-off-by: Oliver Tale-Yazdi --- .../collectives/collectives-polkadot/src/fellowship/mod.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/system-parachains/collectives/collectives-polkadot/src/fellowship/mod.rs b/system-parachains/collectives/collectives-polkadot/src/fellowship/mod.rs index 0bbae69067..0a0ffc8c3c 100644 --- a/system-parachains/collectives/collectives-polkadot/src/fellowship/mod.rs +++ b/system-parachains/collectives/collectives-polkadot/src/fellowship/mod.rs @@ -52,10 +52,7 @@ use sp_runtime::traits::{ use xcm_builder::{AliasesIntoAccountId32, PayOverXcm}; #[cfg(feature = "runtime-benchmarks")] -use crate::{ - impls::benchmarks::{OpenHrmpChannel, PayWithEnsure}, - ExistentialDeposit, -}; +use crate::impls::benchmarks::{OpenHrmpChannel, PayWithEnsure}; /// The Fellowship members' ranks. pub mod ranks { From 522b88194e39c985ef91553a62fab4ab4b73781b Mon Sep 17 00:00:00 2001 From: kianenigma Date: Wed, 17 Jul 2024 15:32:06 +0100 Subject: [PATCH 15/44] update kusama --- Cargo.lock | 873 ++++++++++++++++++++++------------------ Cargo.toml | 1 + relay/kusama/Cargo.toml | 4 + relay/kusama/src/lib.rs | 130 ++++-- 4 files changed, 593 insertions(+), 415 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 049df2a3f6..321040933a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -538,7 +538,7 @@ dependencies = [ "asset-hub-kusama-runtime", "cumulus-primitives-core", "emulated-integration-tests-common", - "frame-support", + "frame-support 35.0.0", "kusama-emulated-chain", "parachains-common", "penpal-emulated-chain", @@ -556,7 +556,7 @@ dependencies = [ "asset-test-utils", "cumulus-pallet-parachain-system", "emulated-integration-tests-common", - "frame-support", + "frame-support 35.0.0", "integration-tests-helpers", "kusama-runtime-constants", "kusama-system-emulated-network", @@ -597,11 +597,11 @@ dependencies = [ "cumulus-primitives-core", "cumulus-primitives-storage-weight-reclaim", "cumulus-primitives-utility", - "frame-benchmarking", + "frame-benchmarking 35.0.0", "frame-executive", "frame-metadata-hash-extension", - "frame-support", - "frame-system", + "frame-support 35.0.0", + "frame-system 35.0.0", "frame-system-benchmarking", "frame-system-rpc-runtime-api", "frame-try-runtime", @@ -672,7 +672,7 @@ dependencies = [ "asset-hub-polkadot-runtime", "cumulus-primitives-core", "emulated-integration-tests-common", - "frame-support", + "frame-support 35.0.0", "parachains-common", "penpal-emulated-chain", "polkadot-emulated-chain", @@ -692,7 +692,7 @@ dependencies = [ "cumulus-pallet-parachain-system", "cumulus-pallet-xcmp-queue", "emulated-integration-tests-common", - "frame-support", + "frame-support 35.0.0", "integration-tests-helpers", "pallet-asset-conversion", "pallet-assets", @@ -730,11 +730,11 @@ dependencies = [ "cumulus-primitives-aura", "cumulus-primitives-core", "cumulus-primitives-utility", - "frame-benchmarking", + "frame-benchmarking 35.0.0", "frame-executive", "frame-metadata-hash-extension", - "frame-support", - "frame-system", + "frame-support 35.0.0", + "frame-system 35.0.0", "frame-system-benchmarking", "frame-system-rpc-runtime-api", "frame-try-runtime", @@ -805,8 +805,8 @@ dependencies = [ "cumulus-pallet-parachain-system", "cumulus-pallet-xcmp-queue", "cumulus-primitives-core", - "frame-support", - "frame-system", + "frame-support 35.0.0", + "frame-system 35.0.0", "pallet-assets", "pallet-balances", "pallet-collator-selection", @@ -834,7 +834,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "81cd608a43b6683340fd39a41b518d55029214d240967e560f5b893498c9ff08" dependencies = [ "cumulus-primitives-core", - "frame-support", + "frame-support 35.0.0", "impl-trait-for-tuples", "log", "pallet-asset-conversion", @@ -1330,7 +1330,7 @@ name = "bp-asset-hub-kusama" version = "1.0.0" dependencies = [ "bp-xcm-bridge-hub-router", - "frame-support", + "frame-support 35.0.0", "parity-scale-codec", "scale-info", "sp-std", @@ -1343,7 +1343,7 @@ name = "bp-asset-hub-polkadot" version = "1.0.0" dependencies = [ "bp-xcm-bridge-hub-router", - "frame-support", + "frame-support 35.0.0", "parity-scale-codec", "scale-info", "sp-std", @@ -1360,8 +1360,8 @@ dependencies = [ "bp-messages", "bp-polkadot-core", "bp-runtime", - "frame-support", - "frame-system", + "frame-support 35.0.0", + "frame-system 35.0.0", "polkadot-primitives", "sp-api", "sp-std", @@ -1374,7 +1374,7 @@ dependencies = [ "bp-bridge-hub-cumulus", "bp-messages", "bp-runtime", - "frame-support", + "frame-support 35.0.0", "kusama-runtime-constants", "polkadot-runtime-constants", "snowbridge-core", @@ -1393,7 +1393,7 @@ dependencies = [ "bp-messages", "bp-polkadot-bulletin", "bp-runtime", - "frame-support", + "frame-support 35.0.0", "kusama-runtime-constants", "polkadot-runtime-constants", "snowbridge-core", @@ -1412,7 +1412,7 @@ checksum = "3445ca2e7a3b5e86f03f5bed0a98edcfbdada59f97b71c7dbace25b60b9d3c4a" dependencies = [ "bp-runtime", "finality-grandpa", - "frame-support", + "frame-support 35.0.0", "parity-scale-codec", "scale-info", "serde", @@ -1431,7 +1431,7 @@ dependencies = [ "bp-header-chain", "bp-polkadot-core", "bp-runtime", - "frame-support", + "frame-support 35.0.0", "sp-api", "sp-std", ] @@ -1444,7 +1444,7 @@ checksum = "75cee5c02e0cf8cfec023231ba3b40922321bab0ab2490ab1f71af5f5d9eaf63" dependencies = [ "bp-header-chain", "bp-runtime", - "frame-support", + "frame-support 35.0.0", "parity-scale-codec", "scale-info", "serde", @@ -1461,7 +1461,7 @@ dependencies = [ "bp-header-chain", "bp-polkadot-core", "bp-runtime", - "frame-support", + "frame-support 35.0.0", "impl-trait-for-tuples", "parity-scale-codec", "scale-info", @@ -1479,7 +1479,7 @@ dependencies = [ "bp-header-chain", "bp-polkadot-core", "bp-runtime", - "frame-support", + "frame-support 35.0.0", "sp-api", "sp-std", ] @@ -1494,8 +1494,8 @@ dependencies = [ "bp-messages", "bp-polkadot-core", "bp-runtime", - "frame-support", - "frame-system", + "frame-support 35.0.0", + "frame-system 35.0.0", "parity-scale-codec", "scale-info", "sp-api", @@ -1511,8 +1511,8 @@ checksum = "330626b279be8405c3d6e712b84af7c8f2636cbe9ca4c1ed7d42937fe933a050" dependencies = [ "bp-messages", "bp-runtime", - "frame-support", - "frame-system", + "frame-support 35.0.0", + "frame-system 35.0.0", "parity-scale-codec", "parity-util-mem", "scale-info", @@ -1530,7 +1530,7 @@ checksum = "cf7d8f513b18231df91ef7da1db32e591006d8193d85c8efa3737f904c6b31e0" dependencies = [ "bp-messages", "bp-runtime", - "frame-support", + "frame-support 35.0.0", "parity-scale-codec", "scale-info", "sp-runtime 38.0.0", @@ -1543,8 +1543,8 @@ version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bae0eaf8669eeb086c5ce8b9a6b5f4fb3f83cd0699c63a6f42236482873c8236" dependencies = [ - "frame-support", - "frame-system", + "frame-support 35.0.0", + "frame-system 35.0.0", "hash-db", "impl-trait-for-tuples", "log", @@ -1610,7 +1610,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "02a1e75deff2d32eeff349a27c062da47d5861b041a0af9f0c24cea9a079bb11" dependencies = [ "cumulus-primitives-core", - "frame-support", + "frame-support 35.0.0", "pallet-message-queue", "parity-scale-codec", "scale-info", @@ -1628,7 +1628,7 @@ dependencies = [ "bridge-hub-common", "bridge-hub-kusama-runtime", "emulated-integration-tests-common", - "frame-support", + "frame-support 35.0.0", "parachains-common", "sp-core 34.0.0", ] @@ -1643,7 +1643,7 @@ dependencies = [ "bridge-hub-kusama-runtime", "cumulus-pallet-xcmp-queue", "emulated-integration-tests-common", - "frame-support", + "frame-support 35.0.0", "hex-literal", "integration-tests-helpers", "kusama-polkadot-system-emulated-network", @@ -1700,11 +1700,11 @@ dependencies = [ "cumulus-primitives-core", "cumulus-primitives-storage-weight-reclaim", "cumulus-primitives-utility", - "frame-benchmarking", + "frame-benchmarking 35.0.0", "frame-executive", "frame-metadata-hash-extension", - "frame-support", - "frame-system", + "frame-support 35.0.0", + "frame-system 35.0.0", "frame-system-benchmarking", "frame-system-rpc-runtime-api", "frame-try-runtime", @@ -1781,7 +1781,7 @@ dependencies = [ "bridge-hub-common", "bridge-hub-polkadot-runtime", "emulated-integration-tests-common", - "frame-support", + "frame-support 35.0.0", "parachains-common", "sp-core 34.0.0", ] @@ -1796,7 +1796,7 @@ dependencies = [ "bridge-hub-polkadot-runtime", "cumulus-pallet-xcmp-queue", "emulated-integration-tests-common", - "frame-support", + "frame-support 35.0.0", "hex-literal", "integration-tests-helpers", "kusama-polkadot-system-emulated-network", @@ -1851,11 +1851,11 @@ dependencies = [ "cumulus-primitives-aura", "cumulus-primitives-core", "cumulus-primitives-utility", - "frame-benchmarking", + "frame-benchmarking 35.0.0", "frame-executive", "frame-metadata-hash-extension", - "frame-support", - "frame-system", + "frame-support 35.0.0", + "frame-system 35.0.0", "frame-system-benchmarking", "frame-system-rpc-runtime-api", "frame-try-runtime", @@ -1941,8 +1941,8 @@ dependencies = [ "bridge-runtime-common", "cumulus-pallet-parachain-system", "cumulus-pallet-xcmp-queue", - "frame-support", - "frame-system", + "frame-support 35.0.0", + "frame-system 35.0.0", "impl-trait-for-tuples", "log", "pallet-balances", @@ -1980,8 +1980,8 @@ dependencies = [ "bp-runtime", "bp-xcm-bridge-hub", "bp-xcm-bridge-hub-router", - "frame-support", - "frame-system", + "frame-support 35.0.0", + "frame-system 35.0.0", "hash-db", "log", "pallet-bridge-grandpa", @@ -2319,7 +2319,7 @@ dependencies = [ "collectives-polkadot-runtime", "cumulus-primitives-core", "emulated-integration-tests-common", - "frame-support", + "frame-support 35.0.0", "parachains-common", "sp-core 34.0.0", ] @@ -2336,7 +2336,7 @@ dependencies = [ "cumulus-pallet-parachain-system", "cumulus-pallet-xcmp-queue", "emulated-integration-tests-common", - "frame-support", + "frame-support 35.0.0", "integration-tests-helpers", "pallet-asset-rate", "pallet-assets", @@ -2372,11 +2372,11 @@ dependencies = [ "cumulus-primitives-aura", "cumulus-primitives-core", "cumulus-primitives-utility", - "frame-benchmarking", + "frame-benchmarking 35.0.0", "frame-executive", "frame-metadata-hash-extension", - "frame-support", - "frame-system", + "frame-support 35.0.0", + "frame-system 35.0.0", "frame-system-benchmarking", "frame-system-rpc-runtime-api", "frame-try-runtime", @@ -2583,11 +2583,11 @@ dependencies = [ "cumulus-primitives-core", "cumulus-primitives-storage-weight-reclaim", "cumulus-primitives-utility", - "frame-benchmarking", + "frame-benchmarking 35.0.0", "frame-executive", "frame-metadata-hash-extension", - "frame-support", - "frame-system", + "frame-support 35.0.0", + "frame-system 35.0.0", "frame-system-benchmarking", "frame-system-rpc-runtime-api", "frame-try-runtime", @@ -2877,8 +2877,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "52088d88534bd04ea251c030af1fef69845d29ed4fc9be399c1fbd5a311bea61" dependencies = [ "cumulus-pallet-parachain-system", - "frame-support", - "frame-system", + "frame-support 35.0.0", + "frame-system 35.0.0", "pallet-aura", "pallet-timestamp", "parity-scale-codec", @@ -2896,9 +2896,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "162f3379818ae6493b842b5c603010827d3ea5b7093070acb5ab12f824e168fc" dependencies = [ "cumulus-primitives-core", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "parity-scale-codec", "scale-info", @@ -2920,9 +2920,9 @@ dependencies = [ "cumulus-primitives-parachain-inherent", "cumulus-primitives-proof-size-hostfunction", "environmental", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "impl-trait-for-tuples", "log", "pallet-message-queue", @@ -2963,9 +2963,9 @@ version = "16.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5d45ca03e091945ecbb293df36823202ce3eba6133454968bf54e3f82c1b58ee" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "pallet-session", "parity-scale-codec", "sp-runtime 38.0.0", @@ -2979,8 +2979,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dccf061aecc7c4b393c6586a0d95900bc0dfc8ac9298313a608d2389bf7f8de2" dependencies = [ "cumulus-primitives-core", - "frame-support", - "frame-system", + "frame-support 35.0.0", + "frame-system 35.0.0", "parity-scale-codec", "scale-info", "sp-io 37.0.0", @@ -2998,9 +2998,9 @@ dependencies = [ "bounded-collections", "bp-xcm-bridge-hub-router", "cumulus-primitives-core", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "pallet-message-queue", "parity-scale-codec", @@ -3087,8 +3087,8 @@ dependencies = [ "cumulus-primitives-core", "cumulus-primitives-proof-size-hostfunction", "docify", - "frame-support", - "frame-system", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "parity-scale-codec", "scale-info", @@ -3103,7 +3103,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "192d7917d70fdb0998311df31430bd28408af9abce79a2245efbf511a8fa4671" dependencies = [ "cumulus-primitives-core", - "frame-support", + "frame-support 35.0.0", "log", "pallet-asset-conversion", "parity-scale-codec", @@ -3668,7 +3668,7 @@ dependencies = [ "cumulus-pallet-parachain-system", "cumulus-pallet-xcmp-queue", "cumulus-primitives-core", - "frame-support", + "frame-support 35.0.0", "pallet-assets", "pallet-balances", "pallet-bridge-messages", @@ -3712,8 +3712,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f912501176bc6c3594ff9f1e60994d99faa41bd90395866d7aed87214bb5a3a4" dependencies = [ "encointer-primitives", - "frame-support", - "frame-system", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "pallet-asset-tx-payment", "pallet-encointer-balances", @@ -3729,7 +3729,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0d0708f366a77b08ec7e4e0b5977294d1498201c21fe560ddb10a714eddf9ca1" dependencies = [ "encointer-primitives", - "frame-support", + "frame-support 35.0.0", "parity-scale-codec", "scale-info", "sp-api", @@ -3762,11 +3762,11 @@ dependencies = [ "encointer-balances-tx-payment", "encointer-balances-tx-payment-rpc-runtime-api", "encointer-primitives", - "frame-benchmarking", + "frame-benchmarking 35.0.0", "frame-executive", "frame-metadata-hash-extension", - "frame-support", - "frame-system", + "frame-support 35.0.0", + "frame-system 35.0.0", "frame-system-benchmarking", "frame-system-rpc-runtime-api", "frame-try-runtime", @@ -3851,7 +3851,7 @@ dependencies = [ "bs58 0.5.0", "crc", "ep-core", - "frame-support", + "frame-support 35.0.0", "log", "parity-scale-codec", "scale-info", @@ -4245,9 +4245,35 @@ version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ad6366773db71a556710652c0560300dc938252e009d4d2c1eb9d6e5b38e0860" dependencies = [ - "frame-support", + "frame-support 35.0.0", "frame-support-procedural", - "frame-system", + "frame-system 35.0.0", + "linregress", + "log", + "parity-scale-codec", + "paste", + "scale-info", + "serde", + "sp-api", + "sp-application-crypto 37.0.0", + "sp-core 34.0.0", + "sp-io 37.0.0", + "sp-runtime 38.0.0", + "sp-runtime-interface 28.0.0", + "sp-std", + "sp-storage 21.0.0", + "static_assertions", +] + +[[package]] +name = "frame-benchmarking" +version = "36.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "709b26657ebbba53dc7bb616577375ca462b20fef1b00e8d9b20d2435e87f7bc" +dependencies = [ + "frame-support 36.0.0", + "frame-support-procedural", + "frame-system 36.0.0", "linregress", "log", "parity-scale-codec", @@ -4284,8 +4310,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b3c089c16a066dfb5042cadc27c01738d93258e8f5f7ef7a83b4c8661616d1ac" dependencies = [ "frame-election-provider-solution-type", - "frame-support", - "frame-system", + "frame-support 35.0.0", + "frame-system 35.0.0", "parity-scale-codec", "scale-info", "sp-arithmetic 26.0.0", @@ -4302,8 +4328,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9287dd6070c0ca90b42c9b4fc44f2bc91adf08b73c11c74484c416f0cc9abe04" dependencies = [ "aquamarine", - "frame-support", - "frame-system", + "frame-support 35.0.0", + "frame-system 35.0.0", "frame-try-runtime", "log", "parity-scale-codec", @@ -4346,8 +4372,8 @@ checksum = "ba1fa15dc90efe948898c06a3be111628230db100ffa2907e662062e9c9d1abd" dependencies = [ "array-bytes", "docify", - "frame-support", - "frame-system", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "parity-scale-codec", "scale-info", @@ -4419,11 +4445,53 @@ dependencies = [ "tt-call", ] +[[package]] +name = "frame-support" +version = "36.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "512b517645f29d76c79e4c97bf8b0f4dcb6708a2af3be24b1956085dcdcf6ce5" +dependencies = [ + "aquamarine", + "array-bytes", + "bitflags 1.3.2", + "docify", + "environmental", + "frame-metadata 16.0.0", + "frame-support-procedural", + "impl-trait-for-tuples", + "k256", + "log", + "macro_magic", + "parity-scale-codec", + "paste", + "scale-info", + "serde", + "serde_json", + "smallvec", + "sp-api", + "sp-arithmetic 26.0.0", + "sp-core 34.0.0", + "sp-crypto-hashing-proc-macro", + "sp-debug-derive", + "sp-genesis-builder", + "sp-inherents", + "sp-io 37.0.0", + "sp-metadata-ir", + "sp-runtime 38.0.0", + "sp-staking", + "sp-state-machine 0.42.0", + "sp-std", + "sp-tracing 17.0.0", + "sp-weights 31.0.0", + "static_assertions", + "tt-call", +] + [[package]] name = "frame-support-procedural" -version = "30.0.0" +version = "30.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4328bc3667947393eabd1234ae2f07f1c71b63f57b41344db3d9eafe3384adfd" +checksum = "fd94af68373e179c32c360b3c280497a9cf0f45a4f47f0ee6539a6c6c9cf2343" dependencies = [ "Inflector", "cfg-expr", @@ -4471,7 +4539,28 @@ checksum = "6baa2218d90c5a23db08dd0188cfe6aa0af7d36fb9b0fc2f73bc5c4abe4dd812" dependencies = [ "cfg-if", "docify", - "frame-support", + "frame-support 35.0.0", + "log", + "parity-scale-codec", + "scale-info", + "serde", + "sp-core 34.0.0", + "sp-io 37.0.0", + "sp-runtime 38.0.0", + "sp-std", + "sp-version", + "sp-weights 31.0.0", +] + +[[package]] +name = "frame-system" +version = "36.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2c2f10b6943da5d00f45b1b07b101bea49647d0e6c7e755b2852fd947072d7ee" +dependencies = [ + "cfg-if", + "docify", + "frame-support 36.0.0", "log", "parity-scale-codec", "scale-info", @@ -4490,9 +4579,9 @@ version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "be45f57aefef5fa97fce1482dc1ede197620d8b0bb588b3cec8d84f32557cf8b" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "parity-scale-codec", "scale-info", "sp-core 34.0.0", @@ -4516,7 +4605,7 @@ version = "0.41.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8f2b9c95e0b38d713a46bb71bc395d4ed067c7a0f5370e13282c07c91fd1ec0d" dependencies = [ - "frame-support", + "frame-support 35.0.0", "parity-scale-codec", "sp-api", "sp-runtime 38.0.0", @@ -4757,10 +4846,10 @@ dependencies = [ "cumulus-pallet-parachain-system", "cumulus-pallet-xcm", "cumulus-primitives-core", - "frame-benchmarking", + "frame-benchmarking 35.0.0", "frame-executive", - "frame-support", - "frame-system", + "frame-support 35.0.0", + "frame-system 35.0.0", "frame-system-benchmarking", "frame-system-rpc-runtime-api", "frame-try-runtime", @@ -5728,7 +5817,7 @@ dependencies = [ name = "kusama-runtime-constants" version = "1.0.0" dependencies = [ - "frame-support", + "frame-support 35.0.0", "polkadot-primitives", "polkadot-runtime-common", "smallvec", @@ -7323,9 +7412,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "57abf7d4ed855673270296956b1f02e80d2d5b30477fb7b75ced2ebb40a0d6ef" dependencies = [ "array-bytes", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "pallet-collective", "pallet-identity", @@ -7344,9 +7433,9 @@ version = "17.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0e9f1c4496f1c366a3ee01b38ba968589db41f5d44c41331111ff5a07964dbde" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "parity-scale-codec", "scale-info", @@ -7364,8 +7453,8 @@ version = "17.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "59b413508fc0745307d01c55e686cf00d67f09b6652b7db344b69da305feaae0" dependencies = [ - "frame-support", - "frame-system", + "frame-support 35.0.0", + "frame-system 35.0.0", "pallet-asset-conversion", "pallet-transaction-payment", "parity-scale-codec", @@ -7380,9 +7469,9 @@ version = "14.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e83f523d209396ba42743008b64fe021eb6411a8d5ac868978636f0341feacc4" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "parity-scale-codec", "scale-info", "sp-core 34.0.0", @@ -7396,9 +7485,9 @@ version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7686ab6ba85afc432794a9dbc3e7399cb1a3b1bcfdd487ce0eb2aa81c11c2497" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "pallet-transaction-payment", "parity-scale-codec", "scale-info", @@ -7415,9 +7504,9 @@ version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5a58bb6d37a23df83b861e148129dc0130a4b80291f2c9dda3491989ec4c3662" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "parity-scale-codec", "scale-info", @@ -7432,8 +7521,8 @@ version = "34.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "638e3cbb539540e45503f5ae756b6bbb4e6085269d025afa273e684782f514ac" dependencies = [ - "frame-support", - "frame-system", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "pallet-timestamp", "parity-scale-codec", @@ -7450,8 +7539,8 @@ version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3a5fafb21222ab509f0d9d4bda52730eb342574a0733321e1105e14d5454d6d5" dependencies = [ - "frame-support", - "frame-system", + "frame-support 35.0.0", + "frame-system 35.0.0", "pallet-session", "parity-scale-codec", "scale-info", @@ -7467,8 +7556,8 @@ version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b134d987dfc6f2ddc3b4470672318fd59e740868485a25ec15ba909c42e6a622" dependencies = [ - "frame-support", - "frame-system", + "frame-support 35.0.0", + "frame-system 35.0.0", "impl-trait-for-tuples", "parity-scale-codec", "scale-info", @@ -7482,9 +7571,9 @@ version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "84fa5a4406cd9f43babb90ce6e8f1598d36695c86c8e35094ec4cbf3224086fd" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "pallet-authorship", "pallet-session", @@ -7509,10 +7598,10 @@ checksum = "381526d7d765b4c895efa9da7c7f7b1965f251de6fe30757a63f535a021f2b69" dependencies = [ "aquamarine", "docify", - "frame-benchmarking", + "frame-benchmarking 35.0.0", "frame-election-provider-support", - "frame-support", - "frame-system", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "pallet-balances", "parity-scale-codec", @@ -7531,9 +7620,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8dfe056082a1d857b0731572d7f9a96d98356b8610b258814cf75a55cd43c435" dependencies = [ "docify", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "parity-scale-codec", "scale-info", @@ -7547,8 +7636,8 @@ version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6005abf441b2c6fc21505f0d3e00a66e40759ddff0311834f3f8ae2c5874b0e5" dependencies = [ - "frame-support", - "frame-system", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "pallet-authorship", "pallet-session", @@ -7570,8 +7659,8 @@ checksum = "effb0467f4d9b43be918a6e0ad419c539cd55dceef4c70000cb373701dc3d029" dependencies = [ "array-bytes", "binary-merkle-tree", - "frame-support", - "frame-system", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "pallet-beefy", "pallet-mmr", @@ -7594,9 +7683,9 @@ version = "34.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "84e118557f0d4e863a243f2c91ffd4fce624c5afc42b6bd0e04e6f7cc767afd7" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "pallet-treasury", "parity-scale-codec", @@ -7617,9 +7706,9 @@ dependencies = [ "bp-runtime", "bp-test-utils", "finality-grandpa", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "parity-scale-codec", "scale-info", @@ -7637,9 +7726,9 @@ checksum = "6af9efd8200ffe03ad35043ec4b9a9ce26e0fd015737949fd153764c38bf35dd" dependencies = [ "bp-messages", "bp-runtime", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "num-traits", "parity-scale-codec", @@ -7658,9 +7747,9 @@ dependencies = [ "bp-parachains", "bp-polkadot-core", "bp-runtime", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "pallet-bridge-grandpa", "parity-scale-codec", @@ -7679,9 +7768,9 @@ dependencies = [ "bp-messages", "bp-relayers", "bp-runtime", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "pallet-bridge-messages", "parity-scale-codec", @@ -7698,9 +7787,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4f369dabb59f4ec26bedb86f294f71b257e4d2e998a53693e45e711bc573627d" dependencies = [ "bitvec", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "parity-scale-codec", "scale-info", @@ -7717,9 +7806,9 @@ version = "34.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b2eefafbc018dc5a69cec5b1a9bbbc02fd3191464825e0bd5f899d407dfd03b9" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "pallet-bounties", "pallet-treasury", @@ -7737,9 +7826,9 @@ version = "16.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4b78dc5ba93d88d019eecb4d77f1ec95d8c288d9e9c4e039ab8a2dea039deea4" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "pallet-authorship", "pallet-balances", @@ -7758,9 +7847,9 @@ version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "64984961a8667e8a16d2445fc98ac3229f9d01def0c1ae1e6f9ce859ec0fedbb" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "parity-scale-codec", "scale-info", @@ -7777,9 +7866,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "242927ab508e5f1cb63aa851b7f5662f6886adb688c57458e05449c8ad0376dd" dependencies = [ "assert_matches", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "parity-scale-codec", "scale-info", "serde", @@ -7794,9 +7883,9 @@ version = "19.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "775266859860d3deb767caed33f6147eee1a0ef68386da033f33ab45cb4c913f" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "pallet-ranked-collective", "parity-scale-codec", @@ -7814,8 +7903,8 @@ version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "72cfda2549b70198f2cdee30f8d72cae469a692f83b3072015062bc2dd6f473b" dependencies = [ - "frame-support", - "frame-system", + "frame-support 35.0.0", + "frame-system 35.0.0", "parity-scale-codec", "scale-info", "sp-runtime 38.0.0", @@ -7829,10 +7918,10 @@ version = "34.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f9cae34d714e3410bcdd932ce0dc927997125e1eaa083dacdeb700439f22b67b" dependencies = [ - "frame-benchmarking", + "frame-benchmarking 35.0.0", "frame-election-provider-support", - "frame-support", - "frame-system", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "pallet-election-provider-support-benchmarking", "parity-scale-codec", @@ -7853,9 +7942,9 @@ version = "34.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a5153f459dd839fceb81e1d1df9413cc55f83b55fa110485fdb05f442015fb57" dependencies = [ - "frame-benchmarking", + "frame-benchmarking 35.0.0", "frame-election-provider-support", - "frame-system", + "frame-system 35.0.0", "parity-scale-codec", "sp-npos-elections", "sp-runtime 38.0.0", @@ -7870,9 +7959,9 @@ checksum = "6a0ffd2d4a106903298ead5eec236d9dae348ce73db4b6d32690543e178f4b11" dependencies = [ "approx", "encointer-primitives", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "pallet-asset-tx-payment", "pallet-transaction-payment", @@ -7889,9 +7978,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "16a3f0caa065fbb9a7274945d35d14b79a27263acb3ad6739f32e349e0e6ca94" dependencies = [ "encointer-primitives", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "pallet-encointer-communities", "parity-scale-codec", @@ -7907,7 +7996,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8f9abb60a54e20083a48be6a14fb267262efe3b1712a6ce9aaf65a32b5791f58" dependencies = [ "encointer-primitives", - "frame-support", + "frame-support 35.0.0", "parity-scale-codec", "sp-api", "sp-std", @@ -7922,9 +8011,9 @@ dependencies = [ "encointer-ceremonies-assignment", "encointer-meetup-validation", "encointer-primitives", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "pallet-encointer-balances", "pallet-encointer-communities", @@ -7946,7 +8035,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6d0c64fe6380975c85c8ba5da27e1c6cc9bb1f1a00070cf8a6e827714fd0d1df" dependencies = [ "encointer-primitives", - "frame-support", + "frame-support 35.0.0", "parity-scale-codec", "sp-api", "sp-std", @@ -7959,9 +8048,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "95b7b944c3b3a26225f0925f41010b250fb0b168f1d37f57483c9b73c69ff944" dependencies = [ "encointer-primitives", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "pallet-encointer-balances", "pallet-encointer-scheduler", @@ -7992,9 +8081,9 @@ checksum = "f45135e33671b00a9f00cb87e2364c68903a166b43b5e301b43c7624e045158b" dependencies = [ "approx", "encointer-primitives", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "pallet-encointer-communities", "pallet-encointer-reputation-commitments", @@ -8013,9 +8102,9 @@ checksum = "1be4add4c2fa83d305e40bdf8167d998dc6fdd6369f1b7c50687a728fb6df5e4" dependencies = [ "approx", "encointer-primitives", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "pallet-encointer-ceremonies", "pallet-encointer-communities", @@ -8035,9 +8124,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d760a2d2922618b1750ccd641e8d1b441d6f38dad5db347de5d3f27dddd8f647" dependencies = [ "encointer-primitives", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "impl-trait-for-tuples", "log", "pallet-timestamp", @@ -8054,10 +8143,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "aad27a480c5d4a4705808b8267d38540d5dfeee50d1e7d5a1684d7bbf98a4aa2" dependencies = [ "docify", - "frame-benchmarking", + "frame-benchmarking 35.0.0", "frame-election-provider-support", - "frame-support", - "frame-system", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "parity-scale-codec", "scale-info", @@ -8074,9 +8163,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e8f9b0613037a9f1f1391a2991cc02f96c1cf158b7f266a281ba4cd54a83ad04" dependencies = [ "blake2 0.10.6", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "parity-scale-codec", "scale-info", @@ -8092,9 +8181,9 @@ version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9cc1bf0bd43c8434b46af7de18f8863bfbbf56efcf8d340b238b511a52cfa03c" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "pallet-authorship", "pallet-session", @@ -8117,9 +8206,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0ad181bf900fcea894911421496e05c4b2bc2dadea8c7d744af091a525af3a48" dependencies = [ "enumflags2", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "parity-scale-codec", "scale-info", @@ -8134,9 +8223,9 @@ version = "34.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "41a23e720204fde0302206016aaf1e095ff808ff1a434ec6507d87a40258bfe1" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "pallet-authorship", "parity-scale-codec", @@ -8155,9 +8244,9 @@ version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "639b5e46336d35cb888325da0294e54e558d26be45f767ff26ddfca42b709801" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "parity-scale-codec", "scale-info", "sp-core 34.0.0", @@ -8173,8 +8262,8 @@ version = "23.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bdbcd8635732846a585ee77ecd038e2701e7061ba89eb758d999d52931b02235" dependencies = [ - "frame-support", - "frame-system", + "frame-support 35.0.0", + "frame-system 35.0.0", "parity-scale-codec", "safe-mix", "scale-info", @@ -8188,9 +8277,9 @@ version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4d48c79ce463ee54a9c6bf4ea82405499abc24999fa64f4a4e8b6336829d68c7" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "parity-scale-codec", "scale-info", @@ -8207,9 +8296,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8913838f2059495cd9f0c3f9a402346b2f00287b077f344a1b84f850a164d084" dependencies = [ "environmental", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "parity-scale-codec", "scale-info", @@ -8227,9 +8316,9 @@ version = "34.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e836e2f38af303d9ae4c3b8ca512afe81279f2d6922223a8f571478740d09fb3" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "parity-scale-codec", "scale-info", @@ -8246,9 +8335,9 @@ version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2acdab77a60e7fbf76239ad530d00029fa7f9bc2194155c3356221aa76d19868" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "parity-scale-codec", "scale-info", @@ -8263,9 +8352,9 @@ version = "17.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a37b1df43074592e190bc0a9ba443e7520e07db10de8c09aa73b22197a56d77a" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "pallet-assets", "pallet-nfts", @@ -8282,9 +8371,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "49c68c96f03ef2dd6c23072f315d6ef3e1b4664795f29aab5962db8cc9062ad3" dependencies = [ "enumflags2", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "parity-scale-codec", "scale-info", @@ -8312,9 +8401,9 @@ version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6955efc279e63f4463ea29b45c81de013faa243e45a0155b0519df07d5e0a1fb" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "parity-scale-codec", "scale-info", "sp-arithmetic 26.0.0", @@ -8329,8 +8418,8 @@ version = "32.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7faf96228372dcaf4c01e53ba59248b59a4a9ec994f30bee373110900f34c7bc" dependencies = [ - "frame-support", - "frame-system", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "pallet-balances", "parity-scale-codec", @@ -8349,10 +8438,10 @@ version = "33.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "91b308c436d36e4159ec617e9e03e20a54aa4c2cd99729a411b969c1d9062392" dependencies = [ - "frame-benchmarking", + "frame-benchmarking 35.0.0", "frame-election-provider-support", - "frame-support", - "frame-system", + "frame-support 35.0.0", + "frame-system 35.0.0", "pallet-bags-list", "pallet-delegated-staking", "pallet-nomination-pools", @@ -8383,8 +8472,8 @@ version = "34.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d2edc30910e938ef9df027aad650ea03644d0a33a604cec2267fce28951c0530" dependencies = [ - "frame-support", - "frame-system", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "pallet-balances", "parity-scale-codec", @@ -8401,10 +8490,10 @@ version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c605b2a3cf4eab08293ceb8f16a9352fcd71a27f0ab0dbdd8380946ab5800db6" dependencies = [ - "frame-benchmarking", + "frame-benchmarking 35.0.0", "frame-election-provider-support", - "frame-support", - "frame-system", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "pallet-babe", "pallet-balances", @@ -8420,15 +8509,34 @@ dependencies = [ "sp-std", ] +[[package]] +name = "pallet-parameters" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "58d9a81a93202105a660e6aa3d3f81638bdd109ca0497f3e528529cd52d034db" +dependencies = [ + "docify", + "frame-benchmarking 36.0.0", + "frame-support 36.0.0", + "frame-system 36.0.0", + "parity-scale-codec", + "paste", + "scale-info", + "serde", + "sp-core 34.0.0", + "sp-runtime 38.0.0", + "sp-std", +] + [[package]] name = "pallet-preimage" version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e17c6fa28b38ef4cf33203709e3610c89aa8299900c7d0096bdec7b9e90ab2d3" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "parity-scale-codec", "scale-info", @@ -8444,9 +8552,9 @@ version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "279b23df802b3edb41d04836cc2f97d59c358b3bd43d39b98fd1fe2e03204b87" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "parity-scale-codec", "scale-info", "sp-io 37.0.0", @@ -8460,9 +8568,9 @@ version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "aac3413b3e5620c0b83bc32855ea16f0c9381fea96b85ffbe9490cb648815c96" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "impl-trait-for-tuples", "log", "parity-scale-codec", @@ -8480,9 +8588,9 @@ version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9fe5112bc7fe0282330e01a9c4fb58e42ed9030575eaf8479d54e3d6bd36f889" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "parity-scale-codec", "scale-info", "sp-io 37.0.0", @@ -8497,9 +8605,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7c969360bab41c9d50cd99755408690f23241424c3cc15935dd6c47206fc9c23" dependencies = [ "assert_matches", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "parity-scale-codec", "scale-info", @@ -8516,9 +8624,9 @@ version = "20.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f82cc83b8982f352ba0a83126d19e04f9bef069dc6ec4c1770ac525622f88eec" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "pallet-ranked-collective", "parity-scale-codec", @@ -8537,9 +8645,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "05840a0a1c517438d21873ad2279fea914eec836e1d76d15f29548a8ace6c707" dependencies = [ "docify", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "parity-scale-codec", "scale-info", @@ -8555,8 +8663,8 @@ version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7c77e7b0716fdf3cf8ecfcc872d583c972c4c9706842709a1112f26c51f701ae" dependencies = [ - "frame-support", - "frame-system", + "frame-support 35.0.0", + "frame-system 35.0.0", "impl-trait-for-tuples", "log", "pallet-timestamp", @@ -8578,9 +8686,9 @@ version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "42b450a525ea08dcdf4b3f33dce8796b2161c5c7917b99fba720d2fcd09b421b" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "pallet-session", "pallet-staking", "parity-scale-codec", @@ -8596,9 +8704,9 @@ version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "236344aaf3ab6d088364aab2f284de04628bf1b7a187686347dbec7ecd0b8cc9" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "parity-scale-codec", "rand_chacha 0.3.1", @@ -8615,10 +8723,10 @@ version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e8f63dce0732789c9222056a3292576b7843aa1c7eb5e7e0fcb158dbab8f4455" dependencies = [ - "frame-benchmarking", + "frame-benchmarking 35.0.0", "frame-election-provider-support", - "frame-support", - "frame-system", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "pallet-authorship", "pallet-session", @@ -8660,9 +8768,9 @@ version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2fdd28b85f5c5beb7659a0dee158155b6114dcc747c139f247df944cca132df2" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "parity-scale-codec", "scale-info", @@ -8679,9 +8787,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d15062b0caa6194e3ab13a10a500b2ed4b9d5915bf30dda18833e1c3bbbf6e85" dependencies = [ "docify", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "parity-scale-codec", "scale-info", "sp-io 37.0.0", @@ -8696,9 +8804,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "34a42af51e32d3ea442e9aaabb935976e4154f89f3604bfb892a316e8d77c0d4" dependencies = [ "docify", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "parity-scale-codec", "scale-info", @@ -8716,8 +8824,8 @@ version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "349e56fa9f8c4093d912f0654e37b57ae628ad4b4fea67d9f3373e5dfcab2bcc" dependencies = [ - "frame-support", - "frame-system", + "frame-support 35.0.0", + "frame-system 35.0.0", "parity-scale-codec", "scale-info", "serde", @@ -8747,9 +8855,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1317444c1dd38d7281db919b88331a9a76b483450a78f800d1cb76e21ce33563" dependencies = [ "docify", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "impl-trait-for-tuples", "pallet-balances", "parity-scale-codec", @@ -8766,9 +8874,9 @@ version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bb356a869d24f826d0887f9953f296f0b1f1e3210f84beedc83d858845c5be93" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "parity-scale-codec", "scale-info", @@ -8782,9 +8890,9 @@ version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "489431d3b751d07853119fd250145273ea050e84565b3435b5b19c6d3f622b56" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "parity-scale-codec", "scale-info", "sp-core 34.0.0", @@ -8799,9 +8907,9 @@ version = "35.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "79641f9c6720a5f1705a0b7464c13a6cf4c0a3d3c9db523ed73c345130bcaadd" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "parity-scale-codec", "scale-info", @@ -8815,9 +8923,9 @@ version = "34.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7a8196f8403117eab3042f49bec96b80290e9bef678017073f62b409e5311476" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "parity-scale-codec", "scale-info", "sp-api", @@ -8832,9 +8940,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "870c71f937c78c722fc91a8f8fdf7bc0c74590eb01413eb17c5a72c405c9f134" dependencies = [ "bounded-collections", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "pallet-balances", "parity-scale-codec", @@ -8856,9 +8964,9 @@ version = "14.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "19da3779debfcbaecda285e8d240d0415cc7df7ff0b75bcaa227dbc2fa0cdb5c" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "parity-scale-codec", "scale-info", @@ -8880,8 +8988,8 @@ dependencies = [ "bp-runtime", "bp-xcm-bridge-hub", "bridge-runtime-common", - "frame-support", - "frame-system", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "pallet-bridge-messages", "parity-scale-codec", @@ -8901,9 +9009,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "806996c671acfb8640cb7a29de16c58092b81a6e15b22e3a3fffe0c2a4845b03" dependencies = [ "bp-xcm-bridge-hub-router", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "parity-scale-codec", "scale-info", @@ -8922,8 +9030,8 @@ checksum = "41525e5ddae2ae87949323fce5ba5e039ac5ceea2a76bcf34c6e794c111134f7" dependencies = [ "cumulus-primitives-core", "cumulus-primitives-utility", - "frame-support", - "frame-system", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "pallet-asset-tx-payment", "pallet-assets", @@ -8957,8 +9065,8 @@ dependencies = [ "cumulus-primitives-core", "cumulus-primitives-parachain-inherent", "cumulus-test-relay-sproof-builder", - "frame-support", - "frame-system", + "frame-support 35.0.0", + "frame-system 35.0.0", "pallet-balances", "pallet-collator-selection", "pallet-session", @@ -9177,7 +9285,7 @@ version = "1.0.0" dependencies = [ "cumulus-primitives-core", "emulated-integration-tests-common", - "frame-support", + "frame-support 35.0.0", "kusama-emulated-chain", "parachains-common", "penpal-runtime", @@ -9200,10 +9308,10 @@ dependencies = [ "cumulus-pallet-xcmp-queue", "cumulus-primitives-core", "cumulus-primitives-utility", - "frame-benchmarking", + "frame-benchmarking 35.0.0", "frame-executive", - "frame-support", - "frame-system", + "frame-support 35.0.0", + "frame-system 35.0.0", "frame-system-benchmarking", "frame-system-rpc-runtime-api", "frame-try-runtime", @@ -9255,7 +9363,7 @@ version = "1.0.0" dependencies = [ "cumulus-primitives-core", "emulated-integration-tests-common", - "frame-support", + "frame-support 35.0.0", "kusama-emulated-chain", "parachains-common", "people-kusama-runtime", @@ -9269,7 +9377,7 @@ dependencies = [ "asset-test-utils", "cumulus-pallet-parachain-system", "emulated-integration-tests-common", - "frame-support", + "frame-support 35.0.0", "kusama-runtime-constants", "kusama-system-emulated-network", "pallet-balances", @@ -9300,11 +9408,11 @@ dependencies = [ "cumulus-primitives-storage-weight-reclaim", "cumulus-primitives-utility", "enumflags2", - "frame-benchmarking", + "frame-benchmarking 35.0.0", "frame-executive", "frame-metadata-hash-extension", - "frame-support", - "frame-system", + "frame-support 35.0.0", + "frame-system 35.0.0", "frame-system-benchmarking", "frame-system-rpc-runtime-api", "frame-try-runtime", @@ -9360,7 +9468,7 @@ version = "1.0.0" dependencies = [ "cumulus-primitives-core", "emulated-integration-tests-common", - "frame-support", + "frame-support 35.0.0", "parachains-common", "people-polkadot-runtime", "polkadot-emulated-chain", @@ -9374,7 +9482,7 @@ dependencies = [ "asset-test-utils", "cumulus-pallet-parachain-system", "emulated-integration-tests-common", - "frame-support", + "frame-support 35.0.0", "pallet-balances", "pallet-identity", "pallet-message-queue", @@ -9404,11 +9512,11 @@ dependencies = [ "cumulus-primitives-core", "cumulus-primitives-utility", "enumflags2", - "frame-benchmarking", + "frame-benchmarking 35.0.0", "frame-executive", "frame-metadata-hash-extension", - "frame-support", - "frame-system", + "frame-support 35.0.0", + "frame-system 35.0.0", "frame-system-benchmarking", "frame-system-rpc-runtime-api", "frame-try-runtime", @@ -9681,13 +9789,13 @@ name = "polkadot-runtime" version = "1.0.0" dependencies = [ "binary-merkle-tree", - "frame-benchmarking", + "frame-benchmarking 35.0.0", "frame-election-provider-support", "frame-executive", "frame-metadata-hash-extension", "frame-remote-externalities", - "frame-support", - "frame-system", + "frame-support 35.0.0", + "frame-system 35.0.0", "frame-system-benchmarking", "frame-system-rpc-runtime-api", "frame-try-runtime", @@ -9782,10 +9890,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "929499dd53b664110a787bd700030c0d5aa55ff5732556007e052711920933e8" dependencies = [ "bitvec", - "frame-benchmarking", + "frame-benchmarking 35.0.0", "frame-election-provider-support", - "frame-support", - "frame-system", + "frame-support 35.0.0", + "frame-system 35.0.0", "impl-trait-for-tuples", "libsecp256k1", "log", @@ -9831,7 +9939,7 @@ dependencies = [ name = "polkadot-runtime-constants" version = "1.0.0" dependencies = [ - "frame-support", + "frame-support 35.0.0", "polkadot-primitives", "polkadot-runtime-common", "smallvec", @@ -9848,7 +9956,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "17496ddf5f7bc75db80d8b5c8183a1fbc64d984c39238055c67bd45469d97e37" dependencies = [ "bs58 0.5.0", - "frame-benchmarking", + "frame-benchmarking 35.0.0", "parity-scale-codec", "polkadot-primitives", "sp-std", @@ -9864,9 +9972,9 @@ dependencies = [ "bitflags 1.3.2", "bitvec", "derive_more", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "impl-trait-for-tuples", "log", "pallet-authority-discovery", @@ -10338,7 +10446,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "22505a5c94da8e3b7c2996394d1c933236c4d743e81a410bcca4e6989fc066a4" dependencies = [ "bytes", - "heck 0.4.1", + "heck 0.5.0", "itertools 0.12.1", "log", "multimap", @@ -12451,7 +12559,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6534a4c0a1b5b16003977498df47eba13431c18d11315cdde16675e619d4ed2a" dependencies = [ "byte-slice-cast", - "frame-support", + "frame-support 35.0.0", "hex", "parity-scale-codec", "rlp", @@ -12474,8 +12582,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d118d73d30ad61271306cfb9cfd2f776779508858ede35500aabccff60651f64" dependencies = [ "ethabi-decode", - "frame-support", - "frame-system", + "frame-support 35.0.0", + "frame-system 35.0.0", "hex-literal", "parity-scale-codec", "polkadot-parachain-primitives", @@ -12545,7 +12653,7 @@ version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8b52ffc85ffa4d58afb0997776ac407366c09e1471a114ce857a3506bc89ecd5" dependencies = [ - "frame-support", + "frame-support 35.0.0", "parity-scale-codec", "snowbridge-core", "snowbridge-outbound-queue-merkle-tree", @@ -12559,9 +12667,9 @@ version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7a9f974bdf94ade45c6fe5b09a197e48b9ccd17825830d21e0b8d20b4729a2f9" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "hex-literal", "log", "pallet-timestamp", @@ -12600,9 +12708,9 @@ checksum = "c4bd73b19ae8b7ff286f1bbd9fce57f5370d28e2fdf3da7b8d891a24101eea03" dependencies = [ "alloy-primitives", "alloy-sol-types", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "hex-literal", "log", "pallet-balances", @@ -12642,9 +12750,9 @@ checksum = "5c3b64edbfc4438c3200d429ad5835e6106af4ab43d7c9392ef571ee9c4f381e" dependencies = [ "bridge-hub-common", "ethabi-decode", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "parity-scale-codec", "scale-info", "serde", @@ -12663,9 +12771,9 @@ version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "94333776d87827ffa381d557cb61b14d7a5aabd0fc842a4da37912e85deb09bf" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", + "frame-system 35.0.0", "log", "parity-scale-codec", "scale-info", @@ -12684,7 +12792,7 @@ version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "883ae82583071808e61981f0758d21daa3da54082dd05438eb420fdc02fa2124" dependencies = [ - "frame-support", + "frame-support 35.0.0", "hex-literal", "log", "parity-scale-codec", @@ -12704,7 +12812,7 @@ version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a933e8a33d57bdd4d8dd7cf518698f0d1312e7a1b498b1b5c8530c489e8a5400" dependencies = [ - "frame-support", + "frame-support 35.0.0", "log", "parity-scale-codec", "snowbridge-core", @@ -12722,8 +12830,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "792a7155e484b7314df7462543af7643a743a82ce8b51dcce5c9f21e565e757d" dependencies = [ "cumulus-pallet-parachain-system", - "frame-support", - "frame-system", + "frame-support 35.0.0", + "frame-system 35.0.0", "pallet-balances", "pallet-collator-selection", "pallet-message-queue", @@ -13918,13 +14026,13 @@ name = "staging-kusama-runtime" version = "1.0.0" dependencies = [ "binary-merkle-tree", - "frame-benchmarking", + "frame-benchmarking 35.0.0", "frame-election-provider-support", "frame-executive", "frame-metadata-hash-extension", "frame-remote-externalities", - "frame-support", - "frame-system", + "frame-support 35.0.0", + "frame-system 35.0.0", "frame-system-benchmarking", "frame-system-rpc-runtime-api", "frame-try-runtime", @@ -13956,6 +14064,7 @@ dependencies = [ "pallet-nomination-pools-runtime-api", "pallet-offences", "pallet-offences-benchmarking", + "pallet-parameters", "pallet-preimage", "pallet-proxy", "pallet-ranked-collective", @@ -14022,8 +14131,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7eab4e71683cd8ceb50c1c77badc49772148699ffe33a3e4dbbdb5ea34d90e19" dependencies = [ "cumulus-primitives-core", - "frame-support", - "frame-system", + "frame-support 35.0.0", + "frame-system 35.0.0", "parity-scale-codec", "scale-info", "sp-runtime 38.0.0", @@ -14055,8 +14164,8 @@ version = "14.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b0517f2de0dd59ecc2693c0cb707ac30cee3d6576978b7287a4c3c9791b7792f" dependencies = [ - "frame-support", - "frame-system", + "frame-support 35.0.0", + "frame-system 35.0.0", "impl-trait-for-tuples", "log", "pallet-transaction-payment", @@ -14079,8 +14188,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7a5b83ea34a2ba2083c6f5bfec468fb00535d0e0788a78237d06da32dba76be9" dependencies = [ "environmental", - "frame-benchmarking", - "frame-support", + "frame-benchmarking 35.0.0", + "frame-support 35.0.0", "impl-trait-for-tuples", "log", "parity-scale-codec", @@ -14508,7 +14617,7 @@ dependencies = [ name = "system-parachains-constants" version = "1.0.0" dependencies = [ - "frame-support", + "frame-support 35.0.0", "kusama-runtime-constants", "parachains-common", "polkadot-core-primitives", @@ -16218,8 +16327,8 @@ dependencies = [ "cumulus-primitives-core", "cumulus-primitives-parachain-inherent", "cumulus-test-relay-sproof-builder", - "frame-support", - "frame-system", + "frame-support 35.0.0", + "frame-system 35.0.0", "impl-trait-for-tuples", "lazy_static", "log", @@ -16248,7 +16357,7 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1d4261279994b1cb0d16a77cc12734fca18b88b56b65b8740de543af6d6a17dc" dependencies = [ - "frame-support", + "frame-support 35.0.0", "parity-scale-codec", "scale-info", "sp-api", diff --git a/Cargo.toml b/Cargo.toml index 066fe70f4d..c2e17e69b3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -163,6 +163,7 @@ pallet-xcm = { version = "14.0.0", default-features = false } pallet-xcm-benchmarks = { version = "14.0.0", default-features = false } pallet-xcm-bridge-hub = { version = "0.9.0", default-features = false } pallet-xcm-bridge-hub-router = { version = "0.12.0", default-features = false } +pallet-parameters = { version = "0.7.0", default-features = false } parachain-info = { version = "0.14.0", default-features = false, package = "staging-parachain-info" } parachains-common = { version = "14.0.0", default-features = false } parachains-runtimes-test-utils = { version = "14.0.0" } diff --git a/relay/kusama/Cargo.toml b/relay/kusama/Cargo.toml index 77f0e46aae..1fbfcc867e 100644 --- a/relay/kusama/Cargo.toml +++ b/relay/kusama/Cargo.toml @@ -84,6 +84,7 @@ pallet-whitelist = { workspace = true } pallet-xcm = { workspace = true } pallet-xcm-benchmarks = { optional = true, workspace = true } frame-election-provider-support = { workspace = true } +pallet-parameters = { workspace = true } frame-benchmarking = { optional = true, workspace = true } frame-try-runtime = { optional = true, workspace = true } @@ -164,6 +165,7 @@ std = [ "pallet-offences/std", "pallet-preimage/std", "pallet-proxy/std", + "pallet-parameters/std", "pallet-ranked-collective/std", "pallet-recovery/std", "pallet-referenda/std", @@ -260,6 +262,7 @@ runtime-benchmarks = [ "sp-staking/runtime-benchmarks", "xcm-builder/runtime-benchmarks", "xcm-executor/runtime-benchmarks", + "pallet-parameters/runtime-benchmarks", ] try-runtime = [ "frame-election-provider-support/try-runtime", @@ -308,6 +311,7 @@ try-runtime = [ "polkadot-runtime-common/try-runtime", "runtime-parachains/try-runtime", "sp-runtime/try-runtime", + "pallet-parameters/try-runtime", ] # Enable metadata hash generation at compile time for the `CheckMetadataHash` extension. diff --git a/relay/kusama/src/lib.rs b/relay/kusama/src/lib.rs index b3531f5b40..0beaad250c 100644 --- a/relay/kusama/src/lib.rs +++ b/relay/kusama/src/lib.rs @@ -23,7 +23,6 @@ use codec::{Decode, Encode, MaxEncodedLen}; use frame_support::weights::constants::{WEIGHT_PROOF_SIZE_PER_KB, WEIGHT_REF_TIME_PER_MICROS}; use pallet_nis::WithMaximumOf; -use pallet_staking_reward_fn::compute_inflation; use polkadot_primitives::{ slashing, AccountId, AccountIndex, ApprovalVotingParams, Balance, BlockNumber, CandidateEvent, CandidateHash, CommittedCandidateReceipt, CoreIndex, CoreState, DisputeState, ExecutorParams, @@ -621,6 +620,59 @@ impl pallet_bags_list::Config for Runtime { type Score = sp_npos_elections::VoteWeight; } +use frame_support::dynamic_params::{dynamic_pallet_params, dynamic_params}; +/// Dynamic params that can be adjusted at runtime. +#[dynamic_params(RuntimeParameters, pallet_parameters::Parameters::)] +pub mod dynamic_params { + use super::*; + + /// Parameters used to calculate era payouts, see + /// [`polkadot_runtime_common::impls::EraPayoutParams`]. + #[dynamic_pallet_params] + #[codec(index = 0)] + pub mod inflation { + /// Minimum inflation rate used to calculate era payouts. + #[codec(index = 0)] + pub static MinInflation: Perquintill = Perquintill::from_rational(25u64, 1000u64); + + /// Maximum inflation rate used to calculate era payouts. + #[codec(index = 1)] + pub static MaxInflation: Perquintill = Perquintill::from_rational(100u64, 1000u64); + + /// Ideal stake ratio used to calculate era payouts. + #[codec(index = 2)] + pub static IdealStake: Perquintill = Perquintill::from_rational(500u64, 1000u64); + + /// Falloff used to calculate era payouts. + #[codec(index = 3)] + pub static Falloff: Perquintill = Perquintill::from_rational(50u64, 1000u64); + + /// Whether to use auction slots or not in the calculation of era payouts. If set to true, + /// the `legacy_auction_proportion` of 60% will be used in the calculation of era payouts. + #[codec(index = 4)] + pub static UseAuctionSlots: bool = false; + } +} + +#[cfg(feature = "runtime-benchmarks")] +impl Default for RuntimeParameters { + fn default() -> Self { + RuntimeParameters::Inflation(dynamic_params::inflation::Parameters::MinInflation( + dynamic_params::inflation::MinInflation, + Some(Perquintill::from_rational(25u64, 1000u64)), + )) + } +} + +impl pallet_parameters::Config for Runtime { + type RuntimeEvent = RuntimeEvent; + type RuntimeParameters = RuntimeParameters; + type AdminOrigin = DynamicParameterOrigin; + // TODO: add benchmarking and update weight info + type WeightInfo = (); + // type WeightInfo = weights::pallet_parameters::WeightInfo; +} + pub struct EraPayout; impl pallet_staking::EraPayout for EraPayout { fn era_payout( @@ -628,51 +680,59 @@ impl pallet_staking::EraPayout for EraPayout { _total_issuance: Balance, era_duration_millis: u64, ) -> (Balance, Balance) { - // all para-ids that are currently active. - let auctioned_slots = parachains_paras::Parachains::::get() - .into_iter() - // all active para-ids that do not belong to a system chain is the number - // of parachains that we should take into account for inflation. - .filter(|i| *i >= LOWEST_PUBLIC_ID) - .count() as u64; - - const MAX_ANNUAL_INFLATION: Perquintill = Perquintill::from_percent(10); const MILLISECONDS_PER_YEAR: u64 = 1000 * 3600 * 24 * 36525 / 100; - let use_auctioned_slots = todo!("should come from pallet parameters as well"); let params = EraPayoutParams { total_staked, - total_stakable: Nis::issuance().other, - ideal_stake: todo!("must come from pallet parameters, and default set to 75%"), - max_annual_inflation: todo!("must come from pallet parameters, and default set to 10%"), - min_annual_inflation: todo!( - "must come from pallet parameters, and default set to 2.5%" - ), - falloff: todo!("must come from pallet parameters, and default set to 5%"), + total_stakable: Balances::total_issuance(), + ideal_stake: dynamic_params::inflation::IdealStake::get(), + max_annual_inflation: dynamic_params::inflation::MaxInflation::get(), + min_annual_inflation: dynamic_params::inflation::MinInflation::get(), + falloff: dynamic_params::inflation::Falloff::get(), period_fraction: Perquintill::from_rational(era_duration_millis, MILLISECONDS_PER_YEAR), - legacy_auction_proportion: if use_auctioned_slots { - Some(Perquintill::from_rational(auctioned_slots.min(60), 200)) + legacy_auction_proportion: if dynamic_params::inflation::UseAuctionSlots::get() { + let auctioned_slots = parachains_paras::Parachains::::get() + .into_iter() + // all active para-ids that do not belong to a system chain is the number of + // parachains that we should take into account for inflation. + .filter(|i| *i >= 2000.into()) + .count() as u64; + Some(Perquintill::from_rational(auctioned_slots.min(60), 200u64)) } else { None }, }; relay_era_payout(params) - // TODO: remove pub fn era_payout from polkadot-sdk. } } -pub(crate) struct EraPayoutParams { - total_staked: Balance, - total_stakable: Balance, - ideal_stake: Perquintill, - max_annual_inflation: Perquintill, - min_annual_inflation: Perquintill, - falloff: Perquintill, - period_fraction: Perquintill, - legacy_auction_proportion: Option, -} +// ---- TODO: Below is copy pasted from sdk, remove once we pull 1.15 -// TODO: move this to a shared create between both relays. +/// Parameters passed into [`relay_era_payout`] function. +pub struct EraPayoutParams { + /// Total staked amount. + pub total_staked: Balance, + /// Total stakable amount. + /// + /// Usually, this is equal to the total issuance, except if a large part of the issuance is + /// locked in another sub-system. + pub total_stakable: Balance, + /// Ideal stake ratio, which is deducted by `legacy_auction_proportion` if not `None`. + pub ideal_stake: Perquintill, + /// Maximum inflation rate. + pub max_annual_inflation: Perquintill, + /// Minimum inflation rate. + pub min_annual_inflation: Perquintill, + /// Falloff used to calculate era payouts. + pub falloff: Perquintill, + /// Fraction of the era period used to calculate era payouts. + pub period_fraction: Perquintill, + /// Legacy auction proportion, which substracts from `ideal_stake` if not `None`. + pub legacy_auction_proportion: Option, +} + +/// A specialized function to compute the inflation of the staking system, tailored for polkadot +/// relay chains, such as Polkadot, Kusama and Westend. pub fn relay_era_payout(params: EraPayoutParams) -> (Balance, Balance) { let EraPayoutParams { total_staked, @@ -690,7 +750,7 @@ pub fn relay_era_payout(params: EraPayoutParams) -> (Balance, Balance) { let ideal_stake = ideal_stake.saturating_sub(legacy_auction_proportion.unwrap_or_default()); let stake = Perquintill::from_rational(total_staked, total_stakable); - let adjustment = compute_inflation(stake, ideal_stake, falloff); + let adjustment = pallet_staking_reward_fn::compute_inflation(stake, ideal_stake, falloff); let staking_inflation = min_annual_inflation.saturating_add(delta_annual_inflation * adjustment); @@ -707,6 +767,8 @@ pub fn relay_era_payout(params: EraPayoutParams) -> (Balance, Balance) { (staking_payout, rest) } +// ---- TODO: Above is copy pasted from sdk, remove once we pull 1.15 + parameter_types! { // Six sessions in an era (6 hours). pub const SessionsPerEra: SessionIndex = prod_or_fast!(6, 1); @@ -1657,6 +1719,7 @@ construct_runtime! { FellowshipReferenda: pallet_referenda:: = 23, Origins: pallet_custom_origins = 43, Whitelist: pallet_whitelist = 44, + Parameters: pallet_parameters = 46, // Claims. Usable initially. Claims: claims = 19, @@ -1870,6 +1933,7 @@ mod benches { [pallet_vesting, Vesting] [pallet_whitelist, Whitelist] [pallet_asset_rate, AssetRate] + [pallet_parameters, Parameters] // XCM [pallet_xcm, PalletXcmExtrinsiscsBenchmark::] [pallet_xcm_benchmarks::fungible, pallet_xcm_benchmarks::fungible::Pallet::] From b2be560b6f8365d5b0b3a349072c0c2e9894b9fb Mon Sep 17 00:00:00 2001 From: Oliver Tale-Yazdi Date: Wed, 17 Jul 2024 18:00:08 +0200 Subject: [PATCH 16/44] Fixes Signed-off-by: Oliver Tale-Yazdi --- relay/kusama/constants/src/lib.rs | 1 - relay/kusama/src/lib.rs | 3 --- .../src/fellowship/mod.rs | 23 ++++++++++++++++--- 3 files changed, 20 insertions(+), 7 deletions(-) diff --git a/relay/kusama/constants/src/lib.rs b/relay/kusama/constants/src/lib.rs index 739446be85..83db6a808b 100644 --- a/relay/kusama/constants/src/lib.rs +++ b/relay/kusama/constants/src/lib.rs @@ -120,7 +120,6 @@ pub mod system_parachain { pub type SystemParachains = IsChildSystemParachain; /// Coretime constants - // FAIL-CI @donal please check/fix pub mod coretime { /// Coretime timeslice period in blocks /// WARNING: This constant is used accross chains, so additional care should be taken diff --git a/relay/kusama/src/lib.rs b/relay/kusama/src/lib.rs index c8c19f72a8..ff855fb208 100644 --- a/relay/kusama/src/lib.rs +++ b/relay/kusama/src/lib.rs @@ -1289,7 +1289,6 @@ parameter_types! { ); } -// FAIL-CI @donal please check/fix pub struct BrokerPot; impl Get for BrokerPot { fn get() -> InteriorLocation { @@ -1306,7 +1305,6 @@ impl coretime::Config for Runtime { type WeightInfo = weights::runtime_parachains_coretime::WeightInfo; type SendXcm = crate::xcm_config::XcmRouter; type MaxXcmTransactWeight = MaxXcmTransactWeight; - // FAIL-CI @donal please check these three: type BrokerPotLocation = BrokerPot; type AssetTransactor = crate::xcm_config::LocalAssetTransactor; type AccountToLocation = xcm_builder::AliasesIntoAccountId32< @@ -1317,7 +1315,6 @@ impl coretime::Config for Runtime { parameter_types! { pub const OnDemandTrafficDefaultValue: FixedU128 = FixedU128::from_u32(1); - // FAIL-CI @donal please check/fix pub const MaxHistoricalRevenue: BlockNumber = 2 * TIMESLICE_PERIOD; pub const OnDemandPalletId: PalletId = PalletId(*b"py/ondmd"); } diff --git a/system-parachains/collectives/collectives-polkadot/src/fellowship/mod.rs b/system-parachains/collectives/collectives-polkadot/src/fellowship/mod.rs index 0a0ffc8c3c..974e50dbf8 100644 --- a/system-parachains/collectives/collectives-polkadot/src/fellowship/mod.rs +++ b/system-parachains/collectives/collectives-polkadot/src/fellowship/mod.rs @@ -33,7 +33,7 @@ use frame_support::{ }, PalletId, }; -use frame_system::{EnsureRoot, EnsureRootWithSuccess}; +use frame_system::{EnsureNever, EnsureRoot, EnsureRootWithSuccess, EnsureWithSuccess}; pub use origins::{ pallet_origins as pallet_fellowship_origins, Architects, EnsureCanPromoteTo, EnsureCanRetainAt, EnsureFellowship, Fellows, Masters, Members, ToVoice, @@ -206,8 +206,8 @@ impl pallet_core_fellowship::Config for Runtime { >, EnsureCanPromoteTo, >; - // FAIL-CI @ggwpez use `EnsureCanFastPromoteTo` from https://github.com/polkadot-fellows/runtimes/pull/356/files - type FastPromoteOrigin = Self::PromoteOrigin; + // TODO until https://github.com/polkadot-fellows/runtimes/pull/356/files + type FastPromoteOrigin = EnsureWithSuccess, AccountId, ConstU16<0>>; type EvidenceSize = ConstU32<65536>; type MaxRank = ConstU32<9>; } @@ -332,3 +332,20 @@ impl pallet_treasury::Config for Runtime { ConstU32<1000>, >; } + +#[cfg(test)] +mod tests { + use super::*; + use sp_runtime::traits::MaybeConvert; + + type MaxMemberCount = + >::MaxMemberCount; + + #[test] + fn max_member_count_correct() { + for i in 0..10 { + let limit: Option = MaxMemberCount::maybe_convert(i); + assert!(limit.is_none(), "Fellowship has no member limit"); + } + } +} From 30d1345db8923e3fceddf0d3645a49a2219deb7b Mon Sep 17 00:00:00 2001 From: Oliver Tale-Yazdi Date: Wed, 17 Jul 2024 20:09:50 +0200 Subject: [PATCH 17/44] Fix changelog Signed-off-by: Oliver Tale-Yazdi --- CHANGELOG.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a03a525d7c..e6ec085021 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,8 +9,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ### Added - Kusama: Relay General Admin Origin mapping to xcm Location ([polkadot-fellows/runtimes#383](https://github.com/polkadot-fellows/runtimes/pull/383)) -- Introduce a new dispatchable function `set_partial_params` in `pallet-core-fellowship` ([SDK v1.14 #3843](https://github.com/paritytech/polkadot-sdk/pull/3843) from [#381](https://github.com/polkadot-fellows/runtimes/pull/381)). -- RFC-5: Add request revenue info ([SDK v1.14 #3940](https://github.com/paritytech/polkadot-sdk/pull/3940) from [#381](https://github.com/polkadot-fellows/runtimes/pull/381)). - Introduce a new dispatchable function `set_partial_params` in `pallet-core-fellowship` ([runtimes#381](https://github.com/polkadot-fellows/runtimes/pull/381), [SDK v1.14 #3843](https://github.com/paritytech/polkadot-sdk/pull/3843)). - RFC-5: Add request revenue info ([runtimes#381](https://github.com/polkadot-fellows/runtimes/pull/381), [SDK v1.14 #3940](https://github.com/paritytech/polkadot-sdk/pull/3940)). - Core-Fellowship: new `promote_fast` call ([runtimes#381](https://github.com/polkadot-fellows/runtimes/pull/381), [SDK v1.14 #4877](https://github.com/paritytech/polkadot-sdk/pull/4877)). From e3fca1eb387704bd6f12edae97bd9c2fd755c700 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?D=C3=B3nal=20Murray?= Date: Thu, 18 Jul 2024 15:40:45 +0100 Subject: [PATCH 18/44] Re-enable `request_revenue_info_at` in CoretimeInterface (#393) In the update to [sdk 1.14](https://github.com/polkadot-fellows/runtimes/pull/381) the `request_revenue_info` is now implemented but this call had been switched off when it was added in https://github.com/polkadot-fellows/runtimes/pull/212. This PR just enables this again in the coretime interface. cc @ggwpez @s0me0ne-unkn0wn --- .../coretime/coretime-kusama/src/coretime.rs | 40 ++++++++++++++++--- 1 file changed, 34 insertions(+), 6 deletions(-) diff --git a/system-parachains/coretime/coretime-kusama/src/coretime.rs b/system-parachains/coretime/coretime-kusama/src/coretime.rs index fc8a408e87..8fe2117b78 100644 --- a/system-parachains/coretime/coretime-kusama/src/coretime.rs +++ b/system-parachains/coretime/coretime-kusama/src/coretime.rs @@ -167,13 +167,41 @@ impl CoretimeInterface for CoretimeAllocator { fn request_revenue_info_at(when: RCBlockNumberOf) { use crate::coretime::CoretimeProviderCalls::RequestRevenueInfoAt; - let _request_revenue_info_at_call = + let request_revenue_info_at_call = RelayRuntimePallets::Coretime(RequestRevenueInfoAt(when)); - log::debug!( - target: "runtime::coretime", - "`request_revenue` is unmiplemented on the relay." - ); + // Weight for `request_revenue_at` from Kusama runtime benchmarks: + // `ref_time` = 37_637_000 + (3 * 25000000) + (6 * 100000000) = 712637000 + // `proof_size` = 6428 + // Add 5% to each component and round to 2 significant figures. + // + // This benchmark has been transplanted from a testnet and not rerun, so adding a healthy + // buffer. TODO refine when benchmarks are run. + let call_weight = Weight::from_parts(1_000_000_000, 20_000); + + let message = Xcm(vec![ + Instruction::UnpaidExecution { + weight_limit: WeightLimit::Unlimited, + check_origin: None, + }, + Instruction::Transact { + origin_kind: OriginKind::Native, + require_weight_at_most: call_weight, + call: request_revenue_info_at_call.encode().into(), + }, + ]); + + match PolkadotXcm::send_xcm(Here, Location::parent(), message) { + Ok(_) => log::debug!( + target: "runtime::coretime", + "Revenue info request sent successfully." + ), + Err(e) => log::error!( + target: "runtime::coretime", + "Request for revenue info failed to send: {:?}", + e + ), + } } fn credit_account(who: Self::AccountId, amount: Self::Balance) { @@ -182,7 +210,7 @@ impl CoretimeInterface for CoretimeAllocator { log::debug!( target: "runtime::coretime", - "`credit_account` is unmiplemented on the relay." + "`credit_account` is unimplemented on the relay." ); } From 488272743be71b4ca2347f0a187e55cb4baa9db0 Mon Sep 17 00:00:00 2001 From: kianenigma Date: Fri, 19 Jul 2024 09:10:07 +0100 Subject: [PATCH 19/44] add TODO --- relay/kusama/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/relay/kusama/src/lib.rs b/relay/kusama/src/lib.rs index 0beaad250c..b385783175 100644 --- a/relay/kusama/src/lib.rs +++ b/relay/kusama/src/lib.rs @@ -684,7 +684,7 @@ impl pallet_staking::EraPayout for EraPayout { let params = EraPayoutParams { total_staked, - total_stakable: Balances::total_issuance(), + total_stakable: Balances::total_issuance(), // CI_FAIL TODO: swap with nis ideal_stake: dynamic_params::inflation::IdealStake::get(), max_annual_inflation: dynamic_params::inflation::MaxInflation::get(), min_annual_inflation: dynamic_params::inflation::MinInflation::get(), From d60bfae5134940b3ac2ae0693fceb04a8e629cc1 Mon Sep 17 00:00:00 2001 From: kianenigma Date: Fri, 19 Jul 2024 09:19:47 +0100 Subject: [PATCH 20/44] fix some params --- relay/kusama/src/lib.rs | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/relay/kusama/src/lib.rs b/relay/kusama/src/lib.rs index b385783175..b316ae9e93 100644 --- a/relay/kusama/src/lib.rs +++ b/relay/kusama/src/lib.rs @@ -633,19 +633,19 @@ pub mod dynamic_params { pub mod inflation { /// Minimum inflation rate used to calculate era payouts. #[codec(index = 0)] - pub static MinInflation: Perquintill = Perquintill::from_rational(25u64, 1000u64); + pub static MinInflation: Perquintill = Perquintill::from_rational(25, 1000); /// Maximum inflation rate used to calculate era payouts. #[codec(index = 1)] - pub static MaxInflation: Perquintill = Perquintill::from_rational(100u64, 1000u64); + pub static MaxInflation: Perquintill = Perquintill::from_percent(10); /// Ideal stake ratio used to calculate era payouts. #[codec(index = 2)] - pub static IdealStake: Perquintill = Perquintill::from_rational(500u64, 1000u64); + pub static IdealStake: Perquintill = Perquintill::from_percent(75); /// Falloff used to calculate era payouts. #[codec(index = 3)] - pub static Falloff: Perquintill = Perquintill::from_rational(50u64, 1000u64); + pub static Falloff: Perquintill = Perquintill::from_percent(5); /// Whether to use auction slots or not in the calculation of era payouts. If set to true, /// the `legacy_auction_proportion` of 60% will be used in the calculation of era payouts. @@ -684,7 +684,7 @@ impl pallet_staking::EraPayout for EraPayout { let params = EraPayoutParams { total_staked, - total_stakable: Balances::total_issuance(), // CI_FAIL TODO: swap with nis + total_stakable: Nis::issuance().other, ideal_stake: dynamic_params::inflation::IdealStake::get(), max_annual_inflation: dynamic_params::inflation::MaxInflation::get(), min_annual_inflation: dynamic_params::inflation::MinInflation::get(), @@ -695,7 +695,7 @@ impl pallet_staking::EraPayout for EraPayout { .into_iter() // all active para-ids that do not belong to a system chain is the number of // parachains that we should take into account for inflation. - .filter(|i| *i >= 2000.into()) + .filter(|i| *i >= LOWEST_PUBLIC_ID) .count() as u64; Some(Perquintill::from_rational(auctioned_slots.min(60), 200u64)) } else { @@ -706,7 +706,8 @@ impl pallet_staking::EraPayout for EraPayout { } } -// ---- TODO: Below is copy pasted from sdk, remove once we pull 1.15 +// ---- TODO: Below is copy pasted from sdk, remove once we pull the version containing +// https://github.com/paritytech/polkadot-sdk/pull/4938 /// Parameters passed into [`relay_era_payout`] function. pub struct EraPayoutParams { @@ -767,7 +768,8 @@ pub fn relay_era_payout(params: EraPayoutParams) -> (Balance, Balance) { (staking_payout, rest) } -// ---- TODO: Above is copy pasted from sdk, remove once we pull 1.15 +// ---- TODO: Above is copy pasted from sdk, remove once we pull the version containing +// https://github.com/paritytech/polkadot-sdk/pull/4938 parameter_types! { // Six sessions in an era (6 hours). From 4089a7161e3545f2ef4bf6465e2988c51a174bef Mon Sep 17 00:00:00 2001 From: kianenigma Date: Fri, 19 Jul 2024 10:10:50 +0100 Subject: [PATCH 21/44] add tests --- Cargo.lock | 1 + relay/kusama/Cargo.toml | 1 + relay/kusama/src/lib.rs | 19 +++++++++++++++++-- 3 files changed, 19 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1480af8207..d2795829cb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -14418,6 +14418,7 @@ dependencies = [ "sp-transaction-pool", "sp-trie 36.0.0", "sp-version", + "ss58-registry", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", diff --git a/relay/kusama/Cargo.toml b/relay/kusama/Cargo.toml index 1c8f0e5299..10b56bde3c 100644 --- a/relay/kusama/Cargo.toml +++ b/relay/kusama/Cargo.toml @@ -113,6 +113,7 @@ serde_json = { workspace = true } remote-externalities = { workspace = true } tokio = { features = ["macros"], workspace = true } sp-tracing = { workspace = true } +ss58-registry = "1.47.0" [build-dependencies] substrate-wasm-builder = { workspace = true, optional = true } diff --git a/relay/kusama/src/lib.rs b/relay/kusama/src/lib.rs index 7de9fb3758..7fc1bddd14 100644 --- a/relay/kusama/src/lib.rs +++ b/relay/kusama/src/lib.rs @@ -731,6 +731,7 @@ impl pallet_staking::EraPayout for EraPayout { None }, }; + log::debug!(target: "runtime::kusama", "params: {:?}", params); relay_era_payout(params) } } @@ -738,6 +739,7 @@ impl pallet_staking::EraPayout for EraPayout { // ---- TODO: Below is copy pasted from sdk, remove once we pull the version containing // https://github.com/paritytech/polkadot-sdk/pull/4938 +#[derive(Debug, Clone)] /// Parameters passed into [`relay_era_payout`] function. pub struct EraPayoutParams { /// Total staked amount. @@ -2981,7 +2983,6 @@ mod remote_tests { } #[tokio::test] - #[ignore = "this test is meant to be executed manually"] async fn next_inflation() { use hex_literal::hex; sp_tracing::try_init_simple(); @@ -2993,6 +2994,9 @@ mod remote_tests { hashed_prefixes: vec![ // entire nis pallet hex!("928fa8b8d92aa31f47ed74f188a43f70").to_vec(), + // staking eras total stake + hex!("5f3e4907f716ac89b6347d15ececedcaa141c4fe67c2d11f4a10c6aca7a79a04") + .to_vec(), ], hashed_keys: vec![ // staking active era @@ -3001,6 +3005,9 @@ mod remote_tests { // balances ti hex!("c2261276cc9d1f8598ea4b6a74b15c2f57c875e4cff74148e4628f264b974c80") .to_vec(), + // timestamp now + hex!("f0c365c3cf59d671eb72da0e7a4113c49f1f0515f462cdcf84e0f1d6045dfcbb") + .to_vec(), ], ..Default::default() })) @@ -3022,12 +3029,20 @@ mod remote_tests { total_issuance, era_duration_millis, ); + use ss58_registry::TokenRegistry; + let token: ss58_registry::Token = TokenRegistry::Ksm.into(); + + log::info!(target: "runtime::kusama", "total-staked = {:?}", token.amount(total_staked)); + log::info!(target: "runtime::kusama", "total-issuance = {:?}", token.amount(total_issuance)); + log::info!(target: "runtime::kusama", "staking-rate = {:?}", Perquintill::from_rational(total_staked, total_issuance)); + log::info!(target: "runtime::kusama", "era-duration = {:?}", era_duration_millis); log::info!(target: "runtime::kusama", "min-inflation = {:?}", dynamic_params::inflation::MinInflation::get()); log::info!(target: "runtime::kusama", "max-inflation = {:?}", dynamic_params::inflation::MaxInflation::get()); log::info!(target: "runtime::kusama", "falloff = {:?}", dynamic_params::inflation::Falloff::get()); log::info!(target: "runtime::kusama", "useAuctionSlots = {:?}", dynamic_params::inflation::UseAuctionSlots::get()); log::info!(target: "runtime::kusama", "idealStake = {:?}", dynamic_params::inflation::IdealStake::get()); - log::info!(target: "runtime::kusama", "💰 Inflation ==> staking = {:?} / leftover = {:?}", staking, leftover); + log::info!(target: "runtime::kusama", "maxStakingRewards = {:?}", pallet_staking::MaxStakedRewards::::get()); + log::info!(target: "runtime::kusama", "💰 Inflation ==> staking = {:?} / leftover = {:?}", token.amount(staking), token.amount(leftover)); }); } From 6eb9e73110707aaa03fb9fa25096c61109d6101b Mon Sep 17 00:00:00 2001 From: kianenigma Date: Thu, 1 Aug 2024 11:16:34 +0100 Subject: [PATCH 22/44] update --- relay/kusama/src/lib.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/relay/kusama/src/lib.rs b/relay/kusama/src/lib.rs index 7fc1bddd14..a1c083b962 100644 --- a/relay/kusama/src/lib.rs +++ b/relay/kusama/src/lib.rs @@ -655,7 +655,7 @@ pub mod dynamic_params { /// Whether to use auction slots or not in the calculation of era payouts. If set to true, /// the `legacy_auction_proportion` of 60% will be used in the calculation of era payouts. #[codec(index = 4)] - pub static UseAuctionSlots: bool = false; + pub static UseAuctionSlots: bool = true; } } @@ -3008,6 +3008,9 @@ mod remote_tests { // timestamp now hex!("f0c365c3cf59d671eb72da0e7a4113c49f1f0515f462cdcf84e0f1d6045dfcbb") .to_vec(), + // para-ids + hex!("cd710b30bd2eab0352ddcc26417aa1940b76934f4cc08dee01012d059e1b83ee") + .to_vec(), ], ..Default::default() })) From 28adc6bcbea80dc4a3dcd067fa72591abded7f7c Mon Sep 17 00:00:00 2001 From: kianenigma Date: Thu, 1 Aug 2024 11:28:06 +0100 Subject: [PATCH 23/44] fmt --- relay/kusama/src/lib.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/relay/kusama/src/lib.rs b/relay/kusama/src/lib.rs index 02c2935e2a..de75e6f8aa 100644 --- a/relay/kusama/src/lib.rs +++ b/relay/kusama/src/lib.rs @@ -1268,8 +1268,7 @@ impl InstanceFilter for ProxyType { matches!( c, RuntimeCall::Staking(..) | - RuntimeCall::Session(..) | - RuntimeCall::Utility(..) | + RuntimeCall::Session(..) | RuntimeCall::Utility(..) | RuntimeCall::FastUnstake(..) | RuntimeCall::VoterList(..) | RuntimeCall::NominationPools(..) From 70743e950b1a702e83786fa3aa200b7eaa4cb1e9 Mon Sep 17 00:00:00 2001 From: kianenigma Date: Thu, 1 Aug 2024 11:53:33 +0100 Subject: [PATCH 24/44] fix --- relay/kusama/src/lib.rs | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/relay/kusama/src/lib.rs b/relay/kusama/src/lib.rs index de75e6f8aa..f217f9b8a7 100644 --- a/relay/kusama/src/lib.rs +++ b/relay/kusama/src/lib.rs @@ -21,7 +21,11 @@ #![recursion_limit = "512"] use codec::{Decode, Encode, MaxEncodedLen}; -use frame_support::weights::constants::{WEIGHT_PROOF_SIZE_PER_KB, WEIGHT_REF_TIME_PER_MICROS}; +use frame_support::{ + dynamic_params::{dynamic_pallet_params, dynamic_params}, + traits::EnsureOriginWithArg, + weights::constants::{WEIGHT_PROOF_SIZE_PER_KB, WEIGHT_REF_TIME_PER_MICROS}, +}; use kusama_runtime_constants::system_parachain::coretime::TIMESLICE_PERIOD; use pallet_nis::WithMaximumOf; use polkadot_primitives::{ @@ -624,10 +628,6 @@ impl pallet_bags_list::Config for Runtime { type Score = sp_npos_elections::VoteWeight; } -use frame_support::{ - dynamic_params::{dynamic_pallet_params, dynamic_params}, - traits::EnsureOriginWithArg, -}; /// Dynamic params that can be adjusted at runtime. #[dynamic_params(RuntimeParameters, pallet_parameters::Parameters::)] pub mod dynamic_params { @@ -1268,7 +1268,8 @@ impl InstanceFilter for ProxyType { matches!( c, RuntimeCall::Staking(..) | - RuntimeCall::Session(..) | RuntimeCall::Utility(..) | + RuntimeCall::Session(..) | + RuntimeCall::Utility(..) | RuntimeCall::FastUnstake(..) | RuntimeCall::VoterList(..) | RuntimeCall::NominationPools(..) From a31186bb9084fc5368721bcbc55db40deceef4b8 Mon Sep 17 00:00:00 2001 From: kianenigma Date: Thu, 1 Aug 2024 11:55:48 +0100 Subject: [PATCH 25/44] fix --- .../collectives/collectives-polkadot/src/ambassador/mod.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/system-parachains/collectives/collectives-polkadot/src/ambassador/mod.rs b/system-parachains/collectives/collectives-polkadot/src/ambassador/mod.rs index 32ac4b9886..66f2e9bd50 100644 --- a/system-parachains/collectives/collectives-polkadot/src/ambassador/mod.rs +++ b/system-parachains/collectives/collectives-polkadot/src/ambassador/mod.rs @@ -138,7 +138,6 @@ impl pallet_ranked_collective::Config for Runtime type VoteWeight = VoteWeight; type ExchangeOrigin = OpenGovOrHeadAmbassadors; type MemberSwappedHandler = (crate::AmbassadorCore, crate::AmbassadorSalary); - type MaxMemberCount = AmbassadorMemberCount; #[cfg(feature = "runtime-benchmarks")] type MaxMemberCount = (); #[cfg(not(feature = "runtime-benchmarks"))] From 175020f2cf325121ca389e2d789f39e8c6e37b06 Mon Sep 17 00:00:00 2001 From: kianenigma Date: Thu, 1 Aug 2024 13:25:10 +0100 Subject: [PATCH 26/44] fix lock file --- Cargo.lock | 2561 ++++++++++++++++--------------------- relay/kusama/src/lib.rs | 2 + relay/polkadot/Cargo.toml | 1 + 3 files changed, 1136 insertions(+), 1428 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index bc2223d4b1..1be0815704 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -23,11 +23,11 @@ dependencies = [ [[package]] name = "addr2line" -version = "0.22.0" +version = "0.21.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e4503c46a5c0c7844e948c9a4d6acd9f50cccb4de1c48eb9e291ea17470c678" +checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb" dependencies = [ - "gimli 0.29.0", + "gimli 0.28.1", ] [[package]] @@ -48,9 +48,9 @@ dependencies = [ [[package]] name = "aes" -version = "0.8.4" +version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0" +checksum = "ac1f845298e95f983ff1944b728ae08b8cebab80d684f0a832ed0fc74dfa27e2" dependencies = [ "cfg-if", "cipher 0.4.4", @@ -68,7 +68,7 @@ dependencies = [ "cipher 0.4.4", "ctr", "ghash", - "subtle 2.6.1", + "subtle 2.5.0", ] [[package]] @@ -84,31 +84,31 @@ dependencies = [ [[package]] name = "ahash" -version = "0.8.11" +version = "0.8.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011" +checksum = "42cd52102d3df161c77a887b608d7a4897d7cc112886a9537b738a887a03aaff" dependencies = [ "cfg-if", "getrandom", "once_cell", "version_check", - "zerocopy 0.7.35", + "zerocopy", ] [[package]] name = "aho-corasick" -version = "1.1.3" +version = "1.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" +checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0" dependencies = [ "memchr", ] [[package]] name = "allocator-api2" -version = "0.2.18" +version = "0.2.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c6cb57a04249c6480766f7f7cef5467412af1490f8d1e243141daddada3264f" +checksum = "0942ffc6dcaadf03badf6e6a2d0228460359d5e34b57ccdc720b7382dfbd5ec5" [[package]] name = "alloy-primitives" @@ -132,9 +132,9 @@ dependencies = [ [[package]] name = "alloy-rlp" -version = "0.3.7" +version = "0.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a43b18702501396fa9bcdeecd533bc85fac75150d308fc0f6800a01e6234a003" +checksum = "8d58d9f5da7b40e9bfff0b7e7816700be4019db97d4b6359fe7f94a9e22e42ac" dependencies = [ "arrayvec 0.7.4", "bytes", @@ -152,7 +152,7 @@ dependencies = [ "proc-macro-error", "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.65", "syn-solidity", "tiny-keccak", ] @@ -195,48 +195,47 @@ dependencies = [ [[package]] name = "anstream" -version = "0.6.15" +version = "0.6.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "64e15c1ab1f89faffbf04a634d5e1962e9074f2741eef6d97f3c4e322426d526" +checksum = "6e2e1ebcb11de5c03c67de28a7df593d32191b44939c482e97702baaaa6ab6a5" dependencies = [ "anstyle", "anstyle-parse", "anstyle-query", "anstyle-wincon", "colorchoice", - "is_terminal_polyfill", "utf8parse", ] [[package]] name = "anstyle" -version = "1.0.8" +version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1bec1de6f59aedf83baf9ff929c98f2ad654b97c9510f4e70cf6f661d49fd5b1" +checksum = "7079075b41f533b8c61d2a4d073c4676e1f8b249ff94a393b0595db304e0dd87" [[package]] name = "anstyle-parse" -version = "0.2.5" +version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eb47de1e80c2b463c735db5b217a0ddc39d612e7ac9e2e96a5aed1f57616c1cb" +checksum = "c75ac65da39e5fe5ab759307499ddad880d724eed2f6ce5b5e8a26f4f387928c" dependencies = [ "utf8parse", ] [[package]] name = "anstyle-query" -version = "1.1.1" +version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6d36fc52c7f6c869915e99412912f22093507da8d9e942ceaf66fe4b7c14422a" +checksum = "e28923312444cdd728e4738b3f9c9cac739500909bb3d3c94b43551b16517648" dependencies = [ "windows-sys 0.52.0", ] [[package]] name = "anstyle-wincon" -version = "3.0.4" +version = "3.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5bf74e1b6e971609db8ca7a9ce79fd5768ab6ae46441c572e46cf596f59e57f8" +checksum = "1cd54b81ec8d6180e24654d0b371ad22fc3dd083b6ff8ba325b72e00c87660a7" dependencies = [ "anstyle", "windows-sys 0.52.0", @@ -244,9 +243,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.86" +version = "1.0.83" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da" +checksum = "25bdb32cbbdce2b519a9cd7df3a678443100e265d5e25ca763b7572a5104f5f3" [[package]] name = "approx" @@ -268,7 +267,7 @@ dependencies = [ "proc-macro-error", "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.65", ] [[package]] @@ -462,15 +461,15 @@ dependencies = [ [[package]] name = "array-bytes" -version = "6.2.3" +version = "6.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5d5dde061bd34119e902bbb2d9b90c5692635cf59fb91d582c2b68043f1b8293" +checksum = "6f840fb7195bcfc5e17ea40c26e5ce6d5b9ce5d584466e17703209657e459ae0" [[package]] name = "arrayref" -version = "0.3.8" +version = "0.3.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d151e35f61089500b617991b791fc8bfd237ae50cd5950803758a179b41e67a" +checksum = "6b4930d2cb77ce62f89ee5d5289b4ac049559b1c45539271f5ed4fdc7db34545" [[package]] name = "arrayvec" @@ -505,11 +504,11 @@ dependencies = [ [[package]] name = "asn1-rs" -version = "0.6.2" +version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5493c3bedbacf7fd7382c6346bbd66687d12bbaad3a89a2d2c303ee6cf20b048" +checksum = "22ad1373757efa0f70ec53939aabc7152e1591cb485208052993070ac8d2429d" dependencies = [ - "asn1-rs-derive 0.5.1", + "asn1-rs-derive 0.5.0", "asn1-rs-impl 0.2.0", "displaydoc", "nom", @@ -533,13 +532,13 @@ dependencies = [ [[package]] name = "asn1-rs-derive" -version = "0.5.1" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "965c2d33e53cb6b267e148a4cb0760bc01f4904c1cd4bb4002a085bb016d1490" +checksum = "7378575ff571966e99a744addeff0bff98b8ada0dedf1956d59e634db95eaac1" dependencies = [ "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.65", "synstructure 0.13.1", ] @@ -562,7 +561,7 @@ checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7" dependencies = [ "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.65", ] [[package]] @@ -610,7 +609,7 @@ dependencies = [ "parachains-common", "parity-scale-codec", "polkadot-runtime-common", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "staging-kusama-runtime", "staging-xcm", "staging-xcm-executor", @@ -692,7 +691,7 @@ dependencies = [ "sp-inherents", "sp-io 37.0.0", "sp-offchain", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-session", "sp-std", "sp-storage 21.0.0", @@ -748,7 +747,7 @@ dependencies = [ "polkadot-runtime", "polkadot-runtime-common", "polkadot-system-emulated-network", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "staging-xcm", "staging-xcm-executor", "system-parachains-constants", @@ -826,7 +825,7 @@ dependencies = [ "sp-inherents", "sp-io 37.0.0", "sp-offchain", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-session", "sp-std", "sp-storage 21.0.0", @@ -864,7 +863,7 @@ dependencies = [ "parachains-runtimes-test-utils", "parity-scale-codec", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", "staging-parachain-info", "staging-xcm", @@ -889,7 +888,7 @@ dependencies = [ "parity-scale-codec", "scale-info", "sp-api", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", "staging-xcm", "staging-xcm-builder", @@ -910,21 +909,22 @@ dependencies = [ [[package]] name = "async-channel" -version = "2.3.1" +version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "89b47800b0be77592da0afd425cc03468052844aff33b84e33cc696f64e77b6a" +checksum = "9f2776ead772134d55b62dd45e59a79e21612d85d0af729b8b7d3967d601a62a" dependencies = [ "concurrent-queue", - "event-listener-strategy", + "event-listener 5.3.0", + "event-listener-strategy 0.5.2", "futures-core", - "pin-project-lite", + "pin-project-lite 0.2.13", ] [[package]] name = "async-executor" -version = "1.13.0" +version = "1.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d7ebdfa2ebdab6b1760375fa7d6f382b9f486eac35fc994625a00e89280bdbb7" +checksum = "b10202063978b3351199d68f8b22c4e47e4b1b822f8d43fd862d5ea8c006b29a" dependencies = [ "async-task", "concurrent-queue", @@ -939,25 +939,25 @@ version = "2.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ebcd09b382f40fcd159c2d695175b2ae620ffa5f3bd6f664131efff4e8b9e04a" dependencies = [ - "async-lock", + "async-lock 3.2.0", "blocking", "futures-lite", ] [[package]] name = "async-io" -version = "2.3.3" +version = "2.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0d6baa8f0178795da0e71bc42c9e5d13261aac7ee549853162e66a241ba17964" +checksum = "d6d3b15875ba253d1110c740755e246537483f152fa334f91abd7fe84c88b3ff" dependencies = [ - "async-lock", + "async-lock 3.2.0", "cfg-if", "concurrent-queue", "futures-io", "futures-lite", "parking", "polling", - "rustix 0.38.34", + "rustix 0.38.31", "slab", "tracing", "windows-sys 0.52.0", @@ -965,13 +965,22 @@ dependencies = [ [[package]] name = "async-lock" -version = "3.4.0" +version = "2.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "287272293e9d8c41773cec55e365490fe034813a2f172f502d6ddcf75b2f582b" +dependencies = [ + "event-listener 2.5.3", +] + +[[package]] +name = "async-lock" +version = "3.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ff6e472cdea888a4bd64f342f09b3f50e1886d32afe8df3d663c01140b811b18" +checksum = "7125e42787d53db9dd54261812ef17e937c95a51e4d291373b670342fa44310c" dependencies = [ - "event-listener 5.3.1", - "event-listener-strategy", - "pin-project-lite", + "event-listener 4.0.0", + "event-listener-strategy 0.4.0", + "pin-project-lite 0.2.13", ] [[package]] @@ -987,40 +996,40 @@ dependencies = [ [[package]] name = "async-process" -version = "2.2.3" +version = "2.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f7eda79bbd84e29c2b308d1dc099d7de8dcc7035e48f4bf5dc4a531a44ff5e2a" +checksum = "a53fc6301894e04a92cb2584fedde80cb25ba8e02d9dc39d4a87d036e22f397d" dependencies = [ - "async-channel 2.3.1", + "async-channel 2.3.0", "async-io", - "async-lock", + "async-lock 3.2.0", "async-signal", "async-task", "blocking", "cfg-if", - "event-listener 5.3.1", + "event-listener 5.3.0", "futures-lite", - "rustix 0.38.34", + "rustix 0.38.31", "tracing", "windows-sys 0.52.0", ] [[package]] name = "async-signal" -version = "0.2.9" +version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dfb3634b73397aa844481f814fad23bbf07fdb0eabec10f2eb95e58944b1ec32" +checksum = "9e47d90f65a225c4527103a8d747001fc56e375203592b25ad103e1ca13124c5" dependencies = [ "async-io", - "async-lock", + "async-lock 2.8.0", "atomic-waker", "cfg-if", "futures-core", "futures-io", - "rustix 0.38.34", + "rustix 0.38.31", "signal-hook-registry", "slab", - "windows-sys 0.52.0", + "windows-sys 0.48.0", ] [[package]] @@ -1031,13 +1040,13 @@ checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de" [[package]] name = "async-trait" -version = "0.1.81" +version = "0.1.80" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e0c28dcc82d7c8ead5cb13beb15405b57b8546e93215673ff8ca0349a028107" +checksum = "c6fa2087f2753a7da8cc1c0dbfcf89579dd57458e36769de5ac750b4671737ca" dependencies = [ "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.65", ] [[package]] @@ -1050,7 +1059,7 @@ dependencies = [ "futures-sink", "futures-util", "memchr", - "pin-project-lite", + "pin-project-lite 0.2.13", ] [[package]] @@ -1071,7 +1080,7 @@ version = "0.24.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8d9a9bf8b79a749ee0b911b91b671cc2b6c670bdbc7e3dfd537576ddc94bb2a2" dependencies = [ - "http 0.2.12", + "http 0.2.11", "log", "url", ] @@ -1084,14 +1093,14 @@ checksum = "3c87f3f15e7794432337fc718554eaa4dc8f04c9677a950ffe366f20a162ae42" dependencies = [ "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.65", ] [[package]] name = "autocfg" -version = "1.3.0" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0" +checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" [[package]] name = "backoff" @@ -1106,16 +1115,16 @@ dependencies = [ [[package]] name = "backtrace" -version = "0.3.73" +version = "0.3.69" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5cc23269a4f8976d0a4d2e7109211a419fe30e8d88d677cd60b6bc79c5732e0a" +checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837" dependencies = [ - "addr2line 0.22.0", + "addr2line 0.21.0", "cc", "cfg-if", "libc", "miniz_oxide", - "object 0.36.2", + "object 0.32.2", "rustc-demangle", ] @@ -1145,9 +1154,9 @@ checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" [[package]] name = "base64" -version = "0.21.7" +version = "0.21.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" +checksum = "c79fed4cdb43e993fcdadc7e58a09fd0e3e649c4436fa11da71c9f1f3ee7feb9" [[package]] name = "base64" @@ -1317,9 +1326,9 @@ dependencies = [ [[package]] name = "blake3" -version = "1.5.3" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e9ec96fe9a81b5e365f9db71fe00edc4fe4ca2cc7dcb7861f0603012a7caa210" +checksum = "0231f06152bf547e9c2b5194f247cd97aacf6dcd8b15d8e5ec0663f64580da87" dependencies = [ "arrayref", "arrayvec 0.7.4", @@ -1348,11 +1357,12 @@ dependencies = [ [[package]] name = "blocking" -version = "1.6.1" +version = "1.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "703f41c54fc768e63e091340b424302bb1c29ef4aa0c7f10fe849dfb114d29ea" +checksum = "495f7104e962b7356f0aeb34247aca1fe7d2e783b346582db7f2904cb5717e88" dependencies = [ - "async-channel 2.3.1", + "async-channel 2.3.0", + "async-lock 3.2.0", "async-task", "futures-io", "futures-lite", @@ -1425,7 +1435,7 @@ dependencies = [ "polkadot-runtime-constants", "snowbridge-core", "sp-api", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", "staging-xcm", "system-parachains-constants", @@ -1444,7 +1454,7 @@ dependencies = [ "polkadot-runtime-constants", "snowbridge-core", "sp-api", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", "staging-xcm", "system-parachains-constants", @@ -1464,7 +1474,7 @@ dependencies = [ "serde", "sp-consensus-grandpa", "sp-core 34.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -1512,7 +1522,7 @@ dependencies = [ "parity-scale-codec", "scale-info", "sp-core 34.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -1545,7 +1555,7 @@ dependencies = [ "parity-scale-codec", "scale-info", "sp-api", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -1564,7 +1574,7 @@ dependencies = [ "scale-info", "serde", "sp-core 34.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -1579,7 +1589,7 @@ dependencies = [ "frame-support", "parity-scale-codec", "scale-info", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -1600,7 +1610,7 @@ dependencies = [ "serde", "sp-core 34.0.0", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-state-machine 0.42.0", "sp-std", "sp-trie 36.0.0", @@ -1623,7 +1633,7 @@ dependencies = [ "sp-application-crypto 37.0.0", "sp-consensus-grandpa", "sp-core 34.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", "sp-trie 36.0.0", ] @@ -1646,7 +1656,7 @@ dependencies = [ "parity-scale-codec", "scale-info", "sp-core 34.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", ] [[package]] @@ -1662,7 +1672,7 @@ dependencies = [ "scale-info", "snowbridge-core", "sp-core 34.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", "staging-xcm", ] @@ -1710,7 +1720,7 @@ dependencies = [ "snowbridge-pallet-system", "snowbridge-router-primitives", "sp-core 34.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "staging-xcm", "staging-xcm-executor", "system-parachains-constants", @@ -1805,7 +1815,7 @@ dependencies = [ "sp-io 37.0.0", "sp-keyring", "sp-offchain", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-session", "sp-std", "sp-storage 21.0.0", @@ -1865,7 +1875,7 @@ dependencies = [ "snowbridge-pallet-system", "snowbridge-router-primitives", "sp-core 34.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "staging-xcm", "staging-xcm-executor", "system-parachains-constants", @@ -1958,7 +1968,7 @@ dependencies = [ "sp-io 37.0.0", "sp-keyring", "sp-offchain", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-session", "sp-std", "sp-storage 21.0.0", @@ -2008,7 +2018,7 @@ dependencies = [ "sp-core 34.0.0", "sp-io 37.0.0", "sp-keyring", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", "sp-tracing 17.0.0", "staging-xcm", @@ -2045,7 +2055,7 @@ dependencies = [ "sp-api", "sp-core 34.0.0", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", "sp-trie 36.0.0", "staging-xcm", @@ -2062,9 +2072,9 @@ checksum = "771fe0050b883fcc3ea2359b1a96bcfbc090b7116eae7c3c512c7a083fdf23d3" [[package]] name = "bs58" -version = "0.5.1" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bf88ba1141d185c399bee5288d850d63b8369520c1eafc32a0430b5b6c287bf4" +checksum = "f5353f36341f7451062466f0b755b96ac3a9547e4d7f6b70d603fc721a7d7896" dependencies = [ "tinyvec", ] @@ -2080,9 +2090,9 @@ dependencies = [ [[package]] name = "bumpalo" -version = "3.16.0" +version = "3.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" +checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec" [[package]] name = "byte-slice-cast" @@ -2098,9 +2108,9 @@ checksum = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7" [[package]] name = "bytemuck" -version = "1.16.3" +version = "1.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "102087e286b4677862ea56cf8fc58bb2cdfa8725c40ffb80fe3a008eb7f2fc83" +checksum = "374d28ec25809ee0e23827c2ab573d729e293f281dfe393500e7ad618baa61c6" [[package]] name = "byteorder" @@ -2110,9 +2120,9 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" [[package]] name = "bytes" -version = "1.7.0" +version = "1.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fca2be1d5c43812bae364ee3f30b3afcb7877cf59f4aeb94c66f313a41d2fac9" +checksum = "a12916984aab3fa6e39d655a33e09c0071eb36d6ab3aea5c2d78551f1df6d952" [[package]] name = "c2-chacha" @@ -2126,18 +2136,18 @@ dependencies = [ [[package]] name = "camino" -version = "1.1.7" +version = "1.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e0ec6b951b160caa93cc0c7b209e5a3bff7aae9062213451ac99493cd844c239" +checksum = "c59e92b5a388f549b863a7bea62612c09f24c8393560709a54558a9abdfb3b9c" dependencies = [ "serde", ] [[package]] name = "cargo-platform" -version = "0.1.8" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "24b1f0365a6c6bb4020cd05806fd0d33c44d38046b8bd7f0e40814b9763cabfc" +checksum = "ceed8ef69d8518a5dda55c07425450b58a4e1946f4951eab6d7191ee86c2443d" dependencies = [ "serde", ] @@ -2150,7 +2160,7 @@ checksum = "eee4243f1f26fc7a42710e7439c149e2b10b05472f88090acce52632f231a73a" dependencies = [ "camino", "cargo-platform", - "semver 1.0.23", + "semver 1.0.18", "serde", "serde_json", "thiserror", @@ -2158,9 +2168,9 @@ dependencies = [ [[package]] name = "cc" -version = "1.1.7" +version = "1.0.83" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26a5c3fd7bfa1ce3897a3a3501d362b2d87b7f2583ebcb4a949ec25911025cbc" +checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0" dependencies = [ "jobserver", "libc", @@ -2174,9 +2184,9 @@ checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c" [[package]] name = "cfg-expr" -version = "0.15.8" +version = "0.15.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d067ad48b8650848b989a59a86c6c36a995d02d2bf778d45c3c5d57bc2718f02" +checksum = "03915af431787e6ffdcc74c645077518c6b6e01f80b761e0fbbfa288536311b3" dependencies = [ "smallvec", ] @@ -2187,12 +2197,6 @@ version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" -[[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" @@ -2251,9 +2255,9 @@ dependencies = [ [[package]] name = "chrono" -version = "0.4.38" +version = "0.4.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401" +checksum = "7f2c685bad3eb3d45a01354cedb7d5faa66194d1d58ba6e267a8de788f79db38" dependencies = [ "android-tzdata", "iana-time-zone", @@ -2261,7 +2265,7 @@ dependencies = [ "num-traits", "serde", "wasm-bindgen", - "windows-targets 0.52.6", + "windows-targets 0.48.5", ] [[package]] @@ -2312,9 +2316,9 @@ dependencies = [ [[package]] name = "clap" -version = "4.5.13" +version = "4.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0fbb260a053428790f3de475e304ff84cdbc4face759ea7a3e64c1edd938a7fc" +checksum = "80c21025abd42669a92efc996ef13cfb2c5c627858421ea58d5c3b331a6c134f" dependencies = [ "clap_builder", "clap_derive", @@ -2322,33 +2326,33 @@ dependencies = [ [[package]] name = "clap_builder" -version = "4.5.13" +version = "4.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "64b17d7ea74e9f833c7dbf2cbe4fb12ff26783eda4782a8975b72f895c9b4d99" +checksum = "458bf1f341769dfcf849846f65dffdf9146daa56bcd2a47cb4e1de9915567c99" dependencies = [ "anstream", "anstyle", "clap_lex", - "strsim 0.11.1", + "strsim 0.11.0", ] [[package]] name = "clap_derive" -version = "4.5.13" +version = "4.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "501d359d5f3dcaf6ecdeee48833ae73ec6e42723a1e52419c79abf9507eec0a0" +checksum = "307bc0538d5f0f83b8248db3087aa92fe504e4691294d0c96c0eabc33f47ba47" dependencies = [ - "heck 0.5.0", + "heck 0.4.1", "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.65", ] [[package]] name = "clap_lex" -version = "0.7.2" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97" +checksum = "98cc8fbded0c607b7ba9dd60cd98df59af97e84d24e49c8557331cfc26d301ce" [[package]] name = "codespan-reporting" @@ -2401,7 +2405,7 @@ dependencies = [ "polkadot-runtime-constants", "polkadot-system-emulated-network", "sp-core 34.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "staging-xcm", "staging-xcm-executor", "system-parachains-constants", @@ -2470,7 +2474,7 @@ dependencies = [ "sp-genesis-builder", "sp-inherents", "sp-offchain", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-session", "sp-std", "sp-storage 21.0.0", @@ -2491,9 +2495,9 @@ version = "1.0.0" [[package]] name = "colorchoice" -version = "1.0.2" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d3fd119d74b830634cea2a0f58bbd0d54540518a14397557951e79340abc28c0" +checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" [[package]] name = "combine" @@ -2513,9 +2517,9 @@ checksum = "2382f75942f4b3be3690fe4f86365e9c853c1587d6ee58212cebf6e2a9ccd101" [[package]] name = "concurrent-queue" -version = "2.5.0" +version = "2.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" +checksum = "d16048cd947b08fa32c24458a22f5dc5e835264f689f4f5653210c69fd107363" dependencies = [ "crossbeam-utils", ] @@ -2535,9 +2539,9 @@ dependencies = [ [[package]] name = "const-hex" -version = "1.12.0" +version = "1.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "94fb8a24a26d37e1ffd45343323dc9fe6654ceea44c12f2fcb3d7ac29e610bc6" +checksum = "efbd12d49ab0eaf8193ba9175e45f56bbc2e4b27d57b8cfe62aa47942a46b9a9" dependencies = [ "cfg-if", "cpufeatures", @@ -2548,15 +2552,15 @@ dependencies = [ [[package]] name = "const-oid" -version = "0.9.6" +version = "0.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" +checksum = "28c122c3980598d243d63d9a704629a2d748d101f278052ff068be5a4423ab6f" [[package]] name = "const-random" -version = "0.1.18" +version = "0.1.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359" +checksum = "5aaf16c9c2c612020bcfd042e170f6e32de9b9d75adb5277cdbbd2e2c8c8299a" dependencies = [ "const-random-macro", ] @@ -2652,7 +2656,7 @@ dependencies = [ "parachains-common", "parity-scale-codec", "polkadot-runtime-common", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "staging-kusama-runtime", "staging-xcm", "staging-xcm-executor", @@ -2714,7 +2718,7 @@ dependencies = [ "sp-genesis-builder", "sp-inherents", "sp-offchain", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-session", "sp-std", "sp-storage 21.0.0", @@ -2740,9 +2744,9 @@ dependencies = [ [[package]] name = "cpufeatures" -version = "0.2.12" +version = "0.2.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504" +checksum = "ce420fe07aecd3e67c5f910618fe65e94158f6dcc0adf44e00d69ce2bdfe0fd0" dependencies = [ "libc", ] @@ -2862,9 +2866,9 @@ checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5" [[package]] name = "crc32fast" -version = "1.4.2" +version = "1.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3" +checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" dependencies = [ "cfg-if", ] @@ -2899,9 +2903,9 @@ dependencies = [ [[package]] name = "crossbeam-utils" -version = "0.8.20" +version = "0.8.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80" +checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345" [[package]] name = "crunchy" @@ -2917,7 +2921,7 @@ checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76" dependencies = [ "generic-array 0.14.7", "rand_core 0.6.4", - "subtle 2.6.1", + "subtle 2.5.0", "zeroize", ] @@ -2949,7 +2953,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b584a330336237c1eecd3e94266efb216c56ed91225d634cb2991c5f3fd1aeab" dependencies = [ "generic-array 0.14.7", - "subtle 2.6.1", + "subtle 2.5.0", ] [[package]] @@ -2976,7 +2980,7 @@ dependencies = [ "scale-info", "sp-application-crypto 37.0.0", "sp-consensus-aura", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -2994,7 +2998,7 @@ dependencies = [ "parity-scale-codec", "scale-info", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", "staging-xcm", ] @@ -3026,7 +3030,7 @@ dependencies = [ "sp-externalities 0.29.0", "sp-inherents", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-state-machine 0.42.0", "sp-std", "sp-trie 36.0.0", @@ -3045,7 +3049,7 @@ dependencies = [ "proc-macro-crate 3.1.0", "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.65", ] [[package]] @@ -3059,7 +3063,7 @@ dependencies = [ "frame-system", "pallet-session", "parity-scale-codec", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -3075,7 +3079,7 @@ dependencies = [ "parity-scale-codec", "scale-info", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", "staging-xcm", ] @@ -3100,7 +3104,7 @@ dependencies = [ "scale-info", "sp-core 34.0.0", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", "staging-xcm", "staging-xcm-builder", @@ -3118,7 +3122,7 @@ dependencies = [ "polkadot-primitives", "sp-api", "sp-consensus-aura", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -3134,7 +3138,7 @@ dependencies = [ "polkadot-primitives", "scale-info", "sp-api", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", "sp-trie 36.0.0", "staging-xcm", @@ -3152,7 +3156,7 @@ dependencies = [ "scale-info", "sp-core 34.0.0", "sp-inherents", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-state-machine 0.42.0", "sp-std", "sp-trie 36.0.0", @@ -3183,7 +3187,7 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -3201,7 +3205,7 @@ dependencies = [ "polkadot-runtime-common", "polkadot-runtime-parachains", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", "staging-xcm", "staging-xcm-builder", @@ -3217,7 +3221,7 @@ dependencies = [ "cumulus-primitives-core", "parity-scale-codec", "polkadot-primitives", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-state-machine 0.42.0", "sp-std", "sp-trie 36.0.0", @@ -3232,23 +3236,24 @@ dependencies = [ "byteorder", "digest 0.9.0", "rand_core 0.5.1", - "subtle 2.6.1", + "subtle 2.5.0", "zeroize", ] [[package]] name = "curve25519-dalek" -version = "4.1.3" +version = "4.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be" +checksum = "0a677b8922c94e01bdbb12126b0bc852f00447528dee1782229af9c720c3f348" dependencies = [ "cfg-if", "cpufeatures", "curve25519-dalek-derive", "digest 0.10.7", "fiat-crypto", + "platforms", "rustc_version 0.4.0", - "subtle 2.6.1", + "subtle 2.5.0", "zeroize", ] @@ -3260,14 +3265,14 @@ checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3" dependencies = [ "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.65", ] [[package]] name = "cxx" -version = "1.0.124" +version = "1.0.110" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "273dcfd3acd4e1e276af13ed2a43eea7001318823e7a726a6b3ed39b4acc0b82" +checksum = "7129e341034ecb940c9072817cd9007974ea696844fc4dd582dc1653a7fbe2e8" dependencies = [ "cc", "cxxbridge-flags", @@ -3277,9 +3282,9 @@ dependencies = [ [[package]] name = "cxx-build" -version = "1.0.124" +version = "1.0.110" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d8b2766fbd92be34e9ed143898fce6c572dc009de39506ed6903e5a05b68914e" +checksum = "a2a24f3f5f8eed71936f21e570436f024f5c2e25628f7496aa7ccd03b90109d5" dependencies = [ "cc", "codespan-reporting", @@ -3287,24 +3292,24 @@ dependencies = [ "proc-macro2", "quote", "scratch", - "syn 2.0.72", + "syn 2.0.65", ] [[package]] name = "cxxbridge-flags" -version = "1.0.124" +version = "1.0.110" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "839fcd5e43464614ffaa989eaf1c139ef1f0c51672a1ed08023307fa1b909ccd" +checksum = "06fdd177fc61050d63f67f5bd6351fac6ab5526694ea8e359cd9cd3b75857f44" [[package]] name = "cxxbridge-macro" -version = "1.0.124" +version = "1.0.110" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4b2c1c1776b986979be68bb2285da855f8d8a35851a769fca8740df7c3d07877" +checksum = "587663dd5fb3d10932c8aecfe7c844db1bcf0aee93eeab08fac13dc1212c2e7f" dependencies = [ "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.65", ] [[package]] @@ -3319,12 +3324,12 @@ dependencies = [ [[package]] name = "darling" -version = "0.20.10" +version = "0.20.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6f63b86c8a8826a49b8c21f08a2d07338eec8d900540f8630dc76284be802989" +checksum = "54e36fcd13ed84ffdfda6f5be89b31287cbb80c439841fe69e04841435464391" dependencies = [ - "darling_core 0.20.10", - "darling_macro 0.20.10", + "darling_core 0.20.8", + "darling_macro 0.20.8", ] [[package]] @@ -3343,16 +3348,16 @@ dependencies = [ [[package]] name = "darling_core" -version = "0.20.10" +version = "0.20.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "95133861a8032aaea082871032f5815eb9e98cef03fa916ab4500513994df9e5" +checksum = "9c2cf1c23a687a1feeb728783b993c4e1ad83d99f351801977dd809b48d0a70f" dependencies = [ "fnv", "ident_case", "proc-macro2", "quote", - "strsim 0.11.1", - "syn 2.0.72", + "strsim 0.10.0", + "syn 2.0.65", ] [[package]] @@ -3368,26 +3373,26 @@ dependencies = [ [[package]] name = "darling_macro" -version = "0.20.10" +version = "0.20.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806" +checksum = "a668eda54683121533a393014d8692171709ff57a7d61f187b6e782719f8933f" dependencies = [ - "darling_core 0.20.10", + "darling_core 0.20.8", "quote", - "syn 2.0.72", + "syn 2.0.65", ] [[package]] name = "data-encoding" -version = "2.6.0" +version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e8566979429cf69b49a5c740c60791108e86440e8be149bbea4fe54d2c32d6e2" +checksum = "7e962a19be5cfc3f3bf6dd8f61eb50107f356ad6270fbb3ed41476571db78be5" [[package]] name = "data-encoding-macro" -version = "0.1.15" +version = "0.1.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f1559b6cba622276d6d63706db152618eeb15b89b3e4041446b05876e352e639" +checksum = "20c01c06f5f429efdf2bae21eb67c28b3df3cf85b7dd2d8ef09c0838dac5d33e" dependencies = [ "data-encoding", "data-encoding-macro-internal", @@ -3395,9 +3400,9 @@ dependencies = [ [[package]] name = "data-encoding-macro-internal" -version = "0.1.13" +version = "0.1.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "332d754c0af53bc87c108fed664d121ecf59207ec4196041f04d6ab9002ad33f" +checksum = "0047d07f2c89b17dd631c80450d69841a6b5d7fb17278cbc43d7e4cfcf2576f3" dependencies = [ "data-encoding", "syn 1.0.109", @@ -3405,9 +3410,9 @@ dependencies = [ [[package]] name = "der" -version = "0.7.9" +version = "0.7.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f55bf8e7b65898637379c1b74eb1551107c8294ed26d855ceb9fd1a09cfc9bc0" +checksum = "fffa369a668c8af7dbf8b5e56c9f744fbd399949ed171606040001947de40b1c" dependencies = [ "const-oid", "zeroize", @@ -3433,7 +3438,7 @@ version = "9.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5cd0a5c643689626bec213c4d8bd4d96acc8ffdb4ad4bb6bc16abf27d5f4b553" dependencies = [ - "asn1-rs 0.6.2", + "asn1-rs 0.6.1", "displaydoc", "nom", "num-bigint", @@ -3443,9 +3448,9 @@ dependencies = [ [[package]] name = "deranged" -version = "0.3.11" +version = "0.3.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4" +checksum = "8eb30d70a07a3b04884d2677f06bec33509dc67ca60d92949e5535352d3191dc" dependencies = [ "powerfmt", ] @@ -3463,37 +3468,37 @@ dependencies = [ [[package]] name = "derive-syn-parse" -version = "0.2.0" +version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d65d7ce8132b7c0e54497a4d9a55a1c2a0912a0d786cf894472ba818fba45762" +checksum = "e79116f119dd1dba1abf1f3405f03b9b0e79a27a3883864bfebded8a3dc768cd" dependencies = [ "proc-macro2", "quote", - "syn 2.0.72", + "syn 1.0.109", ] [[package]] -name = "derive-where" -version = "1.2.7" +name = "derive-syn-parse" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "62d671cc41a825ebabc75757b62d3d168c577f9149b2d49ece1dad1f72119d25" +checksum = "d65d7ce8132b7c0e54497a4d9a55a1c2a0912a0d786cf894472ba818fba45762" dependencies = [ "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.65", ] [[package]] name = "derive_more" -version = "0.99.18" +version = "0.99.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f33878137e4dafd7fa914ad4e259e18a4e8e532b9617a2d0150262bf53abfce" +checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321" dependencies = [ "convert_case", "proc-macro2", "quote", "rustc_version 0.4.0", - "syn 2.0.72", + "syn 1.0.109", ] [[package]] @@ -3529,7 +3534,7 @@ dependencies = [ "block-buffer 0.10.4", "const-oid", "crypto-common", - "subtle 2.6.1", + "subtle 2.5.0", ] [[package]] @@ -3555,13 +3560,13 @@ dependencies = [ [[package]] name = "displaydoc" -version = "0.2.5" +version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" +checksum = "487585f4d0c6655fe74905e2504d8ad6908e4db67f744eb140876906c2f3175d" dependencies = [ "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.65", ] [[package]] @@ -3580,14 +3585,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1a081e51fb188742f5a7a1164ad752121abcb22874b21e2c3b0dd040c515fdad" dependencies = [ "common-path", - "derive-syn-parse", + "derive-syn-parse 0.2.0", "once_cell", "proc-macro2", "quote", "regex", - "syn 2.0.72", + "syn 2.0.65", "termcolor", - "toml 0.8.19", + "toml 0.8.10", "walkdir", ] @@ -3638,9 +3643,9 @@ dependencies = [ [[package]] name = "dyn-clone" -version = "1.0.17" +version = "1.0.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0d6ef0072f8a535281e4876be788938b528e9a1d43900b82c2569af7da799125" +checksum = "545b22097d44f8a9581187cdf93de7a71e4722bf51200cfaba810865b49a495d" [[package]] name = "ecdsa" @@ -3673,12 +3678,12 @@ version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4a3daa8e81a3963a60642bcc1f90a670680bd4a77535faa384e9d1c79d620871" dependencies = [ - "curve25519-dalek 4.1.3", + "curve25519-dalek 4.1.2", "ed25519", "rand_core 0.6.4", "serde", "sha2 0.10.8", - "subtle 2.6.1", + "subtle 2.5.0", "zeroize", ] @@ -3702,9 +3707,9 @@ version = "4.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7d9ce6874da5d4415896cd45ffbc4d1cfc0c4f9c079427bd870742c30f2f65a9" dependencies = [ - "curve25519-dalek 4.1.3", + "curve25519-dalek 4.1.2", "ed25519", - "hashbrown 0.14.5", + "hashbrown 0.14.3", "hex", "rand_core 0.6.4", "sha2 0.10.8", @@ -3713,9 +3718,9 @@ dependencies = [ [[package]] name = "either" -version = "1.13.0" +version = "1.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0" +checksum = "a47c1c47d2f5964e29c61246e81db715514cd532db6b5116a25ea3c03d6780a2" [[package]] name = "elliptic-curve" @@ -3733,7 +3738,7 @@ dependencies = [ "rand_core 0.6.4", "sec1", "serdect", - "subtle 2.6.1", + "subtle 2.5.0", "zeroize", ] @@ -3766,7 +3771,7 @@ dependencies = [ "sp-consensus-babe", "sp-consensus-beefy", "sp-core 34.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "staging-xcm", "xcm-emulator", ] @@ -3779,9 +3784,9 @@ checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" [[package]] name = "encoding_rs" -version = "0.8.34" +version = "0.8.33" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b45de904aa0b010bce2ab45264d0631681847fa7b6f2eaa7dab7619943bc4f59" +checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1" dependencies = [ "cfg-if", ] @@ -3800,7 +3805,7 @@ dependencies = [ "pallet-encointer-balances", "pallet-encointer-ceremonies", "pallet-transaction-payment", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", ] [[package]] @@ -3824,7 +3829,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1b698a2f681dee5795ef660661df3165d3287807ba4e78fcc874880b18b3f7ec" dependencies = [ "encointer-primitives", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -3897,7 +3902,7 @@ dependencies = [ "sp-genesis-builder", "sp-inherents", "sp-offchain", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-session", "sp-std", "sp-transaction-pool", @@ -3921,7 +3926,7 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -3931,7 +3936,7 @@ version = "13.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "29aaceec9b0e69c648b760ffdf6b52e21e7a95dc3a3dbae2a0de0745ad43ea00" dependencies = [ - "bs58 0.5.1", + "bs58 0.5.0", "crc", "ep-core", "frame-support", @@ -3941,7 +3946,7 @@ dependencies = [ "serde", "sp-core 34.0.0", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", "substrate-geohash", ] @@ -3967,45 +3972,45 @@ dependencies = [ "heck 0.4.1", "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.65", ] [[package]] name = "enumflags2" -version = "0.7.10" +version = "0.7.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d232db7f5956f3f14313dc2f87985c58bd2c695ce124c8cdd984e08e15ac133d" +checksum = "5998b4f30320c9d93aed72f63af821bfdac50465b75428fce77b48ec482c3939" dependencies = [ "enumflags2_derive", ] [[package]] name = "enumflags2_derive" -version = "0.7.10" +version = "0.7.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "de0d48a183585823424a4ce1aa132d174a6a81bd540895822eb4c8373a8e49e8" +checksum = "f95e2801cd355d4a1a3e3953ce6ee5ae9603a5c833455343a8bfe3f44d418246" dependencies = [ "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.65", ] [[package]] name = "enumn" -version = "0.1.14" +version = "0.1.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2f9ed6b3789237c8a0c1c505af1c7eb2c560df6186f01b098c3a1064ea532f38" +checksum = "c2ad8cef1d801a4686bfd8919f0b30eac4c8e48968c437a6405ded4fb5272d2b" dependencies = [ "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.65", ] [[package]] name = "env_logger" -version = "0.10.2" +version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4cd405aab171cb85d6735e5c8d9db038c17d3ca007a4d2c25f337935c3d90580" +checksum = "95b3f3e67048839cb0d0781f445682a35113da7121f7c949db0e2be96a4fbece" dependencies = [ "humantime", "is-terminal", @@ -4033,7 +4038,7 @@ dependencies = [ "serde", "sp-arithmetic 26.0.0", "sp-core 34.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", "substrate-fixed", ] @@ -4046,9 +4051,9 @@ checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" [[package]] name = "errno" -version = "0.3.9" +version = "0.3.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba" +checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245" dependencies = [ "libc", "windows-sys 0.52.0", @@ -4103,23 +4108,34 @@ checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" [[package]] name = "event-listener" -version = "4.0.3" +version = "4.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "67b215c49b2b248c855fb73579eb1f4f26c38ffdc12973e20e07b91d78d5646e" +checksum = "770d968249b5d99410d61f5bf89057f3199a077a04d087092f58e7d10692baae" dependencies = [ "concurrent-queue", - "pin-project-lite", + "parking", + "pin-project-lite 0.2.13", ] [[package]] name = "event-listener" -version = "5.3.1" +version = "5.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6032be9bd27023a771701cc49f9f053c751055f71efb2e0ae5c15809093675ba" +checksum = "6d9944b8ca13534cdfb2800775f8dd4902ff3fc75a50101466decadfdf322a24" dependencies = [ "concurrent-queue", "parking", - "pin-project-lite", + "pin-project-lite 0.2.13", +] + +[[package]] +name = "event-listener-strategy" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "958e4d70b6d5e81971bebec42271ec641e7ff4e170a6fa605f2b8a8b65cb97d3" +dependencies = [ + "event-listener 4.0.0", + "pin-project-lite 0.2.13", ] [[package]] @@ -4128,23 +4144,21 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0f214dc438f977e6d4e3500aaa277f5ad94ca83fbbd9b1a15713ce2344ccc5a1" dependencies = [ - "event-listener 5.3.1", - "pin-project-lite", + "event-listener 5.3.0", + "pin-project-lite 0.2.13", ] [[package]] name = "expander" -version = "2.2.1" +version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2c470c71d91ecbd179935b24170459e926382eaaa86b590b78814e180d8a8e2" +checksum = "5f86a749cf851891866c10515ef6c299b5c69661465e9c3bbe7e07a2b77fb0f7" dependencies = [ "blake2 0.10.6", - "file-guard", "fs-err", - "prettyplease 0.2.20", "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.65", ] [[package]] @@ -4161,9 +4175,9 @@ checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649" [[package]] name = "fastrand" -version = "2.1.0" +version = "2.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a" +checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5" [[package]] name = "fastrlp" @@ -4183,24 +4197,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ded41244b729663b1e574f1b4fb731469f69f79c17667b5d776b16cda0479449" dependencies = [ "rand_core 0.6.4", - "subtle 2.6.1", + "subtle 2.5.0", ] [[package]] name = "fiat-crypto" -version = "0.2.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d" - -[[package]] -name = "file-guard" -version = "0.2.0" +version = "0.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "21ef72acf95ec3d7dbf61275be556299490a245f017cf084bd23b4f68cf9407c" -dependencies = [ - "libc", - "winapi", -] +checksum = "1676f435fc1dadde4d03e43f5d62b259e1ce5f40bd4ffb21db2b42ebe59c1382" [[package]] name = "file-per-thread-logger" @@ -4240,16 +4244,6 @@ dependencies = [ "scale-info", ] -[[package]] -name = "finito" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2384245d85162258a14b43567a9ee3598f5ae746a1581fb5d3d2cb780f0dbf95" -dependencies = [ - "futures-timer", - "pin-project", -] - [[package]] name = "fixed-hash" version = "0.8.0" @@ -4270,9 +4264,9 @@ checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80" [[package]] name = "flate2" -version = "1.0.30" +version = "1.0.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f54427cfd1c7829e2a139fcefea601bf088ebca651d2bf53ebc600eac295dae" +checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e" dependencies = [ "crc32fast", "miniz_oxide", @@ -4351,7 +4345,7 @@ dependencies = [ "sp-application-crypto 37.0.0", "sp-core 34.0.0", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-runtime-interface 28.0.0", "sp-std", "sp-storage 21.0.0", @@ -4360,14 +4354,14 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" -version = "14.0.1" +version = "14.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8156f209055d352994ecd49e19658c6b469d7c6de923bd79868957d0dcfb6f71" +checksum = "1388eb632484a1208a5b51d7d822a7df995f37bb10878b2a88f4ec89cbe5e6b2" dependencies = [ "proc-macro-crate 3.1.0", "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.65", ] [[package]] @@ -4384,7 +4378,7 @@ dependencies = [ "sp-arithmetic 26.0.0", "sp-core 34.0.0", "sp-npos-elections", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -4403,7 +4397,7 @@ dependencies = [ "scale-info", "sp-core 34.0.0", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", "sp-tracing 17.0.0", ] @@ -4444,7 +4438,7 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", ] [[package]] @@ -4462,7 +4456,7 @@ dependencies = [ "sp-core 34.0.0", "sp-crypto-hashing", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-state-machine 0.42.0", "spinners", "substrate-rpc-client", @@ -4472,9 +4466,9 @@ dependencies = [ [[package]] name = "frame-support" -version = "36.0.1" +version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2f4d08149c28010bfa568dcfa832aea628fb794d4243794a13b1bdef1aa66fb1" +checksum = "512b517645f29d76c79e4c97bf8b0f4dcb6708a2af3be24b1956085dcdcf6ce5" dependencies = [ "aquamarine", "array-bytes", @@ -4502,7 +4496,7 @@ dependencies = [ "sp-inherents", "sp-io 37.0.0", "sp-metadata-ir", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-staking", "sp-state-machine 0.42.0", "sp-std", @@ -4514,22 +4508,22 @@ dependencies = [ [[package]] name = "frame-support-procedural" -version = "30.0.2" +version = "30.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e4662a809f559aea6234bd90940fa29df583a3c8124a3cf923f66a0d21126b7" +checksum = "fd94af68373e179c32c360b3c280497a9cf0f45a4f47f0ee6539a6c6c9cf2343" dependencies = [ "Inflector", "cfg-expr", - "derive-syn-parse", + "derive-syn-parse 0.2.0", "expander", "frame-support-procedural-tools", "itertools 0.11.0", "macro_magic", - "proc-macro-warning 1.0.2", + "proc-macro-warning 1.0.0", "proc-macro2", "quote", "sp-crypto-hashing", - "syn 2.0.72", + "syn 2.0.65", ] [[package]] @@ -4542,7 +4536,7 @@ dependencies = [ "proc-macro-crate 3.1.0", "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.65", ] [[package]] @@ -4553,7 +4547,7 @@ checksum = "ed971c6435503a099bdac99fe4c5bea08981709e5b5a0a8535a1856f48561191" dependencies = [ "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.65", ] [[package]] @@ -4571,7 +4565,7 @@ dependencies = [ "serde", "sp-core 34.0.0", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", "sp-version", "sp-weights 31.0.0", @@ -4589,7 +4583,7 @@ dependencies = [ "parity-scale-codec", "scale-info", "sp-core 34.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -4612,7 +4606,7 @@ dependencies = [ "frame-support", "parity-scale-codec", "sp-api", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -4692,15 +4686,15 @@ checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1" [[package]] name = "futures-lite" -version = "2.3.0" +version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "52527eb5074e35e9339c6b4e8d12600c7128b68fb25dcb9fa9dec18f7c25f3a5" +checksum = "aeee267a1883f7ebef3700f262d2d54de95dfaf38189015a74fdc4e0c7ad8143" dependencies = [ "fastrand", "futures-core", "futures-io", "parking", - "pin-project-lite", + "pin-project-lite 0.2.13", ] [[package]] @@ -4711,7 +4705,7 @@ checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac" dependencies = [ "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.65", ] [[package]] @@ -4721,7 +4715,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "35bd3cf68c183738046838e300353e4716c674dc5e56890de4826801a6622a28" dependencies = [ "futures-io", - "rustls 0.21.12", + "rustls 0.21.10", ] [[package]] @@ -4755,7 +4749,7 @@ dependencies = [ "futures-sink", "futures-task", "memchr", - "pin-project-lite", + "pin-project-lite 0.2.13", "pin-utils", "slab", ] @@ -4791,9 +4785,9 @@ dependencies = [ [[package]] name = "getrandom" -version = "0.2.15" +version = "0.2.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" +checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5" dependencies = [ "cfg-if", "libc", @@ -4812,11 +4806,11 @@ dependencies = [ [[package]] name = "ghash" -version = "0.5.1" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1" +checksum = "d930750de5717d2dd0b8c0d42c076c0e884c81a73e6cab859bbd2339c71e3e40" dependencies = [ - "opaque-debug 0.3.1", + "opaque-debug 0.3.0", "polyval", ] @@ -4841,18 +4835,6 @@ dependencies = [ "stable_deref_trait", ] -[[package]] -name = "gimli" -version = "0.29.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "40ecd4077b5ae9fd2e9e169b102c6c330d0605168eb0e8bf79952b256dbefffd" - -[[package]] -name = "glob-match" -version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9985c9503b412198aa4197559e9a318524ebc4519c229bfa05a535828c950b9d" - [[package]] name = "glutton-kusama-runtime" version = "1.0.0" @@ -4880,7 +4862,7 @@ dependencies = [ "sp-genesis-builder", "sp-inherents", "sp-offchain", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-session", "sp-std", "sp-storage 21.0.0", @@ -4902,22 +4884,22 @@ checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63" dependencies = [ "ff", "rand_core 0.6.4", - "subtle 2.6.1", + "subtle 2.5.0", ] [[package]] name = "h2" -version = "0.3.26" +version = "0.3.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8" +checksum = "4d6250322ef6e60f93f9a2162799302cd6f68f79f6e5d85c8c16f14d1d958178" dependencies = [ "bytes", "fnv", "futures-core", "futures-sink", "futures-util", - "http 0.2.12", - "indexmap 2.3.0", + "http 0.2.11", + "indexmap 2.2.6", "slab", "tokio", "tokio-util", @@ -4936,7 +4918,7 @@ dependencies = [ "futures-core", "futures-sink", "http 1.1.0", - "indexmap 2.3.0", + "indexmap 2.2.6", "slab", "tokio", "tokio-util", @@ -4973,16 +4955,16 @@ version = "0.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e" dependencies = [ - "ahash 0.8.11", + "ahash 0.8.8", ] [[package]] name = "hashbrown" -version = "0.14.5" +version = "0.14.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" +checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604" dependencies = [ - "ahash 0.8.11", + "ahash 0.8.8", "allocator-api2", "serde", ] @@ -4993,7 +4975,7 @@ version = "0.8.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e8094feaf31ff591f651a2664fb9cfd92bba7a60ce3197265e9482ebe753c8f7" dependencies = [ - "hashbrown 0.14.5", + "hashbrown 0.14.3", ] [[package]] @@ -5010,15 +4992,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.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fbf6a919d6cf397374f7dfeeea91d974c7c0a7221d0d0f4f20d859d329e53fcc" +checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7" [[package]] name = "hex" @@ -5040,9 +5016,9 @@ checksum = "6fe2267d4ed49bc07b63801559be28c718ea06c4738b7a03c94df7386d2cde46" [[package]] name = "hkdf" -version = "0.12.4" +version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7" +checksum = "791a029f6b9fc27657f6f188ec6e5e43f6911f6f878e0dc5501396e09809d437" dependencies = [ "hmac 0.12.1", ] @@ -5099,9 +5075,9 @@ dependencies = [ [[package]] name = "http" -version = "0.2.12" +version = "0.2.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1" +checksum = "8947b1a6fad4393052c7ba1f4cd97bed3e953a95c79c92ad9b051a04611d9fbb" dependencies = [ "bytes", "fnv", @@ -5121,13 +5097,13 @@ dependencies = [ [[package]] name = "http-body" -version = "0.4.6" +version = "0.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" +checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" dependencies = [ "bytes", - "http 0.2.12", - "pin-project-lite", + "http 0.2.11", + "pin-project-lite 0.2.13", ] [[package]] @@ -5150,7 +5126,7 @@ dependencies = [ "futures-util", "http 1.1.0", "http-body 1.0.1", - "pin-project-lite", + "pin-project-lite 0.2.13", ] [[package]] @@ -5161,9 +5137,9 @@ checksum = "add0ab9360ddbd88cfeb3bd9574a1d85cfdfa14db10b3e21d3700dbc4328758f" [[package]] name = "httparse" -version = "1.9.4" +version = "1.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0fcc0b4a115bf80b728eb8ea024ad5bd707b615bfed49e0665b6e0f86fd082d9" +checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" [[package]] name = "httpdate" @@ -5179,22 +5155,22 @@ checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" [[package]] name = "hyper" -version = "0.14.30" +version = "0.14.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a152ddd61dfaec7273fe8419ab357f33aee0d914c5f4efbf0d96fa749eea5ec9" +checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468" dependencies = [ "bytes", "futures-channel", "futures-core", "futures-util", - "h2 0.3.26", - "http 0.2.12", - "http-body 0.4.6", + "h2 0.3.22", + "http 0.2.11", + "http-body 0.4.5", "httparse", "httpdate", "itoa", - "pin-project-lite", - "socket2 0.5.7", + "pin-project-lite 0.2.13", + "socket2 0.4.10", "tokio", "tower-service", "tracing", @@ -5215,7 +5191,7 @@ dependencies = [ "http-body 1.0.1", "httparse", "itoa", - "pin-project-lite", + "pin-project-lite 0.2.13", "smallvec", "tokio", "want", @@ -5228,10 +5204,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590" dependencies = [ "futures-util", - "http 0.2.12", - "hyper 0.14.30", + "http 0.2.11", + "hyper 0.14.27", "log", - "rustls 0.21.12", + "rustls 0.21.10", "rustls-native-certs 0.6.3", "tokio", "tokio-rustls 0.24.1", @@ -5248,7 +5224,7 @@ dependencies = [ "hyper 1.4.1", "hyper-util", "log", - "rustls 0.23.12", + "rustls 0.23.11", "rustls-pki-types", "tokio", "tokio-rustls 0.26.0", @@ -5261,8 +5237,8 @@ version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bbb958482e8c7be4bc3cf272a766a2b0bf1a6755e7a6ae777f017a31d11b13b1" dependencies = [ - "hyper 0.14.30", - "pin-project-lite", + "hyper 0.14.27", + "pin-project-lite 0.2.13", "tokio", "tokio-io-timeout", ] @@ -5274,7 +5250,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905" dependencies = [ "bytes", - "hyper 0.14.30", + "hyper 0.14.27", "native-tls", "tokio", "tokio-native-tls", @@ -5292,7 +5268,7 @@ dependencies = [ "http 1.1.0", "http-body 1.0.1", "hyper 1.4.1", - "pin-project-lite", + "pin-project-lite 0.2.13", "socket2 0.5.7", "tokio", "tower", @@ -5302,16 +5278,16 @@ dependencies = [ [[package]] name = "iana-time-zone" -version = "0.1.60" +version = "0.1.58" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141" +checksum = "8326b86b6cff230b97d0d312a6c40a60726df3332e721f72a1b035f451663b20" dependencies = [ "android_system_properties", "core-foundation-sys", "iana-time-zone-haiku", "js-sys", "wasm-bindgen", - "windows-core 0.52.0", + "windows-core", ] [[package]] @@ -5399,8 +5375,8 @@ dependencies = [ "attohttpc", "bytes", "futures", - "http 0.2.12", - "hyper 0.14.30", + "http 0.2.11", + "hyper 0.14.27", "log", "rand", "tokio", @@ -5459,18 +5435,18 @@ dependencies = [ [[package]] name = "include_dir" -version = "0.7.4" +version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "923d117408f1e49d914f1a379a309cffe4f18c05cf4e3d12e613a15fc81bd0dd" +checksum = "18762faeff7122e89e0857b02f7ce6fcc0d101d5e9ad2ad7846cc01d61b7f19e" dependencies = [ "include_dir_macros", ] [[package]] name = "include_dir_macros" -version = "0.7.4" +version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7cab85a7ed0bd5f0e76d93846e0147172bed2e2d3f859bcc33a8d9699cad1a75" +checksum = "b139284b5cf57ecfa712bcc66950bb635b31aff41c188e8a4cfc758eca374a3f" dependencies = [ "proc-macro2", "quote", @@ -5489,12 +5465,12 @@ dependencies = [ [[package]] name = "indexmap" -version = "2.3.0" +version = "2.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "de3fc2e30ba82dd1b3911c8de1ffc143c74a914a14e99514d7637e3099df5ea0" +checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26" dependencies = [ "equivalent", - "hashbrown 0.14.5", + "hashbrown 0.14.3", ] [[package]] @@ -5505,9 +5481,9 @@ checksum = "8e04e2fd2b8188ea827b32ef11de88377086d690286ab35747ef7f9bf3ccb590" [[package]] name = "indicatif" -version = "0.17.8" +version = "0.17.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "763a5a8f45087d6bcea4222e7b72c291a054edf80e4ef6efd2a4979878c7bea3" +checksum = "fb28741c9db9a713d93deb3bb9515c20788cef5815265bee4980e87bde7e0f25" dependencies = [ "console", "instant", @@ -5527,9 +5503,9 @@ dependencies = [ [[package]] name = "instant" -version = "0.1.13" +version = "0.1.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222" +checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" dependencies = [ "cfg-if", ] @@ -5563,7 +5539,7 @@ version = "1.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2" dependencies = [ - "hermit-abi 0.3.9", + "hermit-abi", "libc", "windows-sys 0.48.0", ] @@ -5594,21 +5570,15 @@ checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3" [[package]] name = "is-terminal" -version = "0.4.12" +version = "0.4.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f23ff5ef2b80d608d61efee834934d862cd92461afc0560dedf493e4c033738b" +checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b" dependencies = [ - "hermit-abi 0.3.9", - "libc", - "windows-sys 0.52.0", + "hermit-abi", + "rustix 0.38.31", + "windows-sys 0.48.0", ] -[[package]] -name = "is_terminal_polyfill" -version = "1.70.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf" - [[package]] name = "itertools" version = "0.10.5" @@ -5638,9 +5608,9 @@ dependencies = [ [[package]] name = "itoa" -version = "1.0.11" +version = "1.0.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" +checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c" [[package]] name = "jni" @@ -5664,18 +5634,18 @@ checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130" [[package]] name = "jobserver" -version = "0.1.32" +version = "0.1.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0" +checksum = "8c37f63953c4c63420ed5fd3d6d398c719489b9f872b9fa683262f8edd363c7d" dependencies = [ "libc", ] [[package]] name = "js-sys" -version = "0.3.69" +version = "0.3.66" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d" +checksum = "cee9c64da59eae3b50095c18d3e74f8b73c0b86d2792824ff01bbce68ba229ca" dependencies = [ "wasm-bindgen", ] @@ -5737,10 +5707,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4978087a58c3ab02efc5b07c5e5e2803024536106fd5506f558db172c889b3aa" dependencies = [ "futures-util", - "http 0.2.12", + "http 0.2.11", "jsonrpsee-core 0.22.5", "pin-project", - "rustls-native-certs 0.7.1", + "rustls-native-certs 0.7.0", "rustls-pki-types", "soketto 0.7.1", "thiserror", @@ -5762,7 +5732,7 @@ dependencies = [ "http 1.1.0", "jsonrpsee-core 0.23.2", "pin-project", - "rustls 0.23.12", + "rustls 0.23.11", "rustls-pki-types", "rustls-platform-verifier", "soketto 0.8.0", @@ -5785,7 +5755,7 @@ dependencies = [ "beef", "futures-timer", "futures-util", - "hyper 0.14.30", + "hyper 0.14.27", "jsonrpsee-types 0.22.5", "pin-project", "rustc-hash", @@ -5832,7 +5802,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1ccf93fc4a0bfe05d851d37d7c32b7f370fe94336b52a2f0efc5f1981895c2e5" dependencies = [ "async-trait", - "hyper 0.14.30", + "hyper 0.14.27", "hyper-rustls 0.24.2", "jsonrpsee-core 0.22.5", "jsonrpsee-types 0.22.5", @@ -5859,7 +5829,7 @@ dependencies = [ "hyper-util", "jsonrpsee-core 0.23.2", "jsonrpsee-types 0.23.2", - "rustls 0.23.12", + "rustls 0.23.11", "rustls-platform-verifier", "serde", "serde_json", @@ -5880,7 +5850,7 @@ dependencies = [ "proc-macro-crate 3.1.0", "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.65", ] [[package]] @@ -5942,7 +5912,7 @@ version = "0.20.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "edc3606fd16aca7989db2f84bb25684d0270c6d6fa1dbcd0025af7b4130523a6" dependencies = [ - "base64 0.21.7", + "base64 0.21.6", "bytes", "chrono", "serde", @@ -5952,9 +5922,9 @@ dependencies = [ [[package]] name = "keccak" -version = "0.1.5" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ecc2af9a1119c51f12a14607e783cb977bde58bc069ff0c3da1095e635d70654" +checksum = "8f6d5ed8676d904364de097082f4e7d240b571b67989ced0240f08b7f966f940" dependencies = [ "cpufeatures", ] @@ -5983,15 +5953,15 @@ version = "0.87.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "033450dfa0762130565890dadf2f8835faedf749376ca13345bcd8ecd6b5f29f" dependencies = [ - "base64 0.21.7", + "base64 0.21.6", "bytes", "chrono", "either", "futures", "home", - "http 0.2.12", - "http-body 0.4.6", - "hyper 0.14.30", + "http 0.2.11", + "http-body 0.4.5", + "hyper 0.14.27", "hyper-rustls 0.24.2", "hyper-timeout", "jsonpath-rust", @@ -6000,7 +5970,7 @@ dependencies = [ "pem 3.0.4", "pin-project", "rand", - "rustls 0.21.12", + "rustls 0.21.10", "rustls-pemfile 1.0.4", "secrecy", "serde", @@ -6023,7 +5993,7 @@ checksum = "b5bba93d054786eba7994d03ce522f368ef7d48c88a1826faa28478d85fb63ae" dependencies = [ "chrono", "form_urlencoded", - "http 0.2.12", + "http 0.2.11", "json-patch", "k8s-openapi", "once_cell", @@ -6038,12 +6008,12 @@ version = "0.87.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2d8893eb18fbf6bb6c80ef6ee7dd11ec32b1dc3c034c988ac1b3a84d46a230ae" dependencies = [ - "ahash 0.8.11", + "ahash 0.8.8", "async-trait", "backoff", "derivative", "futures", - "hashbrown 0.14.5", + "hashbrown 0.14.3", "json-patch", "k8s-openapi", "kube-client", @@ -6097,7 +6067,7 @@ dependencies = [ "polkadot-runtime-common", "smallvec", "sp-core 34.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-weights 31.0.0", "staging-xcm-builder", ] @@ -6126,15 +6096,15 @@ dependencies = [ [[package]] name = "lazy_static" -version = "1.5.0" +version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" +checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" [[package]] name = "libc" -version = "0.2.155" +version = "0.2.152" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c" +checksum = "13e3bf6590cbc649f4d1a3eefc9d5d6eb746f5200ffb04e5e142700b8faa56e7" [[package]] name = "libm" @@ -6262,7 +6232,7 @@ dependencies = [ "libp2p-identity", "libp2p-swarm", "log", - "lru 0.12.4", + "lru 0.12.3", "quick-protobuf", "quick-protobuf-codec", "smallvec", @@ -6272,11 +6242,11 @@ dependencies = [ [[package]] name = "libp2p-identity" -version = "0.2.9" +version = "0.2.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "55cca1eb2bc1fd29f099f3daaab7effd01e1a54b7c577d0ed082521034d912e8" +checksum = "999ec70441b2fb35355076726a6bc466c932e9bdc66f6a11c6c0aa17c7ab9be0" dependencies = [ - "bs58 0.5.1", + "bs58 0.5.0", "ed25519-dalek", "hkdf", "multihash 0.19.1", @@ -6362,7 +6332,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d2eeec39ad3ad0677551907dd304b2f13f17208ccebe333bef194076cd2e8921" dependencies = [ "bytes", - "curve25519-dalek 4.1.3", + "curve25519-dalek 4.1.2", "futures", "libp2p-core", "libp2p-identity", @@ -6416,7 +6386,7 @@ dependencies = [ "quinn 0.10.2", "rand", "ring 0.16.20", - "rustls 0.21.12", + "rustls 0.21.10", "socket2 0.5.7", "thiserror", "tokio", @@ -6473,7 +6443,7 @@ dependencies = [ "proc-macro-warning 0.4.2", "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.65", ] [[package]] @@ -6505,7 +6475,7 @@ dependencies = [ "libp2p-identity", "rcgen", "ring 0.16.20", - "rustls 0.21.12", + "rustls 0.21.10", "rustls-webpki 0.101.7", "thiserror", "x509-parser 0.15.1", @@ -6544,9 +6514,9 @@ dependencies = [ [[package]] name = "libp2p-websocket" -version = "0.42.2" +version = "0.42.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "004ee9c4a4631435169aee6aad2f62e3984dc031c43b6d29731e8e82a016c538" +checksum = "3facf0691bab65f571bc97c6c65ffa836248ca631d631b7691ac91deb7fceb5f" dependencies = [ "either", "futures", @@ -6555,10 +6525,9 @@ dependencies = [ "libp2p-identity", "log", "parking_lot 0.12.3", - "pin-project-lite", + "quicksink", "rw-stream-sink", - "soketto 0.8.0", - "thiserror", + "soketto 0.7.1", "url", "webpki-roots 0.25.4", ] @@ -6578,12 +6547,13 @@ dependencies = [ [[package]] name = "libredox" -version = "0.1.3" +version = "0.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d" +checksum = "85c833ca1e66078851dba29046874e38f08b2c883700aa29a03ddd3b23814ee8" dependencies = [ "bitflags 2.6.0", "libc", + "redox_syscall 0.4.1", ] [[package]] @@ -6613,7 +6583,7 @@ checksum = "5be9b9bb642d8522a44d533eab56c16c738301965504753b03ad1de3425d5451" dependencies = [ "crunchy", "digest 0.9.0", - "subtle 2.6.1", + "subtle 2.5.0", ] [[package]] @@ -6675,9 +6645,9 @@ checksum = "f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4" [[package]] name = "linux-raw-sys" -version = "0.4.14" +version = "0.4.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89" +checksum = "c4cd1a83af159aa67994778be9070f0ae1bd732942279cabb14f86f986a21456" [[package]] name = "lioness" @@ -6705,7 +6675,7 @@ dependencies = [ "futures", "futures-timer", "hex-literal", - "indexmap 2.3.0", + "indexmap 2.2.6", "libc", "mockall 0.12.1", "multiaddr 0.17.1", @@ -6748,9 +6718,9 @@ dependencies = [ [[package]] name = "lock_api" -version = "0.4.12" +version = "0.4.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17" +checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45" dependencies = [ "autocfg", "scopeguard", @@ -6758,9 +6728,9 @@ dependencies = [ [[package]] name = "log" -version = "0.4.22" +version = "0.4.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24" +checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c" [[package]] name = "lru" @@ -6773,11 +6743,11 @@ dependencies = [ [[package]] name = "lru" -version = "0.12.4" +version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "37ee39891760e7d94734f6f63fedc29a2e4a152f836120753a72503f09fcf904" +checksum = "d3262e75e648fce39813cb56ac41f3c3e3f65217ebf3844d818d1f9398cfb0dc" dependencies = [ - "hashbrown 0.14.5", + "hashbrown 0.14.3", ] [[package]] @@ -6800,50 +6770,50 @@ dependencies = [ [[package]] name = "macro_magic" -version = "0.5.1" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cc33f9f0351468d26fbc53d9ce00a096c8522ecb42f19b50f34f2c422f76d21d" +checksum = "e03844fc635e92f3a0067e25fa4bf3e3dbf3f2927bf3aa01bb7bc8f1c428949d" dependencies = [ "macro_magic_core", "macro_magic_macros", "quote", - "syn 2.0.72", + "syn 2.0.65", ] [[package]] name = "macro_magic_core" -version = "0.5.1" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1687dc887e42f352865a393acae7cf79d98fab6351cde1f58e9e057da89bf150" +checksum = "468155613a44cfd825f1fb0ffa532b018253920d404e6fca1e8d43155198a46d" dependencies = [ "const-random", - "derive-syn-parse", + "derive-syn-parse 0.1.5", "macro_magic_core_macros", "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.65", ] [[package]] name = "macro_magic_core_macros" -version = "0.5.1" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b02abfe41815b5bd98dbd4260173db2c116dda171dc0fe7838cb206333b83308" +checksum = "9ea73aa640dc01d62a590d48c0c3521ed739d53b27f919b25c3551e233481654" dependencies = [ "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.65", ] [[package]] name = "macro_magic_macros" -version = "0.5.1" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "73ea28ee64b88876bf45277ed9a5817c1817df061a74f2b988971a12570e5869" +checksum = "ef9d79ae96aaba821963320eb2b6e34d17df1e5a83d8a1985c29cc5be59577b3" dependencies = [ "macro_magic_core", "quote", - "syn 2.0.72", + "syn 2.0.65", ] [[package]] @@ -6875,9 +6845,9 @@ checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5" [[package]] name = "matrixmultiply" -version = "0.3.9" +version = "0.3.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9380b911e3e96d10c1f415da0876389aaf1b56759054eeb0de7df940c456ba1a" +checksum = "7574c1cf36da4798ab73da5b215bbf444f50718207754cb522201d78d1cd0ff2" dependencies = [ "autocfg", "rawpointer", @@ -6885,9 +6855,9 @@ dependencies = [ [[package]] name = "memchr" -version = "2.7.4" +version = "2.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" +checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149" [[package]] name = "memfd" @@ -6895,7 +6865,7 @@ version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b2cffa4ad52c6f791f4f8b15f0c05f9824b2ced1160e88cc393d64fff9a8ac64" dependencies = [ - "rustix 0.38.34", + "rustix 0.38.31", ] [[package]] @@ -6935,7 +6905,7 @@ dependencies = [ "blake3", "frame-metadata 16.0.0", "parity-scale-codec", - "scale-decode 0.13.1", + "scale-decode 0.13.0", "scale-info", ] @@ -6965,23 +6935,22 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" [[package]] name = "miniz_oxide" -version = "0.7.4" +version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b8a240ddb74feaf34a79a7add65a741f3167852fba007066dcac1ca548d89c08" +checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" dependencies = [ "adler", ] [[package]] name = "mio" -version = "1.0.1" +version = "0.8.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4569e456d394deccd22ce1c1913e6ea0e54519f577285001215d33557431afe4" +checksum = "8f3d0b296e374a4e6f3c7b0a1f5a51d748a0d34c85e7dc48fc3fa9a87657fe09" dependencies = [ - "hermit-abi 0.3.9", "libc", "wasi", - "windows-sys 0.52.0", + "windows-sys 0.48.0", ] [[package]] @@ -6995,7 +6964,7 @@ dependencies = [ "bitflags 1.3.2", "blake2 0.10.6", "c2-chacha", - "curve25519-dalek 4.1.3", + "curve25519-dalek 4.1.2", "either", "hashlink", "lioness", @@ -7004,7 +6973,7 @@ dependencies = [ "rand", "rand_chacha", "rand_distr", - "subtle 2.6.1", + "subtle 2.5.0", "thiserror", "zeroize", ] @@ -7035,7 +7004,7 @@ dependencies = [ "fragile", "lazy_static", "mockall_derive 0.12.1", - "predicates 3.1.2", + "predicates 3.1.0", "predicates-tree", ] @@ -7060,7 +7029,7 @@ dependencies = [ "cfg-if", "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.65", ] [[package]] @@ -7158,11 +7127,11 @@ dependencies = [ [[package]] name = "multihash-derive" -version = "0.8.1" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1d6d4752e6230d8ef7adf7bd5d8c4b1f6561c1014c5ba9a37445ccefe18aa1db" +checksum = "fc076939022111618a5026d3be019fd8b366e76314538ff9a1b59ffbcbf98bcd" dependencies = [ - "proc-macro-crate 1.1.3", + "proc-macro-crate 1.3.1", "proc-macro-error", "proc-macro2", "quote", @@ -7176,12 +7145,6 @@ version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e5ce46fe64a9d73be07dcbe690a38ce1b293be448fd8ce1e6c1b8062c9f72c6a" -[[package]] -name = "multimap" -version = "0.10.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "defc4c55412d89136f966bbb339008b474350e5e6e78d2714439c386b3137a03" - [[package]] name = "multistream-select" version = "0.13.0" @@ -7198,9 +7161,9 @@ dependencies = [ [[package]] name = "nalgebra" -version = "0.32.6" +version = "0.32.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7b5c17de023a86f59ed79891b2e5d5a94c705dbe904a5b5c9c952ea6221b03e4" +checksum = "307ed9b18cc2423f29e83f84fd23a8e73628727990181f18641a8b5dc2ab1caa" dependencies = [ "approx", "matrixmultiply", @@ -7214,21 +7177,22 @@ dependencies = [ [[package]] name = "nalgebra-macros" -version = "0.2.2" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "254a5372af8fc138e36684761d3c0cdb758a4410e938babcff1c860ce14ddbfc" +checksum = "91761aed67d03ad966ef783ae962ef9bbaca728d2dd7ceb7939ec110fffad998" dependencies = [ "proc-macro2", "quote", - "syn 2.0.72", + "syn 1.0.109", ] [[package]] name = "native-tls" -version = "0.2.12" +version = "0.2.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a8614eb2c83d59d1c8cc974dd3f920198647674a0a035e1af1fa58707e317466" +checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e" dependencies = [ + "lazy_static", "libc", "log", "openssl", @@ -7295,9 +7259,9 @@ dependencies = [ [[package]] name = "netlink-sys" -version = "0.8.6" +version = "0.8.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "416060d346fbaf1f23f9512963e3e878f1a78e707cb699ba9215761754244307" +checksum = "6471bf08e7ac0135876a9581bf3217ef0333c191c128d34878079f42ee150411" dependencies = [ "bytes", "futures", @@ -7386,29 +7350,24 @@ dependencies = [ [[package]] name = "num-bigint" -version = "0.4.6" +version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9" +checksum = "608e7659b5c3d7cba262d894801b9ec9d00de989e8a82bd4bef91d08da45cdc0" dependencies = [ + "autocfg", "num-integer", "num-traits", ] [[package]] name = "num-complex" -version = "0.4.6" +version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495" +checksum = "1ba157ca0885411de85d6ca030ba7e2a83a28636056c7c699b07c8b6f7383214" dependencies = [ "num-traits", ] -[[package]] -name = "num-conv" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" - [[package]] name = "num-format" version = "0.4.4" @@ -7421,19 +7380,21 @@ dependencies = [ [[package]] name = "num-integer" -version = "0.1.46" +version = "0.1.45" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" +checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" dependencies = [ + "autocfg", "num-traits", ] [[package]] name = "num-rational" -version = "0.4.2" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824" +checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0" dependencies = [ + "autocfg", "num-bigint", "num-integer", "num-traits", @@ -7441,9 +7402,9 @@ dependencies = [ [[package]] name = "num-traits" -version = "0.2.19" +version = "0.2.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" +checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c" dependencies = [ "autocfg", "libm", @@ -7455,7 +7416,7 @@ version = "1.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" dependencies = [ - "hermit-abi 0.3.9", + "hermit-abi", "libc", ] @@ -7486,15 +7447,6 @@ dependencies = [ "memchr", ] -[[package]] -name = "object" -version = "0.36.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3f203fa8daa7bb185f760ae12bd8e097f63d17041dcdcaf675ac54cdf863170e" -dependencies = [ - "memchr", -] - [[package]] name = "oid-registry" version = "0.6.1" @@ -7510,7 +7462,7 @@ version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1c958dd45046245b9c3c2547369bb634eb461670b2e7e0de552905801a648d1d" dependencies = [ - "asn1-rs 0.6.2", + "asn1-rs 0.6.1", ] [[package]] @@ -7527,15 +7479,15 @@ checksum = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c" [[package]] name = "opaque-debug" -version = "0.3.1" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381" +checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5" [[package]] name = "openssl" -version = "0.10.66" +version = "0.10.64" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9529f4786b70a3e8c61e11179af17ab6188ad8d0ded78c5529441ed39d4bd9c1" +checksum = "95a0481286a310808298130d22dd1fef0fa571e05a8f44ec801801e84b216b1f" dependencies = [ "bitflags 2.6.0", "cfg-if", @@ -7554,7 +7506,7 @@ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" dependencies = [ "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.65", ] [[package]] @@ -7574,9 +7526,9 @@ dependencies = [ [[package]] name = "openssl-sys" -version = "0.9.103" +version = "0.9.102" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f9e8deee91df40a943c71b917e5874b951d32a802526c85721ce3b776c929d6" +checksum = "c597637d56fbc83893a35eb0dd04b2b8e7a50c91e64e9493e398b5df4fb45fa2" dependencies = [ "cc", "libc", @@ -7618,7 +7570,7 @@ dependencies = [ "sp-core 34.0.0", "sp-crypto-hashing", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -7638,7 +7590,7 @@ dependencies = [ "sp-arithmetic 26.0.0", "sp-core 34.0.0", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -7654,7 +7606,7 @@ dependencies = [ "pallet-transaction-payment", "parity-scale-codec", "scale-info", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -7670,7 +7622,7 @@ dependencies = [ "parity-scale-codec", "scale-info", "sp-core 34.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -7689,7 +7641,7 @@ dependencies = [ "serde", "sp-core 34.0.0", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -7707,7 +7659,7 @@ dependencies = [ "parity-scale-codec", "scale-info", "sp-core 34.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -7725,7 +7677,7 @@ dependencies = [ "scale-info", "sp-application-crypto 37.0.0", "sp-consensus-aura", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -7742,7 +7694,7 @@ dependencies = [ "scale-info", "sp-application-crypto 37.0.0", "sp-authority-discovery", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -7757,7 +7709,7 @@ dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", "scale-info", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -7780,7 +7732,7 @@ dependencies = [ "sp-consensus-babe", "sp-core 34.0.0", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-session", "sp-staking", "sp-std", @@ -7804,7 +7756,7 @@ dependencies = [ "scale-info", "sp-core 34.0.0", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", "sp-tracing 17.0.0", ] @@ -7822,7 +7774,7 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -7841,7 +7793,7 @@ dependencies = [ "scale-info", "serde", "sp-consensus-beefy", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-session", "sp-staking", "sp-std", @@ -7868,7 +7820,7 @@ dependencies = [ "sp-consensus-beefy", "sp-core 34.0.0", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-state-machine 0.42.0", "sp-std", ] @@ -7888,7 +7840,7 @@ dependencies = [ "scale-info", "sp-core 34.0.0", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -7909,7 +7861,7 @@ dependencies = [ "parity-scale-codec", "scale-info", "sp-consensus-grandpa", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", "sp-trie 36.0.0", ] @@ -7929,7 +7881,7 @@ dependencies = [ "num-traits", "parity-scale-codec", "scale-info", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -7950,7 +7902,7 @@ dependencies = [ "pallet-bridge-grandpa", "parity-scale-codec", "scale-info", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", "sp-trie 36.0.0", ] @@ -7972,7 +7924,7 @@ dependencies = [ "parity-scale-codec", "scale-info", "sp-arithmetic 26.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -7992,7 +7944,7 @@ dependencies = [ "sp-api", "sp-arithmetic 26.0.0", "sp-core 34.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -8012,7 +7964,7 @@ dependencies = [ "scale-info", "sp-core 34.0.0", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -8032,7 +7984,7 @@ dependencies = [ "parity-scale-codec", "rand", "scale-info", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-staking", "sp-std", ] @@ -8051,7 +8003,7 @@ dependencies = [ "scale-info", "sp-core 34.0.0", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -8069,7 +8021,7 @@ dependencies = [ "scale-info", "serde", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -8089,7 +8041,7 @@ dependencies = [ "sp-arithmetic 26.0.0", "sp-core 34.0.0", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -8103,7 +8055,7 @@ dependencies = [ "frame-system", "parity-scale-codec", "scale-info", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-staking", "sp-std", ] @@ -8127,7 +8079,7 @@ dependencies = [ "sp-core 34.0.0", "sp-io 37.0.0", "sp-npos-elections", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", "strum 0.26.3", ] @@ -8143,7 +8095,7 @@ dependencies = [ "frame-system", "parity-scale-codec", "sp-npos-elections", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -8163,7 +8115,7 @@ dependencies = [ "pallet-transaction-payment", "parity-scale-codec", "scale-info", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -8220,7 +8172,7 @@ dependencies = [ "sp-application-crypto 37.0.0", "sp-core 34.0.0", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -8253,7 +8205,7 @@ dependencies = [ "parity-scale-codec", "scale-info", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -8286,7 +8238,7 @@ dependencies = [ "parity-scale-codec", "scale-info", "sp-core 34.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -8309,7 +8261,7 @@ dependencies = [ "parity-scale-codec", "scale-info", "sp-core 34.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -8328,7 +8280,7 @@ dependencies = [ "pallet-timestamp", "parity-scale-codec", "scale-info", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -8347,7 +8299,7 @@ dependencies = [ "parity-scale-codec", "scale-info", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-staking", "sp-std", ] @@ -8368,7 +8320,7 @@ dependencies = [ "sp-core 34.0.0", "sp-inherents", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -8390,7 +8342,7 @@ dependencies = [ "sp-consensus-grandpa", "sp-core 34.0.0", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-session", "sp-staking", "sp-std", @@ -8410,7 +8362,7 @@ dependencies = [ "parity-scale-codec", "scale-info", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -8430,7 +8382,7 @@ dependencies = [ "sp-application-crypto 37.0.0", "sp-core 34.0.0", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-staking", "sp-std", ] @@ -8449,7 +8401,7 @@ dependencies = [ "sp-core 34.0.0", "sp-io 37.0.0", "sp-keyring", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -8464,7 +8416,7 @@ dependencies = [ "parity-scale-codec", "safe-mix", "scale-info", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -8482,7 +8434,7 @@ dependencies = [ "scale-info", "sp-core 34.0.0", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -8502,7 +8454,7 @@ dependencies = [ "sp-arithmetic 26.0.0", "sp-core 34.0.0", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", "sp-weights 31.0.0", ] @@ -8522,7 +8474,7 @@ dependencies = [ "sp-core 34.0.0", "sp-io 37.0.0", "sp-mmr-primitives", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -8539,7 +8491,7 @@ dependencies = [ "parity-scale-codec", "scale-info", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -8557,7 +8509,7 @@ dependencies = [ "pallet-nfts", "parity-scale-codec", "scale-info", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -8576,7 +8528,7 @@ dependencies = [ "scale-info", "sp-core 34.0.0", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -8605,7 +8557,7 @@ dependencies = [ "scale-info", "sp-arithmetic 26.0.0", "sp-core 34.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -8623,7 +8575,7 @@ dependencies = [ "scale-info", "sp-core 34.0.0", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-staking", "sp-std", "sp-tracing 17.0.0", @@ -8645,7 +8597,7 @@ dependencies = [ "pallet-staking", "parity-scale-codec", "scale-info", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-runtime-interface 28.0.0", "sp-staking", "sp-std", @@ -8676,7 +8628,7 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-staking", "sp-std", ] @@ -8701,7 +8653,7 @@ dependencies = [ "pallet-staking", "parity-scale-codec", "scale-info", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-staking", "sp-std", ] @@ -8721,7 +8673,7 @@ dependencies = [ "scale-info", "serde", "sp-core 34.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -8739,7 +8691,7 @@ dependencies = [ "scale-info", "sp-core 34.0.0", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -8755,7 +8707,7 @@ dependencies = [ "parity-scale-codec", "scale-info", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -8775,7 +8727,7 @@ dependencies = [ "sp-arithmetic 26.0.0", "sp-core 34.0.0", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -8791,7 +8743,7 @@ dependencies = [ "parity-scale-codec", "scale-info", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -8811,7 +8763,7 @@ dependencies = [ "serde", "sp-arithmetic 26.0.0", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -8831,7 +8783,7 @@ dependencies = [ "sp-arithmetic 26.0.0", "sp-core 34.0.0", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -8849,7 +8801,7 @@ dependencies = [ "parity-scale-codec", "scale-info", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", "sp-weights 31.0.0", ] @@ -8869,7 +8821,7 @@ dependencies = [ "scale-info", "sp-core 34.0.0", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-session", "sp-staking", "sp-state-machine 0.42.0", @@ -8890,7 +8842,7 @@ dependencies = [ "pallet-staking", "parity-scale-codec", "rand", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-session", "sp-std", ] @@ -8910,7 +8862,7 @@ dependencies = [ "scale-info", "sp-arithmetic 26.0.0", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -8933,11 +8885,23 @@ dependencies = [ "serde", "sp-application-crypto 37.0.0", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-staking", "sp-std", ] +[[package]] +name = "pallet-staking-reward-curve" +version = "12.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "db5e6b1d8ee9d3f6894c5abd8c3e17737ed738c9854f87bfd16239741b7f4d5d" +dependencies = [ + "proc-macro-crate 3.1.0", + "proc-macro2", + "quote", + "syn 2.0.65", +] + [[package]] name = "pallet-staking-reward-fn" version = "22.0.0" @@ -8973,7 +8937,7 @@ dependencies = [ "scale-info", "sp-core 34.0.0", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -8990,7 +8954,7 @@ dependencies = [ "parity-scale-codec", "scale-info", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -9009,7 +8973,7 @@ dependencies = [ "scale-info", "sp-inherents", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", "sp-storage 21.0.0", "sp-timestamp", @@ -9028,7 +8992,7 @@ dependencies = [ "serde", "sp-core 34.0.0", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -9041,7 +9005,7 @@ dependencies = [ "pallet-transaction-payment", "parity-scale-codec", "sp-api", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-weights 31.0.0", ] @@ -9061,7 +9025,7 @@ dependencies = [ "scale-info", "serde", "sp-core 34.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -9077,7 +9041,7 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -9094,7 +9058,7 @@ dependencies = [ "scale-info", "sp-core 34.0.0", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -9110,7 +9074,7 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -9126,7 +9090,7 @@ dependencies = [ "parity-scale-codec", "scale-info", "sp-api", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -9147,7 +9111,7 @@ dependencies = [ "serde", "sp-core 34.0.0", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", "staging-xcm", "staging-xcm-builder", @@ -9168,7 +9132,7 @@ dependencies = [ "parity-scale-codec", "scale-info", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", "staging-xcm", "staging-xcm-builder", @@ -9192,7 +9156,7 @@ dependencies = [ "parity-scale-codec", "scale-info", "sp-core 34.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", "staging-xcm", "staging-xcm-builder", @@ -9213,7 +9177,7 @@ dependencies = [ "parity-scale-codec", "scale-info", "sp-core 34.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", "staging-xcm", "staging-xcm-builder", @@ -9243,7 +9207,7 @@ dependencies = [ "sp-consensus-aura", "sp-core 34.0.0", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", "staging-parachain-info", "staging-xcm", @@ -9274,7 +9238,7 @@ dependencies = [ "sp-consensus-aura", "sp-core 34.0.0", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", "sp-tracing 17.0.0", "staging-parachain-info", @@ -9388,7 +9352,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27" dependencies = [ "lock_api", - "parking_lot_core 0.9.10", + "parking_lot_core 0.9.9", ] [[package]] @@ -9407,15 +9371,15 @@ dependencies = [ [[package]] name = "parking_lot_core" -version = "0.9.10" +version = "0.9.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8" +checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e" dependencies = [ "cfg-if", "libc", - "redox_syscall 0.5.3", + "redox_syscall 0.4.1", "smallvec", - "windows-targets 0.52.6", + "windows-targets 0.48.5", ] [[package]] @@ -9432,14 +9396,14 @@ checksum = "346f04948ba92c43e8469c1ee6736c7563d71012b17d40745260fe106aac2166" dependencies = [ "base64ct", "rand_core 0.6.4", - "subtle 2.6.1", + "subtle 2.5.0", ] [[package]] name = "paste" -version = "1.0.15" +version = "1.0.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" +checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c" [[package]] name = "pbkdf2" @@ -9534,7 +9498,7 @@ dependencies = [ "sp-genesis-builder", "sp-inherents", "sp-offchain", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-session", "sp-std", "sp-storage 21.0.0", @@ -9580,7 +9544,7 @@ dependencies = [ "parity-scale-codec", "people-kusama-runtime", "polkadot-runtime-common", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "staging-kusama-runtime", "staging-xcm", "staging-xcm-executor", @@ -9642,7 +9606,7 @@ dependencies = [ "sp-genesis-builder", "sp-inherents", "sp-offchain", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-session", "sp-std", "sp-storage 21.0.0", @@ -9690,7 +9654,7 @@ dependencies = [ "polkadot-runtime-common", "polkadot-runtime-constants", "polkadot-system-emulated-network", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "staging-xcm", "staging-xcm-executor", "xcm-runtime-apis", @@ -9749,7 +9713,7 @@ dependencies = [ "sp-genesis-builder", "sp-inherents", "sp-offchain", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-session", "sp-std", "sp-storage 21.0.0", @@ -9772,9 +9736,9 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" [[package]] name = "pest" -version = "2.7.11" +version = "2.7.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd53dff83f26735fdc1ca837098ccf133605d794cdae66acfc2bfac3ec809d95" +checksum = "219c0dcc30b6a27553f9cc242972b67f75b60eb0db71f0b5462f38b058c41546" dependencies = [ "memchr", "thiserror", @@ -9783,9 +9747,9 @@ dependencies = [ [[package]] name = "pest_derive" -version = "2.7.11" +version = "2.7.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2a548d2beca6773b1c244554d36fcf8548a8a58e74156968211567250e48e49a" +checksum = "22e1288dbd7786462961e69bfd4df7848c1e37e8b74303dbdab82c3a9cdd2809" dependencies = [ "pest", "pest_generator", @@ -9793,22 +9757,22 @@ dependencies = [ [[package]] name = "pest_generator" -version = "2.7.11" +version = "2.7.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c93a82e8d145725dcbaf44e5ea887c8a869efdcc28706df2d08c69e17077183" +checksum = "1381c29a877c6d34b8c176e734f35d7f7f5b3adaefe940cb4d1bb7af94678e2e" dependencies = [ "pest", "pest_meta", "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.65", ] [[package]] name = "pest_meta" -version = "2.7.11" +version = "2.7.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a941429fea7e08bedec25e4f6785b6ffaacc6b755da98df5ef3e7dcf4a124c4f" +checksum = "d0934d6907f148c22a3acbda520c7eed243ad7487a30f51f6ce52b58b7077a8a" dependencies = [ "once_cell", "pest", @@ -9817,39 +9781,45 @@ dependencies = [ [[package]] name = "petgraph" -version = "0.6.5" +version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db" +checksum = "e1d3afd2628e69da2be385eb6f2fd57c8ac7977ceeff6dc166ff1657b0e386a9" dependencies = [ "fixedbitset", - "indexmap 2.3.0", + "indexmap 2.2.6", ] [[package]] name = "pin-project" -version = "1.1.5" +version = "1.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3" +checksum = "fda4ed1c6c173e3fc7a83629421152e01d7b1f9b7f65fb301e490e8cfc656422" dependencies = [ "pin-project-internal", ] [[package]] name = "pin-project-internal" -version = "1.1.5" +version = "1.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965" +checksum = "4359fd9c9171ec6e8c62926d6faaf553a8dc3f64e1507e76da7911b4f6a04405" dependencies = [ "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.65", ] [[package]] name = "pin-project-lite" -version = "0.2.14" +version = "0.1.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "257b64915a082f7811703966789728173279bdebb956b143dbcd23f6f970a777" + +[[package]] +name = "pin-project-lite" +version = "0.2.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02" +checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58" [[package]] name = "pin-utils" @@ -9859,9 +9829,9 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" [[package]] name = "piper" -version = "0.2.3" +version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ae1d5c74c9876f070d3e8fd503d748c7d974c3e48da8f41350fa5222ef9b4391" +checksum = "464db0c665917b13ebb5d453ccdec4add5658ee1adc7affc7677615356a8afaf" dependencies = [ "atomic-waker", "fastrand", @@ -9880,9 +9850,15 @@ dependencies = [ [[package]] name = "pkg-config" -version = "0.3.30" +version = "0.3.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "69d3587f8a9e599cc7ec2c00e331f71c4e69a5f9a4b8a6efd5b07466b9736f9a" + +[[package]] +name = "platforms" +version = "3.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec" +checksum = "14e6ab3f592e6fb464fc9712d8d6e6912de6473954635fd76a589d832cffcbb0" [[package]] name = "polkadot-ckb-merkle-mountain-range" @@ -9903,7 +9879,7 @@ dependencies = [ "parity-scale-codec", "scale-info", "sp-core 34.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -9922,7 +9898,7 @@ dependencies = [ "sp-consensus-babe", "sp-consensus-beefy", "sp-core 34.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", ] [[package]] @@ -9938,7 +9914,7 @@ dependencies = [ "scale-info", "serde", "sp-core 34.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", "sp-weights 31.0.0", ] @@ -9966,7 +9942,7 @@ dependencies = [ "sp-inherents", "sp-io 37.0.0", "sp-keystore 0.40.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-staking", "sp-std", ] @@ -10020,6 +9996,7 @@ dependencies = [ "pallet-session", "pallet-session-benchmarking", "pallet-staking", + "pallet-staking-reward-curve", "pallet-staking-reward-fn", "pallet-staking-runtime-api", "pallet-state-trie-migration", @@ -10055,7 +10032,7 @@ dependencies = [ "sp-keyring", "sp-npos-elections", "sp-offchain", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-session", "sp-staking", "sp-std", @@ -10114,7 +10091,7 @@ dependencies = [ "sp-inherents", "sp-io 37.0.0", "sp-npos-elections", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-session", "sp-staking", "sp-std", @@ -10133,7 +10110,7 @@ dependencies = [ "polkadot-runtime-common", "smallvec", "sp-core 34.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-weights 31.0.0", "staging-xcm-builder", ] @@ -10144,7 +10121,7 @@ version = "15.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ac75b3fea8464e5681b44733ed11cf09e22ff1e956f6703b918b637bd40e7427" dependencies = [ - "bs58 0.5.1", + "bs58 0.5.0", "frame-benchmarking", "parity-scale-codec", "polkadot-primitives", @@ -10154,9 +10131,9 @@ dependencies = [ [[package]] name = "polkadot-runtime-parachains" -version = "15.0.1" +version = "15.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3df740bff0b29ba4cd8c8874d7f8fb90e5722c24a7354d2e96d15e7121c1525e" +checksum = "cc9527e255412d9944a68a13161c0b2eb9cfa8011fab2cb4c5857f2ab80e80cc" dependencies = [ "bitflags 1.3.2", "bitvec", @@ -10192,7 +10169,7 @@ dependencies = [ "sp-inherents", "sp-io 37.0.0", "sp-keystore 0.40.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-session", "sp-staking", "sp-std", @@ -10279,7 +10256,7 @@ dependencies = [ "polkavm-common 0.8.0", "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.65", ] [[package]] @@ -10291,7 +10268,7 @@ dependencies = [ "polkavm-common 0.9.0", "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.65", ] [[package]] @@ -10301,7 +10278,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "15e85319a0d5129dc9f021c62607e0804f5fb777a05cdda44d750ac0732def66" dependencies = [ "polkavm-derive-impl 0.8.0", - "syn 2.0.72", + "syn 2.0.65", ] [[package]] @@ -10311,7 +10288,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8ba81f7b5faac81e528eb6158a6f3c9e0bb1008e0ffa19653bc8dea925ecb429" dependencies = [ "polkavm-derive-impl 0.9.0", - "syn 2.0.72", + "syn 2.0.65", ] [[package]] @@ -10321,7 +10298,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9c7be503e60cf56c0eb785f90aaba4b583b36bff00e93997d93fef97f9553c39" dependencies = [ "gimli 0.28.1", - "hashbrown 0.14.5", + "hashbrown 0.14.3", "log", "object 0.32.2", "polkavm-common 0.9.0", @@ -10337,15 +10314,14 @@ checksum = "26e85d3456948e650dff0cfc85603915847faf893ed1e66b020bb82ef4557120" [[package]] name = "polling" -version = "3.7.2" +version = "3.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a3ed00ed3fbf728b5816498ecd316d1716eecaced9c0c8d2c5a6740ca214985b" +checksum = "24f040dee2588b4963afb4e420540439d126f73fdacf4a9c486a96d840bac3c9" dependencies = [ "cfg-if", "concurrent-queue", - "hermit-abi 0.4.0", - "pin-project-lite", - "rustix 0.38.34", + "pin-project-lite 0.2.13", + "rustix 0.38.31", "tracing", "windows-sys 0.52.0", ] @@ -10357,27 +10333,27 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf" dependencies = [ "cpufeatures", - "opaque-debug 0.3.1", + "opaque-debug 0.3.0", "universal-hash", ] [[package]] name = "polyval" -version = "0.6.2" +version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25" +checksum = "d52cff9d1d4dee5fe6d03729099f4a310a41179e0a10dbf542039873f2e826fb" dependencies = [ "cfg-if", "cpufeatures", - "opaque-debug 0.3.1", + "opaque-debug 0.3.0", "universal-hash", ] [[package]] name = "portable-atomic" -version = "1.7.0" +version = "1.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "da544ee218f0d287a911e9c99a39a8c9bc8fcad3cb8db5959940044ecfc67265" +checksum = "7170ef9988bc169ba16dd36a7fa041e5c4cbeb6a35b76d4c03daded371eae7c0" [[package]] name = "powerfmt" @@ -10387,12 +10363,9 @@ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" [[package]] name = "ppv-lite86" -version = "0.2.18" +version = "0.2.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dee4364d9f3b902ef14fab8a1ddffb783a1cb6b4bba3bfc1fa3922732c7de97f" -dependencies = [ - "zerocopy 0.6.6", -] +checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" [[package]] name = "predicates" @@ -10410,9 +10383,9 @@ dependencies = [ [[package]] name = "predicates" -version = "3.1.2" +version = "3.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7e9086cc7640c29a356d1a29fd134380bee9d8f79a17410aa76e7ad295f42c97" +checksum = "68b87bfd4605926cdfefc1c3b5f8fe560e3feca9d5552cf68c466d3d8236c7e8" dependencies = [ "anstyle", "predicates-core", @@ -10420,15 +10393,15 @@ dependencies = [ [[package]] name = "predicates-core" -version = "1.0.8" +version = "1.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ae8177bee8e75d6846599c6b9ff679ed51e882816914eec639944d7c9aa11931" +checksum = "b794032607612e7abeb4db69adb4e33590fa6cf1149e95fd7cb00e634b92f174" [[package]] name = "predicates-tree" -version = "1.0.11" +version = "1.0.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "41b740d195ed3166cd147c8047ec98db0e22ec019eb8eeb76d343b795304fb13" +checksum = "368ba315fb8c5052ab692e68a0eefec6ec57b23a36959c14496f0b0df2c0cecf" dependencies = [ "predicates-core", "termtree", @@ -10446,12 +10419,12 @@ dependencies = [ [[package]] name = "prettyplease" -version = "0.2.20" +version = "0.2.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f12335488a2f3b0a83b14edad48dca9879ce89b2edd10e80237e4e852dd645e" +checksum = "a41cf62165e97c7f814d2221421dbb9afcbcdb0a88068e5ea206e19951c2cbb5" dependencies = [ "proc-macro2", - "syn 2.0.72", + "syn 2.0.65", ] [[package]] @@ -10471,12 +10444,12 @@ dependencies = [ [[package]] name = "proc-macro-crate" -version = "1.1.3" +version = "1.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e17d47ce914bf4de440332250b0edd23ce48c005f59fab39d3335866b114f11a" +checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" dependencies = [ - "thiserror", - "toml 0.5.11", + "once_cell", + "toml_edit 0.19.15", ] [[package]] @@ -10485,7 +10458,7 @@ version = "3.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6d37c51ca738a55da99dc0c4a34860fd675453b8b36209178c2249bb13651284" dependencies = [ - "toml_edit 0.21.1", + "toml_edit 0.21.0", ] [[package]] @@ -10520,34 +10493,34 @@ checksum = "3d1eaa7fa0aa1929ffdf7eeb6eac234dde6268914a14ad44d23521ab6a9b258e" dependencies = [ "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.65", ] [[package]] name = "proc-macro-warning" -version = "1.0.2" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "834da187cfe638ae8abb0203f0b33e5ccdb02a28e7199f2f47b3e2754f50edca" +checksum = "9b698b0b09d40e9b7c1a47b132d66a8b54bcd20583d9b6d06e4535e383b4405c" dependencies = [ "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.65", ] [[package]] name = "proc-macro2" -version = "1.0.86" +version = "1.0.82" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77" +checksum = "8ad3d49ab951a01fbaafe34f2ec74122942fe18a3f9814c3268f1bb72042131b" dependencies = [ "unicode-ident", ] [[package]] name = "prometheus" -version = "0.13.4" +version = "0.13.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3d33c28a30771f7f96db69893f78b857f7450d7e0237e9c8fc6427a81bae7ed1" +checksum = "449811d15fbdf5ceb5c1144416066429cf82316e2ec8ce0c1f6f8a02e7bbcf8c" dependencies = [ "cfg-if", "fnv", @@ -10577,14 +10550,14 @@ checksum = "440f724eba9f6996b75d63681b0a92b06947f1457076d503a4d2e2c8f56442b8" dependencies = [ "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.65", ] [[package]] name = "proptest" -version = "1.5.0" +version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b4c2511913b88df1637da85cc8d96ec8e43a3f8bb8ccb71ee1ac240d6f3df58d" +checksum = "31b476131c3c86cb68032fdc5cb6d5a1045e3e42d96b69fa599fd77701e1f5bf" dependencies = [ "bit-set", "bit-vec", @@ -10594,7 +10567,7 @@ dependencies = [ "rand", "rand_chacha", "rand_xorshift", - "regex-syntax 0.8.4", + "regex-syntax 0.8.2", "rusty-fork", "tempfile", "unarray", @@ -10631,7 +10604,7 @@ dependencies = [ "itertools 0.10.5", "lazy_static", "log", - "multimap 0.8.3", + "multimap", "petgraph", "prettyplease 0.1.25", "prost 0.11.9", @@ -10652,14 +10625,14 @@ dependencies = [ "heck 0.5.0", "itertools 0.12.1", "log", - "multimap 0.10.0", + "multimap", "once_cell", "petgraph", - "prettyplease 0.2.20", + "prettyplease 0.2.16", "prost 0.12.6", "prost-types 0.12.6", "regex", - "syn 2.0.72", + "syn 2.0.65", "tempfile", ] @@ -10686,7 +10659,7 @@ dependencies = [ "itertools 0.12.1", "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.65", ] [[package]] @@ -10744,6 +10717,17 @@ dependencies = [ "unsigned-varint 0.7.2", ] +[[package]] +name = "quicksink" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77de3c815e5a160b1539c6592796801df2043ae35e123b46d73380cfa57af858" +dependencies = [ + "futures-core", + "futures-sink", + "pin-project-lite 0.1.12", +] + [[package]] name = "quinn" version = "0.9.4" @@ -10751,7 +10735,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2e8b432585672228923edbbf64b8b12c14e1112f62e88737655b4a083dbcd78e" dependencies = [ "bytes", - "pin-project-lite", + "pin-project-lite 0.2.13", "quinn-proto 0.9.6", "quinn-udp 0.3.2", "rustc-hash", @@ -10770,11 +10754,11 @@ checksum = "8cc2c5017e4b43d5995dcea317bc46c1e09404c0a9664d2908f7f02dfe943d75" dependencies = [ "bytes", "futures-io", - "pin-project-lite", + "pin-project-lite 0.2.13", "quinn-proto 0.10.6", "quinn-udp 0.4.1", "rustc-hash", - "rustls 0.21.12", + "rustls 0.21.10", "thiserror", "tokio", "tracing", @@ -10808,7 +10792,7 @@ dependencies = [ "rand", "ring 0.16.20", "rustc-hash", - "rustls 0.21.12", + "rustls 0.21.10", "slab", "thiserror", "tinyvec", @@ -10843,9 +10827,9 @@ dependencies = [ [[package]] name = "quote" -version = "1.0.36" +version = "1.0.35" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7" +checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef" dependencies = [ "proc-macro2", ] @@ -10919,9 +10903,9 @@ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3" [[package]] name = "rayon" -version = "1.10.0" +version = "1.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa" +checksum = "9c27db03db7734835b3f53954b534c91069375ce6ccaa2e065441e07d9b6cdb1" dependencies = [ "either", "rayon-core", @@ -10929,9 +10913,9 @@ dependencies = [ [[package]] name = "rayon-core" -version = "1.12.1" +version = "1.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2" +checksum = "5ce3fb6ad83f861aac485e76e1985cd109d9a3713802152be56c3b1f0e0658ed" dependencies = [ "crossbeam-deque", "crossbeam-utils", @@ -10949,22 +10933,6 @@ dependencies = [ "yasna", ] -[[package]] -name = "reconnecting-jsonrpsee-ws-client" -version = "0.4.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "06fa4f17e09edfc3131636082faaec633c7baa269396b4004040bc6c52f49f65" -dependencies = [ - "cfg_aliases", - "finito", - "futures", - "jsonrpsee 0.23.2", - "serde_json", - "thiserror", - "tokio", - "tracing", -] - [[package]] name = "redox_syscall" version = "0.2.16" @@ -10983,20 +10951,11 @@ dependencies = [ "bitflags 1.3.2", ] -[[package]] -name = "redox_syscall" -version = "0.5.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2a908a6e00f1fdd0dfd9c0eb08ce85126f6d8bbda50017e74bc4a4b7d4a926a4" -dependencies = [ - "bitflags 2.6.0", -] - [[package]] name = "redox_users" -version = "0.4.5" +version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bd283d9651eeda4b2a83a43c1c91b266c40fd76ecd39a50a8c630ae69dc72891" +checksum = "a18479200779601e498ada4e8c1e1f50e3ee19deb0259c25825a98b5603b2cb4" dependencies = [ "getrandom", "libredox", @@ -11005,22 +10964,22 @@ dependencies = [ [[package]] name = "ref-cast" -version = "1.0.23" +version = "1.0.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ccf0a6f84d5f1d581da8b41b47ec8600871962f2a528115b542b362d4b744931" +checksum = "acde58d073e9c79da00f2b5b84eed919c8326832648a5b109b3fce1bb1175280" dependencies = [ "ref-cast-impl", ] [[package]] name = "ref-cast-impl" -version = "1.0.23" +version = "1.0.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bcc303e793d3734489387d205e9b186fac9c6cfacedd98cbb2e8a5943595f3e6" +checksum = "7f7473c2cfcf90008193dd0e3e16599455cb601a9fce322b5bb55de799664925" dependencies = [ "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.65", ] [[package]] @@ -11050,14 +11009,14 @@ dependencies = [ [[package]] name = "regex" -version = "1.10.5" +version = "1.10.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b91213439dad192326a0d7c6ee3955910425f441d7038e0d6933b0aec5c4517f" +checksum = "c117dbdfde9c8308975b6a18d71f3f385c89461f7b3fb054288ecf2a2058ba4c" dependencies = [ "aho-corasick", "memchr", - "regex-automata 0.4.7", - "regex-syntax 0.8.4", + "regex-automata 0.4.6", + "regex-syntax 0.8.2", ] [[package]] @@ -11071,13 +11030,13 @@ dependencies = [ [[package]] name = "regex-automata" -version = "0.4.7" +version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df" +checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea" dependencies = [ "aho-corasick", "memchr", - "regex-syntax 0.8.4", + "regex-syntax 0.8.2", ] [[package]] @@ -11088,9 +11047,9 @@ checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" [[package]] name = "regex-syntax" -version = "0.8.4" +version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b" +checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" [[package]] name = "reqwest" @@ -11098,15 +11057,15 @@ version = "0.11.27" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dd67538700a17451e7cba03ac727fb961abb7607553461627b97de0b89cf4a62" dependencies = [ - "base64 0.21.7", + "base64 0.21.6", "bytes", "encoding_rs", "futures-core", "futures-util", - "h2 0.3.26", - "http 0.2.12", - "http-body 0.4.6", - "hyper 0.14.30", + "h2 0.3.22", + "http 0.2.11", + "http-body 0.4.5", + "hyper 0.14.27", "hyper-tls", "ipnet", "js-sys", @@ -11115,7 +11074,7 @@ dependencies = [ "native-tls", "once_cell", "percent-encoding", - "pin-project-lite", + "pin-project-lite 0.2.13", "rustls-pemfile 1.0.4", "serde", "serde_json", @@ -11149,7 +11108,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2" dependencies = [ "hmac 0.12.1", - "subtle 2.6.1", + "subtle 2.5.0", ] [[package]] @@ -11169,17 +11128,16 @@ dependencies = [ [[package]] name = "ring" -version = "0.17.8" +version = "0.17.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d" +checksum = "688c63d65483050968b2a8937f7995f443e27041a0f7700aa59b0822aedebb74" dependencies = [ "cc", - "cfg-if", "getrandom", "libc", "spin 0.9.8", "untrusted 0.9.0", - "windows-sys 0.52.0", + "windows-sys 0.48.0", ] [[package]] @@ -11209,9 +11167,9 @@ dependencies = [ [[package]] name = "ruint" -version = "1.12.3" +version = "1.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2c3cc4c2511671f327125da14133d0c5c5d137f006a1017a16f557bc85b16286" +checksum = "49b1d9521f889713d1221270fdd63370feca7e5c71a18745343402fa86e4f04f" dependencies = [ "alloy-rlp", "ark-ff 0.3.0", @@ -11233,15 +11191,15 @@ dependencies = [ [[package]] name = "ruint-macro" -version = "1.2.1" +version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "48fd7bd8a6377e15ad9d42a8ec25371b94ddc67abe7c8b9127bec79bebaaae18" +checksum = "f86854cf50259291520509879a5c294c3c9a4c334e9ff65071c51e42ef1e2343" [[package]] name = "rustc-demangle" -version = "0.1.24" +version = "0.1.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f" +checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" [[package]] name = "rustc-hash" @@ -11279,7 +11237,7 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" dependencies = [ - "semver 1.0.23", + "semver 1.0.18", ] [[package]] @@ -11307,14 +11265,14 @@ dependencies = [ [[package]] name = "rustix" -version = "0.38.34" +version = "0.38.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f" +checksum = "6ea3e1a662af26cd7a3ba09c0297a31af215563ecf42817c98df621387f4e949" dependencies = [ "bitflags 2.6.0", "errno", "libc", - "linux-raw-sys 0.4.14", + "linux-raw-sys 0.4.12", "windows-sys 0.52.0", ] @@ -11331,12 +11289,12 @@ dependencies = [ [[package]] name = "rustls" -version = "0.21.12" +version = "0.21.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e" +checksum = "f9d5a6813c0759e4609cd494e8e725babae6a2ca7b62a5536a13daaec6fcb7ba" dependencies = [ "log", - "ring 0.17.8", + "ring 0.17.7", "rustls-webpki 0.101.7", "sct", ] @@ -11348,25 +11306,25 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bf4ef73721ac7bcd79b2b315da7779d8fc09718c6b3d2d1b2d94850eb8c18432" dependencies = [ "log", - "ring 0.17.8", + "ring 0.17.7", "rustls-pki-types", - "rustls-webpki 0.102.6", - "subtle 2.6.1", + "rustls-webpki 0.102.5", + "subtle 2.5.0", "zeroize", ] [[package]] name = "rustls" -version = "0.23.12" +version = "0.23.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c58f8c84392efc0a126acce10fa59ff7b3d2ac06ab451a33f2741989b806b044" +checksum = "4828ea528154ae444e5a642dbb7d5623354030dc9822b83fd9bb79683c7399d0" dependencies = [ "log", "once_cell", - "ring 0.17.8", + "ring 0.17.7", "rustls-pki-types", - "rustls-webpki 0.102.6", - "subtle 2.6.1", + "rustls-webpki 0.102.5", + "subtle 2.5.0", "zeroize", ] @@ -11384,9 +11342,9 @@ dependencies = [ [[package]] name = "rustls-native-certs" -version = "0.7.1" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a88d6d420651b496bdd98684116959239430022a115c1240e6c3993be0b15fba" +checksum = "8f1fb85efa936c42c6d5fc28d2629bb51e4b2f4b8a5211e297d599cc5a093792" dependencies = [ "openssl-probe", "rustls-pemfile 2.1.2", @@ -11401,7 +11359,7 @@ version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" dependencies = [ - "base64 0.21.7", + "base64 0.21.6", ] [[package]] @@ -11422,19 +11380,19 @@ checksum = "976295e77ce332211c0d24d92c0e83e50f5c5f046d11082cea19f3df13a3562d" [[package]] name = "rustls-platform-verifier" -version = "0.3.3" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "93bda3f493b9abe5b93b3e7e3ecde0df292f2bd28c0296b90586ee0055ff5123" +checksum = "3e3beb939bcd33c269f4bf946cc829fcd336370267c4a927ac0399c84a3151a1" dependencies = [ "core-foundation", "core-foundation-sys", "jni", "log", "once_cell", - "rustls 0.23.12", - "rustls-native-certs 0.7.1", + "rustls 0.23.11", + "rustls-native-certs 0.7.0", "rustls-platform-verifier-android", - "rustls-webpki 0.102.6", + "rustls-webpki 0.102.5", "security-framework", "security-framework-sys", "webpki-roots 0.26.3", @@ -11443,9 +11401,9 @@ dependencies = [ [[package]] name = "rustls-platform-verifier-android" -version = "0.1.1" +version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f" +checksum = "84e217e7fdc8466b5b35d30f8c0a30febd29173df4a3a0c2115d306b9c4117ad" [[package]] name = "rustls-webpki" @@ -11453,26 +11411,26 @@ version = "0.101.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765" dependencies = [ - "ring 0.17.8", + "ring 0.17.7", "untrusted 0.9.0", ] [[package]] name = "rustls-webpki" -version = "0.102.6" +version = "0.102.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e6b52d4fda176fd835fdc55a835d4a89b8499cad995885a21149d5ad62f852e" +checksum = "f9a6fccd794a42c2c105b513a2f62bc3fd8f3ba57a4593677ceb0bd035164d78" dependencies = [ - "ring 0.17.8", + "ring 0.17.7", "rustls-pki-types", "untrusted 0.9.0", ] [[package]] name = "rustversion" -version = "1.0.17" +version = "1.0.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "955d28af4278de8121b7ebeb796b6a45735dc01436d898801014aced2773a3d6" +checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4" [[package]] name = "rusty-fork" @@ -11510,9 +11468,9 @@ dependencies = [ [[package]] name = "ryu" -version = "1.0.18" +version = "1.0.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" +checksum = "f98d2aa92eebf49b69786be48e4477826b256916e84a57ff2a4f21923b48eb4c" [[package]] name = "safe-mix" @@ -11525,9 +11483,9 @@ dependencies = [ [[package]] name = "safe_arch" -version = "0.7.2" +version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c3460605018fdc9612bce72735cba0d27efbcd9904780d44c7e3a9948f96148a" +checksum = "f398075ce1e6a179b46f51bd88d0598b92b00d3551f1a2d4ac49e771b56ac354" dependencies = [ "bytemuck", ] @@ -11565,7 +11523,7 @@ dependencies = [ "sp-blockchain", "sp-core 34.0.0", "sp-inherents", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-trie 36.0.0", ] @@ -11592,7 +11550,7 @@ dependencies = [ "sp-crypto-hashing", "sp-genesis-builder", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-state-machine 0.42.0", "sp-tracing 17.0.0", ] @@ -11606,7 +11564,7 @@ dependencies = [ "proc-macro-crate 3.1.0", "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.65", ] [[package]] @@ -11629,7 +11587,7 @@ dependencies = [ "sp-core 34.0.0", "sp-database", "sp-externalities 0.29.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-state-machine 0.42.0", "sp-statement-store", "sp-storage 21.0.0", @@ -11656,7 +11614,7 @@ dependencies = [ "sp-blockchain", "sp-consensus", "sp-core 34.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-state-machine 0.42.0", "substrate-prometheus-endpoint", "thiserror", @@ -11668,7 +11626,7 @@ version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c7c6c62a03b54973f1a608a405908af0fe957fefaf77483cce96bd213eee7ed0" dependencies = [ - "ahash 0.8.11", + "ahash 0.8.8", "array-bytes", "async-trait", "dyn-clone", @@ -11702,7 +11660,7 @@ dependencies = [ "sp-core 34.0.0", "sp-crypto-hashing", "sp-keystore 0.40.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "substrate-prometheus-endpoint", "thiserror", ] @@ -11802,7 +11760,7 @@ dependencies = [ "sp-core 34.0.0", "sp-keystore 0.40.0", "sp-mixnet", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "thiserror", ] @@ -11847,7 +11805,7 @@ dependencies = [ "sp-arithmetic 26.0.0", "sp-blockchain", "sp-core 34.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "substrate-prometheus-endpoint", "thiserror", "tokio", @@ -11874,7 +11832,7 @@ dependencies = [ "sc-network-types", "sp-consensus", "sp-consensus-grandpa", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", ] [[package]] @@ -11883,7 +11841,7 @@ version = "0.42.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0ae1836528495b6aa5140da39ed0278f5086c21ce530c37964db1b2e2c101ab1" dependencies = [ - "ahash 0.8.11", + "ahash 0.8.8", "futures", "futures-timer", "log", @@ -11892,7 +11850,7 @@ dependencies = [ "sc-network-sync", "sc-network-types", "schnellru", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "substrate-prometheus-endpoint", "tracing", ] @@ -11928,7 +11886,7 @@ dependencies = [ "sp-consensus", "sp-consensus-grandpa", "sp-core 34.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "substrate-prometheus-endpoint", "thiserror", "tokio", @@ -11941,7 +11899,7 @@ version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0c372dbda66644a1df0daa8c0d99c36b6f74db7dca213d2416cd84f507125224" dependencies = [ - "bs58 0.5.1", + "bs58 0.5.0", "ed25519-dalek", "libp2p-identity", "litep2p", @@ -11969,7 +11927,7 @@ dependencies = [ "serde_json", "sp-core 34.0.0", "sp-rpc", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-version", "thiserror", ] @@ -12008,7 +11966,7 @@ dependencies = [ "serde", "sp-blockchain", "sp-core 34.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "thiserror", ] @@ -12047,9 +12005,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e57b1e7f6b65ed1f04e79a85a57d755ad56d76fdf1e9bddcc9ae14f71fcdcf54" dependencies = [ "parity-scale-codec", - "scale-info", "scale-type-resolver 0.2.0", - "serde", ] [[package]] @@ -12062,22 +12018,20 @@ dependencies = [ "parity-scale-codec", "primitive-types", "scale-bits 0.5.0", - "scale-decode-derive 0.11.1", + "scale-decode-derive", "scale-type-resolver 0.1.1", "smallvec", ] [[package]] name = "scale-decode" -version = "0.13.1" +version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e98f3262c250d90e700bb802eb704e1f841e03331c2eb815e46516c4edbf5b27" +checksum = "b12ebca36cec2a3f983c46295b282b35e5f8496346fb859a8776dad5389e5389" dependencies = [ "derive_more", "parity-scale-codec", - "primitive-types", "scale-bits 0.6.0", - "scale-decode-derive 0.13.1", "scale-type-resolver 0.2.0", "smallvec", ] @@ -12094,18 +12048,6 @@ dependencies = [ "syn 1.0.109", ] -[[package]] -name = "scale-decode-derive" -version = "0.13.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9bb22f574168103cdd3133b19281639ca65ad985e24612728f727339dcaf4021" -dependencies = [ - "darling 0.14.4", - "proc-macro2", - "quote", - "syn 1.0.109", -] - [[package]] name = "scale-encode" version = "0.6.0" @@ -12116,26 +12058,11 @@ dependencies = [ "parity-scale-codec", "primitive-types", "scale-bits 0.5.0", - "scale-encode-derive 0.6.0", + "scale-encode-derive", "scale-type-resolver 0.1.1", "smallvec", ] -[[package]] -name = "scale-encode" -version = "0.7.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ba0b9c48dc0eb20c60b083c29447c0c4617cb7c4a4c9fef72aa5c5bc539e15e" -dependencies = [ - "derive_more", - "parity-scale-codec", - "primitive-types", - "scale-bits 0.6.0", - "scale-encode-derive 0.7.1", - "scale-type-resolver 0.2.0", - "smallvec", -] - [[package]] name = "scale-encode-derive" version = "0.6.0" @@ -12143,20 +12070,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7a304e1af7cdfbe7a24e08b012721456cc8cecdedadc14b3d10513eada63233c" dependencies = [ "darling 0.14.4", - "proc-macro-crate 1.1.3", - "proc-macro2", - "quote", - "syn 1.0.109", -] - -[[package]] -name = "scale-encode-derive" -version = "0.7.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "82ab7e60e2d9c8d47105f44527b26f04418e5e624ffc034f6b4a86c0ba19c5bf" -dependencies = [ - "darling 0.14.4", - "proc-macro-crate 1.1.3", + "proc-macro-crate 1.3.1", "proc-macro2", "quote", "syn 1.0.109", @@ -12203,10 +12117,6 @@ name = "scale-type-resolver" version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f0cded6518aa0bd6c1be2b88ac81bf7044992f0f154bfbabd5ad34f43512abcb" -dependencies = [ - "scale-info", - "smallvec", -] [[package]] name = "scale-typegen" @@ -12217,20 +12127,7 @@ dependencies = [ "proc-macro2", "quote", "scale-info", - "syn 2.0.72", - "thiserror", -] - -[[package]] -name = "scale-typegen" -version = "0.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "498d1aecf2ea61325d4511787c115791639c0fd21ef4f8e11e49dd09eff2bbac" -dependencies = [ - "proc-macro2", - "quote", - "scale-info", - "syn 2.0.72", + "syn 2.0.65", "thiserror", ] @@ -12248,50 +12145,29 @@ dependencies = [ "parity-scale-codec", "scale-bits 0.5.0", "scale-decode 0.11.1", - "scale-encode 0.6.0", + "scale-encode", "scale-info", "scale-type-resolver 0.1.1", "serde", "yap", ] -[[package]] -name = "scale-value" -version = "0.16.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5ab68da501822d2769c4c5823535f6104a6d4cd15f0d3eba3e647e725294ae22" -dependencies = [ - "base58", - "blake2 0.10.6", - "derive_more", - "either", - "frame-metadata 15.1.0", - "parity-scale-codec", - "scale-bits 0.6.0", - "scale-decode 0.13.1", - "scale-encode 0.7.1", - "scale-info", - "scale-type-resolver 0.2.0", - "serde", - "yap", -] - [[package]] name = "schannel" -version = "0.1.23" +version = "0.1.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534" +checksum = "0c3733bf4cf7ea0880754e19cb5a462007c4a8c1914bff372ccc95b464f1df88" dependencies = [ - "windows-sys 0.52.0", + "windows-sys 0.48.0", ] [[package]] name = "schnellru" -version = "0.2.3" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c9a8ef13a93c54d20580de1e5c413e624e53121d42fc7e2c11d10ef7f8b02367" +checksum = "772575a524feeb803e5b0fcbc6dd9f367e579488197c94c6e4023aad2305774d" dependencies = [ - "ahash 0.8.11", + "ahash 0.8.8", "cfg-if", "hashbrown 0.13.2", ] @@ -12305,13 +12181,13 @@ dependencies = [ "aead", "arrayref", "arrayvec 0.7.4", - "curve25519-dalek 4.1.3", + "curve25519-dalek 4.1.2", "getrandom_or_panic", "merlin", "rand_core 0.6.4", "serde_bytes", "sha2 0.10.8", - "subtle 2.6.1", + "subtle 2.5.0", "zeroize", ] @@ -12333,7 +12209,7 @@ version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414" dependencies = [ - "ring 0.17.8", + "ring 0.17.7", "untrusted 0.9.0", ] @@ -12363,7 +12239,7 @@ dependencies = [ "generic-array 0.14.7", "pkcs8", "serdect", - "subtle 2.6.1", + "subtle 2.5.0", "zeroize", ] @@ -12397,9 +12273,9 @@ dependencies = [ [[package]] name = "security-framework" -version = "2.11.1" +version = "2.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02" +checksum = "c627723fd09706bacdb5cf41499e95098555af3c3c29d014dc3c458ef6be11c0" dependencies = [ "bitflags 2.6.0", "core-foundation", @@ -12411,9 +12287,9 @@ dependencies = [ [[package]] name = "security-framework-sys" -version = "2.11.1" +version = "2.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75da29fe9b9b08fe9d6b22b5b4bcbc75d8db3aa31e639aa56bb62e9d46bfceaf" +checksum = "317936bbbd05227752583946b9e66d7ce3b489f84e11a94a510b4437fef407d7" dependencies = [ "core-foundation-sys", "libc", @@ -12448,9 +12324,9 @@ dependencies = [ [[package]] name = "semver" -version = "1.0.23" +version = "1.0.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b" +checksum = "b0293b4b29daaf487284529cc2f5675b8e57c61f70167ba415a463651fd6a918" dependencies = [ "serde", ] @@ -12484,9 +12360,9 @@ checksum = "f97841a747eef040fcd2e7b3b9a220a7205926e60488e673d9e4926d27772ce5" [[package]] name = "serde" -version = "1.0.204" +version = "1.0.197" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bc76f558e0cbb2a839d37354c575f1dc3fdc6546b5be373ba43d95f231bf7c12" +checksum = "3fb1c873e1b9b056a4dc4c0c198b24c3ffa059243875552b2bd0933b1aee4ce2" dependencies = [ "serde_derive", ] @@ -12512,41 +12388,40 @@ dependencies = [ [[package]] name = "serde_bytes" -version = "0.11.15" +version = "0.11.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "387cc504cb06bb40a96c8e04e951fe01854cf6bc921053c954e4a606d9675c6a" +checksum = "8b8497c313fd43ab992087548117643f6fcd935cbf36f176ffda0aacf9591734" dependencies = [ "serde", ] [[package]] name = "serde_derive" -version = "1.0.204" +version = "1.0.197" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e0cd7e117be63d3c3678776753929474f3b04a43a080c744d6b0ae2a8c28e222" +checksum = "7eb0b34b42edc17f6b7cac84a52a1c5f0e1bb2227e997ca9011ea3dd34e8610b" dependencies = [ "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.65", ] [[package]] name = "serde_json" -version = "1.0.121" +version = "1.0.114" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ab380d7d9f22ef3f21ad3e6c1ebe8e4fc7a2000ccba2e4d71fc96f15b2cb609" +checksum = "c5f09b1bd632ef549eaa9f60a1f8de742bdbc698e6cee2095fc84dde5f549ae0" dependencies = [ "itoa", - "memchr", "ryu", "serde", ] [[package]] name = "serde_spanned" -version = "0.6.7" +version = "0.6.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eb5b1b31579f3811bf615c144393417496f152e12ac8b7663bf664f4a815306d" +checksum = "eb3622f419d1296904700073ea6cc23ad690adbd66f13ea683df73298736f0c1" dependencies = [ "serde", ] @@ -12569,7 +12444,7 @@ version = "0.9.34+deprecated" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47" dependencies = [ - "indexmap 2.3.0", + "indexmap 2.2.6", "itoa", "ryu", "serde", @@ -12596,7 +12471,7 @@ dependencies = [ "cfg-if", "cpufeatures", "digest 0.9.0", - "opaque-debug 0.3.1", + "opaque-debug 0.3.0", ] [[package]] @@ -12641,7 +12516,7 @@ dependencies = [ "cfg-if", "cpufeatures", "digest 0.9.0", - "opaque-debug 0.3.1", + "opaque-debug 0.3.0", ] [[package]] @@ -12676,9 +12551,9 @@ dependencies = [ [[package]] name = "signal-hook-registry" -version = "1.4.2" +version = "1.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1" +checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" dependencies = [ "libc", ] @@ -12751,7 +12626,7 @@ dependencies = [ "enumn", "parity-scale-codec", "paste", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -12767,11 +12642,11 @@ version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e635339259e51ef85ac7aa29a1cd991b957047507288697a690e80ab97d07cad" dependencies = [ - "async-channel 2.3.1", + "async-channel 2.3.0", "async-executor", "async-fs", "async-io", - "async-lock", + "async-lock 3.2.0", "async-net", "async-process", "blocking", @@ -12785,22 +12660,22 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e6d1eaa97d77be4d026a1e7ffad1bb3b78448763b357ea6f8188d3e6f736a9b9" dependencies = [ "arrayvec 0.7.4", - "async-lock", + "async-lock 3.2.0", "atomic-take", - "base64 0.21.7", + "base64 0.21.6", "bip39", "blake2-rfc", - "bs58 0.5.1", + "bs58 0.5.0", "chacha20", "crossbeam-queue", "derive_more", "ed25519-zebra 4.0.3", "either", - "event-listener 4.0.3", + "event-listener 4.0.0", "fnv", "futures-lite", "futures-util", - "hashbrown 0.14.5", + "hashbrown 0.14.3", "hex", "hmac 0.12.1", "itertools 0.12.1", @@ -12839,22 +12714,22 @@ version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5496f2d116b7019a526b1039ec2247dd172b8670633b1a64a614c9ea12c9d8c7" dependencies = [ - "async-channel 2.3.1", - "async-lock", - "base64 0.21.7", + "async-channel 2.3.0", + "async-lock 3.2.0", + "base64 0.21.6", "blake2-rfc", "derive_more", "either", - "event-listener 4.0.3", + "event-listener 4.0.0", "fnv", "futures-channel", "futures-lite", "futures-util", - "hashbrown 0.14.5", + "hashbrown 0.14.3", "hex", "itertools 0.12.1", "log", - "lru 0.12.4", + "lru 0.12.3", "no-std-net", "parking_lot 0.12.3", "pin-project", @@ -12871,19 +12746,19 @@ dependencies = [ [[package]] name = "snow" -version = "0.9.6" +version = "0.9.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "850948bee068e713b8ab860fe1adc4d109676ab4c3b621fd8147f06b261f2f85" +checksum = "58021967fd0a5eeeb23b08df6cc244a4d4a5b4aec1d27c9e02fad1a58b4cd74e" dependencies = [ "aes-gcm", "blake2 0.10.6", "chacha20poly1305", - "curve25519-dalek 4.1.3", + "curve25519-dalek 4.1.2", "rand_core 0.6.4", - "ring 0.17.8", + "ring 0.17.7", "rustc_version 0.4.0", "sha2 0.10.8", - "subtle 2.6.1", + "subtle 2.5.0", ] [[package]] @@ -12913,7 +12788,7 @@ dependencies = [ "snowbridge-milagro-bls", "sp-core 34.0.0", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", "ssz_rs", "ssz_rs_derive", @@ -12937,7 +12812,7 @@ dependencies = [ "sp-arithmetic 26.0.0", "sp-core 34.0.0", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", "staging-xcm", "staging-xcm-builder", @@ -12960,7 +12835,7 @@ dependencies = [ "serde", "serde-big-array", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -12988,7 +12863,7 @@ dependencies = [ "parity-scale-codec", "scale-info", "sp-core 34.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", ] [[package]] @@ -13026,7 +12901,7 @@ dependencies = [ "snowbridge-pallet-ethereum-client-fixtures", "sp-core 34.0.0", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", "static_assertions", ] @@ -13067,7 +12942,7 @@ dependencies = [ "snowbridge-router-primitives", "sp-core 34.0.0", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", "staging-xcm", "staging-xcm-executor", @@ -13105,7 +12980,7 @@ dependencies = [ "sp-arithmetic 26.0.0", "sp-core 34.0.0", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] @@ -13124,7 +12999,7 @@ dependencies = [ "snowbridge-core", "sp-core 34.0.0", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", "staging-xcm", "staging-xcm-executor", @@ -13144,7 +13019,7 @@ dependencies = [ "snowbridge-core", "sp-core 34.0.0", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", "staging-xcm", "staging-xcm-executor", @@ -13193,7 +13068,7 @@ dependencies = [ "sp-core 34.0.0", "sp-io 37.0.0", "sp-keyring", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "staging-parachain-info", "staging-xcm", "staging-xcm-executor", @@ -13276,7 +13151,7 @@ dependencies = [ "sp-core 34.0.0", "sp-externalities 0.29.0", "sp-metadata-ir", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-runtime-interface 28.0.0", "sp-state-machine 0.42.0", "sp-std", @@ -13297,7 +13172,7 @@ dependencies = [ "proc-macro-crate 3.1.0", "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.65", ] [[package]] @@ -13369,7 +13244,7 @@ dependencies = [ "scale-info", "sp-api", "sp-application-crypto 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", ] [[package]] @@ -13380,7 +13255,7 @@ checksum = "2cf199dc4f9f77abd3fd91c409759118159ce6ffcd8bc90b229b684ccc8c981f" dependencies = [ "sp-api", "sp-inherents", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", ] [[package]] @@ -13397,7 +13272,7 @@ dependencies = [ "sp-api", "sp-consensus", "sp-database", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-state-machine 0.42.0", "thiserror", ] @@ -13413,7 +13288,7 @@ dependencies = [ "log", "sp-core 34.0.0", "sp-inherents", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-state-machine 0.42.0", "thiserror", ] @@ -13431,7 +13306,7 @@ dependencies = [ "sp-application-crypto 37.0.0", "sp-consensus-slots", "sp-inherents", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-timestamp", ] @@ -13450,7 +13325,7 @@ dependencies = [ "sp-consensus-slots", "sp-core 34.0.0", "sp-inherents", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-timestamp", ] @@ -13471,7 +13346,7 @@ dependencies = [ "sp-io 37.0.0", "sp-keystore 0.40.0", "sp-mmr-primitives", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "strum 0.26.3", ] @@ -13490,7 +13365,7 @@ dependencies = [ "sp-application-crypto 37.0.0", "sp-core 34.0.0", "sp-keystore 0.40.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", ] [[package]] @@ -13515,7 +13390,7 @@ dependencies = [ "bitflags 1.3.2", "blake2 0.10.6", "bounded-collections", - "bs58 0.5.1", + "bs58 0.5.0", "dyn-clonable", "ed25519-zebra 3.1.0", "futures", @@ -13562,7 +13437,7 @@ dependencies = [ "bitflags 1.3.2", "blake2 0.10.6", "bounded-collections", - "bs58 0.5.1", + "bs58 0.5.0", "dyn-clonable", "ed25519-zebra 4.0.3", "futures", @@ -13621,7 +13496,7 @@ checksum = "b85d0f1f1e44bd8617eb2a48203ee854981229e3e79e6f468c7175d5fd37489b" dependencies = [ "quote", "sp-crypto-hashing", - "syn 2.0.72", + "syn 2.0.65", ] [[package]] @@ -13642,7 +13517,7 @@ checksum = "48d09fa0a5f7299fb81ee25ae3853d26200f7a348148aed6de76be905c007dbe" dependencies = [ "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.65", ] [[package]] @@ -13678,7 +13553,7 @@ dependencies = [ "scale-info", "serde_json", "sp-api", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", ] [[package]] @@ -13691,7 +13566,7 @@ dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", "scale-info", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "thiserror", ] @@ -13756,7 +13631,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b03536e1ff3ec2bd8181eeaa26c0d682ebdcbd01548a055cf591077188b8c3f0" dependencies = [ "sp-core 34.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "strum 0.26.3", ] @@ -13831,7 +13706,7 @@ dependencies = [ "sp-api", "sp-core 34.0.0", "sp-debug-derive", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "thiserror", ] @@ -13846,7 +13721,7 @@ dependencies = [ "serde", "sp-arithmetic 26.0.0", "sp-core 34.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", ] [[package]] @@ -13857,7 +13732,7 @@ checksum = "cbe721c367760bddf10fcfa24fb48edd64c442f71db971f043c8ac73f51aa6e9" dependencies = [ "sp-api", "sp-core 34.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", ] [[package]] @@ -13909,9 +13784,9 @@ dependencies = [ [[package]] name = "sp-runtime" -version = "38.0.1" +version = "38.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5273900f0b0bef48b2e1ff9c4fb5e188b8168ee5891418a427f4be2af92ee40f" +checksum = "89ef409c414546b655ec1e94aaea178e4a97e21284a91b24c762aebf836d3b49" dependencies = [ "docify", "either", @@ -13931,7 +13806,6 @@ dependencies = [ "sp-io 37.0.0", "sp-std", "sp-weights 31.0.0", - "tracing", ] [[package]] @@ -13985,7 +13859,7 @@ dependencies = [ "proc-macro-crate 3.1.0", "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.65", ] [[package]] @@ -13999,7 +13873,7 @@ dependencies = [ "sp-api", "sp-core 34.0.0", "sp-keystore 0.40.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-staking", ] @@ -14014,7 +13888,7 @@ dependencies = [ "scale-info", "serde", "sp-core 34.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", ] [[package]] @@ -14067,7 +13941,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b03aa86b1b46549889d32348bc85a8135c725665115567507231a6d85712aaac" dependencies = [ "aes-gcm", - "curve25519-dalek 4.1.3", + "curve25519-dalek 4.1.2", "ed25519-dalek", "hkdf", "parity-scale-codec", @@ -14079,7 +13953,7 @@ dependencies = [ "sp-core 34.0.0", "sp-crypto-hashing", "sp-externalities 0.29.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-runtime-interface 28.0.0", "thiserror", "x25519-dalek", @@ -14127,7 +14001,7 @@ dependencies = [ "async-trait", "parity-scale-codec", "sp-inherents", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "thiserror", ] @@ -14163,7 +14037,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a3c9d1604aadc15b70e95f4388d0b1aa380215520b7ddfd372531a6d8262269c" dependencies = [ "sp-api", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", ] [[package]] @@ -14172,7 +14046,7 @@ version = "32.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f1aa91ad26c62b93d73e65f9ce7ebd04459c4bad086599348846a81988d6faa4" dependencies = [ - "ahash 0.8.11", + "ahash 0.8.8", "hash-db", "lazy_static", "memory-db", @@ -14197,7 +14071,7 @@ version = "36.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "841d717c0f465f5371569e6fdc25b6f32d47c15d6e4c92b3b779e1c9b18b951d" dependencies = [ - "ahash 0.8.11", + "ahash 0.8.8", "hash-db", "lazy_static", "memory-db", @@ -14227,7 +14101,7 @@ dependencies = [ "scale-info", "serde", "sp-crypto-hashing-proc-macro", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", "sp-version-proc-macro", "thiserror", @@ -14242,7 +14116,7 @@ dependencies = [ "parity-scale-codec", "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.65", ] [[package]] @@ -14468,7 +14342,7 @@ dependencies = [ "sp-keyring", "sp-npos-elections", "sp-offchain", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-session", "sp-staking", "sp-std", @@ -14497,15 +14371,15 @@ dependencies = [ "frame-system", "parity-scale-codec", "scale-info", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", ] [[package]] name = "staging-xcm" -version = "14.1.0" +version = "14.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f2b7b5f531c6bf9629514ef8e5fda0e9e80dd84516957f710940d0e01d3fb36c" +checksum = "536c5c8f8f25589e714a3be6b068d174debcc882e648dc9b0c3bd6ce45434de3" dependencies = [ "array-bytes", "bounded-collections", @@ -14536,7 +14410,7 @@ dependencies = [ "scale-info", "sp-arithmetic 26.0.0", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", "sp-weights 31.0.0", "staging-xcm", @@ -14559,7 +14433,7 @@ dependencies = [ "sp-arithmetic 26.0.0", "sp-core 34.0.0", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", "sp-weights 31.0.0", "staging-xcm", @@ -14599,9 +14473,9 @@ checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" [[package]] name = "strsim" -version = "0.11.1" +version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" +checksum = "5ee073c9e4cd00e28217186dbe12796d692868f432bf2e97ee73bed0c56dfa01" [[package]] name = "strum" @@ -14644,7 +14518,7 @@ dependencies = [ "proc-macro2", "quote", "rustversion", - "syn 2.0.72", + "syn 2.0.65", ] [[package]] @@ -14702,7 +14576,7 @@ version = "0.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0d8fe06b03b8a291c09507c42f92a2c2c10dd3d62975d02c7f64a92d87bfe09b" dependencies = [ - "hyper 0.14.30", + "hyper 0.14.27", "log", "prometheus", "thiserror", @@ -14720,7 +14594,7 @@ dependencies = [ "log", "sc-rpc-api", "serde", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", ] [[package]] @@ -14757,7 +14631,7 @@ dependencies = [ "sp-version", "strum 0.26.3", "tempfile", - "toml 0.8.19", + "toml 0.8.10", "walkdir", "wasm-opt", ] @@ -14770,9 +14644,9 @@ checksum = "2d67a5a62ba6e01cb2192ff309324cb4875d0c451d55fe2319433abe7a05a8ee" [[package]] name = "subtle" -version = "2.6.1" +version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" +checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc" [[package]] name = "subxt" @@ -14795,51 +14669,17 @@ dependencies = [ "primitive-types", "scale-bits 0.5.0", "scale-decode 0.11.1", - "scale-encode 0.6.0", + "scale-encode", "scale-info", - "scale-value 0.14.1", - "serde", - "serde_json", - "sp-crypto-hashing", - "subxt-lightclient 0.35.3", - "subxt-macro 0.35.3", - "subxt-metadata 0.35.3", - "thiserror", - "tokio-util", - "tracing", - "url", -] - -[[package]] -name = "subxt" -version = "0.37.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a160cba1edbf3ec4fbbeaea3f1a185f70448116a6bccc8276bb39adb3b3053bd" -dependencies = [ - "async-trait", - "derive-where", - "either", - "frame-metadata 16.0.0", - "futures", - "hex", - "impl-serde", - "instant", - "jsonrpsee 0.22.5", - "parity-scale-codec", - "primitive-types", - "reconnecting-jsonrpsee-ws-client", - "scale-bits 0.6.0", - "scale-decode 0.13.1", - "scale-encode 0.7.1", - "scale-info", - "scale-value 0.16.1", + "scale-value", "serde", "serde_json", + "sp-core 31.0.0", "sp-crypto-hashing", - "subxt-core", - "subxt-lightclient 0.37.0", - "subxt-macro 0.37.0", - "subxt-metadata 0.37.0", + "sp-runtime 34.0.0", + "subxt-lightclient", + "subxt-macro", + "subxt-metadata", "thiserror", "tokio-util", "tracing", @@ -14860,63 +14700,13 @@ dependencies = [ "proc-macro2", "quote", "scale-info", - "scale-typegen 0.2.1", - "subxt-metadata 0.35.3", - "syn 2.0.72", + "scale-typegen", + "subxt-metadata", + "syn 2.0.65", "thiserror", "tokio", ] -[[package]] -name = "subxt-codegen" -version = "0.37.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d703dca0905cc5272d7cc27a4ac5f37dcaae7671acc7fef0200057cc8c317786" -dependencies = [ - "frame-metadata 16.0.0", - "heck 0.5.0", - "hex", - "jsonrpsee 0.22.5", - "parity-scale-codec", - "proc-macro2", - "quote", - "scale-info", - "scale-typegen 0.8.0", - "subxt-metadata 0.37.0", - "syn 2.0.72", - "thiserror", - "tokio", -] - -[[package]] -name = "subxt-core" -version = "0.37.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "59f41eb2e2eea6ed45649508cc735f92c27f1fcfb15229e75f8270ea73177345" -dependencies = [ - "base58", - "blake2 0.10.6", - "derive-where", - "frame-metadata 16.0.0", - "hashbrown 0.14.5", - "hex", - "impl-serde", - "parity-scale-codec", - "primitive-types", - "scale-bits 0.6.0", - "scale-decode 0.13.1", - "scale-encode 0.7.1", - "scale-info", - "scale-value 0.16.1", - "serde", - "serde_json", - "sp-core 31.0.0", - "sp-crypto-hashing", - "sp-runtime 34.0.0", - "subxt-metadata 0.37.0", - "tracing", -] - [[package]] name = "subxt-lightclient" version = "0.35.3" @@ -14934,51 +14724,19 @@ dependencies = [ "tracing", ] -[[package]] -name = "subxt-lightclient" -version = "0.37.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d9406fbdb9548c110803cb8afa750f8b911d51eefdf95474b11319591d225d9" -dependencies = [ - "futures", - "futures-util", - "serde", - "serde_json", - "smoldot-light", - "thiserror", - "tokio", - "tokio-stream", - "tracing", -] - [[package]] name = "subxt-macro" version = "0.35.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "98dc84d7e6a0abd7ed407cce0bf60d7d58004f699460cffb979640717d1ab506" dependencies = [ - "darling 0.20.10", + "darling 0.20.8", "parity-scale-codec", "proc-macro-error", "quote", - "scale-typegen 0.2.1", - "subxt-codegen 0.35.3", - "syn 2.0.72", -] - -[[package]] -name = "subxt-macro" -version = "0.37.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1c195f803d70687e409aba9be6c87115b5da8952cd83c4d13f2e043239818fcd" -dependencies = [ - "darling 0.20.10", - "parity-scale-codec", - "proc-macro-error", - "quote", - "scale-typegen 0.8.0", - "subxt-codegen 0.37.0", - "syn 2.0.72", + "scale-typegen", + "subxt-codegen", + "syn 2.0.65", ] [[package]] @@ -14989,20 +14747,7 @@ checksum = "cc10c54028d079a9f1be65188707cd29e5ffd8d0031a2b1346a0941d57b7ab7e" dependencies = [ "derive_more", "frame-metadata 16.0.0", - "hashbrown 0.14.5", - "parity-scale-codec", - "scale-info", - "sp-crypto-hashing", -] - -[[package]] -name = "subxt-metadata" -version = "0.37.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "738be5890fdeff899bbffff4d9c0f244fe2a952fb861301b937e3aa40ebb55da" -dependencies = [ - "frame-metadata 16.0.0", - "hashbrown 0.14.5", + "hashbrown 0.14.3", "parity-scale-codec", "scale-info", "sp-crypto-hashing", @@ -15010,12 +14755,13 @@ dependencies = [ [[package]] name = "subxt-signer" -version = "0.37.0" +version = "0.35.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f49888ae6ae90fe01b471193528eea5bd4ed52d8eecd2d13f4a2333b87388850" +checksum = "6ccb59a38fe357fab55247756174435e8626b93929864e8a498635a15e779df8" dependencies = [ "bip39", "cfg-if", + "derive_more", "hex", "hmac 0.12.1", "parity-scale-codec", @@ -15026,7 +14772,7 @@ dependencies = [ "secrecy", "sha2 0.10.8", "sp-crypto-hashing", - "subxt-core", + "subxt", "zeroize", ] @@ -15043,9 +14789,9 @@ dependencies = [ [[package]] name = "syn" -version = "2.0.72" +version = "2.0.65" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dc4b9b9bf2add8093d3f2c0204471e951b2285580335de42f9d2534f3ae7a8af" +checksum = "d2863d96a84c6439701d7a38f9de935ec562c8832cc55d1dde0f513b52fad106" dependencies = [ "proc-macro2", "quote", @@ -15061,7 +14807,7 @@ dependencies = [ "paste", "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.65", ] [[package]] @@ -15090,7 +14836,7 @@ checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971" dependencies = [ "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.65", ] [[package]] @@ -15126,7 +14872,7 @@ dependencies = [ "polkadot-runtime-constants", "smallvec", "sp-core 34.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", "staging-xcm", ] @@ -15139,9 +14885,9 @@ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" [[package]] name = "tar" -version = "0.4.41" +version = "0.4.40" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cb797dad5fb5b76fcf519e702f4a589483b5ef06567f160c392832c1f5e44909" +checksum = "b16afcea1f22891c49a00c751c7b63b2233284064f11a200fc624137c51e2ddb" dependencies = [ "filetime", "libc", @@ -15150,27 +14896,28 @@ dependencies = [ [[package]] name = "target-lexicon" -version = "0.12.16" +version = "0.12.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1" +checksum = "14c39fd04924ca3a864207c66fc2cd7d22d7c016007f9ce846cbb9326331930a" [[package]] name = "tempfile" -version = "3.10.1" +version = "3.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1" +checksum = "7ef1adac450ad7f4b3c28589471ade84f25f731a7a0fe30d71dfa9f60fd808e5" dependencies = [ "cfg-if", "fastrand", - "rustix 0.38.34", - "windows-sys 0.52.0", + "redox_syscall 0.4.1", + "rustix 0.38.31", + "windows-sys 0.48.0", ] [[package]] name = "termcolor" -version = "1.4.1" +version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755" +checksum = "ff1bc3d3f05aff0403e8ac0d92ced918ec05b666a43f83297ccef5bea8a3d449" dependencies = [ "winapi-util", ] @@ -15183,29 +14930,29 @@ checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76" [[package]] name = "thiserror" -version = "1.0.63" +version = "1.0.62" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c0342370b38b6a11b6cc11d6a805569958d54cfa061a29969c3b5ce2ea405724" +checksum = "f2675633b1499176c2dff06b0856a27976a8f9d436737b4cf4f312d4d91d8bbb" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.63" +version = "1.0.62" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4558b58466b9ad7ca0f102865eccc95938dca1a74a856f2b57b6629050da261" +checksum = "d20468752b09f49e909e55a5d338caa8bedf615594e9d80bc4c565d30faf798c" dependencies = [ "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.65", ] [[package]] name = "thread_local" -version = "1.1.8" +version = "1.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c" +checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152" dependencies = [ "cfg-if", "once_cell", @@ -15213,13 +14960,12 @@ dependencies = [ [[package]] name = "time" -version = "0.3.36" +version = "0.3.30" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885" +checksum = "c4a34ab300f2dee6e562c10a046fc05e358b29f9bf92277f30c3c8d82275f6f5" dependencies = [ "deranged", "itoa", - "num-conv", "powerfmt", "serde", "time-core", @@ -15234,11 +14980,10 @@ checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" [[package]] name = "time-macros" -version = "0.2.18" +version = "0.2.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf" +checksum = "4ad70d68dba9e1f8aceda7aa6711965dfec1cac869f311a51bd08b3a2ccbce20" dependencies = [ - "num-conv", "time-core", ] @@ -15253,9 +14998,9 @@ dependencies = [ [[package]] name = "tinyvec" -version = "1.8.0" +version = "1.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938" +checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" dependencies = [ "tinyvec_macros", ] @@ -15268,20 +15013,21 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.39.2" +version = "1.38.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "daa4fb1bc778bd6f04cbfc4bb2d06a7396a8f299dc33ea1900cedaa316f467b1" +checksum = "ba4f4a02a7a80d6f274636f0aa95c7e383b912d41fe721a31f29e29698585a4a" dependencies = [ "backtrace", "bytes", "libc", "mio", + "num_cpus", "parking_lot 0.12.3", - "pin-project-lite", + "pin-project-lite 0.2.13", "signal-hook-registry", "socket2 0.5.7", "tokio-macros", - "windows-sys 0.52.0", + "windows-sys 0.48.0", ] [[package]] @@ -15290,19 +15036,19 @@ version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "30b74022ada614a1b4834de765f9bb43877f910cc8ce4be40e89042c9223a8bf" dependencies = [ - "pin-project-lite", + "pin-project-lite 0.2.13", "tokio", ] [[package]] name = "tokio-macros" -version = "2.4.0" +version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752" +checksum = "5f5ae998a069d4b5aba8ee9dad856af7d520c3699e6159b185c2acd48155d39a" dependencies = [ "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.65", ] [[package]] @@ -15332,7 +15078,7 @@ version = "0.24.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081" dependencies = [ - "rustls 0.21.12", + "rustls 0.21.10", "tokio", ] @@ -15353,19 +15099,19 @@ version = "0.26.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0c7bc40d0e5a97695bb96e27995cd3a08538541b0a846f65bba7a359f36700d4" dependencies = [ - "rustls 0.23.12", + "rustls 0.23.11", "rustls-pki-types", "tokio", ] [[package]] name = "tokio-stream" -version = "0.1.15" +version = "0.1.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "267ac89e0bec6e691e5813911606935d77c476ff49024f98abcea3e7b15e37af" +checksum = "397c988d37662c7dda6d2208364a706264bf3d6138b11d436cbac0ad38832842" dependencies = [ "futures-core", - "pin-project-lite", + "pin-project-lite 0.2.13", "tokio", ] @@ -15377,7 +15123,7 @@ checksum = "212d5dcb2a1ce06d81107c3d0ffa3121fe974b73f068c8282cb1c32328113b6c" dependencies = [ "futures-util", "log", - "rustls 0.21.12", + "rustls 0.21.10", "rustls-native-certs 0.6.3", "tokio", "tokio-rustls 0.24.1", @@ -15394,7 +15140,7 @@ dependencies = [ "futures-core", "futures-io", "futures-sink", - "pin-project-lite", + "pin-project-lite 0.2.13", "slab", "tokio", ] @@ -15422,21 +15168,21 @@ dependencies = [ [[package]] name = "toml" -version = "0.8.19" +version = "0.8.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1ed1f98e3fdc28d6d910e6737ae6ab1a93bf1985935a1193e68f93eeb68d24e" +checksum = "9a9aad4a3066010876e8dcf5a8a06e70a558751117a145c6ce2b82c2e2054290" dependencies = [ "serde", "serde_spanned", "toml_datetime", - "toml_edit 0.22.20", + "toml_edit 0.22.5", ] [[package]] name = "toml_datetime" -version = "0.6.8" +version = "0.6.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41" +checksum = "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1" dependencies = [ "serde", ] @@ -15447,35 +15193,35 @@ version = "0.19.15" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" dependencies = [ - "indexmap 2.3.0", + "indexmap 2.2.6", "serde", "serde_spanned", "toml_datetime", - "winnow 0.5.40", + "winnow 0.5.33", ] [[package]] name = "toml_edit" -version = "0.21.1" +version = "0.21.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6a8534fd7f78b5405e860340ad6575217ce99f38d4d5c8f2442cb5ecb50090e1" +checksum = "d34d383cd00a163b4a5b85053df514d45bc330f6de7737edfe0a93311d1eaa03" dependencies = [ - "indexmap 2.3.0", + "indexmap 2.2.6", "toml_datetime", - "winnow 0.5.40", + "winnow 0.5.33", ] [[package]] name = "toml_edit" -version = "0.22.20" +version = "0.22.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "583c44c02ad26b0c3f3066fe629275e50627026c51ac2e595cca4c230ce1ce1d" +checksum = "99e68c159e8f5ba8a28c4eb7b0c0c190d77bb479047ca713270048145a9ad28a" dependencies = [ - "indexmap 2.3.0", + "indexmap 2.2.6", "serde", "serde_spanned", "toml_datetime", - "winnow 0.6.18", + "winnow 0.6.0", ] [[package]] @@ -15487,7 +15233,7 @@ dependencies = [ "futures-core", "futures-util", "pin-project", - "pin-project-lite", + "pin-project-lite 0.2.13", "tokio", "tokio-util", "tower-layer", @@ -15501,16 +15247,16 @@ version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "61c5bb1d698276a2443e5ecfabc1008bf15a36c12e6a7176e7bf089ea9131140" dependencies = [ - "base64 0.21.7", + "base64 0.21.6", "bitflags 2.6.0", "bytes", "futures-core", "futures-util", - "http 0.2.12", - "http-body 0.4.6", + "http 0.2.11", + "http-body 0.4.5", "http-range-header", "mime", - "pin-project-lite", + "pin-project-lite 0.2.13", "tower-layer", "tower-service", "tracing", @@ -15535,7 +15281,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" dependencies = [ "log", - "pin-project-lite", + "pin-project-lite 0.2.13", "tracing-attributes", "tracing-core", ] @@ -15548,7 +15294,7 @@ checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" dependencies = [ "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.65", ] [[package]] @@ -15737,9 +15483,9 @@ dependencies = [ [[package]] name = "try-lock" -version = "0.2.5" +version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" +checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" [[package]] name = "tt-call" @@ -15756,11 +15502,11 @@ dependencies = [ "byteorder", "bytes", "data-encoding", - "http 0.2.12", + "http 0.2.11", "httparse", "log", "rand", - "rustls 0.21.12", + "rustls 0.21.10", "sha1", "thiserror", "url", @@ -15817,9 +15563,9 @@ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94" [[package]] name = "unicode-bidi" -version = "0.3.15" +version = "0.3.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75" +checksum = "6f2528f27a9eb2b21e69c95319b30bd0efd85d09c379741b0f78ea1d86be2416" [[package]] name = "unicode-ident" @@ -15838,9 +15584,9 @@ dependencies = [ [[package]] name = "unicode-width" -version = "0.1.13" +version = "0.1.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0336d538f7abc86d282a4189614dfaa90810dfc2c6f6427eaf88e16311dd225d" +checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85" [[package]] name = "unicode-xid" @@ -15855,7 +15601,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea" dependencies = [ "crypto-common", - "subtle 2.6.1", + "subtle 2.5.0", ] [[package]] @@ -15900,9 +15646,9 @@ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" [[package]] name = "url" -version = "2.5.2" +version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c" +checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633" dependencies = [ "form_urlencoded", "idna 0.5.0", @@ -15918,15 +15664,15 @@ checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" [[package]] name = "utf8parse" -version = "0.2.2" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" +checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" [[package]] name = "uuid" -version = "1.10.0" +version = "1.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "81dfa00651efa65069b0b6b651f4aaa31ba9e3c3ce0137aaad053604ee7e0314" +checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0" dependencies = [ "getrandom", ] @@ -15945,9 +15691,9 @@ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" [[package]] name = "version_check" -version = "0.9.5" +version = "0.9.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" +checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" [[package]] name = "void" @@ -15957,9 +15703,9 @@ checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d" [[package]] name = "w3f-bls" -version = "0.1.4" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c5da5fa2c6afa2c9158eaa7cd9aee249765eb32b5fb0c63ad8b9e79336a47ec" +checksum = "7335e4c132c28cc43caef6adb339789e599e39adbe78da0c4d547fad48cbc331" dependencies = [ "ark-bls12-377", "ark-bls12-381", @@ -15990,9 +15736,9 @@ dependencies = [ [[package]] name = "walkdir" -version = "2.5.0" +version = "2.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" +checksum = "d71d857dc86794ca4c280d616f7da00d2dbfd8cd788846559a6813e6aa4b54ee" dependencies = [ "same-file", "winapi-util", @@ -16015,9 +15761,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" [[package]] name = "wasm-bindgen" -version = "0.2.92" +version = "0.2.89" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8" +checksum = "0ed0d4f68a3015cc185aff4db9506a015f4b96f95303897bfa23f846db54064e" dependencies = [ "cfg-if", "wasm-bindgen-macro", @@ -16025,24 +15771,24 @@ dependencies = [ [[package]] name = "wasm-bindgen-backend" -version = "0.2.92" +version = "0.2.89" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da" +checksum = "1b56f625e64f3a1084ded111c4d5f477df9f8c92df113852fa5a374dbda78826" dependencies = [ "bumpalo", "log", "once_cell", "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.65", "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-futures" -version = "0.4.42" +version = "0.4.39" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "76bc14366121efc8dbb487ab05bcc9d346b3b5ec0eaa76e46594cabbe51762c0" +checksum = "ac36a15a220124ac510204aec1c3e5db8a22ab06fd6706d881dc6149f8ed9a12" dependencies = [ "cfg-if", "js-sys", @@ -16052,9 +15798,9 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro" -version = "0.2.92" +version = "0.2.89" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726" +checksum = "0162dbf37223cd2afce98f3d0785506dcb8d266223983e4b5b525859e6e182b2" dependencies = [ "quote", "wasm-bindgen-macro-support", @@ -16062,22 +15808,22 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro-support" -version = "0.2.92" +version = "0.2.89" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7" +checksum = "f0eb82fcb7930ae6219a7ecfd55b217f5f0893484b7a13022ebb2b2bf20b5283" dependencies = [ "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.65", "wasm-bindgen-backend", "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-shared" -version = "0.2.92" +version = "0.2.89" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96" +checksum = "7ab9b36309365056cd639da3134bf87fa8f3d86008abf99e612384a6eecd459f" [[package]] name = "wasm-instrument" @@ -16090,9 +15836,9 @@ dependencies = [ [[package]] name = "wasm-opt" -version = "0.116.1" +version = "0.116.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2fd87a4c135535ffed86123b6fb0f0a5a0bc89e50416c942c5f0662c645f679c" +checksum = "fc942673e7684671f0c5708fc18993569d184265fd5223bb51fc8e5b9b6cfd52" dependencies = [ "anyhow", "libc", @@ -16237,7 +15983,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c86437fa68626fe896e5afc69234bb2b5894949083586535f200385adfd71213" dependencies = [ "anyhow", - "base64 0.21.7", + "base64 0.21.6", "bincode", "directories-next", "file-per-thread-logger", @@ -16390,9 +16136,9 @@ dependencies = [ [[package]] name = "web-sys" -version = "0.3.69" +version = "0.3.66" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef" +checksum = "50c24a44ec86bb68fbecd1b3efed7e85ea5621b39b35ef2766b66cd984f8010f" dependencies = [ "js-sys", "wasm-bindgen", @@ -16404,7 +16150,7 @@ version = "0.22.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ed63aea5ce73d0ff405984102c42de94fc55a6b75765d621c65262469b3c9b53" dependencies = [ - "ring 0.17.8", + "ring 0.17.7", "untrusted 0.9.0", ] @@ -16432,14 +16178,14 @@ dependencies = [ "either", "home", "once_cell", - "rustix 0.38.34", + "rustix 0.38.31", ] [[package]] name = "wide" -version = "0.7.26" +version = "0.7.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "901e8597c777fa042e9e245bd56c0dc4418c5db3f845b6ff94fbac732c6a0692" +checksum = "c68938b57b33da363195412cfc5fc37c9ed49aa9cfe2156fde64b8d2c9498242" dependencies = [ "bytemuck", "safe_arch", @@ -16447,9 +16193,9 @@ dependencies = [ [[package]] name = "widestring" -version = "1.1.0" +version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7219d36b6eac893fa81e84ebe06485e7dcbb616177469b142df14f1f4deb1311" +checksum = "653f141f39ec16bba3c5abe400a0c60da7468261cc2cbf36805022876bc721a8" [[package]] name = "winapi" @@ -16469,11 +16215,11 @@ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" [[package]] name = "winapi-util" -version = "0.1.8" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4d4cc384e1e73b93bafa6fb4f1df8c41695c8a91cf9c4c64358067d15a7b6c6b" +checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596" dependencies = [ - "windows-sys 0.52.0", + "winapi", ] [[package]] @@ -16488,7 +16234,7 @@ version = "0.51.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ca229916c5ee38c2f2bc1e9d8f04df975b4bd93f9955dc69fabb5d91270045c9" dependencies = [ - "windows-core 0.51.1", + "windows-core", "windows-targets 0.48.5", ] @@ -16501,15 +16247,6 @@ dependencies = [ "windows-targets 0.48.5", ] -[[package]] -name = "windows-core" -version = "0.52.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" -dependencies = [ - "windows-targets 0.52.6", -] - [[package]] name = "windows-sys" version = "0.42.0" @@ -16549,7 +16286,7 @@ version = "0.52.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" dependencies = [ - "windows-targets 0.52.6", + "windows-targets 0.52.0", ] [[package]] @@ -16584,18 +16321,17 @@ dependencies = [ [[package]] name = "windows-targets" -version = "0.52.6" +version = "0.52.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" +checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd" dependencies = [ - "windows_aarch64_gnullvm 0.52.6", - "windows_aarch64_msvc 0.52.6", - "windows_i686_gnu 0.52.6", - "windows_i686_gnullvm", - "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", + "windows_aarch64_gnullvm 0.52.0", + "windows_aarch64_msvc 0.52.0", + "windows_i686_gnu 0.52.0", + "windows_i686_msvc 0.52.0", + "windows_x86_64_gnu 0.52.0", + "windows_x86_64_gnullvm 0.52.0", + "windows_x86_64_msvc 0.52.0", ] [[package]] @@ -16612,9 +16348,9 @@ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" [[package]] name = "windows_aarch64_gnullvm" -version = "0.52.6" +version = "0.52.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" +checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea" [[package]] name = "windows_aarch64_msvc" @@ -16630,9 +16366,9 @@ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" [[package]] name = "windows_aarch64_msvc" -version = "0.52.6" +version = "0.52.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" +checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef" [[package]] name = "windows_i686_gnu" @@ -16648,15 +16384,9 @@ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" [[package]] name = "windows_i686_gnu" -version = "0.52.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" - -[[package]] -name = "windows_i686_gnullvm" -version = "0.52.6" +version = "0.52.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" +checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313" [[package]] name = "windows_i686_msvc" @@ -16672,9 +16402,9 @@ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" [[package]] name = "windows_i686_msvc" -version = "0.52.6" +version = "0.52.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" +checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a" [[package]] name = "windows_x86_64_gnu" @@ -16690,9 +16420,9 @@ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" [[package]] name = "windows_x86_64_gnu" -version = "0.52.6" +version = "0.52.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" +checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd" [[package]] name = "windows_x86_64_gnullvm" @@ -16708,9 +16438,9 @@ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" [[package]] name = "windows_x86_64_gnullvm" -version = "0.52.6" +version = "0.52.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" +checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e" [[package]] name = "windows_x86_64_msvc" @@ -16726,24 +16456,24 @@ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" [[package]] name = "windows_x86_64_msvc" -version = "0.52.6" +version = "0.52.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" +checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04" [[package]] name = "winnow" -version = "0.5.40" +version = "0.5.33" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876" +checksum = "b7520bbdec7211caa7c4e682eb1fbe07abe20cee6756b6e00f537c82c11816aa" dependencies = [ "memchr", ] [[package]] name = "winnow" -version = "0.6.18" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "68a9bda4691f099d435ad181000724da8e5899daa10713c2d432552b9ccd3a6f" +checksum = "6b1dbce9e90e5404c5a52ed82b1d13fc8cfbdad85033b6f57546ffd1265f8451" dependencies = [ "memchr", ] @@ -16769,11 +16499,11 @@ dependencies = [ [[package]] name = "x25519-dalek" -version = "2.0.1" +version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c7e468321c81fb07fa7f4c636c3972b9100f0346e5b6a9f2bd0603a52f7ed277" +checksum = "fb66477291e7e8d2b0ff1bcb900bf29489a9692816d79874bea351e7a8b6de96" dependencies = [ - "curve25519-dalek 4.1.3", + "curve25519-dalek 4.1.2", "rand_core 0.6.4", "serde", "zeroize", @@ -16802,7 +16532,7 @@ version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fcbc162f30700d6f3f82a24bf7cc62ffe7caea42c0b2cba8bf7f3ae50cf51f69" dependencies = [ - "asn1-rs 0.6.2", + "asn1-rs 0.6.1", "data-encoding", "der-parser 9.0.0", "lazy_static", @@ -16820,8 +16550,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8da84f1a25939b27f6820d92aed108f83ff920fdf11a7b19366c27c4cda81d4f" dependencies = [ "libc", - "linux-raw-sys 0.4.14", - "rustix 0.38.34", + "linux-raw-sys 0.4.12", + "rustix 0.38.31", ] [[package]] @@ -16852,7 +16582,7 @@ dependencies = [ "sp-core 34.0.0", "sp-crypto-hashing", "sp-io 37.0.0", - "sp-runtime 38.0.1", + "sp-runtime 38.0.0", "sp-std", "sp-tracing 17.0.0", "staging-xcm", @@ -16861,14 +16591,14 @@ dependencies = [ [[package]] name = "xcm-procedural" -version = "10.1.0" +version = "10.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "87fb4f14094d65c500a59bcf540cf42b99ee82c706edd6226a92e769ad60563e" +checksum = "e0fd01495dfeb643167557631b34b54d312c1e70cf7eb64249ab687d84fd6045" dependencies = [ "Inflector", "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.65", ] [[package]] @@ -16934,43 +16664,22 @@ dependencies = [ [[package]] name = "zerocopy" -version = "0.6.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "854e949ac82d619ee9a14c66a1b674ac730422372ccb759ce0c39cabcf2bf8e6" -dependencies = [ - "byteorder", - "zerocopy-derive 0.6.6", -] - -[[package]] -name = "zerocopy" -version = "0.7.35" +version = "0.7.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0" +checksum = "74d4d3961e53fa4c9a25a8637fc2bfaf2595b3d3ae34875568a5cf64787716be" dependencies = [ - "zerocopy-derive 0.7.35", + "zerocopy-derive", ] [[package]] name = "zerocopy-derive" -version = "0.6.6" +version = "0.7.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "125139de3f6b9d625c39e2efdd73d41bdac468ccd556556440e322be0e1bbd91" +checksum = "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6" dependencies = [ "proc-macro2", "quote", - "syn 2.0.72", -] - -[[package]] -name = "zerocopy-derive" -version = "0.7.35" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.72", + "syn 2.0.65", ] [[package]] @@ -16990,14 +16699,14 @@ checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69" dependencies = [ "proc-macro2", "quote", - "syn 2.0.72", + "syn 2.0.65", ] [[package]] name = "zombienet-configuration" -version = "0.2.7" +version = "0.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a5ee069fa52f2057eaae7f27f0c638d4a5f630e42159f66665398681cdd82d4f" +checksum = "ecd24a5c580ce4d871a4f3291144a731f0cfc633fedd681b99e73825f38181b6" dependencies = [ "anyhow", "lazy_static", @@ -17013,25 +16722,21 @@ dependencies = [ [[package]] name = "zombienet-orchestrator" -version = "0.2.7" +version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cdbffc9d2fd1c8f727718a197f7fc65ad7b7a2397855f87a6deb738a26d499f8" +checksum = "0a2d240dea2272d66138cd510a39d580b6227966185bf63d7ec23eac14533c9c" dependencies = [ "anyhow", - "async-trait", "futures", - "glob-match", "hex", "libp2p", "multiaddr 0.18.1", "rand", - "regex", "reqwest", - "serde", "serde_json", "sha2 0.10.8", "sp-core 31.0.0", - "subxt 0.37.0", + "subxt", "subxt-signer", "thiserror", "tokio", @@ -17045,9 +16750,9 @@ dependencies = [ [[package]] name = "zombienet-prom-metrics-parser" -version = "0.2.7" +version = "0.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af494234607b9bbfee8b6ab93a0b85c5f9238c6ffdb9c46f1db3e811b1940e0e" +checksum = "80ed716ba0901e603cbd3b5e3ddc59e3df20d69cd58109ef12bbea6097ffd325" dependencies = [ "pest", "pest_derive", @@ -17056,9 +16761,9 @@ dependencies = [ [[package]] name = "zombienet-provider" -version = "0.2.7" +version = "0.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c900c3a42098db63bbf4ac1b3ce37157d66a1e6627ac4c806bf7a346253a9093" +checksum = "5a7522089152c02622ac27f30f95652ff5b9e3d193ef7eafee41603e9d7cc785" dependencies = [ "anyhow", "async-trait", @@ -17087,14 +16792,14 @@ dependencies = [ [[package]] name = "zombienet-sdk" -version = "0.2.7" +version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "27224e17fd674c21c1ac16280bc85d2333ee71520fa02a1c6de6aa6f642aa1b5" +checksum = "d629add7e175261c047c9dc038b4b23fefb174edaf2868f858c5ff1b682f6541" dependencies = [ "async-trait", "futures", "lazy_static", - "subxt 0.37.0", + "subxt", "tokio", "zombienet-configuration", "zombienet-orchestrator", @@ -17108,7 +16813,7 @@ version = "0.1.0" dependencies = [ "anyhow", "log", - "subxt 0.35.3", + "subxt", "tokio", "tracing-subscriber 0.3.18", "zombienet-sdk", @@ -17116,9 +16821,9 @@ dependencies = [ [[package]] name = "zombienet-support" -version = "0.2.7" +version = "0.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9f4ec8f69b9c4b6407ae721911da25df0c99a1d70da1e4b9d7ee11bcbea0594a" +checksum = "6026607084432996fd590d4beb9d4fb15937bce4f3bd6bddd7e8c0ead1bbc141" dependencies = [ "anyhow", "async-trait", @@ -17173,9 +16878,9 @@ dependencies = [ [[package]] name = "zstd-sys" -version = "2.0.12+zstd.1.5.6" +version = "2.0.9+zstd.1.5.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0a4e40c320c3cb459d9a9ff6de98cff88f4751ee9275d140e2be94a2b74e4c13" +checksum = "9e16efa8a874a0481a574084d34cc26fdb3b99627480f785888deb6386506656" dependencies = [ "cc", "pkg-config", diff --git a/relay/kusama/src/lib.rs b/relay/kusama/src/lib.rs index f217f9b8a7..abf02cb165 100644 --- a/relay/kusama/src/lib.rs +++ b/relay/kusama/src/lib.rs @@ -20,6 +20,8 @@ // `construct_runtime!` does a lot of recursion and requires us to increase the limit. #![recursion_limit = "512"] +extern crate alloc; + use codec::{Decode, Encode, MaxEncodedLen}; use frame_support::{ dynamic_params::{dynamic_pallet_params, dynamic_params}, diff --git a/relay/polkadot/Cargo.toml b/relay/polkadot/Cargo.toml index 01d520da92..e906be77b5 100644 --- a/relay/polkadot/Cargo.toml +++ b/relay/polkadot/Cargo.toml @@ -70,6 +70,7 @@ pallet-session = { workspace = true } frame-support = { workspace = true } pallet-staking = { workspace = true } pallet-staking-reward-fn = { workspace = true } +pallet-staking-reward-curve = { workspace = true } pallet-staking-runtime-api = { workspace = true } pallet-state-trie-migration = { workspace = true } frame-system = { workspace = true } From f6d2aae5fc471796a0d495830c8a4d1729fb215c Mon Sep 17 00:00:00 2001 From: kianenigma Date: Thu, 1 Aug 2024 13:33:39 +0100 Subject: [PATCH 27/44] fmt and more test --- relay/kusama/src/lib.rs | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/relay/kusama/src/lib.rs b/relay/kusama/src/lib.rs index abf02cb165..232b70d6a0 100644 --- a/relay/kusama/src/lib.rs +++ b/relay/kusama/src/lib.rs @@ -1270,8 +1270,7 @@ impl InstanceFilter for ProxyType { matches!( c, RuntimeCall::Staking(..) | - RuntimeCall::Session(..) | - RuntimeCall::Utility(..) | + RuntimeCall::Session(..) | RuntimeCall::Utility(..) | RuntimeCall::FastUnstake(..) | RuntimeCall::VoterList(..) | RuntimeCall::NominationPools(..) @@ -3026,12 +3025,14 @@ mod remote_tests { }) .unwrap(); let total_issuance = Nis::issuance().other; - let era_duration_millis = + let _real_era_duration_millis = pallet_timestamp::Now::::get().saturating_sub(started); + // 6h in milliseconds + let average_era_duration_millis = 6 * 60 * 60 * 1000; let (staking, leftover) = ::EraPayout::era_payout( total_staked, total_issuance, - era_duration_millis, + average_era_duration_millis, ); use ss58_registry::TokenRegistry; let token: ss58_registry::Token = TokenRegistry::Ksm.into(); @@ -3039,7 +3040,7 @@ mod remote_tests { log::info!(target: "runtime::kusama", "total-staked = {:?}", token.amount(total_staked)); log::info!(target: "runtime::kusama", "total-issuance = {:?}", token.amount(total_issuance)); log::info!(target: "runtime::kusama", "staking-rate = {:?}", Perquintill::from_rational(total_staked, total_issuance)); - log::info!(target: "runtime::kusama", "era-duration = {:?}", era_duration_millis); + log::info!(target: "runtime::kusama", "era-duration = {:?}", average_era_duration_millis); log::info!(target: "runtime::kusama", "min-inflation = {:?}", dynamic_params::inflation::MinInflation::get()); log::info!(target: "runtime::kusama", "max-inflation = {:?}", dynamic_params::inflation::MaxInflation::get()); log::info!(target: "runtime::kusama", "falloff = {:?}", dynamic_params::inflation::Falloff::get()); From 93479debedd2f2fef687a4241d0d03e96ec2e790 Mon Sep 17 00:00:00 2001 From: kianenigma Date: Thu, 1 Aug 2024 14:01:16 +0100 Subject: [PATCH 28/44] add runtime api --- relay/kusama/src/lib.rs | 74 ++++++++++++++++++++++++++++++++++++++++- 1 file changed, 73 insertions(+), 1 deletion(-) diff --git a/relay/kusama/src/lib.rs b/relay/kusama/src/lib.rs index 232b70d6a0..cb790de11b 100644 --- a/relay/kusama/src/lib.rs +++ b/relay/kusama/src/lib.rs @@ -1270,7 +1270,8 @@ impl InstanceFilter for ProxyType { matches!( c, RuntimeCall::Staking(..) | - RuntimeCall::Session(..) | RuntimeCall::Utility(..) | + RuntimeCall::Session(..) | + RuntimeCall::Utility(..) | RuntimeCall::FastUnstake(..) | RuntimeCall::VoterList(..) | RuntimeCall::NominationPools(..) @@ -1938,7 +1939,78 @@ mod benches { ); } +/// Extra runtime APIs for kusama runtime. +pub mod apis { + + /// Information about the current inflation rate of the system. + /// + /// Both fields should be treated as best-effort, given that the inflation rate might not be + /// fully predict-able. + #[derive(scale_info::TypeInfo, codec::Encode, codec::Decode)] + pub struct InflationInfo { + /// The rate of inflation estimated per annum. + pub inflation: sp_runtime::Perquintill, + /// Next amount that we anticipate to mint. + /// + /// First item is the amount that goes to stakers, second is the leftover that is usually + /// forwarded to the treasury. + pub next_mint: (polkadot_primitives::Balance, polkadot_primitives::Balance), + } + + sp_api::decl_runtime_apis! { + pub trait Inflation { + /// Return the current estimates of the inflation amount. + /// + /// This is marked as experimental in light of RFC#89. Nonetheless, its usage is highly + /// recommended over trying to read-storage, or re-create the onchain logic. + fn experimental_inflation_info() -> InflationInfo; + } + } +} + +use apis::*; + +impl Runtime { + fn impl_experimental_inflation_info() -> InflationInfo { + use pallet_staking::{ActiveEra, EraPayout, ErasTotalStake}; + let (staked, _start) = ActiveEra::::get() + .map(|ae| (ErasTotalStake::::get(ae.index), ae.start.unwrap_or(0))) + .unwrap_or((0, 0)); + let stake_able_issuance = Balances::total_issuance(); + + let ideal_staking_rate = dynamic_params::inflation::IdealStake::get(); + let inflation = if dynamic_params::inflation::UseAuctionSlots::get() { + let auctioned_slots = parachains_paras::Parachains::::get() + .into_iter() + // all active para-ids that do not belong to a system chain is the number of + // parachains that we should take into account for inflation. + .filter(|i| *i >= 2000.into()) + .count() as u64; + ideal_staking_rate + .saturating_sub(Perquintill::from_rational(auctioned_slots.min(60), 200u64)) + } else { + ideal_staking_rate + }; + + // we assume un-delayed 6h eras. + let era_duration = 6 * HOURS; + let next_mint = ::EraPayout::era_payout( + staked, + stake_able_issuance, + era_duration.into(), + ); + + InflationInfo { inflation, next_mint } + } +} + sp_api::impl_runtime_apis! { + impl apis::Inflation for Runtime { + fn experimental_inflation_info() -> InflationInfo { + Runtime::impl_experimental_inflation_info() + } + } + impl sp_api::Core for Runtime { fn version() -> RuntimeVersion { VERSION From c65d843b3a6ee7f576370c96253e5757447d5f01 Mon Sep 17 00:00:00 2001 From: kianenigma Date: Thu, 1 Aug 2024 14:12:29 +0100 Subject: [PATCH 29/44] fmt --- relay/kusama/src/lib.rs | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/relay/kusama/src/lib.rs b/relay/kusama/src/lib.rs index cb790de11b..b6b68aa375 100644 --- a/relay/kusama/src/lib.rs +++ b/relay/kusama/src/lib.rs @@ -656,10 +656,16 @@ pub mod dynamic_params { #[codec(index = 3)] pub static Falloff: Perquintill = Perquintill::from_percent(5); - /// Whether to use auction slots or not in the calculation of era payouts. If set to true, - /// the `legacy_auction_proportion` of 60% will be used in the calculation of era payouts. + /// Whether to use auction slots or not in the calculation of era payouts, then we subtract + /// `num_auctioned_slots.min(60) / 200` from `ideal_stake`. + /// + /// That is, we assume up to 60 parachains that are leased can reduce the ideal stake by a + /// maximum of 30%. + /// + /// With the move to agile-coretime, this parameter does not make much sense and should + /// generally be set to false. #[codec(index = 4)] - pub static UseAuctionSlots: bool = true; + pub static UseAuctionSlots: bool = false; } } @@ -1270,8 +1276,7 @@ impl InstanceFilter for ProxyType { matches!( c, RuntimeCall::Staking(..) | - RuntimeCall::Session(..) | - RuntimeCall::Utility(..) | + RuntimeCall::Session(..) | RuntimeCall::Utility(..) | RuntimeCall::FastUnstake(..) | RuntimeCall::VoterList(..) | RuntimeCall::NominationPools(..) From ce1ae0fb256b07510806f32c47aa1093dca83555 Mon Sep 17 00:00:00 2001 From: kianenigma Date: Thu, 1 Aug 2024 14:16:07 +0100 Subject: [PATCH 30/44] changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index f083d6a5bb..fac049e6e4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - Core-Fellowship: new `promote_fast` call ([runtimes#381](https://github.com/polkadot-fellows/runtimes/pull/381), [SDK v1.14 #4877](https://github.com/paritytech/polkadot-sdk/pull/4877)). - Pallet ranked collective: max member count per rank ([runtimes#381](https://github.com/polkadot-fellows/runtimes/pull/381), [SDK v1.14 #4807](https://github.com/paritytech/polkadot-sdk/pull/4807)). - All runtimes: XcmPaymentApi and DryRunApi ([polkadot-fellows/runtimes#380](https://github.com/polkadot-fellows/runtimes/pull/380)) +- Kusama: Make the current inflation formula adjustable ([polkadot-fellows/runtimes#364](https://github.com/polkadot-fellows/runtimes/pull/364)) #### From [#322](https://github.com/polkadot-fellows/runtimes/pull/322): From 532f71d1b5cc43b779f73a4f9fa6fb6e77c62444 Mon Sep 17 00:00:00 2001 From: Kian Paimani <5588131+kianenigma@users.noreply.github.com> Date: Tue, 6 Aug 2024 17:55:34 +0100 Subject: [PATCH 31/44] Update relay/kusama/src/lib.rs --- relay/kusama/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/relay/kusama/src/lib.rs b/relay/kusama/src/lib.rs index b6b68aa375..a7eb9af43b 100644 --- a/relay/kusama/src/lib.rs +++ b/relay/kusama/src/lib.rs @@ -1981,7 +1981,7 @@ impl Runtime { let (staked, _start) = ActiveEra::::get() .map(|ae| (ErasTotalStake::::get(ae.index), ae.start.unwrap_or(0))) .unwrap_or((0, 0)); - let stake_able_issuance = Balances::total_issuance(); + let stake_able_issuance = Nis::issuance().other; let ideal_staking_rate = dynamic_params::inflation::IdealStake::get(); let inflation = if dynamic_params::inflation::UseAuctionSlots::get() { From 1e019dd389d46b7b7f5919b49b9860a161c0b6af Mon Sep 17 00:00:00 2001 From: Kian Paimani <5588131+kianenigma@users.noreply.github.com> Date: Tue, 13 Aug 2024 15:58:54 +0100 Subject: [PATCH 32/44] Update relay/kusama/src/lib.rs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Gonçalo Pestana --- relay/kusama/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/relay/kusama/src/lib.rs b/relay/kusama/src/lib.rs index a7eb9af43b..01dfc44841 100644 --- a/relay/kusama/src/lib.rs +++ b/relay/kusama/src/lib.rs @@ -1981,7 +1981,7 @@ impl Runtime { let (staked, _start) = ActiveEra::::get() .map(|ae| (ErasTotalStake::::get(ae.index), ae.start.unwrap_or(0))) .unwrap_or((0, 0)); - let stake_able_issuance = Nis::issuance().other; + let stakable_issuance = Nis::issuance().other; let ideal_staking_rate = dynamic_params::inflation::IdealStake::get(); let inflation = if dynamic_params::inflation::UseAuctionSlots::get() { From 0ea2ec3dfc8891fa8b159906b6c49c6909db2684 Mon Sep 17 00:00:00 2001 From: Kian Paimani <5588131+kianenigma@users.noreply.github.com> Date: Tue, 13 Aug 2024 15:59:07 +0100 Subject: [PATCH 33/44] Update relay/kusama/src/lib.rs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Gonçalo Pestana --- relay/kusama/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/relay/kusama/src/lib.rs b/relay/kusama/src/lib.rs index 01dfc44841..4c49c37052 100644 --- a/relay/kusama/src/lib.rs +++ b/relay/kusama/src/lib.rs @@ -1989,7 +1989,7 @@ impl Runtime { .into_iter() // all active para-ids that do not belong to a system chain is the number of // parachains that we should take into account for inflation. - .filter(|i| *i >= 2000.into()) + .filter(|i| *i >= LOWEST_PUBLIC_ID.into()) .count() as u64; ideal_staking_rate .saturating_sub(Perquintill::from_rational(auctioned_slots.min(60), 200u64)) From 2ad531a2ec940d8f46a9ca1cc01c92c4261342e1 Mon Sep 17 00:00:00 2001 From: kianenigma Date: Thu, 15 Aug 2024 14:08:40 +0100 Subject: [PATCH 34/44] fix a few things --- relay/kusama/src/lib.rs | 11 +++++------ relay/kusama/src/weights/mod.rs | 1 + 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/relay/kusama/src/lib.rs b/relay/kusama/src/lib.rs index 11c28edfb4..ca2f9a5abd 100644 --- a/relay/kusama/src/lib.rs +++ b/relay/kusama/src/lib.rs @@ -707,9 +707,7 @@ impl pallet_parameters::Config for Runtime { type RuntimeEvent = RuntimeEvent; type RuntimeParameters = RuntimeParameters; type AdminOrigin = DynamicParameterOrigin; - // TODO: add benchmarking and update weight info - type WeightInfo = (); - // type WeightInfo = weights::pallet_parameters::WeightInfo; + type WeightInfo = weights::pallet_parameters::WeightInfo; } pub struct EraPayout; @@ -1276,7 +1274,8 @@ impl InstanceFilter for ProxyType { matches!( c, RuntimeCall::Staking(..) | - RuntimeCall::Session(..) | RuntimeCall::Utility(..) | + RuntimeCall::Session(..) | + RuntimeCall::Utility(..) | RuntimeCall::FastUnstake(..) | RuntimeCall::VoterList(..) | RuntimeCall::NominationPools(..) @@ -1968,7 +1967,7 @@ pub mod apis { /// /// This is marked as experimental in light of RFC#89. Nonetheless, its usage is highly /// recommended over trying to read-storage, or re-create the onchain logic. - fn experimental_inflation_info() -> InflationInfo; + fn experimental_inflation_prediction_info() -> InflationInfo; } } } @@ -2011,7 +2010,7 @@ impl Runtime { sp_api::impl_runtime_apis! { impl apis::Inflation for Runtime { - fn experimental_inflation_info() -> InflationInfo { + fn experimental_inflation_prediction_info() -> InflationInfo { Runtime::impl_experimental_inflation_info() } } diff --git a/relay/kusama/src/weights/mod.rs b/relay/kusama/src/weights/mod.rs index 21d376bcce..263e2e1c6d 100644 --- a/relay/kusama/src/weights/mod.rs +++ b/relay/kusama/src/weights/mod.rs @@ -31,6 +31,7 @@ pub mod pallet_message_queue; pub mod pallet_multisig; pub mod pallet_nis; pub mod pallet_nomination_pools; +pub mod pallet_parameters; pub mod pallet_preimage; pub mod pallet_proxy; pub mod pallet_ranked_collective; From db131fabd985bfae037e035fc81f8520ba7023b9 Mon Sep 17 00:00:00 2001 From: kianenigma Date: Thu, 15 Aug 2024 14:23:09 +0100 Subject: [PATCH 35/44] move to shared crate for relay common --- Cargo.lock | 13 ++ Cargo.toml | 1 + relay/common/Cargo.toml | 32 +++++ relay/common/src/lib.rs | 114 ++++++++++++++++++ relay/kusama/Cargo.toml | 2 + relay/kusama/src/lib.rs | 106 +--------------- relay/kusama/src/weights/pallet_parameters.rs | 51 ++++++++ 7 files changed, 218 insertions(+), 101 deletions(-) create mode 100644 relay/common/Cargo.toml create mode 100644 relay/common/src/lib.rs create mode 100644 relay/kusama/src/weights/pallet_parameters.rs diff --git a/Cargo.lock b/Cargo.lock index 3e40db26df..a6b3b99cf4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -11093,6 +11093,18 @@ version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" +[[package]] +name = "relay-common" +version = "1.0.0" +dependencies = [ + "pallet-staking-reward-fn", + "parity-scale-codec", + "polkadot-primitives", + "scale-info", + "sp-api", + "sp-runtime 38.0.0", +] + [[package]] name = "reqwest" version = "0.11.27" @@ -14366,6 +14378,7 @@ dependencies = [ "polkadot-primitives", "polkadot-runtime-common", "polkadot-runtime-parachains", + "relay-common", "scale-info", "separator", "serde_json", diff --git a/Cargo.toml b/Cargo.toml index 7999d1589b..545e80a763 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -276,6 +276,7 @@ members = [ "integration-tests/emulated/tests/people/people-kusama", "integration-tests/emulated/tests/people/people-polkadot", "integration-tests/zombienet", + "relay/common", "relay/kusama", "relay/kusama/constants", "relay/polkadot", diff --git a/relay/common/Cargo.toml b/relay/common/Cargo.toml new file mode 100644 index 0000000000..c01c511c4c --- /dev/null +++ b/relay/common/Cargo.toml @@ -0,0 +1,32 @@ +[package] +authors.workspace = true +description = "Shared utilities between relay runtimes" +edition.workspace = true +license.workspace = true +name = "relay-common" +repository.workspace = true +version.workspace = true + +[dependencies] +codec = { features = ["derive", "max-encoded-len"], workspace = true } +scale-info = { features = ["derive"], workspace = true } + +sp-api ={ workspace = true } +sp-runtime = { workspace = true } +polkadot-primitives = { workspace = true } +pallet-staking-reward-fn ={ workspace = true } + + +[dev-dependencies] + +[features] +default = ["std"] +std = [ + "codec/std", + "scale-info/std", + + "sp-api/std", + "sp-runtime/std", + "polkadot-primitives/std", + "pallet-staking-reward-fn/std", +] diff --git a/relay/common/src/lib.rs b/relay/common/src/lib.rs new file mode 100644 index 0000000000..b3f4643e13 --- /dev/null +++ b/relay/common/src/lib.rs @@ -0,0 +1,114 @@ +// Copyright (C) Parity Technologies (UK) Ltd. +// This file is part of Polkadot. + +// Polkadot is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. + +// Polkadot is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. + +// You should have received a copy of the GNU General Public License +// along with Polkadot. If not, see . + +//! Shared code between the Kusama nd Polkadot RC Runtimes. + +use polkadot_primitives::Balance; +use sp_runtime::{Perquintill, Saturating}; + +/// Extra runtime APIs for kusama runtime. +pub mod apis { + /// Information about the current inflation rate of the system. + /// + /// Both fields should be treated as best-effort, given that the inflation rate might not be + /// fully predict-able. + #[derive(scale_info::TypeInfo, codec::Encode, codec::Decode)] + pub struct InflationInfo { + /// The rate of inflation estimated per annum. + pub inflation: sp_runtime::Perquintill, + /// Next amount that we anticipate to mint. + /// + /// First item is the amount that goes to stakers, second is the leftover that is usually + /// forwarded to the treasury. + pub next_mint: (polkadot_primitives::Balance, polkadot_primitives::Balance), + } + + sp_api::decl_runtime_apis! { + pub trait Inflation { + /// Return the current estimates of the inflation amount. + /// + /// This is marked as experimental in light of RFC#89. Nonetheless, its usage is highly + /// recommended over trying to read-storage, or re-create the onchain logic. + fn experimental_inflation_prediction_info() -> InflationInfo; + } + } +} + +// ---- TODO: Below is copy pasted from sdk, remove once we pull the version containing +// https://github.com/paritytech/polkadot-sdk/pull/4938 + +#[derive(Debug, Clone)] +/// Parameters passed into [`relay_era_payout`] function. +pub struct EraPayoutParams { + /// Total staked amount. + pub total_staked: Balance, + /// Total stakable amount. + /// + /// Usually, this is equal to the total issuance, except if a large part of the issuance is + /// locked in another sub-system. + pub total_stakable: Balance, + /// Ideal stake ratio, which is deducted by `legacy_auction_proportion` if not `None`. + pub ideal_stake: Perquintill, + /// Maximum inflation rate. + pub max_annual_inflation: Perquintill, + /// Minimum inflation rate. + pub min_annual_inflation: Perquintill, + /// Falloff used to calculate era payouts. + pub falloff: Perquintill, + /// Fraction of the era period used to calculate era payouts. + pub period_fraction: Perquintill, + /// Legacy auction proportion, which substracts from `ideal_stake` if not `None`. + pub legacy_auction_proportion: Option, +} + +/// A specialized function to compute the inflation of the staking system, tailored for polkadot +/// relay chains, such as Polkadot, Kusama and Westend. +pub fn relay_era_payout(params: EraPayoutParams) -> (Balance, Balance) { + let EraPayoutParams { + total_staked, + total_stakable, + ideal_stake, + max_annual_inflation, + min_annual_inflation, + falloff, + period_fraction, + legacy_auction_proportion, + } = params; + + let delta_annual_inflation = max_annual_inflation.saturating_sub(min_annual_inflation); + + let ideal_stake = ideal_stake.saturating_sub(legacy_auction_proportion.unwrap_or_default()); + + let stake = Perquintill::from_rational(total_staked, total_stakable); + let adjustment = pallet_staking_reward_fn::compute_inflation(stake, ideal_stake, falloff); + let staking_inflation = + min_annual_inflation.saturating_add(delta_annual_inflation * adjustment); + + let max_payout = period_fraction * max_annual_inflation * total_stakable; + let staking_payout = (period_fraction * staking_inflation) * total_stakable; + let rest = max_payout.saturating_sub(staking_payout); + + let other_issuance = total_stakable.saturating_sub(total_staked); + if total_staked > other_issuance { + let _cap_rest = Perquintill::from_rational(other_issuance, total_staked) * staking_payout; + // We don't do anything with this, but if we wanted to, we could introduce a cap on the + // treasury amount with: `rest = rest.min(cap_rest);` + } + (staking_payout, rest) +} + +// ---- TODO: Above is copy pasted from sdk, remove once we pull the version containing +// https://github.com/paritytech/polkadot-sdk/pull/4938 diff --git a/relay/kusama/Cargo.toml b/relay/kusama/Cargo.toml index 325e274db3..f1b6f43b37 100644 --- a/relay/kusama/Cargo.toml +++ b/relay/kusama/Cargo.toml @@ -107,6 +107,7 @@ xcm-builder = { workspace = true } xcm-runtime-apis = { workspace = true } sp-debug-derive = { workspace = true } +relay-common = { path = "../common", default-features = false } [dev-dependencies] sp-keyring = { workspace = true } @@ -191,6 +192,7 @@ std = [ "pallet-xcm/std", "polkadot-primitives/std", "polkadot-runtime-common/std", + "relay-common/std", "runtime-parachains/std", "scale-info/std", "serde_json/std", diff --git a/relay/kusama/src/lib.rs b/relay/kusama/src/lib.rs index b08339c1a8..341f3dac53 100644 --- a/relay/kusama/src/lib.rs +++ b/relay/kusama/src/lib.rs @@ -46,6 +46,7 @@ use polkadot_runtime_common::{ paras_registrar, prod_or_fast, slots, BalanceToU256, BlockHashCount, BlockLength, CurrencyToVote, SlowAdjustingFeeUpdate, U256ToBalance, }; +use relay_common::apis::*; use scale_info::TypeInfo; use sp_runtime::traits::Saturating; use sp_std::{ @@ -719,7 +720,7 @@ impl pallet_staking::EraPayout for EraPayout { ) -> (Balance, Balance) { const MILLISECONDS_PER_YEAR: u64 = 1000 * 3600 * 24 * 36525 / 100; - let params = EraPayoutParams { + let params = relay_common::EraPayoutParams { total_staked, total_stakable: Nis::issuance().other, ideal_stake: dynamic_params::inflation::IdealStake::get(), @@ -740,76 +741,10 @@ impl pallet_staking::EraPayout for EraPayout { }, }; log::debug!(target: "runtime::kusama", "params: {:?}", params); - relay_era_payout(params) + relay_common::relay_era_payout(params) } } -// ---- TODO: Below is copy pasted from sdk, remove once we pull the version containing -// https://github.com/paritytech/polkadot-sdk/pull/4938 - -#[derive(Debug, Clone)] -/// Parameters passed into [`relay_era_payout`] function. -pub struct EraPayoutParams { - /// Total staked amount. - pub total_staked: Balance, - /// Total stakable amount. - /// - /// Usually, this is equal to the total issuance, except if a large part of the issuance is - /// locked in another sub-system. - pub total_stakable: Balance, - /// Ideal stake ratio, which is deducted by `legacy_auction_proportion` if not `None`. - pub ideal_stake: Perquintill, - /// Maximum inflation rate. - pub max_annual_inflation: Perquintill, - /// Minimum inflation rate. - pub min_annual_inflation: Perquintill, - /// Falloff used to calculate era payouts. - pub falloff: Perquintill, - /// Fraction of the era period used to calculate era payouts. - pub period_fraction: Perquintill, - /// Legacy auction proportion, which substracts from `ideal_stake` if not `None`. - pub legacy_auction_proportion: Option, -} - -/// A specialized function to compute the inflation of the staking system, tailored for polkadot -/// relay chains, such as Polkadot, Kusama and Westend. -pub fn relay_era_payout(params: EraPayoutParams) -> (Balance, Balance) { - let EraPayoutParams { - total_staked, - total_stakable, - ideal_stake, - max_annual_inflation, - min_annual_inflation, - falloff, - period_fraction, - legacy_auction_proportion, - } = params; - - let delta_annual_inflation = max_annual_inflation.saturating_sub(min_annual_inflation); - - let ideal_stake = ideal_stake.saturating_sub(legacy_auction_proportion.unwrap_or_default()); - - let stake = Perquintill::from_rational(total_staked, total_stakable); - let adjustment = pallet_staking_reward_fn::compute_inflation(stake, ideal_stake, falloff); - let staking_inflation = - min_annual_inflation.saturating_add(delta_annual_inflation * adjustment); - - let max_payout = period_fraction * max_annual_inflation * total_stakable; - let staking_payout = (period_fraction * staking_inflation) * total_stakable; - let rest = max_payout.saturating_sub(staking_payout); - - let other_issuance = total_stakable.saturating_sub(total_staked); - if total_staked > other_issuance { - let _cap_rest = Perquintill::from_rational(other_issuance, total_staked) * staking_payout; - // We don't do anything with this, but if we wanted to, we could introduce a cap on the - // treasury amount with: `rest = rest.min(cap_rest);` - } - (staking_payout, rest) -} - -// ---- TODO: Above is copy pasted from sdk, remove once we pull the version containing -// https://github.com/paritytech/polkadot-sdk/pull/4938 - parameter_types! { // Six sessions in an era (6 hours). pub const SessionsPerEra: SessionIndex = prod_or_fast!(6, 1); @@ -1943,44 +1878,13 @@ mod benches { ); } -/// Extra runtime APIs for kusama runtime. -pub mod apis { - - /// Information about the current inflation rate of the system. - /// - /// Both fields should be treated as best-effort, given that the inflation rate might not be - /// fully predict-able. - #[derive(scale_info::TypeInfo, codec::Encode, codec::Decode)] - pub struct InflationInfo { - /// The rate of inflation estimated per annum. - pub inflation: sp_runtime::Perquintill, - /// Next amount that we anticipate to mint. - /// - /// First item is the amount that goes to stakers, second is the leftover that is usually - /// forwarded to the treasury. - pub next_mint: (polkadot_primitives::Balance, polkadot_primitives::Balance), - } - - sp_api::decl_runtime_apis! { - pub trait Inflation { - /// Return the current estimates of the inflation amount. - /// - /// This is marked as experimental in light of RFC#89. Nonetheless, its usage is highly - /// recommended over trying to read-storage, or re-create the onchain logic. - fn experimental_inflation_prediction_info() -> InflationInfo; - } - } -} - -use apis::*; - impl Runtime { fn impl_experimental_inflation_info() -> InflationInfo { use pallet_staking::{ActiveEra, EraPayout, ErasTotalStake}; let (staked, _start) = ActiveEra::::get() .map(|ae| (ErasTotalStake::::get(ae.index), ae.start.unwrap_or(0))) .unwrap_or((0, 0)); - let stakable_issuance = Nis::issuance().other; + let stake_able_issuance = Nis::issuance().other; let ideal_staking_rate = dynamic_params::inflation::IdealStake::get(); let inflation = if dynamic_params::inflation::UseAuctionSlots::get() { @@ -2009,7 +1913,7 @@ impl Runtime { } sp_api::impl_runtime_apis! { - impl apis::Inflation for Runtime { + impl relay_common::apis::Inflation for Runtime { fn experimental_inflation_prediction_info() -> InflationInfo { Runtime::impl_experimental_inflation_info() } diff --git a/relay/kusama/src/weights/pallet_parameters.rs b/relay/kusama/src/weights/pallet_parameters.rs new file mode 100644 index 0000000000..a393c8de68 --- /dev/null +++ b/relay/kusama/src/weights/pallet_parameters.rs @@ -0,0 +1,51 @@ +// Copyright (C) Parity Technologies and the various Polkadot contributors, see Contributions.md +// for a list of specific contributors. +// SPDX-License-Identifier: Apache-2.0 + +//! Autogenerated weights for `pallet_parameters` +//! +//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 32.0.0 +//! DATE: 2024-04-05, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! WORST CASE MAP SIZE: `1000000` +//! HOSTNAME: `runner-anb7yjbi-project-674-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` +//! WASM-EXECUTION: `Compiled`, CHAIN: `Some("kusama-dev")`, DB CACHE: 1024 + +// Executed Command: +// target/production/polkadot +// benchmark +// pallet +// --steps=50 +// --repeat=20 +// --extrinsic=* +// --wasm-execution=compiled +// --heap-pages=4096 +// --json-file=/builds/parity/mirrors/polkadot-sdk/.git/.artifacts/bench.json +// --pallet=pallet_parameters +// --chain=kusama-dev +// --header=./polkadot/file_header.txt +// --output=./polkadot/runtime/kusama/src/weights/ + +#![cfg_attr(rustfmt, rustfmt_skip)] +#![allow(unused_parens)] +#![allow(unused_imports)] +#![allow(missing_docs)] + +use frame_support::{traits::Get, weights::Weight}; +use core::marker::PhantomData; + +/// Weight functions for `pallet_parameters`. +pub struct WeightInfo(PhantomData); +impl pallet_parameters::WeightInfo for WeightInfo { + /// Storage: `Parameters::Parameters` (r:1 w:1) + /// Proof: `Parameters::Parameters` (`max_values`: None, `max_size`: Some(28), added: 2503, mode: `MaxEncodedLen`) + fn set_parameter() -> Weight { + // Proof Size summary in bytes: + // Measured: `4` + // Estimated: `3493` + // Minimum execution time: 6_937_000 picoseconds. + Weight::from_parts(7_242_000, 0) + .saturating_add(Weight::from_parts(0, 3493)) + .saturating_add(T::DbWeight::get().reads(1)) + .saturating_add(T::DbWeight::get().writes(1)) + } +} From 01fb284c62435a642275e72ebd13658d06caa0e5 Mon Sep 17 00:00:00 2001 From: kianenigma Date: Thu, 15 Aug 2024 14:29:09 +0100 Subject: [PATCH 36/44] fmt --- relay/kusama/src/lib.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/relay/kusama/src/lib.rs b/relay/kusama/src/lib.rs index 341f3dac53..0a7219ea23 100644 --- a/relay/kusama/src/lib.rs +++ b/relay/kusama/src/lib.rs @@ -1209,8 +1209,7 @@ impl InstanceFilter for ProxyType { matches!( c, RuntimeCall::Staking(..) | - RuntimeCall::Session(..) | - RuntimeCall::Utility(..) | + RuntimeCall::Session(..) | RuntimeCall::Utility(..) | RuntimeCall::FastUnstake(..) | RuntimeCall::VoterList(..) | RuntimeCall::NominationPools(..) From d695ad6ab4db61b1352fdc76730e401382990718 Mon Sep 17 00:00:00 2001 From: kianenigma Date: Thu, 15 Aug 2024 15:08:53 +0100 Subject: [PATCH 37/44] remove unused dep --- Cargo.lock | 1 - relay/common/Cargo.toml | 2 -- relay/kusama/Cargo.toml | 2 -- 3 files changed, 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a6b3b99cf4..3a4cd345b9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -14363,7 +14363,6 @@ dependencies = [ "pallet-session-benchmarking", "pallet-society", "pallet-staking", - "pallet-staking-reward-fn", "pallet-staking-runtime-api", "pallet-timestamp", "pallet-transaction-payment", diff --git a/relay/common/Cargo.toml b/relay/common/Cargo.toml index c01c511c4c..1b6ded352a 100644 --- a/relay/common/Cargo.toml +++ b/relay/common/Cargo.toml @@ -17,8 +17,6 @@ polkadot-primitives = { workspace = true } pallet-staking-reward-fn ={ workspace = true } -[dev-dependencies] - [features] default = ["std"] std = [ diff --git a/relay/kusama/Cargo.toml b/relay/kusama/Cargo.toml index f1b6f43b37..f628c59f6f 100644 --- a/relay/kusama/Cargo.toml +++ b/relay/kusama/Cargo.toml @@ -74,7 +74,6 @@ pallet-session = { workspace = true } pallet-society = { workspace = true } frame-support = { features = ["tuples-96"], workspace = true } pallet-staking = { workspace = true } -pallet-staking-reward-fn = { workspace = true } pallet-staking-runtime-api = { workspace = true } frame-system = { workspace = true } frame-system-rpc-runtime-api = { workspace = true } @@ -179,7 +178,6 @@ std = [ "pallet-session/std", "pallet-society/std", "pallet-staking-runtime-api/std", - "pallet-staking-reward-fn/std", "pallet-staking/std", "pallet-timestamp/std", "pallet-transaction-payment-rpc-runtime-api/std", From 91195e990bc75c4674ea2dae739cc51df40e9051 Mon Sep 17 00:00:00 2001 From: kianenigma Date: Thu, 15 Aug 2024 15:09:36 +0100 Subject: [PATCH 38/44] clippy --- relay/kusama/src/lib.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/relay/kusama/src/lib.rs b/relay/kusama/src/lib.rs index 0a7219ea23..359f937646 100644 --- a/relay/kusama/src/lib.rs +++ b/relay/kusama/src/lib.rs @@ -1209,7 +1209,8 @@ impl InstanceFilter for ProxyType { matches!( c, RuntimeCall::Staking(..) | - RuntimeCall::Session(..) | RuntimeCall::Utility(..) | + RuntimeCall::Session(..) | + RuntimeCall::Utility(..) | RuntimeCall::FastUnstake(..) | RuntimeCall::VoterList(..) | RuntimeCall::NominationPools(..) @@ -1891,7 +1892,7 @@ impl Runtime { .into_iter() // all active para-ids that do not belong to a system chain is the number of // parachains that we should take into account for inflation. - .filter(|i| *i >= LOWEST_PUBLIC_ID.into()) + .filter(|i| *i >= LOWEST_PUBLIC_ID) .count() as u64; ideal_staking_rate .saturating_sub(Perquintill::from_rational(auctioned_slots.min(60), 200u64)) From c1c31b2b87aa598625fa2ac27a3f7f91fb0a5553 Mon Sep 17 00:00:00 2001 From: kianenigma Date: Thu, 15 Aug 2024 15:15:49 +0100 Subject: [PATCH 39/44] zepter --- Cargo.toml | 2 ++ relay/kusama/Cargo.toml | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 545e80a763..8c6e70033a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -244,6 +244,8 @@ subxt = { version = "0.35.0", default-features = false } tracing-subscriber = { version = "0.3.18" } zombienet-sdk = { version = "0.2.4" } tuplex = { version = "0.1.0", default-features = false } +relay-common = { path = "relay/common", default-features = false } +ss58-registry = { version = "1.47.0" } [workspace] resolver = "2" diff --git a/relay/kusama/Cargo.toml b/relay/kusama/Cargo.toml index f628c59f6f..0cc6705aab 100644 --- a/relay/kusama/Cargo.toml +++ b/relay/kusama/Cargo.toml @@ -106,7 +106,7 @@ xcm-builder = { workspace = true } xcm-runtime-apis = { workspace = true } sp-debug-derive = { workspace = true } -relay-common = { path = "../common", default-features = false } +relay-common = { workspace = true } [dev-dependencies] sp-keyring = { workspace = true } @@ -115,7 +115,7 @@ separator = { workspace = true } remote-externalities = { workspace = true } tokio = { features = ["macros"], workspace = true } sp-tracing = { workspace = true } -ss58-registry = "1.47.0" +ss58-registry = { workspace = true } [build-dependencies] substrate-wasm-builder = { workspace = true, optional = true } From 978da883e5aa1bb84b5c6d2df0e4cc7464feb4c9 Mon Sep 17 00:00:00 2001 From: kianenigma Date: Thu, 15 Aug 2024 17:11:29 +0100 Subject: [PATCH 40/44] fix build --- relay/common/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/relay/common/src/lib.rs b/relay/common/src/lib.rs index b3f4643e13..c831ff9cb6 100644 --- a/relay/common/src/lib.rs +++ b/relay/common/src/lib.rs @@ -15,6 +15,7 @@ // along with Polkadot. If not, see . //! Shared code between the Kusama nd Polkadot RC Runtimes. +#![cfg_attr(not(feature = "std"), no_std)] use polkadot_primitives::Balance; use sp_runtime::{Perquintill, Saturating}; From 0d52761760a2f83ccdbbd56a1f07e4d3b53e2b71 Mon Sep 17 00:00:00 2001 From: kianenigma Date: Fri, 16 Aug 2024 10:07:55 +0100 Subject: [PATCH 41/44] Master.into() --- relay/kusama/src/lib.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/relay/kusama/src/lib.rs b/relay/kusama/src/lib.rs index c210cf45d4..2c7fd73c57 100644 --- a/relay/kusama/src/lib.rs +++ b/relay/kusama/src/lib.rs @@ -1211,8 +1211,7 @@ impl InstanceFilter for ProxyType { matches!( c, RuntimeCall::Staking(..) | - RuntimeCall::Session(..) | - RuntimeCall::Utility(..) | + RuntimeCall::Session(..) | RuntimeCall::Utility(..) | RuntimeCall::FastUnstake(..) | RuntimeCall::VoterList(..) | RuntimeCall::NominationPools(..) From 758e76c37e8373ab7485485e97d3cf4c3ae16bdc Mon Sep 17 00:00:00 2001 From: kianenigma Date: Fri, 16 Aug 2024 16:26:50 +0100 Subject: [PATCH 42/44] fmt --- relay/kusama/src/lib.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/relay/kusama/src/lib.rs b/relay/kusama/src/lib.rs index 2c7fd73c57..c210cf45d4 100644 --- a/relay/kusama/src/lib.rs +++ b/relay/kusama/src/lib.rs @@ -1211,7 +1211,8 @@ impl InstanceFilter for ProxyType { matches!( c, RuntimeCall::Staking(..) | - RuntimeCall::Session(..) | RuntimeCall::Utility(..) | + RuntimeCall::Session(..) | + RuntimeCall::Utility(..) | RuntimeCall::FastUnstake(..) | RuntimeCall::VoterList(..) | RuntimeCall::NominationPools(..) From 79ca6cf66fa5a8dc028e7011ebc89bfb139b1132 Mon Sep 17 00:00:00 2001 From: kianenigma Date: Fri, 16 Aug 2024 16:32:30 +0100 Subject: [PATCH 43/44] fmt again --- relay/kusama/src/lib.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/relay/kusama/src/lib.rs b/relay/kusama/src/lib.rs index c210cf45d4..2c7fd73c57 100644 --- a/relay/kusama/src/lib.rs +++ b/relay/kusama/src/lib.rs @@ -1211,8 +1211,7 @@ impl InstanceFilter for ProxyType { matches!( c, RuntimeCall::Staking(..) | - RuntimeCall::Session(..) | - RuntimeCall::Utility(..) | + RuntimeCall::Session(..) | RuntimeCall::Utility(..) | RuntimeCall::FastUnstake(..) | RuntimeCall::VoterList(..) | RuntimeCall::NominationPools(..) From 95367f275e49460a1a4869e2781fc13a7234450a Mon Sep 17 00:00:00 2001 From: joe petrowski <25483142+joepetrowski@users.noreply.github.com> Date: Tue, 20 Aug 2024 08:43:56 +0200 Subject: [PATCH 44/44] Doc nits MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Dónal Murray --- relay/common/src/lib.rs | 8 ++++---- relay/kusama/src/lib.rs | 12 ++++++------ 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/relay/common/src/lib.rs b/relay/common/src/lib.rs index c831ff9cb6..0f0e119f25 100644 --- a/relay/common/src/lib.rs +++ b/relay/common/src/lib.rs @@ -61,7 +61,7 @@ pub struct EraPayoutParams { /// Usually, this is equal to the total issuance, except if a large part of the issuance is /// locked in another sub-system. pub total_stakable: Balance, - /// Ideal stake ratio, which is deducted by `legacy_auction_proportion` if not `None`. + /// Ideal stake ratio, which is reduced by `legacy_auction_proportion` if not `None`. pub ideal_stake: Perquintill, /// Maximum inflation rate. pub max_annual_inflation: Perquintill, @@ -71,12 +71,12 @@ pub struct EraPayoutParams { pub falloff: Perquintill, /// Fraction of the era period used to calculate era payouts. pub period_fraction: Perquintill, - /// Legacy auction proportion, which substracts from `ideal_stake` if not `None`. + /// Legacy auction proportion, which, if not `None`, is subtracted from `ideal_stake`. pub legacy_auction_proportion: Option, } -/// A specialized function to compute the inflation of the staking system, tailored for polkadot -/// relay chains, such as Polkadot, Kusama and Westend. +/// A specialized function to compute the inflation of the staking system, tailored for Polkadot +/// Relay Chains, such as Polkadot, Kusama, and Westend. pub fn relay_era_payout(params: EraPayoutParams) -> (Balance, Balance) { let EraPayoutParams { total_staked, diff --git a/relay/kusama/src/lib.rs b/relay/kusama/src/lib.rs index 2c7fd73c57..1be9dc612c 100644 --- a/relay/kusama/src/lib.rs +++ b/relay/kusama/src/lib.rs @@ -657,13 +657,13 @@ pub mod dynamic_params { #[codec(index = 3)] pub static Falloff: Perquintill = Perquintill::from_percent(5); - /// Whether to use auction slots or not in the calculation of era payouts, then we subtract - /// `num_auctioned_slots.min(60) / 200` from `ideal_stake`. + /// Whether to use auction slots or not in the calculation of era payouts. If true, then we + /// subtract `num_auctioned_slots.min(60) / 200` from `ideal_stake`. /// /// That is, we assume up to 60 parachains that are leased can reduce the ideal stake by a /// maximum of 30%. /// - /// With the move to agile-coretime, this parameter does not make much sense and should + /// With the move to Agile Coretime, this parameter does not make much sense and should /// generally be set to false. #[codec(index = 4)] pub static UseAuctionSlots: bool = false; @@ -731,7 +731,7 @@ impl pallet_staking::EraPayout for EraPayout { legacy_auction_proportion: if dynamic_params::inflation::UseAuctionSlots::get() { let auctioned_slots = parachains_paras::Parachains::::get() .into_iter() - // all active para-ids that do not belong to a system chain is the number of + // All active para-ids that do not belong to a system chain is the number of // parachains that we should take into account for inflation. .filter(|i| *i >= LOWEST_PUBLIC_ID) .count() as u64; @@ -1896,7 +1896,7 @@ impl Runtime { let inflation = if dynamic_params::inflation::UseAuctionSlots::get() { let auctioned_slots = parachains_paras::Parachains::::get() .into_iter() - // all active para-ids that do not belong to a system chain is the number of + // All active para-ids that do not belong to a system chain is the number of // parachains that we should take into account for inflation. .filter(|i| *i >= LOWEST_PUBLIC_ID) .count() as u64; @@ -1906,7 +1906,7 @@ impl Runtime { ideal_staking_rate }; - // we assume un-delayed 6h eras. + // We assume un-delayed 6h eras. let era_duration = 6 * HOURS; let next_mint = ::EraPayout::era_payout( staked,