From 781003f0c8816c86acb317668937b219c50f9c9e Mon Sep 17 00:00:00 2001 From: Ankan Anurag Date: Mon, 12 Sep 2022 16:32:03 +0200 Subject: [PATCH 01/12] remove history depth from storage and add it as config for pallet staking --- Cargo.lock | 436 +++++++++++------- Cargo.toml | 238 ++++++++++ runtime/kusama/src/lib.rs | 1 + runtime/kusama/src/weights/pallet_staking.rs | 18 - runtime/polkadot/src/lib.rs | 1 + .../polkadot/src/weights/pallet_staking.rs | 18 - runtime/test-runtime/src/lib.rs | 1 + runtime/westend/src/lib.rs | 1 + runtime/westend/src/weights/pallet_staking.rs | 18 - 9 files changed, 510 insertions(+), 222 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5847bf63f600..0bc7fe0f7d82 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -465,7 +465,6 @@ dependencies = [ [[package]] name = "beefy-gadget-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "beefy-gadget", "beefy-primitives", @@ -485,7 +484,6 @@ dependencies = [ [[package]] name = "beefy-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "beefy-primitives", "sp-api", @@ -494,7 +492,6 @@ dependencies = [ [[package]] name = "beefy-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "parity-scale-codec", "scale-info", @@ -1989,7 +1986,6 @@ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "parity-scale-codec", ] @@ -2007,7 +2003,6 @@ dependencies = [ [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-support", "frame-system", @@ -2030,7 +2025,6 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "Inflector", "chrono", @@ -2081,7 +2075,6 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2092,7 +2085,6 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2108,7 +2100,6 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-support", "frame-system", @@ -2137,7 +2128,6 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "bitflags", "frame-metadata", @@ -2169,7 +2159,6 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "Inflector", "cfg-expr", @@ -2183,7 +2172,6 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -2195,7 +2183,6 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "proc-macro2", "quote", @@ -2205,7 +2192,6 @@ dependencies = [ [[package]] name = "frame-support-test" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-support", "frame-support-test-pallet", @@ -2228,7 +2214,6 @@ dependencies = [ [[package]] name = "frame-support-test-pallet" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-support", "frame-system", @@ -2239,7 +2224,6 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-support", "log", @@ -2257,7 +2241,6 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-benchmarking", "frame-support", @@ -2272,7 +2255,6 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "parity-scale-codec", "sp-api", @@ -2281,7 +2263,6 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-support", "parity-scale-codec", @@ -2464,7 +2445,6 @@ dependencies = [ [[package]] name = "generate-bags" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "chrono", "frame-election-provider-support", @@ -4822,7 +4802,6 @@ checksum = "20448fd678ec04e6ea15bbe0476874af65e98a01515d667aa49f1434dc44ebf4" [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-benchmarking", "frame-support", @@ -4836,7 +4815,6 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-support", "frame-system", @@ -4852,7 +4830,6 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-support", "frame-system", @@ -4867,7 +4844,6 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-benchmarking", "frame-support", @@ -4891,7 +4867,6 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -4911,7 +4886,6 @@ dependencies = [ [[package]] name = "pallet-bags-list-remote-tests" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-election-provider-support", "frame-support", @@ -4930,7 +4904,6 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-benchmarking", "frame-support", @@ -4945,7 +4918,6 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "beefy-primitives", "frame-support", @@ -4961,7 +4933,6 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "beefy-merkle-tree", "beefy-primitives", @@ -4984,7 +4955,6 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5002,7 +4972,6 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5021,7 +4990,6 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5038,7 +5006,6 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5054,7 +5021,6 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5078,7 +5044,6 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5091,7 +5056,6 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5109,7 +5073,6 @@ dependencies = [ [[package]] name = "pallet-gilt" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5124,7 +5087,6 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5147,7 +5109,6 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5163,7 +5124,6 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5183,7 +5143,6 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5200,7 +5159,6 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5217,7 +5175,6 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -5235,7 +5192,6 @@ dependencies = [ [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -5250,7 +5206,6 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5265,7 +5220,6 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-support", "frame-system", @@ -5282,7 +5236,6 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5302,7 +5255,6 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "parity-scale-codec", "sp-api", @@ -5312,7 +5264,6 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-support", "frame-system", @@ -5329,7 +5280,6 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5352,7 +5302,6 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5368,7 +5317,6 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5383,7 +5331,6 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5398,7 +5345,6 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5414,7 +5360,6 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-support", "frame-system", @@ -5435,7 +5380,6 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5451,7 +5395,6 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-support", "frame-system", @@ -5465,7 +5408,6 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5488,7 +5430,6 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -5499,7 +5440,6 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "log", "sp-arithmetic", @@ -5508,7 +5448,6 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-support", "frame-system", @@ -5522,7 +5461,6 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5540,7 +5478,6 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5559,7 +5496,6 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-support", "frame-system", @@ -5575,7 +5511,6 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -5590,7 +5525,6 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -5601,7 +5535,6 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5634,7 +5567,6 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-benchmarking", "frame-support", @@ -8162,7 +8094,6 @@ dependencies = [ [[package]] name = "remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "env_logger 0.9.0", "jsonrpsee", @@ -8510,7 +8441,6 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "log", "sp-core", @@ -8521,7 +8451,6 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "async-trait", "futures", @@ -8548,7 +8477,6 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "futures", "futures-timer", @@ -8571,7 +8499,6 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -8587,7 +8514,6 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "impl-trait-for-tuples", "memmap2 0.5.0", @@ -8604,7 +8530,6 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -8615,7 +8540,6 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "chrono", "clap", @@ -8654,7 +8578,6 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "fnv", "futures", @@ -8682,7 +8605,6 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "hash-db", "kvdb", @@ -8707,7 +8629,6 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "async-trait", "futures", @@ -8731,7 +8652,6 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "async-trait", "fork-tree", @@ -8773,7 +8693,6 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "futures", "jsonrpsee", @@ -8795,7 +8714,6 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "fork-tree", "parity-scale-codec", @@ -8808,7 +8726,6 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "async-trait", "futures", @@ -8833,7 +8750,6 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "lazy_static", "lru 0.7.8", @@ -8860,7 +8776,6 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "environmental", "parity-scale-codec", @@ -8876,7 +8791,6 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "log", "parity-scale-codec", @@ -8891,7 +8805,6 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "cfg-if 1.0.0", "libc", @@ -8911,7 +8824,6 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "ahash", "async-trait", @@ -8952,7 +8864,6 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "finality-grandpa", "futures", @@ -8973,7 +8884,6 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "ansi_term", "futures", @@ -8990,7 +8900,6 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "async-trait", "hex", @@ -9005,7 +8914,6 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "async-trait", "asynchronous-codec", @@ -9072,7 +8980,6 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "async-trait", "bitflags", @@ -9095,7 +9002,6 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "ahash", "futures", @@ -9113,7 +9019,6 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "futures", "hex", @@ -9134,7 +9039,6 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "fork-tree", "futures", @@ -9162,7 +9066,6 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "bytes", "fnv", @@ -9192,7 +9095,6 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "futures", "libp2p", @@ -9205,7 +9107,6 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -9214,7 +9115,6 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "futures", "hash-db", @@ -9244,7 +9144,6 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "futures", "jsonrpsee", @@ -9267,7 +9166,6 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "futures", "jsonrpsee", @@ -9280,7 +9178,6 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "async-trait", "directories", @@ -9349,7 +9246,6 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "log", "parity-scale-codec", @@ -9363,7 +9259,6 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -9382,7 +9277,6 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "futures", "libc", @@ -9401,7 +9295,6 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "chrono", "futures", @@ -9419,7 +9312,6 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "ansi_term", "atty", @@ -9450,7 +9342,6 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -9461,7 +9352,6 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "futures", "futures-timer", @@ -9487,7 +9377,6 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "futures", "log", @@ -9500,7 +9389,6 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "futures", "futures-timer", @@ -9986,7 +9874,6 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "hash-db", "log", @@ -10004,7 +9891,6 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "blake2", "proc-macro-crate", @@ -10016,7 +9902,6 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "parity-scale-codec", "scale-info", @@ -10029,7 +9914,6 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "integer-sqrt", "num-traits", @@ -10044,7 +9928,6 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "parity-scale-codec", "scale-info", @@ -10057,7 +9940,6 @@ dependencies = [ [[package]] name = "sp-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "async-trait", "parity-scale-codec", @@ -10069,7 +9951,6 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "parity-scale-codec", "sp-api", @@ -10081,7 +9962,6 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "futures", "log", @@ -10099,7 +9979,6 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "async-trait", "futures", @@ -10118,7 +9997,6 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "async-trait", "merlin", @@ -10141,7 +10019,6 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "parity-scale-codec", "scale-info", @@ -10155,7 +10032,6 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "parity-scale-codec", "scale-info", @@ -10168,7 +10044,6 @@ dependencies = [ [[package]] name = "sp-core" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "base58", "bitflags", @@ -10214,7 +10089,6 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "blake2", "byteorder", @@ -10228,7 +10102,6 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "proc-macro2", "quote", @@ -10239,7 +10112,6 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -10248,7 +10120,6 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "proc-macro2", "quote", @@ -10258,7 +10129,6 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "environmental", "parity-scale-codec", @@ -10269,7 +10139,6 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "finality-grandpa", "log", @@ -10287,7 +10156,6 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -10301,7 +10169,6 @@ dependencies = [ [[package]] name = "sp-io" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "bytes", "futures", @@ -10327,7 +10194,6 @@ dependencies = [ [[package]] name = "sp-keyring" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "lazy_static", "sp-core", @@ -10338,7 +10204,6 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "async-trait", "futures", @@ -10355,7 +10220,6 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "thiserror", "zstd", @@ -10364,7 +10228,6 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "log", "parity-scale-codec", @@ -10379,7 +10242,6 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "parity-scale-codec", "scale-info", @@ -10393,7 +10255,6 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "sp-api", "sp-core", @@ -10403,7 +10264,6 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "backtrace", "lazy_static", @@ -10413,7 +10273,6 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "rustc-hash", "serde", @@ -10423,7 +10282,6 @@ dependencies = [ [[package]] name = "sp-runtime" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "either", "hash256-std-hasher", @@ -10446,7 +10304,6 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -10464,7 +10321,6 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "Inflector", "proc-macro-crate", @@ -10476,7 +10332,6 @@ dependencies = [ [[package]] name = "sp-sandbox" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "log", "parity-scale-codec", @@ -10490,7 +10345,6 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "parity-scale-codec", "scale-info", @@ -10504,7 +10358,6 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "parity-scale-codec", "scale-info", @@ -10515,7 +10368,6 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "hash-db", "log", @@ -10537,12 +10389,10 @@ dependencies = [ [[package]] name = "sp-std" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" [[package]] name = "sp-storage" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "impl-serde", "parity-scale-codec", @@ -10555,7 +10405,6 @@ dependencies = [ [[package]] name = "sp-tasks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "log", "sp-core", @@ -10568,7 +10417,6 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "async-trait", "futures-timer", @@ -10584,7 +10432,6 @@ dependencies = [ [[package]] name = "sp-tracing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "parity-scale-codec", "sp-std", @@ -10596,7 +10443,6 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "sp-api", "sp-runtime", @@ -10605,7 +10451,6 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "async-trait", "log", @@ -10621,7 +10466,6 @@ dependencies = [ [[package]] name = "sp-trie" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "ahash", "hash-db", @@ -10644,7 +10488,6 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "impl-serde", "parity-scale-codec", @@ -10661,7 +10504,6 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -10672,7 +10514,6 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "impl-trait-for-tuples", "log", @@ -10900,7 +10741,6 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "platforms", ] @@ -10908,7 +10748,6 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -10929,7 +10768,6 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "futures-util", "hyper", @@ -10942,7 +10780,6 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "jsonrpsee", "log", @@ -10963,7 +10800,6 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "async-trait", "futures", @@ -10989,7 +10825,6 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "futures", "substrate-test-utils-derive", @@ -10999,7 +10834,6 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -11010,7 +10844,6 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "ansi_term", "build-helper", @@ -11724,7 +11557,6 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "clap", "frame-try-runtime", @@ -12910,3 +12742,271 @@ dependencies = [ "cc", "libc", ] + +[[patch.unused]] +name = "chain-spec-builder" +version = "2.0.0" + +[[patch.unused]] +name = "frame-election-solution-type-fuzzer" +version = "2.0.0-alpha.5" + +[[patch.unused]] +name = "frame-support-test-compile-pass" +version = "4.0.0-dev" + +[[patch.unused]] +name = "kitchensink-runtime" +version = "3.0.0-dev" + +[[patch.unused]] +name = "node-bench" +version = "0.9.0-dev" + +[[patch.unused]] +name = "node-cli" +version = "3.0.0-dev" + +[[patch.unused]] +name = "node-executor" +version = "3.0.0-dev" + +[[patch.unused]] +name = "node-inspect" +version = "0.9.0-dev" + +[[patch.unused]] +name = "node-primitives" +version = "2.0.0" + +[[patch.unused]] +name = "node-rpc" +version = "3.0.0-dev" + +[[patch.unused]] +name = "node-runtime-generate-bags" +version = "3.0.0" + +[[patch.unused]] +name = "node-template" +version = "4.0.0-dev" + +[[patch.unused]] +name = "node-template-runtime" +version = "4.0.0-dev" + +[[patch.unused]] +name = "node-testing" +version = "3.0.0-dev" + +[[patch.unused]] +name = "pallet-alliance" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-asset-tx-payment" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-atomic-swap" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-aura" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-bags-list-fuzzer" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-contracts" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-contracts-primitives" +version = "6.0.0" + +[[patch.unused]] +name = "pallet-contracts-proc-macro" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-contracts-rpc" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-contracts-rpc-runtime-api" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-conviction-voting" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-example-basic" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-example-offchain-worker" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-example-parallel" +version = "3.0.0-dev" + +[[patch.unused]] +name = "pallet-lottery" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-nicks" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-node-authorization" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-nomination-pools-test-staking" +version = "1.0.0" + +[[patch.unused]] +name = "pallet-randomness-collective-flip" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-ranked-collective" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-referenda" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-remark" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-scored-pool" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-state-trie-migration" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-template" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-transaction-storage" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-uniques" +version = "4.0.0-dev" + +[[patch.unused]] +name = "pallet-whitelist" +version = "4.0.0-dev" + +[[patch.unused]] +name = "sc-consensus-aura" +version = "0.10.0-dev" + +[[patch.unused]] +name = "sc-consensus-manual-seal" +version = "0.10.0-dev" + +[[patch.unused]] +name = "sc-consensus-pow" +version = "0.10.0-dev" + +[[patch.unused]] +name = "sc-consensus-uncles" +version = "0.10.0-dev" + +[[patch.unused]] +name = "sc-network-test" +version = "0.8.0" + +[[patch.unused]] +name = "sc-runtime-test" +version = "2.0.0" + +[[patch.unused]] +name = "sc-service-test" +version = "2.0.0" + +[[patch.unused]] +name = "sp-api-test" +version = "2.0.1" + +[[patch.unused]] +name = "sp-application-crypto-test" +version = "2.0.0" + +[[patch.unused]] +name = "sp-arithmetic-fuzzer" +version = "2.0.0" + +[[patch.unused]] +name = "sp-consensus-aura" +version = "0.10.0-dev" + +[[patch.unused]] +name = "sp-consensus-pow" +version = "0.10.0-dev" + +[[patch.unused]] +name = "sp-npos-elections-fuzzer" +version = "2.0.0-alpha.5" + +[[patch.unused]] +name = "sp-runtime-interface-test" +version = "2.0.0" + +[[patch.unused]] +name = "sp-runtime-interface-test-wasm" +version = "2.0.0" + +[[patch.unused]] +name = "sp-runtime-interface-test-wasm-deprecated" +version = "2.0.0" + +[[patch.unused]] +name = "sp-serializer" +version = "4.0.0-dev" + +[[patch.unused]] +name = "sp-test-primitives" +version = "2.0.0" + +[[patch.unused]] +name = "subkey" +version = "2.0.2" + +[[patch.unused]] +name = "substrate-frame-cli" +version = "4.0.0-dev" + +[[patch.unused]] +name = "substrate-frame-rpc-support" +version = "3.0.0" + +[[patch.unused]] +name = "substrate-test-runtime" +version = "2.0.0" + +[[patch.unused]] +name = "substrate-test-runtime-client" +version = "2.0.0" + +[[patch.unused]] +name = "substrate-test-runtime-transaction-pool" +version = "2.0.0" + +[[patch.unused]] +name = "substrate-test-utils-test-crate" +version = "0.1.0" diff --git a/Cargo.toml b/Cargo.toml index 4983b346225b..137feac5b4cd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -200,6 +200,244 @@ fast-runtime = [ "polkadot-cli/fast-runtime" ] runtime-metrics = [ "polkadot-cli/runtime-metrics" ] pyroscope = ["polkadot-cli/pyroscope"] staging-client = ["polkadot-cli/staging-client"] +[patch."https://github.com/paritytech/substrate"] +node-template ={path = "/home/ankan/github/paritytech/substrate/bin/node-template/node" } +frame-benchmarking ={path = "/home/ankan/github/paritytech/substrate/frame/benchmarking" } +frame-support ={path = "/home/ankan/github/paritytech/substrate/frame/support" } +frame-support-procedural ={path = "/home/ankan/github/paritytech/substrate/frame/support/procedural" } +frame-support-procedural-tools ={path = "/home/ankan/github/paritytech/substrate/frame/support/procedural/tools" } +frame-support-procedural-tools-derive ={path = "/home/ankan/github/paritytech/substrate/frame/support/procedural/tools/derive" } +sp-api ={path = "/home/ankan/github/paritytech/substrate/primitives/api" } +sp-api-proc-macro ={path = "/home/ankan/github/paritytech/substrate/primitives/api/proc-macro" } +sp-core ={path = "/home/ankan/github/paritytech/substrate/primitives/core" } +sp-core-hashing ={path = "/home/ankan/github/paritytech/substrate/primitives/core/hashing" } +sp-std ={path = "/home/ankan/github/paritytech/substrate/primitives/std" } +sp-debug-derive ={path = "/home/ankan/github/paritytech/substrate/primitives/debug-derive" } +sp-externalities ={path = "/home/ankan/github/paritytech/substrate/primitives/externalities" } +sp-storage ={path = "/home/ankan/github/paritytech/substrate/primitives/storage" } +sp-runtime-interface ={path = "/home/ankan/github/paritytech/substrate/primitives/runtime-interface" } +sp-runtime-interface-proc-macro ={path = "/home/ankan/github/paritytech/substrate/primitives/runtime-interface/proc-macro" } +sp-tracing ={path = "/home/ankan/github/paritytech/substrate/primitives/tracing" } +sp-wasm-interface ={path = "/home/ankan/github/paritytech/substrate/primitives/wasm-interface" } +sp-io ={path = "/home/ankan/github/paritytech/substrate/primitives/io" } +sp-keystore ={path = "/home/ankan/github/paritytech/substrate/primitives/keystore" } +sp-state-machine ={path = "/home/ankan/github/paritytech/substrate/primitives/state-machine" } +sp-panic-handler ={path = "/home/ankan/github/paritytech/substrate/primitives/panic-handler" } +sp-trie ={path = "/home/ankan/github/paritytech/substrate/primitives/trie" } +sp-runtime ={path = "/home/ankan/github/paritytech/substrate/primitives/runtime" } +sp-application-crypto ={path = "/home/ankan/github/paritytech/substrate/primitives/application-crypto" } +sp-arithmetic ={path = "/home/ankan/github/paritytech/substrate/primitives/arithmetic" } +substrate-test-runtime-client ={path = "/home/ankan/github/paritytech/substrate/test-utils/runtime/client" } +sc-block-builder ={path = "/home/ankan/github/paritytech/substrate/client/block-builder" } +sc-client-api ={path = "/home/ankan/github/paritytech/substrate/client/api" } +substrate-prometheus-endpoint ={path = "/home/ankan/github/paritytech/substrate/utils/prometheus" } +sc-executor ={path = "/home/ankan/github/paritytech/substrate/client/executor" } +sc-executor-common ={path = "/home/ankan/github/paritytech/substrate/client/executor/common" } +sc-allocator ={path = "/home/ankan/github/paritytech/substrate/client/allocator" } +sp-maybe-compressed-blob ={path = "/home/ankan/github/paritytech/substrate/primitives/maybe-compressed-blob" } +sp-sandbox ={path = "/home/ankan/github/paritytech/substrate/primitives/sandbox" } +sc-executor-wasmi ={path = "/home/ankan/github/paritytech/substrate/client/executor/wasmi" } +sc-executor-wasmtime ={path = "/home/ankan/github/paritytech/substrate/client/executor/wasmtime" } +sc-runtime-test ={path = "/home/ankan/github/paritytech/substrate/client/executor/runtime-test" } +sp-tasks ={path = "/home/ankan/github/paritytech/substrate/primitives/tasks" } +substrate-wasm-builder ={path = "/home/ankan/github/paritytech/substrate/utils/wasm-builder" } +sp-core-hashing-proc-macro ={path = "/home/ankan/github/paritytech/substrate/primitives/core/hashing/proc-macro" } +sp-version ={path = "/home/ankan/github/paritytech/substrate/primitives/version" } +sp-version-proc-macro ={path = "/home/ankan/github/paritytech/substrate/primitives/version/proc-macro" } +sc-tracing ={path = "/home/ankan/github/paritytech/substrate/client/tracing" } +sc-rpc-server ={path = "/home/ankan/github/paritytech/substrate/client/rpc-servers" } +sc-tracing-proc-macro ={path = "/home/ankan/github/paritytech/substrate/client/tracing/proc-macro" } +sp-blockchain ={path = "/home/ankan/github/paritytech/substrate/primitives/blockchain" } +sp-consensus ={path = "/home/ankan/github/paritytech/substrate/primitives/consensus/common" } +sp-inherents ={path = "/home/ankan/github/paritytech/substrate/primitives/inherents" } +sp-test-primitives ={path = "/home/ankan/github/paritytech/substrate/primitives/test-primitives" } +sp-database ={path = "/home/ankan/github/paritytech/substrate/primitives/database" } +sp-rpc ={path = "/home/ankan/github/paritytech/substrate/primitives/rpc" } +substrate-test-runtime ={path = "/home/ankan/github/paritytech/substrate/test-utils/runtime" } +beefy-merkle-tree ={path = "/home/ankan/github/paritytech/substrate/frame/beefy-mmr/primitives" } +beefy-primitives ={path = "/home/ankan/github/paritytech/substrate/primitives/beefy" } +frame-system ={path = "/home/ankan/github/paritytech/substrate/frame/system" } +frame-system-rpc-runtime-api ={path = "/home/ankan/github/paritytech/substrate/frame/system/rpc/runtime-api" } +pallet-babe ={path = "/home/ankan/github/paritytech/substrate/frame/babe" } +pallet-authorship ={path = "/home/ankan/github/paritytech/substrate/frame/authorship" } +sp-authorship ={path = "/home/ankan/github/paritytech/substrate/primitives/authorship" } +pallet-session ={path = "/home/ankan/github/paritytech/substrate/frame/session" } +pallet-timestamp ={path = "/home/ankan/github/paritytech/substrate/frame/timestamp" } +sp-timestamp ={path = "/home/ankan/github/paritytech/substrate/primitives/timestamp" } +sp-session ={path = "/home/ankan/github/paritytech/substrate/primitives/session" } +sp-staking ={path = "/home/ankan/github/paritytech/substrate/primitives/staking" } +sp-consensus-babe ={path = "/home/ankan/github/paritytech/substrate/primitives/consensus/babe" } +sp-consensus-slots ={path = "/home/ankan/github/paritytech/substrate/primitives/consensus/slots" } +sp-consensus-vrf ={path = "/home/ankan/github/paritytech/substrate/primitives/consensus/vrf" } +frame-election-provider-support ={path = "/home/ankan/github/paritytech/substrate/frame/election-provider-support" } +frame-election-provider-solution-type ={path = "/home/ankan/github/paritytech/substrate/frame/election-provider-support/solution-type" } +sp-npos-elections ={path = "/home/ankan/github/paritytech/substrate/primitives/npos-elections" } +substrate-test-utils ={path = "/home/ankan/github/paritytech/substrate/test-utils" } +substrate-test-utils-derive ={path = "/home/ankan/github/paritytech/substrate/test-utils/derive" } +sc-service ={path = "/home/ankan/github/paritytech/substrate/client/service" } +sc-chain-spec ={path = "/home/ankan/github/paritytech/substrate/client/chain-spec" } +sc-chain-spec-derive ={path = "/home/ankan/github/paritytech/substrate/client/chain-spec/derive" } +sc-network-common ={path = "/home/ankan/github/paritytech/substrate/client/network/common" } +sc-consensus ={path = "/home/ankan/github/paritytech/substrate/client/consensus/common" } +sc-utils ={path = "/home/ankan/github/paritytech/substrate/client/utils" } +sc-peerset ={path = "/home/ankan/github/paritytech/substrate/client/peerset" } +sp-finality-grandpa ={path = "/home/ankan/github/paritytech/substrate/primitives/finality-grandpa" } +sc-telemetry ={path = "/home/ankan/github/paritytech/substrate/client/telemetry" } +sc-client-db ={path = "/home/ankan/github/paritytech/substrate/client/db" } +sc-state-db ={path = "/home/ankan/github/paritytech/substrate/client/state-db" } +kitchensink-runtime ={path = "/home/ankan/github/paritytech/substrate/bin/node/runtime" } +frame-executive ={path = "/home/ankan/github/paritytech/substrate/frame/executive" } +frame-try-runtime ={path = "/home/ankan/github/paritytech/substrate/frame/try-runtime" } +pallet-balances ={path = "/home/ankan/github/paritytech/substrate/frame/balances" } +pallet-transaction-payment ={path = "/home/ankan/github/paritytech/substrate/frame/transaction-payment" } +frame-system-benchmarking ={path = "/home/ankan/github/paritytech/substrate/frame/system/benchmarking" } +node-primitives ={path = "/home/ankan/github/paritytech/substrate/bin/node/primitives" } +pallet-alliance ={path = "/home/ankan/github/paritytech/substrate/frame/alliance" } +pallet-collective ={path = "/home/ankan/github/paritytech/substrate/frame/collective" } +pallet-identity ={path = "/home/ankan/github/paritytech/substrate/frame/identity" } +pallet-asset-tx-payment ={path = "/home/ankan/github/paritytech/substrate/frame/transaction-payment/asset-tx-payment" } +pallet-assets ={path = "/home/ankan/github/paritytech/substrate/frame/assets" } +pallet-authority-discovery ={path = "/home/ankan/github/paritytech/substrate/frame/authority-discovery" } +sp-authority-discovery ={path = "/home/ankan/github/paritytech/substrate/primitives/authority-discovery" } +pallet-bags-list ={path = "/home/ankan/github/paritytech/substrate/frame/bags-list" } +pallet-bounties ={path = "/home/ankan/github/paritytech/substrate/frame/bounties" } +pallet-treasury ={path = "/home/ankan/github/paritytech/substrate/frame/treasury" } +pallet-child-bounties ={path = "/home/ankan/github/paritytech/substrate/frame/child-bounties" } +pallet-contracts ={path = "/home/ankan/github/paritytech/substrate/frame/contracts" } +pallet-contracts-primitives ={path = "/home/ankan/github/paritytech/substrate/frame/contracts/common" } +pallet-contracts-proc-macro ={path = "/home/ankan/github/paritytech/substrate/frame/contracts/proc-macro" } +pallet-randomness-collective-flip ={path = "/home/ankan/github/paritytech/substrate/frame/randomness-collective-flip" } +pallet-utility ={path = "/home/ankan/github/paritytech/substrate/frame/utility" } +pallet-contracts-rpc-runtime-api ={path = "/home/ankan/github/paritytech/substrate/frame/contracts/rpc/runtime-api" } +pallet-conviction-voting ={path = "/home/ankan/github/paritytech/substrate/frame/conviction-voting" } +pallet-scheduler ={path = "/home/ankan/github/paritytech/substrate/frame/scheduler" } +pallet-preimage ={path = "/home/ankan/github/paritytech/substrate/frame/preimage" } +pallet-democracy ={path = "/home/ankan/github/paritytech/substrate/frame/democracy" } +pallet-election-provider-multi-phase ={path = "/home/ankan/github/paritytech/substrate/frame/election-provider-multi-phase" } +pallet-election-provider-support-benchmarking ={path = "/home/ankan/github/paritytech/substrate/frame/election-provider-support/benchmarking" } +pallet-elections-phragmen ={path = "/home/ankan/github/paritytech/substrate/frame/elections-phragmen" } +pallet-gilt ={path = "/home/ankan/github/paritytech/substrate/frame/gilt" } +pallet-grandpa ={path = "/home/ankan/github/paritytech/substrate/frame/grandpa" } +pallet-offences ={path = "/home/ankan/github/paritytech/substrate/frame/offences" } +pallet-staking ={path = "/home/ankan/github/paritytech/substrate/frame/staking" } +pallet-staking-reward-curve ={path = "/home/ankan/github/paritytech/substrate/frame/staking/reward-curve" } +sp-keyring ={path = "/home/ankan/github/paritytech/substrate/primitives/keyring" } +pallet-im-online ={path = "/home/ankan/github/paritytech/substrate/frame/im-online" } +pallet-indices ={path = "/home/ankan/github/paritytech/substrate/frame/indices" } +pallet-lottery ={path = "/home/ankan/github/paritytech/substrate/frame/lottery" } +frame-support-test ={path = "/home/ankan/github/paritytech/substrate/frame/support/test" } +frame-support-test-pallet ={path = "/home/ankan/github/paritytech/substrate/frame/support/test/pallet" } +pallet-membership ={path = "/home/ankan/github/paritytech/substrate/frame/membership" } +pallet-mmr ={path = "/home/ankan/github/paritytech/substrate/frame/merkle-mountain-range" } +sp-mmr-primitives ={path = "/home/ankan/github/paritytech/substrate/primitives/merkle-mountain-range" } +pallet-multisig ={path = "/home/ankan/github/paritytech/substrate/frame/multisig" } +pallet-nomination-pools ={path = "/home/ankan/github/paritytech/substrate/frame/nomination-pools" } +pallet-nomination-pools-benchmarking ={path = "/home/ankan/github/paritytech/substrate/frame/nomination-pools/benchmarking" } +pallet-nomination-pools-runtime-api ={path = "/home/ankan/github/paritytech/substrate/frame/nomination-pools/runtime-api" } +pallet-offences-benchmarking ={path = "/home/ankan/github/paritytech/substrate/frame/offences/benchmarking" } +pallet-proxy ={path = "/home/ankan/github/paritytech/substrate/frame/proxy" } +pallet-ranked-collective ={path = "/home/ankan/github/paritytech/substrate/frame/ranked-collective" } +pallet-recovery ={path = "/home/ankan/github/paritytech/substrate/frame/recovery" } +pallet-referenda ={path = "/home/ankan/github/paritytech/substrate/frame/referenda" } +pallet-remark ={path = "/home/ankan/github/paritytech/substrate/frame/remark" } +pallet-session-benchmarking ={path = "/home/ankan/github/paritytech/substrate/frame/session/benchmarking" } +pallet-society ={path = "/home/ankan/github/paritytech/substrate/frame/society" } +pallet-state-trie-migration ={path = "/home/ankan/github/paritytech/substrate/frame/state-trie-migration" } +remote-externalities ={path = "/home/ankan/github/paritytech/substrate/utils/frame/remote-externalities" } +substrate-state-trie-migration-rpc ={path = "/home/ankan/github/paritytech/substrate/utils/frame/rpc/state-trie-migration-rpc" } +sc-rpc-api ={path = "/home/ankan/github/paritytech/substrate/client/rpc-api" } +sc-transaction-pool-api ={path = "/home/ankan/github/paritytech/substrate/client/transaction-pool/api" } +pallet-sudo ={path = "/home/ankan/github/paritytech/substrate/frame/sudo" } +pallet-tips ={path = "/home/ankan/github/paritytech/substrate/frame/tips" } +pallet-transaction-payment-rpc-runtime-api ={path = "/home/ankan/github/paritytech/substrate/frame/transaction-payment/rpc/runtime-api" } +pallet-transaction-storage ={path = "/home/ankan/github/paritytech/substrate/frame/transaction-storage" } +sp-transaction-storage-proof ={path = "/home/ankan/github/paritytech/substrate/primitives/transaction-storage-proof" } +pallet-uniques ={path = "/home/ankan/github/paritytech/substrate/frame/uniques" } +pallet-vesting ={path = "/home/ankan/github/paritytech/substrate/frame/vesting" } +pallet-whitelist ={path = "/home/ankan/github/paritytech/substrate/frame/whitelist" } +sp-block-builder ={path = "/home/ankan/github/paritytech/substrate/primitives/block-builder" } +sp-offchain ={path = "/home/ankan/github/paritytech/substrate/primitives/offchain" } +sp-transaction-pool ={path = "/home/ankan/github/paritytech/substrate/primitives/transaction-pool" } +sc-informant ={path = "/home/ankan/github/paritytech/substrate/client/informant" } +sc-keystore ={path = "/home/ankan/github/paritytech/substrate/client/keystore" } +sc-network ={path = "/home/ankan/github/paritytech/substrate/client/network" } +fork-tree ={path = "/home/ankan/github/paritytech/substrate/utils/fork-tree" } +sc-network-light ={path = "/home/ankan/github/paritytech/substrate/client/network/light" } +sc-network-sync ={path = "/home/ankan/github/paritytech/substrate/client/network/sync" } +sc-offchain ={path = "/home/ankan/github/paritytech/substrate/client/offchain" } +sc-transaction-pool ={path = "/home/ankan/github/paritytech/substrate/client/transaction-pool" } +substrate-test-runtime-transaction-pool ={path = "/home/ankan/github/paritytech/substrate/test-utils/runtime/transaction-pool" } +sc-rpc ={path = "/home/ankan/github/paritytech/substrate/client/rpc" } +sc-sysinfo ={path = "/home/ankan/github/paritytech/substrate/client/sysinfo" } +sp-consensus-aura ={path = "/home/ankan/github/paritytech/substrate/primitives/consensus/aura" } +substrate-test-client ={path = "/home/ankan/github/paritytech/substrate/test-utils/client" } +sp-runtime-interface-test-wasm ={path = "/home/ankan/github/paritytech/substrate/primitives/runtime-interface/test-wasm" } +sp-serializer ={path = "/home/ankan/github/paritytech/substrate/primitives/serializer" } +frame-benchmarking-cli ={path = "/home/ankan/github/paritytech/substrate/utils/frame/benchmarking-cli" } +sc-cli ={path = "/home/ankan/github/paritytech/substrate/client/cli" } +node-template-runtime ={path = "/home/ankan/github/paritytech/substrate/bin/node-template/runtime" } +pallet-aura ={path = "/home/ankan/github/paritytech/substrate/frame/aura" } +pallet-template ={path = "/home/ankan/github/paritytech/substrate/bin/node-template/pallets/template" } +pallet-transaction-payment-rpc ={path = "/home/ankan/github/paritytech/substrate/frame/transaction-payment/rpc" } +sc-basic-authorship ={path = "/home/ankan/github/paritytech/substrate/client/basic-authorship" } +sc-proposer-metrics ={path = "/home/ankan/github/paritytech/substrate/client/proposer-metrics" } +sc-consensus-aura ={path = "/home/ankan/github/paritytech/substrate/client/consensus/aura" } +sc-consensus-slots ={path = "/home/ankan/github/paritytech/substrate/client/consensus/slots" } +sc-network-test ={path = "/home/ankan/github/paritytech/substrate/client/network/test" } +sc-finality-grandpa ={path = "/home/ankan/github/paritytech/substrate/client/finality-grandpa" } +sc-network-gossip ={path = "/home/ankan/github/paritytech/substrate/client/network-gossip" } +substrate-frame-rpc-system ={path = "/home/ankan/github/paritytech/substrate/utils/frame/rpc/system" } +try-runtime-cli ={path = "/home/ankan/github/paritytech/substrate/utils/frame/try-runtime/cli" } +substrate-build-script-utils ={path = "/home/ankan/github/paritytech/substrate/utils/build-script-utils" } +node-bench ={path = "/home/ankan/github/paritytech/substrate/bin/node/bench" } +node-testing ={path = "/home/ankan/github/paritytech/substrate/bin/node/testing" } +node-executor ={path = "/home/ankan/github/paritytech/substrate/bin/node/executor" } +node-cli ={path = "/home/ankan/github/paritytech/substrate/bin/node/cli" } +node-inspect ={path = "/home/ankan/github/paritytech/substrate/bin/node/inspect" } +node-rpc ={path = "/home/ankan/github/paritytech/substrate/bin/node/rpc" } +pallet-contracts-rpc ={path = "/home/ankan/github/paritytech/substrate/frame/contracts/rpc" } +pallet-mmr-rpc ={path = "/home/ankan/github/paritytech/substrate/frame/merkle-mountain-range/rpc" } +sc-consensus-babe ={path = "/home/ankan/github/paritytech/substrate/client/consensus/babe" } +sc-consensus-epochs ={path = "/home/ankan/github/paritytech/substrate/client/consensus/epochs" } +sc-consensus-babe-rpc ={path = "/home/ankan/github/paritytech/substrate/client/consensus/babe/rpc" } +sc-finality-grandpa-rpc ={path = "/home/ankan/github/paritytech/substrate/client/finality-grandpa/rpc" } +sc-sync-state-rpc ={path = "/home/ankan/github/paritytech/substrate/client/sync-state-rpc" } +sc-authority-discovery ={path = "/home/ankan/github/paritytech/substrate/client/authority-discovery" } +sc-consensus-uncles ={path = "/home/ankan/github/paritytech/substrate/client/consensus/uncles" } +sc-service-test ={path = "/home/ankan/github/paritytech/substrate/client/service/test" } +substrate-frame-cli ={path = "/home/ankan/github/paritytech/substrate/utils/frame/frame-utilities-cli" } +chain-spec-builder ={path = "/home/ankan/github/paritytech/substrate/bin/utils/chain-spec-builder" } +subkey ={path = "/home/ankan/github/paritytech/substrate/bin/utils/subkey" } +beefy-gadget ={path = "/home/ankan/github/paritytech/substrate/client/beefy" } +beefy-gadget-rpc ={path = "/home/ankan/github/paritytech/substrate/client/beefy/rpc" } +sc-consensus-manual-seal ={path = "/home/ankan/github/paritytech/substrate/client/consensus/manual-seal" } +sc-consensus-pow ={path = "/home/ankan/github/paritytech/substrate/client/consensus/pow" } +sp-consensus-pow ={path = "/home/ankan/github/paritytech/substrate/primitives/consensus/pow" } +pallet-atomic-swap ={path = "/home/ankan/github/paritytech/substrate/frame/atomic-swap" } +pallet-bags-list-fuzzer ={path = "/home/ankan/github/paritytech/substrate/frame/bags-list/fuzzer" } +pallet-bags-list-remote-tests ={path = "/home/ankan/github/paritytech/substrate/frame/bags-list/remote-tests" } +pallet-beefy ={path = "/home/ankan/github/paritytech/substrate/frame/beefy" } +pallet-beefy-mmr ={path = "/home/ankan/github/paritytech/substrate/frame/beefy-mmr" } +frame-election-solution-type-fuzzer ={path = "/home/ankan/github/paritytech/substrate/frame/election-provider-support/solution-type/fuzzer" } +pallet-example-basic ={path = "/home/ankan/github/paritytech/substrate/frame/examples/basic" } +pallet-example-offchain-worker ={path = "/home/ankan/github/paritytech/substrate/frame/examples/offchain-worker" } +pallet-example-parallel ={path = "/home/ankan/github/paritytech/substrate/frame/examples/parallel" } +pallet-nicks ={path = "/home/ankan/github/paritytech/substrate/frame/nicks" } +pallet-node-authorization ={path = "/home/ankan/github/paritytech/substrate/frame/node-authorization" } +pallet-nomination-pools-test-staking ={path = "/home/ankan/github/paritytech/substrate/frame/nomination-pools/test-staking" } +pallet-scored-pool ={path = "/home/ankan/github/paritytech/substrate/frame/scored-pool" } +pallet-staking-reward-fn ={path = "/home/ankan/github/paritytech/substrate/frame/staking/reward-fn" } +frame-support-test-compile-pass ={path = "/home/ankan/github/paritytech/substrate/frame/support/test/compile_pass" } +sp-api-test ={path = "/home/ankan/github/paritytech/substrate/primitives/api/test" } +sp-application-crypto-test ={path = "/home/ankan/github/paritytech/substrate/primitives/application-crypto/test" } +sp-arithmetic-fuzzer ={path = "/home/ankan/github/paritytech/substrate/primitives/arithmetic/fuzzer" } +sp-npos-elections-fuzzer ={path = "/home/ankan/github/paritytech/substrate/primitives/npos-elections/fuzzer" } +sp-runtime-interface-test ={path = "/home/ankan/github/paritytech/substrate/primitives/runtime-interface/test" } +sp-runtime-interface-test-wasm-deprecated ={path = "/home/ankan/github/paritytech/substrate/primitives/runtime-interface/test-wasm-deprecated" } +substrate-test-utils-test-crate ={path = "/home/ankan/github/paritytech/substrate/test-utils/test-crate" } +substrate-frame-rpc-support ={path = "/home/ankan/github/paritytech/substrate/utils/frame/rpc/support" } +generate-bags ={path = "/home/ankan/github/paritytech/substrate/utils/frame/generate-bags" } +node-runtime-generate-bags ={path = "/home/ankan/github/paritytech/substrate/utils/frame/generate-bags/node-runtime" } # Configuration for building a .deb package - for use with `cargo-deb` [package.metadata.deb] diff --git a/runtime/kusama/src/lib.rs b/runtime/kusama/src/lib.rs index b4e6a3427217..761f65c0480d 100644 --- a/runtime/kusama/src/lib.rs +++ b/runtime/kusama/src/lib.rs @@ -616,6 +616,7 @@ impl pallet_staking::Config for Runtime { type VoterList = VoterList; type TargetList = UseValidatorsMap; type MaxUnlockingChunks = frame_support::traits::ConstU32<32>; + type HistoryDepth = frame_support::traits::ConstU32<84>; type BenchmarkingConfig = runtime_common::StakingBenchmarkingConfig; type OnStakerSlash = NominationPools; type WeightInfo = weights::pallet_staking::WeightInfo; diff --git a/runtime/kusama/src/weights/pallet_staking.rs b/runtime/kusama/src/weights/pallet_staking.rs index 5b05b1249cf3..53cb5d10c4b1 100644 --- a/runtime/kusama/src/weights/pallet_staking.rs +++ b/runtime/kusama/src/weights/pallet_staking.rs @@ -297,24 +297,6 @@ impl pallet_staking::WeightInfo for WeightInfo { .saturating_add(T::DbWeight::get().reads(9 as u64)) .saturating_add(T::DbWeight::get().writes(8 as u64)) } - // Storage: Staking CurrentEra (r:1 w:0) - // Storage: Staking HistoryDepth (r:1 w:1) - // Storage: Staking ErasStakersClipped (r:0 w:2) - // Storage: Staking ErasValidatorPrefs (r:0 w:2) - // Storage: Staking ErasValidatorReward (r:0 w:1) - // Storage: Staking ErasRewardPoints (r:0 w:1) - // Storage: Staking ErasStakers (r:0 w:2) - // Storage: Staking ErasTotalStake (r:0 w:1) - // Storage: Staking ErasStartSessionIndex (r:0 w:1) - /// The range of component `e` is `[1, 100]`. - fn set_history_depth(e: u32, ) -> Weight { - Weight::from_ref_time(0 as u64) - // Standard Error: 89_000 - .saturating_add(Weight::from_ref_time(21_655_000 as u64).saturating_mul(e as u64)) - .saturating_add(T::DbWeight::get().reads(2 as u64)) - .saturating_add(T::DbWeight::get().writes(4 as u64)) - .saturating_add(T::DbWeight::get().writes((7 as u64).saturating_mul(e as u64))) - } // Storage: System Account (r:1 w:1) // Storage: Staking Bonded (r:1 w:1) // Storage: Staking Ledger (r:1 w:1) diff --git a/runtime/polkadot/src/lib.rs b/runtime/polkadot/src/lib.rs index a97472d47a36..09a23fc30438 100644 --- a/runtime/polkadot/src/lib.rs +++ b/runtime/polkadot/src/lib.rs @@ -561,6 +561,7 @@ impl pallet_staking::Config for Runtime { type VoterList = VoterList; type TargetList = UseValidatorsMap; type MaxUnlockingChunks = frame_support::traits::ConstU32<32>; + type HistoryDepth = frame_support::traits::ConstU32<84>; type BenchmarkingConfig = runtime_common::StakingBenchmarkingConfig; type OnStakerSlash = NominationPools; type WeightInfo = weights::pallet_staking::WeightInfo; diff --git a/runtime/polkadot/src/weights/pallet_staking.rs b/runtime/polkadot/src/weights/pallet_staking.rs index b70e2289567f..f162b24405a6 100644 --- a/runtime/polkadot/src/weights/pallet_staking.rs +++ b/runtime/polkadot/src/weights/pallet_staking.rs @@ -297,24 +297,6 @@ impl pallet_staking::WeightInfo for WeightInfo { .saturating_add(T::DbWeight::get().reads(9 as u64)) .saturating_add(T::DbWeight::get().writes(8 as u64)) } - // Storage: Staking CurrentEra (r:1 w:0) - // Storage: Staking HistoryDepth (r:1 w:1) - // Storage: Staking ErasStakersClipped (r:0 w:2) - // Storage: Staking ErasValidatorPrefs (r:0 w:2) - // Storage: Staking ErasValidatorReward (r:0 w:1) - // Storage: Staking ErasRewardPoints (r:0 w:1) - // Storage: Staking ErasStakers (r:0 w:2) - // Storage: Staking ErasTotalStake (r:0 w:1) - // Storage: Staking ErasStartSessionIndex (r:0 w:1) - /// The range of component `e` is `[1, 100]`. - fn set_history_depth(e: u32, ) -> Weight { - Weight::from_ref_time(0 as u64) - // Standard Error: 87_000 - .saturating_add(Weight::from_ref_time(21_687_000 as u64).saturating_mul(e as u64)) - .saturating_add(T::DbWeight::get().reads(2 as u64)) - .saturating_add(T::DbWeight::get().writes(4 as u64)) - .saturating_add(T::DbWeight::get().writes((7 as u64).saturating_mul(e as u64))) - } // Storage: System Account (r:1 w:1) // Storage: Staking Bonded (r:1 w:1) // Storage: Staking Ledger (r:1 w:1) diff --git a/runtime/test-runtime/src/lib.rs b/runtime/test-runtime/src/lib.rs index 7bacde8b57b5..fe2dcdac3f11 100644 --- a/runtime/test-runtime/src/lib.rs +++ b/runtime/test-runtime/src/lib.rs @@ -357,6 +357,7 @@ impl pallet_staking::Config for Runtime { type VoterList = pallet_staking::UseNominatorsAndValidatorsMap; type TargetList = pallet_staking::UseValidatorsMap; type MaxUnlockingChunks = frame_support::traits::ConstU32<32>; + type HistoryDepth = frame_support::traits::ConstU32<84>; type BenchmarkingConfig = runtime_common::StakingBenchmarkingConfig; type OnStakerSlash = (); type WeightInfo = (); diff --git a/runtime/westend/src/lib.rs b/runtime/westend/src/lib.rs index 1f8fc652209b..250c0142a482 100644 --- a/runtime/westend/src/lib.rs +++ b/runtime/westend/src/lib.rs @@ -510,6 +510,7 @@ impl pallet_staking::Config for Runtime { type VoterList = VoterList; type TargetList = UseValidatorsMap; type MaxUnlockingChunks = frame_support::traits::ConstU32<32>; + type HistoryDepth = frame_support::traits::ConstU32<84>; type BenchmarkingConfig = runtime_common::StakingBenchmarkingConfig; type OnStakerSlash = NominationPools; type WeightInfo = weights::pallet_staking::WeightInfo; diff --git a/runtime/westend/src/weights/pallet_staking.rs b/runtime/westend/src/weights/pallet_staking.rs index 8e2797fab6da..86f33610fafb 100644 --- a/runtime/westend/src/weights/pallet_staking.rs +++ b/runtime/westend/src/weights/pallet_staking.rs @@ -297,24 +297,6 @@ impl pallet_staking::WeightInfo for WeightInfo { .saturating_add(T::DbWeight::get().reads(9 as u64)) .saturating_add(T::DbWeight::get().writes(8 as u64)) } - // Storage: Staking CurrentEra (r:1 w:0) - // Storage: Staking HistoryDepth (r:1 w:1) - // Storage: Staking ErasStakersClipped (r:0 w:2) - // Storage: Staking ErasValidatorPrefs (r:0 w:2) - // Storage: Staking ErasValidatorReward (r:0 w:1) - // Storage: Staking ErasRewardPoints (r:0 w:1) - // Storage: Staking ErasStakers (r:0 w:2) - // Storage: Staking ErasTotalStake (r:0 w:1) - // Storage: Staking ErasStartSessionIndex (r:0 w:1) - /// The range of component `e` is `[1, 100]`. - fn set_history_depth(e: u32, ) -> Weight { - Weight::from_ref_time(0 as u64) - // Standard Error: 86_000 - .saturating_add(Weight::from_ref_time(21_617_000 as u64).saturating_mul(e as u64)) - .saturating_add(T::DbWeight::get().reads(2 as u64)) - .saturating_add(T::DbWeight::get().writes(4 as u64)) - .saturating_add(T::DbWeight::get().writes((7 as u64).saturating_mul(e as u64))) - } // Storage: System Account (r:1 w:1) // Storage: Staking Bonded (r:1 w:1) // Storage: Staking Ledger (r:1 w:1) From 109c8b593dd9f2e4cc84bedcfa32f036fa916631 Mon Sep 17 00:00:00 2001 From: Ankan Anurag Date: Wed, 14 Sep 2022 04:23:22 +0200 Subject: [PATCH 02/12] add migration to v11 for staking pallet --- runtime/kusama/src/lib.rs | 1 + runtime/polkadot/src/lib.rs | 1 + runtime/westend/src/lib.rs | 1 + 3 files changed, 3 insertions(+) diff --git a/runtime/kusama/src/lib.rs b/runtime/kusama/src/lib.rs index 761f65c0480d..352ccb2855e3 100644 --- a/runtime/kusama/src/lib.rs +++ b/runtime/kusama/src/lib.rs @@ -1462,6 +1462,7 @@ pub type Executive = frame_executive::Executive< VoterList, StakingMigrationV11OldPallet, >, + pallet_staking::migrations::v12::MigrateToV12, ), >; /// The payload being signed in the transactions. diff --git a/runtime/polkadot/src/lib.rs b/runtime/polkadot/src/lib.rs index 09a23fc30438..dd44d10351e3 100644 --- a/runtime/polkadot/src/lib.rs +++ b/runtime/polkadot/src/lib.rs @@ -1545,6 +1545,7 @@ pub type Executive = frame_executive::Executive< VoterList, StakingMigrationV11OldPallet, >, + pallet_staking::migrations::v12::MigrateToV12, ), >; diff --git a/runtime/westend/src/lib.rs b/runtime/westend/src/lib.rs index 250c0142a482..756347664ba2 100644 --- a/runtime/westend/src/lib.rs +++ b/runtime/westend/src/lib.rs @@ -1182,6 +1182,7 @@ pub type Executive = frame_executive::Executive< StakingMigrationV11OldPallet, >, pallet_nomination_pools::migration::v3::MigrateToV3, + pallet_staking::migrations::v11::MigrateToV11, ), >; /// The payload being signed in transactions. From 9a8a5af5eaa4ee6bdbb1cfe97bcb113a70d39581 Mon Sep 17 00:00:00 2001 From: Ankan Anurag Date: Wed, 14 Sep 2022 04:46:24 +0200 Subject: [PATCH 03/12] revert local substrate dependency patch --- Cargo.lock | 436 ++++++++++++++----------------------- Cargo.toml | 238 -------------------- runtime/westend/src/lib.rs | 2 +- 3 files changed, 169 insertions(+), 507 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0bc7fe0f7d82..5847bf63f600 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -465,6 +465,7 @@ dependencies = [ [[package]] name = "beefy-gadget-rpc" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "beefy-gadget", "beefy-primitives", @@ -484,6 +485,7 @@ dependencies = [ [[package]] name = "beefy-merkle-tree" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "beefy-primitives", "sp-api", @@ -492,6 +494,7 @@ dependencies = [ [[package]] name = "beefy-primitives" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "parity-scale-codec", "scale-info", @@ -1986,6 +1989,7 @@ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" [[package]] name = "fork-tree" version = "3.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "parity-scale-codec", ] @@ -2003,6 +2007,7 @@ dependencies = [ [[package]] name = "frame-benchmarking" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-support", "frame-system", @@ -2025,6 +2030,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "Inflector", "chrono", @@ -2075,6 +2081,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2085,6 +2092,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2100,6 +2108,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-support", "frame-system", @@ -2128,6 +2137,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "bitflags", "frame-metadata", @@ -2159,6 +2169,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "Inflector", "cfg-expr", @@ -2172,6 +2183,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -2183,6 +2195,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "proc-macro2", "quote", @@ -2192,6 +2205,7 @@ dependencies = [ [[package]] name = "frame-support-test" version = "3.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-support", "frame-support-test-pallet", @@ -2214,6 +2228,7 @@ dependencies = [ [[package]] name = "frame-support-test-pallet" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-support", "frame-system", @@ -2224,6 +2239,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-support", "log", @@ -2241,6 +2257,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-benchmarking", "frame-support", @@ -2255,6 +2272,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "parity-scale-codec", "sp-api", @@ -2263,6 +2281,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-support", "parity-scale-codec", @@ -2445,6 +2464,7 @@ dependencies = [ [[package]] name = "generate-bags" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "chrono", "frame-election-provider-support", @@ -4802,6 +4822,7 @@ checksum = "20448fd678ec04e6ea15bbe0476874af65e98a01515d667aa49f1434dc44ebf4" [[package]] name = "pallet-assets" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-benchmarking", "frame-support", @@ -4815,6 +4836,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-support", "frame-system", @@ -4830,6 +4852,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-support", "frame-system", @@ -4844,6 +4867,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-benchmarking", "frame-support", @@ -4867,6 +4891,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -4886,6 +4911,7 @@ dependencies = [ [[package]] name = "pallet-bags-list-remote-tests" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-election-provider-support", "frame-support", @@ -4904,6 +4930,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-benchmarking", "frame-support", @@ -4918,6 +4945,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "beefy-primitives", "frame-support", @@ -4933,6 +4961,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "beefy-merkle-tree", "beefy-primitives", @@ -4955,6 +4984,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-benchmarking", "frame-support", @@ -4972,6 +5002,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-benchmarking", "frame-support", @@ -4990,6 +5021,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5006,6 +5038,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5021,6 +5054,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5044,6 +5078,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5056,6 +5091,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5073,6 +5109,7 @@ dependencies = [ [[package]] name = "pallet-gilt" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5087,6 +5124,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5109,6 +5147,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5124,6 +5163,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5143,6 +5183,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5159,6 +5200,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5175,6 +5217,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -5192,6 +5235,7 @@ dependencies = [ [[package]] name = "pallet-mmr-rpc" version = "3.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -5206,6 +5250,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5220,6 +5265,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-support", "frame-system", @@ -5236,6 +5282,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5255,6 +5302,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "parity-scale-codec", "sp-api", @@ -5264,6 +5312,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-support", "frame-system", @@ -5280,6 +5329,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5302,6 +5352,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5317,6 +5368,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5331,6 +5383,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5345,6 +5398,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5360,6 +5414,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-support", "frame-system", @@ -5380,6 +5435,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5395,6 +5451,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-support", "frame-system", @@ -5408,6 +5465,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5430,6 +5488,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -5440,6 +5499,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "log", "sp-arithmetic", @@ -5448,6 +5508,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-support", "frame-system", @@ -5461,6 +5522,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5478,6 +5540,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5496,6 +5559,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-support", "frame-system", @@ -5511,6 +5575,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -5525,6 +5590,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -5535,6 +5601,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-benchmarking", "frame-support", @@ -5567,6 +5634,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-benchmarking", "frame-support", @@ -8094,6 +8162,7 @@ dependencies = [ [[package]] name = "remote-externalities" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "env_logger 0.9.0", "jsonrpsee", @@ -8441,6 +8510,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "log", "sp-core", @@ -8451,6 +8521,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "async-trait", "futures", @@ -8477,6 +8548,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "futures", "futures-timer", @@ -8499,6 +8571,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -8514,6 +8587,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "impl-trait-for-tuples", "memmap2 0.5.0", @@ -8530,6 +8604,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -8540,6 +8615,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "chrono", "clap", @@ -8578,6 +8654,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "fnv", "futures", @@ -8605,6 +8682,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "hash-db", "kvdb", @@ -8629,6 +8707,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "async-trait", "futures", @@ -8652,6 +8731,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "async-trait", "fork-tree", @@ -8693,6 +8773,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "futures", "jsonrpsee", @@ -8714,6 +8795,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "fork-tree", "parity-scale-codec", @@ -8726,6 +8808,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "async-trait", "futures", @@ -8750,6 +8833,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "lazy_static", "lru 0.7.8", @@ -8776,6 +8860,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "environmental", "parity-scale-codec", @@ -8791,6 +8876,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "log", "parity-scale-codec", @@ -8805,6 +8891,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "cfg-if 1.0.0", "libc", @@ -8824,6 +8911,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "ahash", "async-trait", @@ -8864,6 +8952,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "finality-grandpa", "futures", @@ -8884,6 +8973,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "ansi_term", "futures", @@ -8900,6 +8990,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "async-trait", "hex", @@ -8914,6 +9005,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "async-trait", "asynchronous-codec", @@ -8980,6 +9072,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "async-trait", "bitflags", @@ -9002,6 +9095,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "ahash", "futures", @@ -9019,6 +9113,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "futures", "hex", @@ -9039,6 +9134,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "fork-tree", "futures", @@ -9066,6 +9162,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "bytes", "fnv", @@ -9095,6 +9192,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "futures", "libp2p", @@ -9107,6 +9205,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -9115,6 +9214,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "futures", "hash-db", @@ -9144,6 +9244,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "futures", "jsonrpsee", @@ -9166,6 +9267,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "futures", "jsonrpsee", @@ -9178,6 +9280,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "async-trait", "directories", @@ -9246,6 +9349,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "log", "parity-scale-codec", @@ -9259,6 +9363,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -9277,6 +9382,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "futures", "libc", @@ -9295,6 +9401,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "chrono", "futures", @@ -9312,6 +9419,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "ansi_term", "atty", @@ -9342,6 +9450,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -9352,6 +9461,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "futures", "futures-timer", @@ -9377,6 +9487,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "futures", "log", @@ -9389,6 +9500,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "futures", "futures-timer", @@ -9874,6 +9986,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "hash-db", "log", @@ -9891,6 +10004,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "blake2", "proc-macro-crate", @@ -9902,6 +10016,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "6.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "parity-scale-codec", "scale-info", @@ -9914,6 +10029,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "5.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "integer-sqrt", "num-traits", @@ -9928,6 +10044,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "parity-scale-codec", "scale-info", @@ -9940,6 +10057,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "async-trait", "parity-scale-codec", @@ -9951,6 +10069,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "parity-scale-codec", "sp-api", @@ -9962,6 +10081,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "futures", "log", @@ -9979,6 +10099,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "async-trait", "futures", @@ -9997,6 +10118,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "async-trait", "merlin", @@ -10019,6 +10141,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "parity-scale-codec", "scale-info", @@ -10032,6 +10155,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "parity-scale-codec", "scale-info", @@ -10044,6 +10168,7 @@ dependencies = [ [[package]] name = "sp-core" version = "6.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "base58", "bitflags", @@ -10089,6 +10214,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "4.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "blake2", "byteorder", @@ -10102,6 +10228,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "proc-macro2", "quote", @@ -10112,6 +10239,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -10120,6 +10248,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "4.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "proc-macro2", "quote", @@ -10129,6 +10258,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.12.0" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "environmental", "parity-scale-codec", @@ -10139,6 +10269,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "finality-grandpa", "log", @@ -10156,6 +10287,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -10169,6 +10301,7 @@ dependencies = [ [[package]] name = "sp-io" version = "6.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "bytes", "futures", @@ -10194,6 +10327,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "6.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "lazy_static", "sp-core", @@ -10204,6 +10338,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.12.0" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "async-trait", "futures", @@ -10220,6 +10355,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "thiserror", "zstd", @@ -10228,6 +10364,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "log", "parity-scale-codec", @@ -10242,6 +10379,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "parity-scale-codec", "scale-info", @@ -10255,6 +10393,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "sp-api", "sp-core", @@ -10264,6 +10403,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "4.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "backtrace", "lazy_static", @@ -10273,6 +10413,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "rustc-hash", "serde", @@ -10282,6 +10423,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "6.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "either", "hash256-std-hasher", @@ -10304,6 +10446,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "6.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -10321,6 +10464,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "5.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "Inflector", "proc-macro-crate", @@ -10332,6 +10476,7 @@ dependencies = [ [[package]] name = "sp-sandbox" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "log", "parity-scale-codec", @@ -10345,6 +10490,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "parity-scale-codec", "scale-info", @@ -10358,6 +10504,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "parity-scale-codec", "scale-info", @@ -10368,6 +10515,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.12.0" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "hash-db", "log", @@ -10389,10 +10537,12 @@ dependencies = [ [[package]] name = "sp-std" version = "4.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" [[package]] name = "sp-storage" version = "6.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "impl-serde", "parity-scale-codec", @@ -10405,6 +10555,7 @@ dependencies = [ [[package]] name = "sp-tasks" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "log", "sp-core", @@ -10417,6 +10568,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "async-trait", "futures-timer", @@ -10432,6 +10584,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "5.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "parity-scale-codec", "sp-std", @@ -10443,6 +10596,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "sp-api", "sp-runtime", @@ -10451,6 +10605,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "async-trait", "log", @@ -10466,6 +10621,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "6.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "ahash", "hash-db", @@ -10488,6 +10644,7 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "impl-serde", "parity-scale-codec", @@ -10504,6 +10661,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -10514,6 +10672,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "6.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "impl-trait-for-tuples", "log", @@ -10741,6 +10900,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "platforms", ] @@ -10748,6 +10908,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -10768,6 +10929,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "futures-util", "hyper", @@ -10780,6 +10942,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "jsonrpsee", "log", @@ -10800,6 +10963,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "async-trait", "futures", @@ -10825,6 +10989,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "futures", "substrate-test-utils-derive", @@ -10834,6 +10999,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -10844,6 +11010,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "ansi_term", "build-helper", @@ -11557,6 +11724,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=master#91b97b016618fcc515f55a15b1f008b68e13f5a2" dependencies = [ "clap", "frame-try-runtime", @@ -12742,271 +12910,3 @@ dependencies = [ "cc", "libc", ] - -[[patch.unused]] -name = "chain-spec-builder" -version = "2.0.0" - -[[patch.unused]] -name = "frame-election-solution-type-fuzzer" -version = "2.0.0-alpha.5" - -[[patch.unused]] -name = "frame-support-test-compile-pass" -version = "4.0.0-dev" - -[[patch.unused]] -name = "kitchensink-runtime" -version = "3.0.0-dev" - -[[patch.unused]] -name = "node-bench" -version = "0.9.0-dev" - -[[patch.unused]] -name = "node-cli" -version = "3.0.0-dev" - -[[patch.unused]] -name = "node-executor" -version = "3.0.0-dev" - -[[patch.unused]] -name = "node-inspect" -version = "0.9.0-dev" - -[[patch.unused]] -name = "node-primitives" -version = "2.0.0" - -[[patch.unused]] -name = "node-rpc" -version = "3.0.0-dev" - -[[patch.unused]] -name = "node-runtime-generate-bags" -version = "3.0.0" - -[[patch.unused]] -name = "node-template" -version = "4.0.0-dev" - -[[patch.unused]] -name = "node-template-runtime" -version = "4.0.0-dev" - -[[patch.unused]] -name = "node-testing" -version = "3.0.0-dev" - -[[patch.unused]] -name = "pallet-alliance" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-asset-tx-payment" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-atomic-swap" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-aura" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-bags-list-fuzzer" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-contracts" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-contracts-primitives" -version = "6.0.0" - -[[patch.unused]] -name = "pallet-contracts-proc-macro" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-contracts-rpc" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-contracts-rpc-runtime-api" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-conviction-voting" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-example-basic" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-example-offchain-worker" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-example-parallel" -version = "3.0.0-dev" - -[[patch.unused]] -name = "pallet-lottery" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-nicks" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-node-authorization" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-nomination-pools-test-staking" -version = "1.0.0" - -[[patch.unused]] -name = "pallet-randomness-collective-flip" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-ranked-collective" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-referenda" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-remark" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-scored-pool" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-state-trie-migration" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-template" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-transaction-storage" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-uniques" -version = "4.0.0-dev" - -[[patch.unused]] -name = "pallet-whitelist" -version = "4.0.0-dev" - -[[patch.unused]] -name = "sc-consensus-aura" -version = "0.10.0-dev" - -[[patch.unused]] -name = "sc-consensus-manual-seal" -version = "0.10.0-dev" - -[[patch.unused]] -name = "sc-consensus-pow" -version = "0.10.0-dev" - -[[patch.unused]] -name = "sc-consensus-uncles" -version = "0.10.0-dev" - -[[patch.unused]] -name = "sc-network-test" -version = "0.8.0" - -[[patch.unused]] -name = "sc-runtime-test" -version = "2.0.0" - -[[patch.unused]] -name = "sc-service-test" -version = "2.0.0" - -[[patch.unused]] -name = "sp-api-test" -version = "2.0.1" - -[[patch.unused]] -name = "sp-application-crypto-test" -version = "2.0.0" - -[[patch.unused]] -name = "sp-arithmetic-fuzzer" -version = "2.0.0" - -[[patch.unused]] -name = "sp-consensus-aura" -version = "0.10.0-dev" - -[[patch.unused]] -name = "sp-consensus-pow" -version = "0.10.0-dev" - -[[patch.unused]] -name = "sp-npos-elections-fuzzer" -version = "2.0.0-alpha.5" - -[[patch.unused]] -name = "sp-runtime-interface-test" -version = "2.0.0" - -[[patch.unused]] -name = "sp-runtime-interface-test-wasm" -version = "2.0.0" - -[[patch.unused]] -name = "sp-runtime-interface-test-wasm-deprecated" -version = "2.0.0" - -[[patch.unused]] -name = "sp-serializer" -version = "4.0.0-dev" - -[[patch.unused]] -name = "sp-test-primitives" -version = "2.0.0" - -[[patch.unused]] -name = "subkey" -version = "2.0.2" - -[[patch.unused]] -name = "substrate-frame-cli" -version = "4.0.0-dev" - -[[patch.unused]] -name = "substrate-frame-rpc-support" -version = "3.0.0" - -[[patch.unused]] -name = "substrate-test-runtime" -version = "2.0.0" - -[[patch.unused]] -name = "substrate-test-runtime-client" -version = "2.0.0" - -[[patch.unused]] -name = "substrate-test-runtime-transaction-pool" -version = "2.0.0" - -[[patch.unused]] -name = "substrate-test-utils-test-crate" -version = "0.1.0" diff --git a/Cargo.toml b/Cargo.toml index 137feac5b4cd..4983b346225b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -200,244 +200,6 @@ fast-runtime = [ "polkadot-cli/fast-runtime" ] runtime-metrics = [ "polkadot-cli/runtime-metrics" ] pyroscope = ["polkadot-cli/pyroscope"] staging-client = ["polkadot-cli/staging-client"] -[patch."https://github.com/paritytech/substrate"] -node-template ={path = "/home/ankan/github/paritytech/substrate/bin/node-template/node" } -frame-benchmarking ={path = "/home/ankan/github/paritytech/substrate/frame/benchmarking" } -frame-support ={path = "/home/ankan/github/paritytech/substrate/frame/support" } -frame-support-procedural ={path = "/home/ankan/github/paritytech/substrate/frame/support/procedural" } -frame-support-procedural-tools ={path = "/home/ankan/github/paritytech/substrate/frame/support/procedural/tools" } -frame-support-procedural-tools-derive ={path = "/home/ankan/github/paritytech/substrate/frame/support/procedural/tools/derive" } -sp-api ={path = "/home/ankan/github/paritytech/substrate/primitives/api" } -sp-api-proc-macro ={path = "/home/ankan/github/paritytech/substrate/primitives/api/proc-macro" } -sp-core ={path = "/home/ankan/github/paritytech/substrate/primitives/core" } -sp-core-hashing ={path = "/home/ankan/github/paritytech/substrate/primitives/core/hashing" } -sp-std ={path = "/home/ankan/github/paritytech/substrate/primitives/std" } -sp-debug-derive ={path = "/home/ankan/github/paritytech/substrate/primitives/debug-derive" } -sp-externalities ={path = "/home/ankan/github/paritytech/substrate/primitives/externalities" } -sp-storage ={path = "/home/ankan/github/paritytech/substrate/primitives/storage" } -sp-runtime-interface ={path = "/home/ankan/github/paritytech/substrate/primitives/runtime-interface" } -sp-runtime-interface-proc-macro ={path = "/home/ankan/github/paritytech/substrate/primitives/runtime-interface/proc-macro" } -sp-tracing ={path = "/home/ankan/github/paritytech/substrate/primitives/tracing" } -sp-wasm-interface ={path = "/home/ankan/github/paritytech/substrate/primitives/wasm-interface" } -sp-io ={path = "/home/ankan/github/paritytech/substrate/primitives/io" } -sp-keystore ={path = "/home/ankan/github/paritytech/substrate/primitives/keystore" } -sp-state-machine ={path = "/home/ankan/github/paritytech/substrate/primitives/state-machine" } -sp-panic-handler ={path = "/home/ankan/github/paritytech/substrate/primitives/panic-handler" } -sp-trie ={path = "/home/ankan/github/paritytech/substrate/primitives/trie" } -sp-runtime ={path = "/home/ankan/github/paritytech/substrate/primitives/runtime" } -sp-application-crypto ={path = "/home/ankan/github/paritytech/substrate/primitives/application-crypto" } -sp-arithmetic ={path = "/home/ankan/github/paritytech/substrate/primitives/arithmetic" } -substrate-test-runtime-client ={path = "/home/ankan/github/paritytech/substrate/test-utils/runtime/client" } -sc-block-builder ={path = "/home/ankan/github/paritytech/substrate/client/block-builder" } -sc-client-api ={path = "/home/ankan/github/paritytech/substrate/client/api" } -substrate-prometheus-endpoint ={path = "/home/ankan/github/paritytech/substrate/utils/prometheus" } -sc-executor ={path = "/home/ankan/github/paritytech/substrate/client/executor" } -sc-executor-common ={path = "/home/ankan/github/paritytech/substrate/client/executor/common" } -sc-allocator ={path = "/home/ankan/github/paritytech/substrate/client/allocator" } -sp-maybe-compressed-blob ={path = "/home/ankan/github/paritytech/substrate/primitives/maybe-compressed-blob" } -sp-sandbox ={path = "/home/ankan/github/paritytech/substrate/primitives/sandbox" } -sc-executor-wasmi ={path = "/home/ankan/github/paritytech/substrate/client/executor/wasmi" } -sc-executor-wasmtime ={path = "/home/ankan/github/paritytech/substrate/client/executor/wasmtime" } -sc-runtime-test ={path = "/home/ankan/github/paritytech/substrate/client/executor/runtime-test" } -sp-tasks ={path = "/home/ankan/github/paritytech/substrate/primitives/tasks" } -substrate-wasm-builder ={path = "/home/ankan/github/paritytech/substrate/utils/wasm-builder" } -sp-core-hashing-proc-macro ={path = "/home/ankan/github/paritytech/substrate/primitives/core/hashing/proc-macro" } -sp-version ={path = "/home/ankan/github/paritytech/substrate/primitives/version" } -sp-version-proc-macro ={path = "/home/ankan/github/paritytech/substrate/primitives/version/proc-macro" } -sc-tracing ={path = "/home/ankan/github/paritytech/substrate/client/tracing" } -sc-rpc-server ={path = "/home/ankan/github/paritytech/substrate/client/rpc-servers" } -sc-tracing-proc-macro ={path = "/home/ankan/github/paritytech/substrate/client/tracing/proc-macro" } -sp-blockchain ={path = "/home/ankan/github/paritytech/substrate/primitives/blockchain" } -sp-consensus ={path = "/home/ankan/github/paritytech/substrate/primitives/consensus/common" } -sp-inherents ={path = "/home/ankan/github/paritytech/substrate/primitives/inherents" } -sp-test-primitives ={path = "/home/ankan/github/paritytech/substrate/primitives/test-primitives" } -sp-database ={path = "/home/ankan/github/paritytech/substrate/primitives/database" } -sp-rpc ={path = "/home/ankan/github/paritytech/substrate/primitives/rpc" } -substrate-test-runtime ={path = "/home/ankan/github/paritytech/substrate/test-utils/runtime" } -beefy-merkle-tree ={path = "/home/ankan/github/paritytech/substrate/frame/beefy-mmr/primitives" } -beefy-primitives ={path = "/home/ankan/github/paritytech/substrate/primitives/beefy" } -frame-system ={path = "/home/ankan/github/paritytech/substrate/frame/system" } -frame-system-rpc-runtime-api ={path = "/home/ankan/github/paritytech/substrate/frame/system/rpc/runtime-api" } -pallet-babe ={path = "/home/ankan/github/paritytech/substrate/frame/babe" } -pallet-authorship ={path = "/home/ankan/github/paritytech/substrate/frame/authorship" } -sp-authorship ={path = "/home/ankan/github/paritytech/substrate/primitives/authorship" } -pallet-session ={path = "/home/ankan/github/paritytech/substrate/frame/session" } -pallet-timestamp ={path = "/home/ankan/github/paritytech/substrate/frame/timestamp" } -sp-timestamp ={path = "/home/ankan/github/paritytech/substrate/primitives/timestamp" } -sp-session ={path = "/home/ankan/github/paritytech/substrate/primitives/session" } -sp-staking ={path = "/home/ankan/github/paritytech/substrate/primitives/staking" } -sp-consensus-babe ={path = "/home/ankan/github/paritytech/substrate/primitives/consensus/babe" } -sp-consensus-slots ={path = "/home/ankan/github/paritytech/substrate/primitives/consensus/slots" } -sp-consensus-vrf ={path = "/home/ankan/github/paritytech/substrate/primitives/consensus/vrf" } -frame-election-provider-support ={path = "/home/ankan/github/paritytech/substrate/frame/election-provider-support" } -frame-election-provider-solution-type ={path = "/home/ankan/github/paritytech/substrate/frame/election-provider-support/solution-type" } -sp-npos-elections ={path = "/home/ankan/github/paritytech/substrate/primitives/npos-elections" } -substrate-test-utils ={path = "/home/ankan/github/paritytech/substrate/test-utils" } -substrate-test-utils-derive ={path = "/home/ankan/github/paritytech/substrate/test-utils/derive" } -sc-service ={path = "/home/ankan/github/paritytech/substrate/client/service" } -sc-chain-spec ={path = "/home/ankan/github/paritytech/substrate/client/chain-spec" } -sc-chain-spec-derive ={path = "/home/ankan/github/paritytech/substrate/client/chain-spec/derive" } -sc-network-common ={path = "/home/ankan/github/paritytech/substrate/client/network/common" } -sc-consensus ={path = "/home/ankan/github/paritytech/substrate/client/consensus/common" } -sc-utils ={path = "/home/ankan/github/paritytech/substrate/client/utils" } -sc-peerset ={path = "/home/ankan/github/paritytech/substrate/client/peerset" } -sp-finality-grandpa ={path = "/home/ankan/github/paritytech/substrate/primitives/finality-grandpa" } -sc-telemetry ={path = "/home/ankan/github/paritytech/substrate/client/telemetry" } -sc-client-db ={path = "/home/ankan/github/paritytech/substrate/client/db" } -sc-state-db ={path = "/home/ankan/github/paritytech/substrate/client/state-db" } -kitchensink-runtime ={path = "/home/ankan/github/paritytech/substrate/bin/node/runtime" } -frame-executive ={path = "/home/ankan/github/paritytech/substrate/frame/executive" } -frame-try-runtime ={path = "/home/ankan/github/paritytech/substrate/frame/try-runtime" } -pallet-balances ={path = "/home/ankan/github/paritytech/substrate/frame/balances" } -pallet-transaction-payment ={path = "/home/ankan/github/paritytech/substrate/frame/transaction-payment" } -frame-system-benchmarking ={path = "/home/ankan/github/paritytech/substrate/frame/system/benchmarking" } -node-primitives ={path = "/home/ankan/github/paritytech/substrate/bin/node/primitives" } -pallet-alliance ={path = "/home/ankan/github/paritytech/substrate/frame/alliance" } -pallet-collective ={path = "/home/ankan/github/paritytech/substrate/frame/collective" } -pallet-identity ={path = "/home/ankan/github/paritytech/substrate/frame/identity" } -pallet-asset-tx-payment ={path = "/home/ankan/github/paritytech/substrate/frame/transaction-payment/asset-tx-payment" } -pallet-assets ={path = "/home/ankan/github/paritytech/substrate/frame/assets" } -pallet-authority-discovery ={path = "/home/ankan/github/paritytech/substrate/frame/authority-discovery" } -sp-authority-discovery ={path = "/home/ankan/github/paritytech/substrate/primitives/authority-discovery" } -pallet-bags-list ={path = "/home/ankan/github/paritytech/substrate/frame/bags-list" } -pallet-bounties ={path = "/home/ankan/github/paritytech/substrate/frame/bounties" } -pallet-treasury ={path = "/home/ankan/github/paritytech/substrate/frame/treasury" } -pallet-child-bounties ={path = "/home/ankan/github/paritytech/substrate/frame/child-bounties" } -pallet-contracts ={path = "/home/ankan/github/paritytech/substrate/frame/contracts" } -pallet-contracts-primitives ={path = "/home/ankan/github/paritytech/substrate/frame/contracts/common" } -pallet-contracts-proc-macro ={path = "/home/ankan/github/paritytech/substrate/frame/contracts/proc-macro" } -pallet-randomness-collective-flip ={path = "/home/ankan/github/paritytech/substrate/frame/randomness-collective-flip" } -pallet-utility ={path = "/home/ankan/github/paritytech/substrate/frame/utility" } -pallet-contracts-rpc-runtime-api ={path = "/home/ankan/github/paritytech/substrate/frame/contracts/rpc/runtime-api" } -pallet-conviction-voting ={path = "/home/ankan/github/paritytech/substrate/frame/conviction-voting" } -pallet-scheduler ={path = "/home/ankan/github/paritytech/substrate/frame/scheduler" } -pallet-preimage ={path = "/home/ankan/github/paritytech/substrate/frame/preimage" } -pallet-democracy ={path = "/home/ankan/github/paritytech/substrate/frame/democracy" } -pallet-election-provider-multi-phase ={path = "/home/ankan/github/paritytech/substrate/frame/election-provider-multi-phase" } -pallet-election-provider-support-benchmarking ={path = "/home/ankan/github/paritytech/substrate/frame/election-provider-support/benchmarking" } -pallet-elections-phragmen ={path = "/home/ankan/github/paritytech/substrate/frame/elections-phragmen" } -pallet-gilt ={path = "/home/ankan/github/paritytech/substrate/frame/gilt" } -pallet-grandpa ={path = "/home/ankan/github/paritytech/substrate/frame/grandpa" } -pallet-offences ={path = "/home/ankan/github/paritytech/substrate/frame/offences" } -pallet-staking ={path = "/home/ankan/github/paritytech/substrate/frame/staking" } -pallet-staking-reward-curve ={path = "/home/ankan/github/paritytech/substrate/frame/staking/reward-curve" } -sp-keyring ={path = "/home/ankan/github/paritytech/substrate/primitives/keyring" } -pallet-im-online ={path = "/home/ankan/github/paritytech/substrate/frame/im-online" } -pallet-indices ={path = "/home/ankan/github/paritytech/substrate/frame/indices" } -pallet-lottery ={path = "/home/ankan/github/paritytech/substrate/frame/lottery" } -frame-support-test ={path = "/home/ankan/github/paritytech/substrate/frame/support/test" } -frame-support-test-pallet ={path = "/home/ankan/github/paritytech/substrate/frame/support/test/pallet" } -pallet-membership ={path = "/home/ankan/github/paritytech/substrate/frame/membership" } -pallet-mmr ={path = "/home/ankan/github/paritytech/substrate/frame/merkle-mountain-range" } -sp-mmr-primitives ={path = "/home/ankan/github/paritytech/substrate/primitives/merkle-mountain-range" } -pallet-multisig ={path = "/home/ankan/github/paritytech/substrate/frame/multisig" } -pallet-nomination-pools ={path = "/home/ankan/github/paritytech/substrate/frame/nomination-pools" } -pallet-nomination-pools-benchmarking ={path = "/home/ankan/github/paritytech/substrate/frame/nomination-pools/benchmarking" } -pallet-nomination-pools-runtime-api ={path = "/home/ankan/github/paritytech/substrate/frame/nomination-pools/runtime-api" } -pallet-offences-benchmarking ={path = "/home/ankan/github/paritytech/substrate/frame/offences/benchmarking" } -pallet-proxy ={path = "/home/ankan/github/paritytech/substrate/frame/proxy" } -pallet-ranked-collective ={path = "/home/ankan/github/paritytech/substrate/frame/ranked-collective" } -pallet-recovery ={path = "/home/ankan/github/paritytech/substrate/frame/recovery" } -pallet-referenda ={path = "/home/ankan/github/paritytech/substrate/frame/referenda" } -pallet-remark ={path = "/home/ankan/github/paritytech/substrate/frame/remark" } -pallet-session-benchmarking ={path = "/home/ankan/github/paritytech/substrate/frame/session/benchmarking" } -pallet-society ={path = "/home/ankan/github/paritytech/substrate/frame/society" } -pallet-state-trie-migration ={path = "/home/ankan/github/paritytech/substrate/frame/state-trie-migration" } -remote-externalities ={path = "/home/ankan/github/paritytech/substrate/utils/frame/remote-externalities" } -substrate-state-trie-migration-rpc ={path = "/home/ankan/github/paritytech/substrate/utils/frame/rpc/state-trie-migration-rpc" } -sc-rpc-api ={path = "/home/ankan/github/paritytech/substrate/client/rpc-api" } -sc-transaction-pool-api ={path = "/home/ankan/github/paritytech/substrate/client/transaction-pool/api" } -pallet-sudo ={path = "/home/ankan/github/paritytech/substrate/frame/sudo" } -pallet-tips ={path = "/home/ankan/github/paritytech/substrate/frame/tips" } -pallet-transaction-payment-rpc-runtime-api ={path = "/home/ankan/github/paritytech/substrate/frame/transaction-payment/rpc/runtime-api" } -pallet-transaction-storage ={path = "/home/ankan/github/paritytech/substrate/frame/transaction-storage" } -sp-transaction-storage-proof ={path = "/home/ankan/github/paritytech/substrate/primitives/transaction-storage-proof" } -pallet-uniques ={path = "/home/ankan/github/paritytech/substrate/frame/uniques" } -pallet-vesting ={path = "/home/ankan/github/paritytech/substrate/frame/vesting" } -pallet-whitelist ={path = "/home/ankan/github/paritytech/substrate/frame/whitelist" } -sp-block-builder ={path = "/home/ankan/github/paritytech/substrate/primitives/block-builder" } -sp-offchain ={path = "/home/ankan/github/paritytech/substrate/primitives/offchain" } -sp-transaction-pool ={path = "/home/ankan/github/paritytech/substrate/primitives/transaction-pool" } -sc-informant ={path = "/home/ankan/github/paritytech/substrate/client/informant" } -sc-keystore ={path = "/home/ankan/github/paritytech/substrate/client/keystore" } -sc-network ={path = "/home/ankan/github/paritytech/substrate/client/network" } -fork-tree ={path = "/home/ankan/github/paritytech/substrate/utils/fork-tree" } -sc-network-light ={path = "/home/ankan/github/paritytech/substrate/client/network/light" } -sc-network-sync ={path = "/home/ankan/github/paritytech/substrate/client/network/sync" } -sc-offchain ={path = "/home/ankan/github/paritytech/substrate/client/offchain" } -sc-transaction-pool ={path = "/home/ankan/github/paritytech/substrate/client/transaction-pool" } -substrate-test-runtime-transaction-pool ={path = "/home/ankan/github/paritytech/substrate/test-utils/runtime/transaction-pool" } -sc-rpc ={path = "/home/ankan/github/paritytech/substrate/client/rpc" } -sc-sysinfo ={path = "/home/ankan/github/paritytech/substrate/client/sysinfo" } -sp-consensus-aura ={path = "/home/ankan/github/paritytech/substrate/primitives/consensus/aura" } -substrate-test-client ={path = "/home/ankan/github/paritytech/substrate/test-utils/client" } -sp-runtime-interface-test-wasm ={path = "/home/ankan/github/paritytech/substrate/primitives/runtime-interface/test-wasm" } -sp-serializer ={path = "/home/ankan/github/paritytech/substrate/primitives/serializer" } -frame-benchmarking-cli ={path = "/home/ankan/github/paritytech/substrate/utils/frame/benchmarking-cli" } -sc-cli ={path = "/home/ankan/github/paritytech/substrate/client/cli" } -node-template-runtime ={path = "/home/ankan/github/paritytech/substrate/bin/node-template/runtime" } -pallet-aura ={path = "/home/ankan/github/paritytech/substrate/frame/aura" } -pallet-template ={path = "/home/ankan/github/paritytech/substrate/bin/node-template/pallets/template" } -pallet-transaction-payment-rpc ={path = "/home/ankan/github/paritytech/substrate/frame/transaction-payment/rpc" } -sc-basic-authorship ={path = "/home/ankan/github/paritytech/substrate/client/basic-authorship" } -sc-proposer-metrics ={path = "/home/ankan/github/paritytech/substrate/client/proposer-metrics" } -sc-consensus-aura ={path = "/home/ankan/github/paritytech/substrate/client/consensus/aura" } -sc-consensus-slots ={path = "/home/ankan/github/paritytech/substrate/client/consensus/slots" } -sc-network-test ={path = "/home/ankan/github/paritytech/substrate/client/network/test" } -sc-finality-grandpa ={path = "/home/ankan/github/paritytech/substrate/client/finality-grandpa" } -sc-network-gossip ={path = "/home/ankan/github/paritytech/substrate/client/network-gossip" } -substrate-frame-rpc-system ={path = "/home/ankan/github/paritytech/substrate/utils/frame/rpc/system" } -try-runtime-cli ={path = "/home/ankan/github/paritytech/substrate/utils/frame/try-runtime/cli" } -substrate-build-script-utils ={path = "/home/ankan/github/paritytech/substrate/utils/build-script-utils" } -node-bench ={path = "/home/ankan/github/paritytech/substrate/bin/node/bench" } -node-testing ={path = "/home/ankan/github/paritytech/substrate/bin/node/testing" } -node-executor ={path = "/home/ankan/github/paritytech/substrate/bin/node/executor" } -node-cli ={path = "/home/ankan/github/paritytech/substrate/bin/node/cli" } -node-inspect ={path = "/home/ankan/github/paritytech/substrate/bin/node/inspect" } -node-rpc ={path = "/home/ankan/github/paritytech/substrate/bin/node/rpc" } -pallet-contracts-rpc ={path = "/home/ankan/github/paritytech/substrate/frame/contracts/rpc" } -pallet-mmr-rpc ={path = "/home/ankan/github/paritytech/substrate/frame/merkle-mountain-range/rpc" } -sc-consensus-babe ={path = "/home/ankan/github/paritytech/substrate/client/consensus/babe" } -sc-consensus-epochs ={path = "/home/ankan/github/paritytech/substrate/client/consensus/epochs" } -sc-consensus-babe-rpc ={path = "/home/ankan/github/paritytech/substrate/client/consensus/babe/rpc" } -sc-finality-grandpa-rpc ={path = "/home/ankan/github/paritytech/substrate/client/finality-grandpa/rpc" } -sc-sync-state-rpc ={path = "/home/ankan/github/paritytech/substrate/client/sync-state-rpc" } -sc-authority-discovery ={path = "/home/ankan/github/paritytech/substrate/client/authority-discovery" } -sc-consensus-uncles ={path = "/home/ankan/github/paritytech/substrate/client/consensus/uncles" } -sc-service-test ={path = "/home/ankan/github/paritytech/substrate/client/service/test" } -substrate-frame-cli ={path = "/home/ankan/github/paritytech/substrate/utils/frame/frame-utilities-cli" } -chain-spec-builder ={path = "/home/ankan/github/paritytech/substrate/bin/utils/chain-spec-builder" } -subkey ={path = "/home/ankan/github/paritytech/substrate/bin/utils/subkey" } -beefy-gadget ={path = "/home/ankan/github/paritytech/substrate/client/beefy" } -beefy-gadget-rpc ={path = "/home/ankan/github/paritytech/substrate/client/beefy/rpc" } -sc-consensus-manual-seal ={path = "/home/ankan/github/paritytech/substrate/client/consensus/manual-seal" } -sc-consensus-pow ={path = "/home/ankan/github/paritytech/substrate/client/consensus/pow" } -sp-consensus-pow ={path = "/home/ankan/github/paritytech/substrate/primitives/consensus/pow" } -pallet-atomic-swap ={path = "/home/ankan/github/paritytech/substrate/frame/atomic-swap" } -pallet-bags-list-fuzzer ={path = "/home/ankan/github/paritytech/substrate/frame/bags-list/fuzzer" } -pallet-bags-list-remote-tests ={path = "/home/ankan/github/paritytech/substrate/frame/bags-list/remote-tests" } -pallet-beefy ={path = "/home/ankan/github/paritytech/substrate/frame/beefy" } -pallet-beefy-mmr ={path = "/home/ankan/github/paritytech/substrate/frame/beefy-mmr" } -frame-election-solution-type-fuzzer ={path = "/home/ankan/github/paritytech/substrate/frame/election-provider-support/solution-type/fuzzer" } -pallet-example-basic ={path = "/home/ankan/github/paritytech/substrate/frame/examples/basic" } -pallet-example-offchain-worker ={path = "/home/ankan/github/paritytech/substrate/frame/examples/offchain-worker" } -pallet-example-parallel ={path = "/home/ankan/github/paritytech/substrate/frame/examples/parallel" } -pallet-nicks ={path = "/home/ankan/github/paritytech/substrate/frame/nicks" } -pallet-node-authorization ={path = "/home/ankan/github/paritytech/substrate/frame/node-authorization" } -pallet-nomination-pools-test-staking ={path = "/home/ankan/github/paritytech/substrate/frame/nomination-pools/test-staking" } -pallet-scored-pool ={path = "/home/ankan/github/paritytech/substrate/frame/scored-pool" } -pallet-staking-reward-fn ={path = "/home/ankan/github/paritytech/substrate/frame/staking/reward-fn" } -frame-support-test-compile-pass ={path = "/home/ankan/github/paritytech/substrate/frame/support/test/compile_pass" } -sp-api-test ={path = "/home/ankan/github/paritytech/substrate/primitives/api/test" } -sp-application-crypto-test ={path = "/home/ankan/github/paritytech/substrate/primitives/application-crypto/test" } -sp-arithmetic-fuzzer ={path = "/home/ankan/github/paritytech/substrate/primitives/arithmetic/fuzzer" } -sp-npos-elections-fuzzer ={path = "/home/ankan/github/paritytech/substrate/primitives/npos-elections/fuzzer" } -sp-runtime-interface-test ={path = "/home/ankan/github/paritytech/substrate/primitives/runtime-interface/test" } -sp-runtime-interface-test-wasm-deprecated ={path = "/home/ankan/github/paritytech/substrate/primitives/runtime-interface/test-wasm-deprecated" } -substrate-test-utils-test-crate ={path = "/home/ankan/github/paritytech/substrate/test-utils/test-crate" } -substrate-frame-rpc-support ={path = "/home/ankan/github/paritytech/substrate/utils/frame/rpc/support" } -generate-bags ={path = "/home/ankan/github/paritytech/substrate/utils/frame/generate-bags" } -node-runtime-generate-bags ={path = "/home/ankan/github/paritytech/substrate/utils/frame/generate-bags/node-runtime" } # Configuration for building a .deb package - for use with `cargo-deb` [package.metadata.deb] diff --git a/runtime/westend/src/lib.rs b/runtime/westend/src/lib.rs index 756347664ba2..be1cb3a2615c 100644 --- a/runtime/westend/src/lib.rs +++ b/runtime/westend/src/lib.rs @@ -1182,7 +1182,7 @@ pub type Executive = frame_executive::Executive< StakingMigrationV11OldPallet, >, pallet_nomination_pools::migration::v3::MigrateToV3, - pallet_staking::migrations::v11::MigrateToV11, + pallet_staking::migrations::v12::MigrateToV12, ), >; /// The payload being signed in transactions. From 34a567c1e74b54f2b028b6e9d89c5d6a66ec3ae3 Mon Sep 17 00:00:00 2001 From: Ankan Anurag Date: Mon, 12 Sep 2022 16:32:03 +0200 Subject: [PATCH 04/12] remove history depth from storage and add it as config for pallet staking --- runtime/kusama/src/lib.rs | 1 + runtime/kusama/src/weights/pallet_staking.rs | 18 ------------------ runtime/polkadot/src/lib.rs | 1 + runtime/polkadot/src/weights/pallet_staking.rs | 18 ------------------ runtime/test-runtime/src/lib.rs | 1 + runtime/westend/src/lib.rs | 1 + runtime/westend/src/weights/pallet_staking.rs | 18 ------------------ 7 files changed, 4 insertions(+), 54 deletions(-) diff --git a/runtime/kusama/src/lib.rs b/runtime/kusama/src/lib.rs index bda010473faf..10dd2789cf08 100644 --- a/runtime/kusama/src/lib.rs +++ b/runtime/kusama/src/lib.rs @@ -615,6 +615,7 @@ impl pallet_staking::Config for Runtime { type VoterList = VoterList; type TargetList = UseValidatorsMap; type MaxUnlockingChunks = frame_support::traits::ConstU32<32>; + type HistoryDepth = frame_support::traits::ConstU32<84>; type BenchmarkingConfig = runtime_common::StakingBenchmarkingConfig; type OnStakerSlash = NominationPools; type WeightInfo = weights::pallet_staking::WeightInfo; diff --git a/runtime/kusama/src/weights/pallet_staking.rs b/runtime/kusama/src/weights/pallet_staking.rs index 5b05b1249cf3..53cb5d10c4b1 100644 --- a/runtime/kusama/src/weights/pallet_staking.rs +++ b/runtime/kusama/src/weights/pallet_staking.rs @@ -297,24 +297,6 @@ impl pallet_staking::WeightInfo for WeightInfo { .saturating_add(T::DbWeight::get().reads(9 as u64)) .saturating_add(T::DbWeight::get().writes(8 as u64)) } - // Storage: Staking CurrentEra (r:1 w:0) - // Storage: Staking HistoryDepth (r:1 w:1) - // Storage: Staking ErasStakersClipped (r:0 w:2) - // Storage: Staking ErasValidatorPrefs (r:0 w:2) - // Storage: Staking ErasValidatorReward (r:0 w:1) - // Storage: Staking ErasRewardPoints (r:0 w:1) - // Storage: Staking ErasStakers (r:0 w:2) - // Storage: Staking ErasTotalStake (r:0 w:1) - // Storage: Staking ErasStartSessionIndex (r:0 w:1) - /// The range of component `e` is `[1, 100]`. - fn set_history_depth(e: u32, ) -> Weight { - Weight::from_ref_time(0 as u64) - // Standard Error: 89_000 - .saturating_add(Weight::from_ref_time(21_655_000 as u64).saturating_mul(e as u64)) - .saturating_add(T::DbWeight::get().reads(2 as u64)) - .saturating_add(T::DbWeight::get().writes(4 as u64)) - .saturating_add(T::DbWeight::get().writes((7 as u64).saturating_mul(e as u64))) - } // Storage: System Account (r:1 w:1) // Storage: Staking Bonded (r:1 w:1) // Storage: Staking Ledger (r:1 w:1) diff --git a/runtime/polkadot/src/lib.rs b/runtime/polkadot/src/lib.rs index 020235ac55bf..2de48d7bb327 100644 --- a/runtime/polkadot/src/lib.rs +++ b/runtime/polkadot/src/lib.rs @@ -560,6 +560,7 @@ impl pallet_staking::Config for Runtime { type VoterList = VoterList; type TargetList = UseValidatorsMap; type MaxUnlockingChunks = frame_support::traits::ConstU32<32>; + type HistoryDepth = frame_support::traits::ConstU32<84>; type BenchmarkingConfig = runtime_common::StakingBenchmarkingConfig; type OnStakerSlash = NominationPools; type WeightInfo = weights::pallet_staking::WeightInfo; diff --git a/runtime/polkadot/src/weights/pallet_staking.rs b/runtime/polkadot/src/weights/pallet_staking.rs index b70e2289567f..f162b24405a6 100644 --- a/runtime/polkadot/src/weights/pallet_staking.rs +++ b/runtime/polkadot/src/weights/pallet_staking.rs @@ -297,24 +297,6 @@ impl pallet_staking::WeightInfo for WeightInfo { .saturating_add(T::DbWeight::get().reads(9 as u64)) .saturating_add(T::DbWeight::get().writes(8 as u64)) } - // Storage: Staking CurrentEra (r:1 w:0) - // Storage: Staking HistoryDepth (r:1 w:1) - // Storage: Staking ErasStakersClipped (r:0 w:2) - // Storage: Staking ErasValidatorPrefs (r:0 w:2) - // Storage: Staking ErasValidatorReward (r:0 w:1) - // Storage: Staking ErasRewardPoints (r:0 w:1) - // Storage: Staking ErasStakers (r:0 w:2) - // Storage: Staking ErasTotalStake (r:0 w:1) - // Storage: Staking ErasStartSessionIndex (r:0 w:1) - /// The range of component `e` is `[1, 100]`. - fn set_history_depth(e: u32, ) -> Weight { - Weight::from_ref_time(0 as u64) - // Standard Error: 87_000 - .saturating_add(Weight::from_ref_time(21_687_000 as u64).saturating_mul(e as u64)) - .saturating_add(T::DbWeight::get().reads(2 as u64)) - .saturating_add(T::DbWeight::get().writes(4 as u64)) - .saturating_add(T::DbWeight::get().writes((7 as u64).saturating_mul(e as u64))) - } // Storage: System Account (r:1 w:1) // Storage: Staking Bonded (r:1 w:1) // Storage: Staking Ledger (r:1 w:1) diff --git a/runtime/test-runtime/src/lib.rs b/runtime/test-runtime/src/lib.rs index b2fcd58194f2..311ff132b54f 100644 --- a/runtime/test-runtime/src/lib.rs +++ b/runtime/test-runtime/src/lib.rs @@ -356,6 +356,7 @@ impl pallet_staking::Config for Runtime { type VoterList = pallet_staking::UseNominatorsAndValidatorsMap; type TargetList = pallet_staking::UseValidatorsMap; type MaxUnlockingChunks = frame_support::traits::ConstU32<32>; + type HistoryDepth = frame_support::traits::ConstU32<84>; type BenchmarkingConfig = runtime_common::StakingBenchmarkingConfig; type OnStakerSlash = (); type WeightInfo = (); diff --git a/runtime/westend/src/lib.rs b/runtime/westend/src/lib.rs index 9d387fb8cda7..e6e6da17ae68 100644 --- a/runtime/westend/src/lib.rs +++ b/runtime/westend/src/lib.rs @@ -511,6 +511,7 @@ impl pallet_staking::Config for Runtime { type VoterList = VoterList; type TargetList = UseValidatorsMap; type MaxUnlockingChunks = frame_support::traits::ConstU32<32>; + type HistoryDepth = frame_support::traits::ConstU32<84>; type BenchmarkingConfig = runtime_common::StakingBenchmarkingConfig; type OnStakerSlash = NominationPools; type WeightInfo = weights::pallet_staking::WeightInfo; diff --git a/runtime/westend/src/weights/pallet_staking.rs b/runtime/westend/src/weights/pallet_staking.rs index 8e2797fab6da..86f33610fafb 100644 --- a/runtime/westend/src/weights/pallet_staking.rs +++ b/runtime/westend/src/weights/pallet_staking.rs @@ -297,24 +297,6 @@ impl pallet_staking::WeightInfo for WeightInfo { .saturating_add(T::DbWeight::get().reads(9 as u64)) .saturating_add(T::DbWeight::get().writes(8 as u64)) } - // Storage: Staking CurrentEra (r:1 w:0) - // Storage: Staking HistoryDepth (r:1 w:1) - // Storage: Staking ErasStakersClipped (r:0 w:2) - // Storage: Staking ErasValidatorPrefs (r:0 w:2) - // Storage: Staking ErasValidatorReward (r:0 w:1) - // Storage: Staking ErasRewardPoints (r:0 w:1) - // Storage: Staking ErasStakers (r:0 w:2) - // Storage: Staking ErasTotalStake (r:0 w:1) - // Storage: Staking ErasStartSessionIndex (r:0 w:1) - /// The range of component `e` is `[1, 100]`. - fn set_history_depth(e: u32, ) -> Weight { - Weight::from_ref_time(0 as u64) - // Standard Error: 86_000 - .saturating_add(Weight::from_ref_time(21_617_000 as u64).saturating_mul(e as u64)) - .saturating_add(T::DbWeight::get().reads(2 as u64)) - .saturating_add(T::DbWeight::get().writes(4 as u64)) - .saturating_add(T::DbWeight::get().writes((7 as u64).saturating_mul(e as u64))) - } // Storage: System Account (r:1 w:1) // Storage: Staking Bonded (r:1 w:1) // Storage: Staking Ledger (r:1 w:1) From a5c5e778fc8d39e4d0ce8c90f377267e5c640ff2 Mon Sep 17 00:00:00 2001 From: Ankan Anurag Date: Wed, 14 Sep 2022 04:23:22 +0200 Subject: [PATCH 05/12] add migration to v11 for staking pallet --- runtime/kusama/src/lib.rs | 1 + runtime/polkadot/src/lib.rs | 1 + runtime/westend/src/lib.rs | 1 + 3 files changed, 3 insertions(+) diff --git a/runtime/kusama/src/lib.rs b/runtime/kusama/src/lib.rs index 10dd2789cf08..05e6951b839f 100644 --- a/runtime/kusama/src/lib.rs +++ b/runtime/kusama/src/lib.rs @@ -1461,6 +1461,7 @@ pub type Executive = frame_executive::Executive< VoterList, StakingMigrationV11OldPallet, >, + pallet_staking::migrations::v12::MigrateToV12, ), >; /// The payload being signed in the transactions. diff --git a/runtime/polkadot/src/lib.rs b/runtime/polkadot/src/lib.rs index 2de48d7bb327..fed91496df5c 100644 --- a/runtime/polkadot/src/lib.rs +++ b/runtime/polkadot/src/lib.rs @@ -1544,6 +1544,7 @@ pub type Executive = frame_executive::Executive< VoterList, StakingMigrationV11OldPallet, >, + pallet_staking::migrations::v12::MigrateToV12, ), >; diff --git a/runtime/westend/src/lib.rs b/runtime/westend/src/lib.rs index e6e6da17ae68..683727edf4fd 100644 --- a/runtime/westend/src/lib.rs +++ b/runtime/westend/src/lib.rs @@ -1201,6 +1201,7 @@ pub type Executive = frame_executive::Executive< StakingMigrationV11OldPallet, >, pallet_nomination_pools::migration::v3::MigrateToV3, + pallet_staking::migrations::v11::MigrateToV11, ), >; /// The payload being signed in transactions. From 07086a17b0e8c59059f8e3f88b5c4ba49de2ba69 Mon Sep 17 00:00:00 2001 From: Ankan Anurag Date: Wed, 14 Sep 2022 04:46:24 +0200 Subject: [PATCH 06/12] revert local substrate dependency patch --- runtime/westend/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/westend/src/lib.rs b/runtime/westend/src/lib.rs index 683727edf4fd..0d739b6ed026 100644 --- a/runtime/westend/src/lib.rs +++ b/runtime/westend/src/lib.rs @@ -1201,7 +1201,7 @@ pub type Executive = frame_executive::Executive< StakingMigrationV11OldPallet, >, pallet_nomination_pools::migration::v3::MigrateToV3, - pallet_staking::migrations::v11::MigrateToV11, + pallet_staking::migrations::v12::MigrateToV12, ), >; /// The payload being signed in transactions. From 97cd189203ff423fe13bf0472c96fbcc41c002bc Mon Sep 17 00:00:00 2001 From: Ankan Anurag Date: Wed, 21 Sep 2022 13:52:47 +0200 Subject: [PATCH 07/12] update substrate dependencies --- Cargo.lock | 344 ++++++++++++++++++++++++++--------------------------- 1 file changed, 172 insertions(+), 172 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d1cf333079aa..16171c534b4a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -429,7 +429,7 @@ dependencies = [ [[package]] name = "beefy-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "async-trait", "beefy-primitives", @@ -465,7 +465,7 @@ dependencies = [ [[package]] name = "beefy-gadget-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "beefy-gadget", "beefy-primitives", @@ -485,7 +485,7 @@ dependencies = [ [[package]] name = "beefy-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "beefy-primitives", "sp-api", @@ -494,7 +494,7 @@ dependencies = [ [[package]] name = "beefy-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "parity-scale-codec", "scale-info", @@ -1989,7 +1989,7 @@ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "parity-scale-codec", ] @@ -2007,7 +2007,7 @@ dependencies = [ [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "frame-support", "frame-system", @@ -2030,7 +2030,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "Inflector", "chrono", @@ -2081,7 +2081,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2092,7 +2092,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2108,7 +2108,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "frame-support", "frame-system", @@ -2137,7 +2137,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "bitflags", "frame-metadata", @@ -2169,7 +2169,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "Inflector", "cfg-expr", @@ -2183,7 +2183,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -2195,7 +2195,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "proc-macro2", "quote", @@ -2205,7 +2205,7 @@ dependencies = [ [[package]] name = "frame-support-test" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "frame-support", "frame-support-test-pallet", @@ -2228,7 +2228,7 @@ dependencies = [ [[package]] name = "frame-support-test-pallet" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "frame-support", "frame-system", @@ -2239,7 +2239,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "frame-support", "log", @@ -2257,7 +2257,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "frame-benchmarking", "frame-support", @@ -2272,7 +2272,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "parity-scale-codec", "sp-api", @@ -2281,7 +2281,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "frame-support", "parity-scale-codec", @@ -2464,7 +2464,7 @@ dependencies = [ [[package]] name = "generate-bags" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "chrono", "frame-election-provider-support", @@ -4822,7 +4822,7 @@ checksum = "20448fd678ec04e6ea15bbe0476874af65e98a01515d667aa49f1434dc44ebf4" [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "frame-benchmarking", "frame-support", @@ -4836,7 +4836,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "frame-support", "frame-system", @@ -4852,7 +4852,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "frame-support", "frame-system", @@ -4867,7 +4867,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "frame-benchmarking", "frame-support", @@ -4891,7 +4891,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -4911,7 +4911,7 @@ dependencies = [ [[package]] name = "pallet-bags-list-remote-tests" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "frame-election-provider-support", "frame-support", @@ -4930,7 +4930,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "frame-benchmarking", "frame-support", @@ -4945,7 +4945,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "beefy-primitives", "frame-support", @@ -4961,7 +4961,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "beefy-merkle-tree", "beefy-primitives", @@ -4984,7 +4984,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "frame-benchmarking", "frame-support", @@ -5002,7 +5002,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "frame-benchmarking", "frame-support", @@ -5021,7 +5021,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "frame-benchmarking", "frame-support", @@ -5038,7 +5038,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "frame-benchmarking", "frame-support", @@ -5054,7 +5054,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5078,7 +5078,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5091,7 +5091,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "frame-benchmarking", "frame-support", @@ -5109,7 +5109,7 @@ dependencies = [ [[package]] name = "pallet-gilt" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "frame-benchmarking", "frame-support", @@ -5124,7 +5124,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "frame-benchmarking", "frame-support", @@ -5147,7 +5147,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5163,7 +5163,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "frame-benchmarking", "frame-support", @@ -5183,7 +5183,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "frame-benchmarking", "frame-support", @@ -5200,7 +5200,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "frame-benchmarking", "frame-support", @@ -5217,7 +5217,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -5235,7 +5235,7 @@ dependencies = [ [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -5250,7 +5250,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "frame-benchmarking", "frame-support", @@ -5265,7 +5265,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "frame-support", "frame-system", @@ -5282,7 +5282,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5302,7 +5302,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "parity-scale-codec", "sp-api", @@ -5312,7 +5312,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "frame-support", "frame-system", @@ -5329,7 +5329,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5352,7 +5352,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "frame-benchmarking", "frame-support", @@ -5368,7 +5368,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "frame-benchmarking", "frame-support", @@ -5383,7 +5383,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "frame-benchmarking", "frame-support", @@ -5398,7 +5398,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "frame-benchmarking", "frame-support", @@ -5414,7 +5414,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "frame-support", "frame-system", @@ -5435,7 +5435,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "frame-benchmarking", "frame-support", @@ -5451,7 +5451,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "frame-support", "frame-system", @@ -5465,7 +5465,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5488,7 +5488,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -5499,7 +5499,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "log", "sp-arithmetic", @@ -5508,7 +5508,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "frame-support", "frame-system", @@ -5522,7 +5522,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "frame-benchmarking", "frame-support", @@ -5540,7 +5540,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "frame-benchmarking", "frame-support", @@ -5559,7 +5559,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "frame-support", "frame-system", @@ -5575,7 +5575,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -5590,7 +5590,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -5601,7 +5601,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "frame-benchmarking", "frame-support", @@ -5618,7 +5618,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "frame-benchmarking", "frame-support", @@ -5634,7 +5634,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "frame-benchmarking", "frame-support", @@ -8164,7 +8164,7 @@ dependencies = [ [[package]] name = "remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "env_logger 0.9.0", "jsonrpsee", @@ -8512,7 +8512,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "log", "sp-core", @@ -8523,7 +8523,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "async-trait", "futures", @@ -8550,7 +8550,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "futures", "futures-timer", @@ -8573,7 +8573,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -8589,7 +8589,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "impl-trait-for-tuples", "memmap2 0.5.0", @@ -8606,7 +8606,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -8617,7 +8617,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "chrono", "clap", @@ -8656,7 +8656,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "fnv", "futures", @@ -8684,7 +8684,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "hash-db", "kvdb", @@ -8709,7 +8709,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "async-trait", "futures", @@ -8733,7 +8733,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "async-trait", "fork-tree", @@ -8775,7 +8775,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "futures", "jsonrpsee", @@ -8797,7 +8797,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "fork-tree", "parity-scale-codec", @@ -8810,7 +8810,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "async-trait", "futures", @@ -8835,7 +8835,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "lazy_static", "lru 0.7.8", @@ -8862,7 +8862,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "environmental", "parity-scale-codec", @@ -8878,7 +8878,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "log", "parity-scale-codec", @@ -8893,7 +8893,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "cfg-if 1.0.0", "libc", @@ -8913,7 +8913,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "ahash", "async-trait", @@ -8954,7 +8954,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "finality-grandpa", "futures", @@ -8975,7 +8975,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "ansi_term", "futures", @@ -8992,7 +8992,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "async-trait", "hex", @@ -9007,7 +9007,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "async-trait", "asynchronous-codec", @@ -9054,7 +9054,7 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "cid", "futures", @@ -9074,7 +9074,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "async-trait", "bitflags", @@ -9097,7 +9097,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "ahash", "futures", @@ -9115,7 +9115,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "futures", "hex", @@ -9136,7 +9136,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "fork-tree", "futures", @@ -9164,7 +9164,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "bytes", "fnv", @@ -9194,7 +9194,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "futures", "libp2p", @@ -9207,7 +9207,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -9216,7 +9216,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "futures", "hash-db", @@ -9246,7 +9246,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "futures", "jsonrpsee", @@ -9269,7 +9269,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "futures", "jsonrpsee", @@ -9282,7 +9282,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "async-trait", "directories", @@ -9351,7 +9351,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "log", "parity-scale-codec", @@ -9365,7 +9365,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -9384,7 +9384,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "futures", "libc", @@ -9403,7 +9403,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "chrono", "futures", @@ -9421,7 +9421,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "ansi_term", "atty", @@ -9452,7 +9452,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -9463,7 +9463,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "futures", "futures-timer", @@ -9489,7 +9489,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "futures", "log", @@ -9502,7 +9502,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "futures", "futures-timer", @@ -9988,7 +9988,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "hash-db", "log", @@ -10006,7 +10006,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "blake2", "proc-macro-crate", @@ -10018,7 +10018,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "parity-scale-codec", "scale-info", @@ -10031,7 +10031,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "integer-sqrt", "num-traits", @@ -10046,7 +10046,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "parity-scale-codec", "scale-info", @@ -10059,7 +10059,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "async-trait", "parity-scale-codec", @@ -10071,7 +10071,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "parity-scale-codec", "sp-api", @@ -10083,7 +10083,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "futures", "log", @@ -10101,7 +10101,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "async-trait", "futures", @@ -10120,7 +10120,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "async-trait", "merlin", @@ -10143,7 +10143,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "parity-scale-codec", "scale-info", @@ -10157,7 +10157,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "parity-scale-codec", "scale-info", @@ -10170,7 +10170,7 @@ dependencies = [ [[package]] name = "sp-core" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "base58", "bitflags", @@ -10216,7 +10216,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "blake2", "byteorder", @@ -10230,7 +10230,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "proc-macro2", "quote", @@ -10241,7 +10241,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -10250,7 +10250,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "proc-macro2", "quote", @@ -10260,7 +10260,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "environmental", "parity-scale-codec", @@ -10271,7 +10271,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "finality-grandpa", "log", @@ -10289,7 +10289,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -10303,7 +10303,7 @@ dependencies = [ [[package]] name = "sp-io" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "bytes", "futures", @@ -10329,7 +10329,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "lazy_static", "sp-core", @@ -10340,7 +10340,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "async-trait", "futures", @@ -10357,7 +10357,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "thiserror", "zstd", @@ -10366,7 +10366,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "log", "parity-scale-codec", @@ -10381,7 +10381,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "parity-scale-codec", "scale-info", @@ -10395,7 +10395,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "sp-api", "sp-core", @@ -10405,7 +10405,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "backtrace", "lazy_static", @@ -10415,7 +10415,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "rustc-hash", "serde", @@ -10425,7 +10425,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "either", "hash256-std-hasher", @@ -10448,7 +10448,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -10466,7 +10466,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "Inflector", "proc-macro-crate", @@ -10478,7 +10478,7 @@ dependencies = [ [[package]] name = "sp-sandbox" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "log", "parity-scale-codec", @@ -10492,7 +10492,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "parity-scale-codec", "scale-info", @@ -10506,7 +10506,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "parity-scale-codec", "scale-info", @@ -10517,7 +10517,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "hash-db", "log", @@ -10539,12 +10539,12 @@ dependencies = [ [[package]] name = "sp-std" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" [[package]] name = "sp-storage" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "impl-serde", "parity-scale-codec", @@ -10557,7 +10557,7 @@ dependencies = [ [[package]] name = "sp-tasks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "log", "sp-core", @@ -10570,7 +10570,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "async-trait", "futures-timer", @@ -10586,7 +10586,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "parity-scale-codec", "sp-std", @@ -10598,7 +10598,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "sp-api", "sp-runtime", @@ -10607,7 +10607,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "async-trait", "log", @@ -10623,7 +10623,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "ahash", "hash-db", @@ -10646,7 +10646,7 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "impl-serde", "parity-scale-codec", @@ -10663,7 +10663,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -10674,7 +10674,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "impl-trait-for-tuples", "log", @@ -10687,7 +10687,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -10902,7 +10902,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "platforms", ] @@ -10910,7 +10910,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -10931,7 +10931,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "futures-util", "hyper", @@ -10944,7 +10944,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "jsonrpsee", "log", @@ -10965,7 +10965,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "async-trait", "futures", @@ -10991,7 +10991,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "futures", "substrate-test-utils-derive", @@ -11001,7 +11001,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -11012,7 +11012,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "ansi_term", "build-helper", @@ -11726,7 +11726,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "clap", "frame-try-runtime", From 6682d281c32e4a65fb8b9138662c0e37f1060577 Mon Sep 17 00:00:00 2001 From: Ankan Anurag Date: Wed, 21 Sep 2022 14:08:11 +0200 Subject: [PATCH 08/12] update cargo lock --- Cargo.lock | 30 ++++++++++++++++++------------ 1 file changed, 18 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 16171c534b4a..ee6c36e870df 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -118,6 +118,12 @@ version = "1.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "510c76ecefdceada737ea728f4f9a84bd2e1ef29f1ba555e560940fe279954de" +[[package]] +name = "array-bytes" +version = "4.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6a913633b0c922e6b745072795f50d90ebea78ba31a57e2ac8c2fc7b50950949" + [[package]] name = "arrayref" version = "0.3.6" @@ -431,12 +437,12 @@ name = "beefy-gadget" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ + "array-bytes", "async-trait", "beefy-primitives", "fnv", "futures", "futures-timer", - "hex", "log", "parity-scale-codec", "parking_lot 0.12.1", @@ -2033,6 +2039,7 @@ version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "Inflector", + "array-bytes", "chrono", "clap", "comfy-table", @@ -2042,7 +2049,6 @@ dependencies = [ "gethostname", "handlebars", "hash-db", - "hex", "itertools", "kvdb", "lazy_static", @@ -4963,11 +4969,11 @@ name = "pallet-beefy-mmr" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ + "array-bytes", "beefy-merkle-tree", "beefy-primitives", "frame-support", "frame-system", - "hex", "log", "pallet-beefy", "pallet-mmr", @@ -8619,11 +8625,11 @@ name = "sc-cli" version = "0.10.0-dev" source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ + "array-bytes", "chrono", "clap", "fdlimit", "futures", - "hex", "libp2p", "log", "names", @@ -8916,13 +8922,13 @@ version = "0.10.0-dev" source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ "ahash", + "array-bytes", "async-trait", "dyn-clone", "finality-grandpa", "fork-tree", "futures", "futures-timer", - "hex", "log", "parity-scale-codec", "parking_lot 0.12.1", @@ -8994,8 +9000,8 @@ name = "sc-keystore" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ + "array-bytes", "async-trait", - "hex", "parking_lot 0.12.1", "serde_json", "sp-application-crypto", @@ -9009,6 +9015,7 @@ name = "sc-network" version = "0.10.0-dev" source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ + "array-bytes", "async-trait", "asynchronous-codec", "bitflags", @@ -9019,7 +9026,6 @@ dependencies = [ "fork-tree", "futures", "futures-timer", - "hex", "ip_network", "libp2p", "linked-hash-map", @@ -9117,8 +9123,8 @@ name = "sc-network-light" version = "0.10.0-dev" source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ + "array-bytes", "futures", - "hex", "libp2p", "log", "parity-scale-codec", @@ -9138,9 +9144,9 @@ name = "sc-network-sync" version = "0.10.0-dev" source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ + "array-bytes", "fork-tree", "futures", - "hex", "libp2p", "log", "lru 0.7.8", @@ -9166,11 +9172,11 @@ name = "sc-offchain" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ + "array-bytes", "bytes", "fnv", "futures", "futures-timer", - "hex", "hyper", "hyper-rustls", "libp2p", @@ -10172,6 +10178,7 @@ name = "sp-core" version = "6.0.0" source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ + "array-bytes", "base58", "bitflags", "blake2", @@ -10181,7 +10188,6 @@ dependencies = [ "futures", "hash-db", "hash256-std-hasher", - "hex", "impl-serde", "lazy_static", "libsecp256k1", @@ -10967,9 +10973,9 @@ name = "substrate-test-client" version = "2.0.1" source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" dependencies = [ + "array-bytes", "async-trait", "futures", - "hex", "parity-scale-codec", "sc-client-api", "sc-client-db", From 40f92e1f1f8d4ead89720c582cd4c207b5b7f729 Mon Sep 17 00:00:00 2001 From: Ankan Anurag Date: Wed, 21 Sep 2022 14:18:51 +0200 Subject: [PATCH 09/12] update to latest substrate --- Cargo.lock | 422 +++++++++++++++++++++++++++-------------------------- 1 file changed, 212 insertions(+), 210 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ee6c36e870df..dc13c9fe387c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -435,7 +435,7 @@ dependencies = [ [[package]] name = "beefy-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "array-bytes", "async-trait", @@ -471,7 +471,7 @@ dependencies = [ [[package]] name = "beefy-gadget-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "beefy-gadget", "beefy-primitives", @@ -491,7 +491,7 @@ dependencies = [ [[package]] name = "beefy-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "beefy-primitives", "sp-api", @@ -500,7 +500,7 @@ dependencies = [ [[package]] name = "beefy-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "parity-scale-codec", "scale-info", @@ -1072,19 +1072,21 @@ dependencies = [ [[package]] name = "cranelift-bforest" -version = "0.87.1" +version = "0.88.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9f91425bea5a5ac6d76b788477064944a7e21f0e240fd93f6f368a774a3efdd1" +checksum = "b27bbd3e6c422cf6282b047bcdd51ecd9ca9f3497a3be0132ffa08e509b824b0" dependencies = [ "cranelift-entity", ] [[package]] name = "cranelift-codegen" -version = "0.87.1" +version = "0.88.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b83b4bbf7bc96db77b7b5b5e41fafc4001536e9f0cbfd702ed7d4d8f848dc06" +checksum = "872f5d4557a411b087bd731df6347c142ae1004e6467a144a7e33662e5715a01" dependencies = [ + "arrayvec 0.7.2", + "bumpalo", "cranelift-bforest", "cranelift-codegen-meta", "cranelift-codegen-shared", @@ -1099,33 +1101,33 @@ dependencies = [ [[package]] name = "cranelift-codegen-meta" -version = "0.87.1" +version = "0.88.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "da02e8fff048c381b313a3dfef4deb2343976fb6d7acc8e7d9c86d4c93e3fa06" +checksum = "21b49fdebb29c62c1fc4da1eeebd609e9d530ecde24a9876def546275f73a244" dependencies = [ "cranelift-codegen-shared", ] [[package]] name = "cranelift-codegen-shared" -version = "0.87.1" +version = "0.88.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9abc2a06e8fc29e36660ebbc9e2503e18a051057072acbb1e75e7f7cf19cb95e" +checksum = "5fc0c091e2db055d4d7f6b7cec2d2ead286bcfaea3357c6a52c2a2613a8cb5ac" [[package]] name = "cranelift-entity" -version = "0.87.1" +version = "0.88.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aeced7874890fc25d85cacc5e626c4d67931c7c25aad1c2ad521684744c1ff5c" +checksum = "354a9597be87996c9b278655e68b8447f65dd907256855ad773864edee8d985c" dependencies = [ "serde", ] [[package]] name = "cranelift-frontend" -version = "0.87.1" +version = "0.88.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fc1d301ccad6fce05d9c9793d433d225fafdd57661b98d268d8d162e9291ff2e" +checksum = "0cd8dd3fb8b82c772f4172e87ae1677b971676fffa7c4e3398e3047e650a266b" dependencies = [ "cranelift-codegen", "log", @@ -1135,15 +1137,15 @@ dependencies = [ [[package]] name = "cranelift-isle" -version = "0.87.1" +version = "0.88.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bd7b100db19320848986b4df1da19501dbddeb706a799f502222f72f889b0fab" +checksum = "b82527802b1f7d8da288adc28f1dc97ea52943f5871c041213f7b5035ac698a7" [[package]] name = "cranelift-native" -version = "0.87.1" +version = "0.88.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7be18d8b976cddc822e52343f328b7593d26dd2f1aeadd90da071596a210d524" +checksum = "c30ba8b910f1be023af0c39109cb28a8809734942a6b3eecbf2de8993052ea5e" dependencies = [ "cranelift-codegen", "libc", @@ -1152,9 +1154,9 @@ dependencies = [ [[package]] name = "cranelift-wasm" -version = "0.87.1" +version = "0.88.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2f9e48bb632a2e189b38a9fa89fa5a6eea687a5a4c613bbef7c2b7522c3ad0e0" +checksum = "776a8916d201894aca9637a20814f1e11abc62acd5cfbe0b4eb2e63922756971" dependencies = [ "cranelift-codegen", "cranelift-entity", @@ -1995,7 +1997,7 @@ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "parity-scale-codec", ] @@ -2013,7 +2015,7 @@ dependencies = [ [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-support", "frame-system", @@ -2036,7 +2038,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "Inflector", "array-bytes", @@ -2087,7 +2089,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2098,7 +2100,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2114,7 +2116,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-support", "frame-system", @@ -2143,7 +2145,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "bitflags", "frame-metadata", @@ -2175,7 +2177,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "Inflector", "cfg-expr", @@ -2189,7 +2191,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -2201,7 +2203,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "proc-macro2", "quote", @@ -2211,7 +2213,7 @@ dependencies = [ [[package]] name = "frame-support-test" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-support", "frame-support-test-pallet", @@ -2234,7 +2236,7 @@ dependencies = [ [[package]] name = "frame-support-test-pallet" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-support", "frame-system", @@ -2245,7 +2247,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-support", "log", @@ -2263,7 +2265,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-benchmarking", "frame-support", @@ -2278,7 +2280,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "parity-scale-codec", "sp-api", @@ -2287,7 +2289,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-support", "parity-scale-codec", @@ -2470,7 +2472,7 @@ dependencies = [ [[package]] name = "generate-bags" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "chrono", "frame-election-provider-support", @@ -4828,7 +4830,7 @@ checksum = "20448fd678ec04e6ea15bbe0476874af65e98a01515d667aa49f1434dc44ebf4" [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-benchmarking", "frame-support", @@ -4842,7 +4844,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-support", "frame-system", @@ -4858,7 +4860,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-support", "frame-system", @@ -4873,7 +4875,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-benchmarking", "frame-support", @@ -4897,7 +4899,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -4917,7 +4919,7 @@ dependencies = [ [[package]] name = "pallet-bags-list-remote-tests" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-election-provider-support", "frame-support", @@ -4936,7 +4938,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-benchmarking", "frame-support", @@ -4951,7 +4953,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "beefy-primitives", "frame-support", @@ -4967,7 +4969,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "array-bytes", "beefy-merkle-tree", @@ -4990,7 +4992,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-benchmarking", "frame-support", @@ -5008,7 +5010,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-benchmarking", "frame-support", @@ -5027,7 +5029,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-benchmarking", "frame-support", @@ -5044,7 +5046,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-benchmarking", "frame-support", @@ -5060,7 +5062,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5084,7 +5086,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5097,7 +5099,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-benchmarking", "frame-support", @@ -5115,7 +5117,7 @@ dependencies = [ [[package]] name = "pallet-gilt" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-benchmarking", "frame-support", @@ -5130,7 +5132,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-benchmarking", "frame-support", @@ -5153,7 +5155,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5169,7 +5171,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-benchmarking", "frame-support", @@ -5189,7 +5191,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-benchmarking", "frame-support", @@ -5206,7 +5208,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-benchmarking", "frame-support", @@ -5223,7 +5225,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -5241,7 +5243,7 @@ dependencies = [ [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -5256,7 +5258,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-benchmarking", "frame-support", @@ -5271,7 +5273,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-support", "frame-system", @@ -5288,7 +5290,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5308,7 +5310,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "parity-scale-codec", "sp-api", @@ -5318,7 +5320,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-support", "frame-system", @@ -5335,7 +5337,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5358,7 +5360,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-benchmarking", "frame-support", @@ -5374,7 +5376,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-benchmarking", "frame-support", @@ -5389,7 +5391,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-benchmarking", "frame-support", @@ -5404,7 +5406,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-benchmarking", "frame-support", @@ -5420,7 +5422,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-support", "frame-system", @@ -5441,7 +5443,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-benchmarking", "frame-support", @@ -5457,7 +5459,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-support", "frame-system", @@ -5471,7 +5473,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5494,7 +5496,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -5505,7 +5507,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "log", "sp-arithmetic", @@ -5514,7 +5516,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-support", "frame-system", @@ -5528,7 +5530,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-benchmarking", "frame-support", @@ -5546,7 +5548,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-benchmarking", "frame-support", @@ -5565,7 +5567,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-support", "frame-system", @@ -5581,7 +5583,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -5596,7 +5598,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -5607,7 +5609,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-benchmarking", "frame-support", @@ -5624,7 +5626,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-benchmarking", "frame-support", @@ -5640,7 +5642,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-benchmarking", "frame-support", @@ -8170,7 +8172,7 @@ dependencies = [ [[package]] name = "remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "env_logger 0.9.0", "jsonrpsee", @@ -8518,7 +8520,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "log", "sp-core", @@ -8529,7 +8531,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "async-trait", "futures", @@ -8556,7 +8558,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "futures", "futures-timer", @@ -8579,7 +8581,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -8595,7 +8597,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "impl-trait-for-tuples", "memmap2 0.5.0", @@ -8612,7 +8614,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -8623,7 +8625,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "array-bytes", "chrono", @@ -8662,7 +8664,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "fnv", "futures", @@ -8690,7 +8692,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "hash-db", "kvdb", @@ -8715,7 +8717,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "async-trait", "futures", @@ -8739,7 +8741,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "async-trait", "fork-tree", @@ -8781,7 +8783,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "futures", "jsonrpsee", @@ -8803,7 +8805,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "fork-tree", "parity-scale-codec", @@ -8816,7 +8818,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "async-trait", "futures", @@ -8841,7 +8843,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "lazy_static", "lru 0.7.8", @@ -8868,7 +8870,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "environmental", "parity-scale-codec", @@ -8884,7 +8886,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "log", "parity-scale-codec", @@ -8899,7 +8901,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "cfg-if 1.0.0", "libc", @@ -8919,7 +8921,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "ahash", "array-bytes", @@ -8960,7 +8962,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "finality-grandpa", "futures", @@ -8981,7 +8983,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "ansi_term", "futures", @@ -8998,7 +9000,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "array-bytes", "async-trait", @@ -9013,7 +9015,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "array-bytes", "async-trait", @@ -9060,7 +9062,7 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "cid", "futures", @@ -9080,7 +9082,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "async-trait", "bitflags", @@ -9103,7 +9105,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "ahash", "futures", @@ -9121,7 +9123,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "array-bytes", "futures", @@ -9142,7 +9144,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "array-bytes", "fork-tree", @@ -9170,7 +9172,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "array-bytes", "bytes", @@ -9200,7 +9202,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "futures", "libp2p", @@ -9213,7 +9215,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -9222,7 +9224,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "futures", "hash-db", @@ -9252,7 +9254,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "futures", "jsonrpsee", @@ -9275,7 +9277,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "futures", "jsonrpsee", @@ -9288,7 +9290,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "async-trait", "directories", @@ -9357,7 +9359,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "log", "parity-scale-codec", @@ -9371,7 +9373,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -9390,7 +9392,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "futures", "libc", @@ -9409,7 +9411,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "chrono", "futures", @@ -9427,7 +9429,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "ansi_term", "atty", @@ -9458,7 +9460,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -9469,7 +9471,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "futures", "futures-timer", @@ -9495,7 +9497,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "futures", "log", @@ -9508,7 +9510,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "futures", "futures-timer", @@ -9994,7 +9996,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "hash-db", "log", @@ -10012,7 +10014,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "blake2", "proc-macro-crate", @@ -10024,7 +10026,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "parity-scale-codec", "scale-info", @@ -10037,7 +10039,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "integer-sqrt", "num-traits", @@ -10052,7 +10054,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "parity-scale-codec", "scale-info", @@ -10065,7 +10067,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "async-trait", "parity-scale-codec", @@ -10077,7 +10079,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "parity-scale-codec", "sp-api", @@ -10089,7 +10091,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "futures", "log", @@ -10107,7 +10109,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "async-trait", "futures", @@ -10126,7 +10128,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "async-trait", "merlin", @@ -10149,7 +10151,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "parity-scale-codec", "scale-info", @@ -10163,7 +10165,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "parity-scale-codec", "scale-info", @@ -10176,7 +10178,7 @@ dependencies = [ [[package]] name = "sp-core" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "array-bytes", "base58", @@ -10222,7 +10224,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "blake2", "byteorder", @@ -10236,7 +10238,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "proc-macro2", "quote", @@ -10247,7 +10249,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -10256,7 +10258,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "proc-macro2", "quote", @@ -10266,7 +10268,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "environmental", "parity-scale-codec", @@ -10277,7 +10279,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "finality-grandpa", "log", @@ -10295,7 +10297,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -10309,7 +10311,7 @@ dependencies = [ [[package]] name = "sp-io" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "bytes", "futures", @@ -10335,7 +10337,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "lazy_static", "sp-core", @@ -10346,7 +10348,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "async-trait", "futures", @@ -10363,7 +10365,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "thiserror", "zstd", @@ -10372,7 +10374,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "log", "parity-scale-codec", @@ -10387,7 +10389,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "parity-scale-codec", "scale-info", @@ -10401,7 +10403,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "sp-api", "sp-core", @@ -10411,7 +10413,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "backtrace", "lazy_static", @@ -10421,7 +10423,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "rustc-hash", "serde", @@ -10431,7 +10433,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "either", "hash256-std-hasher", @@ -10454,7 +10456,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -10472,7 +10474,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "Inflector", "proc-macro-crate", @@ -10484,7 +10486,7 @@ dependencies = [ [[package]] name = "sp-sandbox" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "log", "parity-scale-codec", @@ -10498,7 +10500,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "parity-scale-codec", "scale-info", @@ -10512,7 +10514,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "parity-scale-codec", "scale-info", @@ -10523,7 +10525,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "hash-db", "log", @@ -10545,12 +10547,12 @@ dependencies = [ [[package]] name = "sp-std" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" [[package]] name = "sp-storage" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "impl-serde", "parity-scale-codec", @@ -10563,7 +10565,7 @@ dependencies = [ [[package]] name = "sp-tasks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "log", "sp-core", @@ -10576,7 +10578,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "async-trait", "futures-timer", @@ -10592,7 +10594,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "parity-scale-codec", "sp-std", @@ -10604,7 +10606,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "sp-api", "sp-runtime", @@ -10613,7 +10615,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "async-trait", "log", @@ -10629,7 +10631,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "ahash", "hash-db", @@ -10652,7 +10654,7 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "impl-serde", "parity-scale-codec", @@ -10669,7 +10671,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -10680,7 +10682,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "impl-trait-for-tuples", "log", @@ -10693,7 +10695,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -10908,7 +10910,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "platforms", ] @@ -10916,7 +10918,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -10937,7 +10939,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "futures-util", "hyper", @@ -10950,7 +10952,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "jsonrpsee", "log", @@ -10971,7 +10973,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "array-bytes", "async-trait", @@ -10997,7 +10999,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "futures", "substrate-test-utils-derive", @@ -11007,7 +11009,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -11018,7 +11020,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "ansi_term", "build-helper", @@ -11732,7 +11734,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#4e53bdc85f240162e554bb2b22461822ef38af76" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "clap", "frame-try-runtime", @@ -12156,18 +12158,18 @@ dependencies = [ [[package]] name = "wasmparser" -version = "0.88.0" +version = "0.89.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fb8cf7dd82407fe68161bedcd57fde15596f32ebf6e9b3bdbf3ae1da20e38e5e" +checksum = "ab5d3e08b13876f96dd55608d03cd4883a0545884932d5adf11925876c96daef" dependencies = [ "indexmap", ] [[package]] name = "wasmtime" -version = "0.40.1" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a020a3f6587fa7a7d98a021156177735ebb07212a6239a85ab5f14b2f728508f" +checksum = "8a10dc9784d8c3a33c970e3939180424955f08af2e7f20368ec02685a0e8f065" dependencies = [ "anyhow", "bincode", @@ -12193,18 +12195,18 @@ dependencies = [ [[package]] name = "wasmtime-asm-macros" -version = "0.40.1" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fed4ada1fdd4d9a2aa37be652abcc31ae3188ad0efcefb4571ef4f785be2d777" +checksum = "ee4dbdc6daf68528cad1275ac91e3f51848ce9824385facc94c759f529decdf8" dependencies = [ "cfg-if 1.0.0", ] [[package]] name = "wasmtime-cache" -version = "0.40.1" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d96a03a5732ef39b83943d9d72de8ac2d58623d3bfaaea4d9a92aea5fcd9acf5" +checksum = "9f507f3fa1ee1b2f9a83644e2514242b1dfe580782c0eb042f1ef70255bc4ffe" dependencies = [ "anyhow", "base64", @@ -12222,9 +12224,9 @@ dependencies = [ [[package]] name = "wasmtime-cranelift" -version = "0.40.1" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1fc59c28fe895112db09e262fb9c483f9e7b82c78a82a6ded69567ccc0e9795b" +checksum = "8f03cf79d982fc68e94ba0bea6a300a3b94621c4eb9705eece0a4f06b235a3b5" dependencies = [ "anyhow", "cranelift-codegen", @@ -12243,9 +12245,9 @@ dependencies = [ [[package]] name = "wasmtime-environ" -version = "0.40.1" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "11086e573d2635a45ac0d44697a8e4586e058cf1b190f76bea466ca2ec36c30a" +checksum = "5c587c62e91c5499df62012b87b88890d0eb470b2ffecc5964e9da967b70c77c" dependencies = [ "anyhow", "cranelift-entity", @@ -12262,9 +12264,9 @@ dependencies = [ [[package]] name = "wasmtime-jit" -version = "0.40.1" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d5444a78b74144718633f8642eccd7c4858f4c6f0c98ae6a3668998adf177ba2" +checksum = "047839b5dabeae5424a078c19b8cc897e5943a7fadc69e3d888b9c9a897666b3" dependencies = [ "addr2line", "anyhow", @@ -12287,9 +12289,9 @@ dependencies = [ [[package]] name = "wasmtime-jit-debug" -version = "0.40.1" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c2bf6a667d2a29b2b0ed42bcf7564f00c595d92c24acb4d241c7c4d950b1910c" +checksum = "b299569abf6f99b7b8e020afaf84a700e8636c6a42e242069267322cd5818235" dependencies = [ "object 0.29.0", "once_cell", @@ -12298,9 +12300,9 @@ dependencies = [ [[package]] name = "wasmtime-runtime" -version = "0.40.1" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ee064ce7b563cc201cdf3bb1cc4b233f386d8c57a96e55f4c4afe6103f4bd6a1" +checksum = "ae79e0515160bd5abee5df50a16c4eb8db9f71b530fc988ae1d9ce34dcb8dd01" dependencies = [ "anyhow", "cc", @@ -12323,9 +12325,9 @@ dependencies = [ [[package]] name = "wasmtime-types" -version = "0.40.1" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "01e104bd9e625181d53ead85910bbc0863aa5f0c6ef96836fe9a5cc65da11b69" +checksum = "790cf43ee8e2d5dad1780af30f00d7a972b74725fb1e4f90c28d62733819b185" dependencies = [ "cranelift-entity", "serde", From b43630771fa2dca210b78c9ea13bb4b297016faf Mon Sep 17 00:00:00 2001 From: kianenigma Date: Wed, 21 Sep 2022 14:33:08 +0000 Subject: [PATCH 10/12] revert all changes to Cargo.lock --- Cargo.lock | 452 ++++++++++++++++++++++++++--------------------------- 1 file changed, 222 insertions(+), 230 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index dc13c9fe387c..d1cf333079aa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -118,12 +118,6 @@ version = "1.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "510c76ecefdceada737ea728f4f9a84bd2e1ef29f1ba555e560940fe279954de" -[[package]] -name = "array-bytes" -version = "4.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6a913633b0c922e6b745072795f50d90ebea78ba31a57e2ac8c2fc7b50950949" - [[package]] name = "arrayref" version = "0.3.6" @@ -435,14 +429,14 @@ dependencies = [ [[package]] name = "beefy-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ - "array-bytes", "async-trait", "beefy-primitives", "fnv", "futures", "futures-timer", + "hex", "log", "parity-scale-codec", "parking_lot 0.12.1", @@ -471,7 +465,7 @@ dependencies = [ [[package]] name = "beefy-gadget-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "beefy-gadget", "beefy-primitives", @@ -491,7 +485,7 @@ dependencies = [ [[package]] name = "beefy-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "beefy-primitives", "sp-api", @@ -500,7 +494,7 @@ dependencies = [ [[package]] name = "beefy-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "parity-scale-codec", "scale-info", @@ -1072,21 +1066,19 @@ dependencies = [ [[package]] name = "cranelift-bforest" -version = "0.88.0" +version = "0.87.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b27bbd3e6c422cf6282b047bcdd51ecd9ca9f3497a3be0132ffa08e509b824b0" +checksum = "9f91425bea5a5ac6d76b788477064944a7e21f0e240fd93f6f368a774a3efdd1" dependencies = [ "cranelift-entity", ] [[package]] name = "cranelift-codegen" -version = "0.88.0" +version = "0.87.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "872f5d4557a411b087bd731df6347c142ae1004e6467a144a7e33662e5715a01" +checksum = "8b83b4bbf7bc96db77b7b5b5e41fafc4001536e9f0cbfd702ed7d4d8f848dc06" dependencies = [ - "arrayvec 0.7.2", - "bumpalo", "cranelift-bforest", "cranelift-codegen-meta", "cranelift-codegen-shared", @@ -1101,33 +1093,33 @@ dependencies = [ [[package]] name = "cranelift-codegen-meta" -version = "0.88.0" +version = "0.87.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "21b49fdebb29c62c1fc4da1eeebd609e9d530ecde24a9876def546275f73a244" +checksum = "da02e8fff048c381b313a3dfef4deb2343976fb6d7acc8e7d9c86d4c93e3fa06" dependencies = [ "cranelift-codegen-shared", ] [[package]] name = "cranelift-codegen-shared" -version = "0.88.0" +version = "0.87.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5fc0c091e2db055d4d7f6b7cec2d2ead286bcfaea3357c6a52c2a2613a8cb5ac" +checksum = "9abc2a06e8fc29e36660ebbc9e2503e18a051057072acbb1e75e7f7cf19cb95e" [[package]] name = "cranelift-entity" -version = "0.88.0" +version = "0.87.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "354a9597be87996c9b278655e68b8447f65dd907256855ad773864edee8d985c" +checksum = "aeced7874890fc25d85cacc5e626c4d67931c7c25aad1c2ad521684744c1ff5c" dependencies = [ "serde", ] [[package]] name = "cranelift-frontend" -version = "0.88.0" +version = "0.87.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0cd8dd3fb8b82c772f4172e87ae1677b971676fffa7c4e3398e3047e650a266b" +checksum = "fc1d301ccad6fce05d9c9793d433d225fafdd57661b98d268d8d162e9291ff2e" dependencies = [ "cranelift-codegen", "log", @@ -1137,15 +1129,15 @@ dependencies = [ [[package]] name = "cranelift-isle" -version = "0.88.0" +version = "0.87.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b82527802b1f7d8da288adc28f1dc97ea52943f5871c041213f7b5035ac698a7" +checksum = "bd7b100db19320848986b4df1da19501dbddeb706a799f502222f72f889b0fab" [[package]] name = "cranelift-native" -version = "0.88.0" +version = "0.87.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c30ba8b910f1be023af0c39109cb28a8809734942a6b3eecbf2de8993052ea5e" +checksum = "7be18d8b976cddc822e52343f328b7593d26dd2f1aeadd90da071596a210d524" dependencies = [ "cranelift-codegen", "libc", @@ -1154,9 +1146,9 @@ dependencies = [ [[package]] name = "cranelift-wasm" -version = "0.88.0" +version = "0.87.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "776a8916d201894aca9637a20814f1e11abc62acd5cfbe0b4eb2e63922756971" +checksum = "2f9e48bb632a2e189b38a9fa89fa5a6eea687a5a4c613bbef7c2b7522c3ad0e0" dependencies = [ "cranelift-codegen", "cranelift-entity", @@ -1997,7 +1989,7 @@ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "parity-scale-codec", ] @@ -2015,7 +2007,7 @@ dependencies = [ [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "frame-support", "frame-system", @@ -2038,10 +2030,9 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "Inflector", - "array-bytes", "chrono", "clap", "comfy-table", @@ -2051,6 +2042,7 @@ dependencies = [ "gethostname", "handlebars", "hash-db", + "hex", "itertools", "kvdb", "lazy_static", @@ -2089,7 +2081,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2100,7 +2092,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2116,7 +2108,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "frame-support", "frame-system", @@ -2145,7 +2137,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "bitflags", "frame-metadata", @@ -2177,7 +2169,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "Inflector", "cfg-expr", @@ -2191,7 +2183,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -2203,7 +2195,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "proc-macro2", "quote", @@ -2213,7 +2205,7 @@ dependencies = [ [[package]] name = "frame-support-test" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "frame-support", "frame-support-test-pallet", @@ -2236,7 +2228,7 @@ dependencies = [ [[package]] name = "frame-support-test-pallet" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "frame-support", "frame-system", @@ -2247,7 +2239,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "frame-support", "log", @@ -2265,7 +2257,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "frame-benchmarking", "frame-support", @@ -2280,7 +2272,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "parity-scale-codec", "sp-api", @@ -2289,7 +2281,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "frame-support", "parity-scale-codec", @@ -2472,7 +2464,7 @@ dependencies = [ [[package]] name = "generate-bags" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "chrono", "frame-election-provider-support", @@ -4830,7 +4822,7 @@ checksum = "20448fd678ec04e6ea15bbe0476874af65e98a01515d667aa49f1434dc44ebf4" [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "frame-benchmarking", "frame-support", @@ -4844,7 +4836,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "frame-support", "frame-system", @@ -4860,7 +4852,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "frame-support", "frame-system", @@ -4875,7 +4867,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "frame-benchmarking", "frame-support", @@ -4899,7 +4891,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -4919,7 +4911,7 @@ dependencies = [ [[package]] name = "pallet-bags-list-remote-tests" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "frame-election-provider-support", "frame-support", @@ -4938,7 +4930,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "frame-benchmarking", "frame-support", @@ -4953,7 +4945,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "beefy-primitives", "frame-support", @@ -4969,13 +4961,13 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ - "array-bytes", "beefy-merkle-tree", "beefy-primitives", "frame-support", "frame-system", + "hex", "log", "pallet-beefy", "pallet-mmr", @@ -4992,7 +4984,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "frame-benchmarking", "frame-support", @@ -5010,7 +5002,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "frame-benchmarking", "frame-support", @@ -5029,7 +5021,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "frame-benchmarking", "frame-support", @@ -5046,7 +5038,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "frame-benchmarking", "frame-support", @@ -5062,7 +5054,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5086,7 +5078,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5099,7 +5091,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "frame-benchmarking", "frame-support", @@ -5117,7 +5109,7 @@ dependencies = [ [[package]] name = "pallet-gilt" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "frame-benchmarking", "frame-support", @@ -5132,7 +5124,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "frame-benchmarking", "frame-support", @@ -5155,7 +5147,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5171,7 +5163,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "frame-benchmarking", "frame-support", @@ -5191,7 +5183,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "frame-benchmarking", "frame-support", @@ -5208,7 +5200,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "frame-benchmarking", "frame-support", @@ -5225,7 +5217,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -5243,7 +5235,7 @@ dependencies = [ [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -5258,7 +5250,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "frame-benchmarking", "frame-support", @@ -5273,7 +5265,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "frame-support", "frame-system", @@ -5290,7 +5282,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5310,7 +5302,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "parity-scale-codec", "sp-api", @@ -5320,7 +5312,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "frame-support", "frame-system", @@ -5337,7 +5329,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5360,7 +5352,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "frame-benchmarking", "frame-support", @@ -5376,7 +5368,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "frame-benchmarking", "frame-support", @@ -5391,7 +5383,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "frame-benchmarking", "frame-support", @@ -5406,7 +5398,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "frame-benchmarking", "frame-support", @@ -5422,7 +5414,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "frame-support", "frame-system", @@ -5443,7 +5435,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "frame-benchmarking", "frame-support", @@ -5459,7 +5451,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "frame-support", "frame-system", @@ -5473,7 +5465,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5496,7 +5488,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -5507,7 +5499,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "log", "sp-arithmetic", @@ -5516,7 +5508,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "frame-support", "frame-system", @@ -5530,7 +5522,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "frame-benchmarking", "frame-support", @@ -5548,7 +5540,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "frame-benchmarking", "frame-support", @@ -5567,7 +5559,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "frame-support", "frame-system", @@ -5583,7 +5575,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -5598,7 +5590,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -5609,7 +5601,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "frame-benchmarking", "frame-support", @@ -5626,7 +5618,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "frame-benchmarking", "frame-support", @@ -5642,7 +5634,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "frame-benchmarking", "frame-support", @@ -8172,7 +8164,7 @@ dependencies = [ [[package]] name = "remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "env_logger 0.9.0", "jsonrpsee", @@ -8520,7 +8512,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "log", "sp-core", @@ -8531,7 +8523,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "async-trait", "futures", @@ -8558,7 +8550,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "futures", "futures-timer", @@ -8581,7 +8573,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -8597,7 +8589,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "impl-trait-for-tuples", "memmap2 0.5.0", @@ -8614,7 +8606,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -8625,13 +8617,13 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ - "array-bytes", "chrono", "clap", "fdlimit", "futures", + "hex", "libp2p", "log", "names", @@ -8664,7 +8656,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "fnv", "futures", @@ -8692,7 +8684,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "hash-db", "kvdb", @@ -8717,7 +8709,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "async-trait", "futures", @@ -8741,7 +8733,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "async-trait", "fork-tree", @@ -8783,7 +8775,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "futures", "jsonrpsee", @@ -8805,7 +8797,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "fork-tree", "parity-scale-codec", @@ -8818,7 +8810,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "async-trait", "futures", @@ -8843,7 +8835,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "lazy_static", "lru 0.7.8", @@ -8870,7 +8862,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "environmental", "parity-scale-codec", @@ -8886,7 +8878,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "log", "parity-scale-codec", @@ -8901,7 +8893,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "cfg-if 1.0.0", "libc", @@ -8921,16 +8913,16 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "ahash", - "array-bytes", "async-trait", "dyn-clone", "finality-grandpa", "fork-tree", "futures", "futures-timer", + "hex", "log", "parity-scale-codec", "parking_lot 0.12.1", @@ -8962,7 +8954,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "finality-grandpa", "futures", @@ -8983,7 +8975,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "ansi_term", "futures", @@ -9000,10 +8992,10 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ - "array-bytes", "async-trait", + "hex", "parking_lot 0.12.1", "serde_json", "sp-application-crypto", @@ -9015,9 +9007,8 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ - "array-bytes", "async-trait", "asynchronous-codec", "bitflags", @@ -9028,6 +9019,7 @@ dependencies = [ "fork-tree", "futures", "futures-timer", + "hex", "ip_network", "libp2p", "linked-hash-map", @@ -9062,7 +9054,7 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "cid", "futures", @@ -9082,7 +9074,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "async-trait", "bitflags", @@ -9105,7 +9097,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "ahash", "futures", @@ -9123,10 +9115,10 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ - "array-bytes", "futures", + "hex", "libp2p", "log", "parity-scale-codec", @@ -9144,11 +9136,11 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ - "array-bytes", "fork-tree", "futures", + "hex", "libp2p", "log", "lru 0.7.8", @@ -9172,13 +9164,13 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ - "array-bytes", "bytes", "fnv", "futures", "futures-timer", + "hex", "hyper", "hyper-rustls", "libp2p", @@ -9202,7 +9194,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "futures", "libp2p", @@ -9215,7 +9207,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -9224,7 +9216,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "futures", "hash-db", @@ -9254,7 +9246,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "futures", "jsonrpsee", @@ -9277,7 +9269,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "futures", "jsonrpsee", @@ -9290,7 +9282,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "async-trait", "directories", @@ -9359,7 +9351,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "log", "parity-scale-codec", @@ -9373,7 +9365,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -9392,7 +9384,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "futures", "libc", @@ -9411,7 +9403,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "chrono", "futures", @@ -9429,7 +9421,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "ansi_term", "atty", @@ -9460,7 +9452,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -9471,7 +9463,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "futures", "futures-timer", @@ -9497,7 +9489,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "futures", "log", @@ -9510,7 +9502,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "futures", "futures-timer", @@ -9996,7 +9988,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "hash-db", "log", @@ -10014,7 +10006,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "blake2", "proc-macro-crate", @@ -10026,7 +10018,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "parity-scale-codec", "scale-info", @@ -10039,7 +10031,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "integer-sqrt", "num-traits", @@ -10054,7 +10046,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "parity-scale-codec", "scale-info", @@ -10067,7 +10059,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "async-trait", "parity-scale-codec", @@ -10079,7 +10071,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "parity-scale-codec", "sp-api", @@ -10091,7 +10083,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "futures", "log", @@ -10109,7 +10101,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "async-trait", "futures", @@ -10128,7 +10120,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "async-trait", "merlin", @@ -10151,7 +10143,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "parity-scale-codec", "scale-info", @@ -10165,7 +10157,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "parity-scale-codec", "scale-info", @@ -10178,9 +10170,8 @@ dependencies = [ [[package]] name = "sp-core" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ - "array-bytes", "base58", "bitflags", "blake2", @@ -10190,6 +10181,7 @@ dependencies = [ "futures", "hash-db", "hash256-std-hasher", + "hex", "impl-serde", "lazy_static", "libsecp256k1", @@ -10224,7 +10216,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "blake2", "byteorder", @@ -10238,7 +10230,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "proc-macro2", "quote", @@ -10249,7 +10241,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -10258,7 +10250,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "proc-macro2", "quote", @@ -10268,7 +10260,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "environmental", "parity-scale-codec", @@ -10279,7 +10271,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "finality-grandpa", "log", @@ -10297,7 +10289,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -10311,7 +10303,7 @@ dependencies = [ [[package]] name = "sp-io" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "bytes", "futures", @@ -10337,7 +10329,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "lazy_static", "sp-core", @@ -10348,7 +10340,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "async-trait", "futures", @@ -10365,7 +10357,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "thiserror", "zstd", @@ -10374,7 +10366,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "log", "parity-scale-codec", @@ -10389,7 +10381,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "parity-scale-codec", "scale-info", @@ -10403,7 +10395,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "sp-api", "sp-core", @@ -10413,7 +10405,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "backtrace", "lazy_static", @@ -10423,7 +10415,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "rustc-hash", "serde", @@ -10433,7 +10425,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "either", "hash256-std-hasher", @@ -10456,7 +10448,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -10474,7 +10466,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "Inflector", "proc-macro-crate", @@ -10486,7 +10478,7 @@ dependencies = [ [[package]] name = "sp-sandbox" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "log", "parity-scale-codec", @@ -10500,7 +10492,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "parity-scale-codec", "scale-info", @@ -10514,7 +10506,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "parity-scale-codec", "scale-info", @@ -10525,7 +10517,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "hash-db", "log", @@ -10547,12 +10539,12 @@ dependencies = [ [[package]] name = "sp-std" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" [[package]] name = "sp-storage" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "impl-serde", "parity-scale-codec", @@ -10565,7 +10557,7 @@ dependencies = [ [[package]] name = "sp-tasks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "log", "sp-core", @@ -10578,7 +10570,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "async-trait", "futures-timer", @@ -10594,7 +10586,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "parity-scale-codec", "sp-std", @@ -10606,7 +10598,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "sp-api", "sp-runtime", @@ -10615,7 +10607,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "async-trait", "log", @@ -10631,7 +10623,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "ahash", "hash-db", @@ -10654,7 +10646,7 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "impl-serde", "parity-scale-codec", @@ -10671,7 +10663,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -10682,7 +10674,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "impl-trait-for-tuples", "log", @@ -10695,7 +10687,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -10910,7 +10902,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "platforms", ] @@ -10918,7 +10910,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -10939,7 +10931,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "futures-util", "hyper", @@ -10952,7 +10944,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "jsonrpsee", "log", @@ -10973,11 +10965,11 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ - "array-bytes", "async-trait", "futures", + "hex", "parity-scale-codec", "sc-client-api", "sc-client-db", @@ -10999,7 +10991,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "futures", "substrate-test-utils-derive", @@ -11009,7 +11001,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -11020,7 +11012,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "ansi_term", "build-helper", @@ -11734,7 +11726,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" +source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" dependencies = [ "clap", "frame-try-runtime", @@ -12158,18 +12150,18 @@ dependencies = [ [[package]] name = "wasmparser" -version = "0.89.1" +version = "0.88.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ab5d3e08b13876f96dd55608d03cd4883a0545884932d5adf11925876c96daef" +checksum = "fb8cf7dd82407fe68161bedcd57fde15596f32ebf6e9b3bdbf3ae1da20e38e5e" dependencies = [ "indexmap", ] [[package]] name = "wasmtime" -version = "1.0.0" +version = "0.40.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8a10dc9784d8c3a33c970e3939180424955f08af2e7f20368ec02685a0e8f065" +checksum = "a020a3f6587fa7a7d98a021156177735ebb07212a6239a85ab5f14b2f728508f" dependencies = [ "anyhow", "bincode", @@ -12195,18 +12187,18 @@ dependencies = [ [[package]] name = "wasmtime-asm-macros" -version = "1.0.0" +version = "0.40.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ee4dbdc6daf68528cad1275ac91e3f51848ce9824385facc94c759f529decdf8" +checksum = "fed4ada1fdd4d9a2aa37be652abcc31ae3188ad0efcefb4571ef4f785be2d777" dependencies = [ "cfg-if 1.0.0", ] [[package]] name = "wasmtime-cache" -version = "1.0.0" +version = "0.40.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9f507f3fa1ee1b2f9a83644e2514242b1dfe580782c0eb042f1ef70255bc4ffe" +checksum = "d96a03a5732ef39b83943d9d72de8ac2d58623d3bfaaea4d9a92aea5fcd9acf5" dependencies = [ "anyhow", "base64", @@ -12224,9 +12216,9 @@ dependencies = [ [[package]] name = "wasmtime-cranelift" -version = "1.0.0" +version = "0.40.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f03cf79d982fc68e94ba0bea6a300a3b94621c4eb9705eece0a4f06b235a3b5" +checksum = "1fc59c28fe895112db09e262fb9c483f9e7b82c78a82a6ded69567ccc0e9795b" dependencies = [ "anyhow", "cranelift-codegen", @@ -12245,9 +12237,9 @@ dependencies = [ [[package]] name = "wasmtime-environ" -version = "1.0.0" +version = "0.40.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c587c62e91c5499df62012b87b88890d0eb470b2ffecc5964e9da967b70c77c" +checksum = "11086e573d2635a45ac0d44697a8e4586e058cf1b190f76bea466ca2ec36c30a" dependencies = [ "anyhow", "cranelift-entity", @@ -12264,9 +12256,9 @@ dependencies = [ [[package]] name = "wasmtime-jit" -version = "1.0.0" +version = "0.40.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "047839b5dabeae5424a078c19b8cc897e5943a7fadc69e3d888b9c9a897666b3" +checksum = "d5444a78b74144718633f8642eccd7c4858f4c6f0c98ae6a3668998adf177ba2" dependencies = [ "addr2line", "anyhow", @@ -12289,9 +12281,9 @@ dependencies = [ [[package]] name = "wasmtime-jit-debug" -version = "1.0.0" +version = "0.40.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b299569abf6f99b7b8e020afaf84a700e8636c6a42e242069267322cd5818235" +checksum = "c2bf6a667d2a29b2b0ed42bcf7564f00c595d92c24acb4d241c7c4d950b1910c" dependencies = [ "object 0.29.0", "once_cell", @@ -12300,9 +12292,9 @@ dependencies = [ [[package]] name = "wasmtime-runtime" -version = "1.0.0" +version = "0.40.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ae79e0515160bd5abee5df50a16c4eb8db9f71b530fc988ae1d9ce34dcb8dd01" +checksum = "ee064ce7b563cc201cdf3bb1cc4b233f386d8c57a96e55f4c4afe6103f4bd6a1" dependencies = [ "anyhow", "cc", @@ -12325,9 +12317,9 @@ dependencies = [ [[package]] name = "wasmtime-types" -version = "1.0.0" +version = "0.40.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "790cf43ee8e2d5dad1780af30f00d7a972b74725fb1e4f90c28d62733819b185" +checksum = "01e104bd9e625181d53ead85910bbc0863aa5f0c6ef96836fe9a5cc65da11b69" dependencies = [ "cranelift-entity", "serde", From 4d10b548ff2c74131b89604461d99731e9eae7dc Mon Sep 17 00:00:00 2001 From: kianenigma Date: Wed, 21 Sep 2022 14:33:39 +0000 Subject: [PATCH 11/12] cargo update -p sp-io --- Cargo.lock | 452 +++++++++++++++++++++++++++-------------------------- 1 file changed, 230 insertions(+), 222 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d1cf333079aa..dc13c9fe387c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -118,6 +118,12 @@ version = "1.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "510c76ecefdceada737ea728f4f9a84bd2e1ef29f1ba555e560940fe279954de" +[[package]] +name = "array-bytes" +version = "4.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6a913633b0c922e6b745072795f50d90ebea78ba31a57e2ac8c2fc7b50950949" + [[package]] name = "arrayref" version = "0.3.6" @@ -429,14 +435,14 @@ dependencies = [ [[package]] name = "beefy-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ + "array-bytes", "async-trait", "beefy-primitives", "fnv", "futures", "futures-timer", - "hex", "log", "parity-scale-codec", "parking_lot 0.12.1", @@ -465,7 +471,7 @@ dependencies = [ [[package]] name = "beefy-gadget-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "beefy-gadget", "beefy-primitives", @@ -485,7 +491,7 @@ dependencies = [ [[package]] name = "beefy-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "beefy-primitives", "sp-api", @@ -494,7 +500,7 @@ dependencies = [ [[package]] name = "beefy-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "parity-scale-codec", "scale-info", @@ -1066,19 +1072,21 @@ dependencies = [ [[package]] name = "cranelift-bforest" -version = "0.87.1" +version = "0.88.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9f91425bea5a5ac6d76b788477064944a7e21f0e240fd93f6f368a774a3efdd1" +checksum = "b27bbd3e6c422cf6282b047bcdd51ecd9ca9f3497a3be0132ffa08e509b824b0" dependencies = [ "cranelift-entity", ] [[package]] name = "cranelift-codegen" -version = "0.87.1" +version = "0.88.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b83b4bbf7bc96db77b7b5b5e41fafc4001536e9f0cbfd702ed7d4d8f848dc06" +checksum = "872f5d4557a411b087bd731df6347c142ae1004e6467a144a7e33662e5715a01" dependencies = [ + "arrayvec 0.7.2", + "bumpalo", "cranelift-bforest", "cranelift-codegen-meta", "cranelift-codegen-shared", @@ -1093,33 +1101,33 @@ dependencies = [ [[package]] name = "cranelift-codegen-meta" -version = "0.87.1" +version = "0.88.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "da02e8fff048c381b313a3dfef4deb2343976fb6d7acc8e7d9c86d4c93e3fa06" +checksum = "21b49fdebb29c62c1fc4da1eeebd609e9d530ecde24a9876def546275f73a244" dependencies = [ "cranelift-codegen-shared", ] [[package]] name = "cranelift-codegen-shared" -version = "0.87.1" +version = "0.88.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9abc2a06e8fc29e36660ebbc9e2503e18a051057072acbb1e75e7f7cf19cb95e" +checksum = "5fc0c091e2db055d4d7f6b7cec2d2ead286bcfaea3357c6a52c2a2613a8cb5ac" [[package]] name = "cranelift-entity" -version = "0.87.1" +version = "0.88.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aeced7874890fc25d85cacc5e626c4d67931c7c25aad1c2ad521684744c1ff5c" +checksum = "354a9597be87996c9b278655e68b8447f65dd907256855ad773864edee8d985c" dependencies = [ "serde", ] [[package]] name = "cranelift-frontend" -version = "0.87.1" +version = "0.88.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fc1d301ccad6fce05d9c9793d433d225fafdd57661b98d268d8d162e9291ff2e" +checksum = "0cd8dd3fb8b82c772f4172e87ae1677b971676fffa7c4e3398e3047e650a266b" dependencies = [ "cranelift-codegen", "log", @@ -1129,15 +1137,15 @@ dependencies = [ [[package]] name = "cranelift-isle" -version = "0.87.1" +version = "0.88.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bd7b100db19320848986b4df1da19501dbddeb706a799f502222f72f889b0fab" +checksum = "b82527802b1f7d8da288adc28f1dc97ea52943f5871c041213f7b5035ac698a7" [[package]] name = "cranelift-native" -version = "0.87.1" +version = "0.88.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7be18d8b976cddc822e52343f328b7593d26dd2f1aeadd90da071596a210d524" +checksum = "c30ba8b910f1be023af0c39109cb28a8809734942a6b3eecbf2de8993052ea5e" dependencies = [ "cranelift-codegen", "libc", @@ -1146,9 +1154,9 @@ dependencies = [ [[package]] name = "cranelift-wasm" -version = "0.87.1" +version = "0.88.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2f9e48bb632a2e189b38a9fa89fa5a6eea687a5a4c613bbef7c2b7522c3ad0e0" +checksum = "776a8916d201894aca9637a20814f1e11abc62acd5cfbe0b4eb2e63922756971" dependencies = [ "cranelift-codegen", "cranelift-entity", @@ -1989,7 +1997,7 @@ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "parity-scale-codec", ] @@ -2007,7 +2015,7 @@ dependencies = [ [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-support", "frame-system", @@ -2030,9 +2038,10 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "Inflector", + "array-bytes", "chrono", "clap", "comfy-table", @@ -2042,7 +2051,6 @@ dependencies = [ "gethostname", "handlebars", "hash-db", - "hex", "itertools", "kvdb", "lazy_static", @@ -2081,7 +2089,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2092,7 +2100,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2108,7 +2116,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-support", "frame-system", @@ -2137,7 +2145,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "bitflags", "frame-metadata", @@ -2169,7 +2177,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "Inflector", "cfg-expr", @@ -2183,7 +2191,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -2195,7 +2203,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "proc-macro2", "quote", @@ -2205,7 +2213,7 @@ dependencies = [ [[package]] name = "frame-support-test" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-support", "frame-support-test-pallet", @@ -2228,7 +2236,7 @@ dependencies = [ [[package]] name = "frame-support-test-pallet" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-support", "frame-system", @@ -2239,7 +2247,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-support", "log", @@ -2257,7 +2265,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-benchmarking", "frame-support", @@ -2272,7 +2280,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "parity-scale-codec", "sp-api", @@ -2281,7 +2289,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-support", "parity-scale-codec", @@ -2464,7 +2472,7 @@ dependencies = [ [[package]] name = "generate-bags" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "chrono", "frame-election-provider-support", @@ -4822,7 +4830,7 @@ checksum = "20448fd678ec04e6ea15bbe0476874af65e98a01515d667aa49f1434dc44ebf4" [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-benchmarking", "frame-support", @@ -4836,7 +4844,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-support", "frame-system", @@ -4852,7 +4860,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-support", "frame-system", @@ -4867,7 +4875,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-benchmarking", "frame-support", @@ -4891,7 +4899,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -4911,7 +4919,7 @@ dependencies = [ [[package]] name = "pallet-bags-list-remote-tests" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-election-provider-support", "frame-support", @@ -4930,7 +4938,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-benchmarking", "frame-support", @@ -4945,7 +4953,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "beefy-primitives", "frame-support", @@ -4961,13 +4969,13 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ + "array-bytes", "beefy-merkle-tree", "beefy-primitives", "frame-support", "frame-system", - "hex", "log", "pallet-beefy", "pallet-mmr", @@ -4984,7 +4992,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-benchmarking", "frame-support", @@ -5002,7 +5010,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-benchmarking", "frame-support", @@ -5021,7 +5029,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-benchmarking", "frame-support", @@ -5038,7 +5046,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-benchmarking", "frame-support", @@ -5054,7 +5062,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5078,7 +5086,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5091,7 +5099,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-benchmarking", "frame-support", @@ -5109,7 +5117,7 @@ dependencies = [ [[package]] name = "pallet-gilt" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-benchmarking", "frame-support", @@ -5124,7 +5132,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-benchmarking", "frame-support", @@ -5147,7 +5155,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5163,7 +5171,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-benchmarking", "frame-support", @@ -5183,7 +5191,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-benchmarking", "frame-support", @@ -5200,7 +5208,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-benchmarking", "frame-support", @@ -5217,7 +5225,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -5235,7 +5243,7 @@ dependencies = [ [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -5250,7 +5258,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-benchmarking", "frame-support", @@ -5265,7 +5273,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-support", "frame-system", @@ -5282,7 +5290,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5302,7 +5310,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "parity-scale-codec", "sp-api", @@ -5312,7 +5320,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-support", "frame-system", @@ -5329,7 +5337,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5352,7 +5360,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-benchmarking", "frame-support", @@ -5368,7 +5376,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-benchmarking", "frame-support", @@ -5383,7 +5391,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-benchmarking", "frame-support", @@ -5398,7 +5406,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-benchmarking", "frame-support", @@ -5414,7 +5422,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-support", "frame-system", @@ -5435,7 +5443,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-benchmarking", "frame-support", @@ -5451,7 +5459,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-support", "frame-system", @@ -5465,7 +5473,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5488,7 +5496,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -5499,7 +5507,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "log", "sp-arithmetic", @@ -5508,7 +5516,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-support", "frame-system", @@ -5522,7 +5530,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-benchmarking", "frame-support", @@ -5540,7 +5548,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-benchmarking", "frame-support", @@ -5559,7 +5567,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-support", "frame-system", @@ -5575,7 +5583,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -5590,7 +5598,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -5601,7 +5609,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-benchmarking", "frame-support", @@ -5618,7 +5626,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-benchmarking", "frame-support", @@ -5634,7 +5642,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-benchmarking", "frame-support", @@ -8164,7 +8172,7 @@ dependencies = [ [[package]] name = "remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "env_logger 0.9.0", "jsonrpsee", @@ -8512,7 +8520,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "log", "sp-core", @@ -8523,7 +8531,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "async-trait", "futures", @@ -8550,7 +8558,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "futures", "futures-timer", @@ -8573,7 +8581,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -8589,7 +8597,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "impl-trait-for-tuples", "memmap2 0.5.0", @@ -8606,7 +8614,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -8617,13 +8625,13 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ + "array-bytes", "chrono", "clap", "fdlimit", "futures", - "hex", "libp2p", "log", "names", @@ -8656,7 +8664,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "fnv", "futures", @@ -8684,7 +8692,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "hash-db", "kvdb", @@ -8709,7 +8717,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "async-trait", "futures", @@ -8733,7 +8741,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "async-trait", "fork-tree", @@ -8775,7 +8783,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "futures", "jsonrpsee", @@ -8797,7 +8805,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "fork-tree", "parity-scale-codec", @@ -8810,7 +8818,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "async-trait", "futures", @@ -8835,7 +8843,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "lazy_static", "lru 0.7.8", @@ -8862,7 +8870,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "environmental", "parity-scale-codec", @@ -8878,7 +8886,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "log", "parity-scale-codec", @@ -8893,7 +8901,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "cfg-if 1.0.0", "libc", @@ -8913,16 +8921,16 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "ahash", + "array-bytes", "async-trait", "dyn-clone", "finality-grandpa", "fork-tree", "futures", "futures-timer", - "hex", "log", "parity-scale-codec", "parking_lot 0.12.1", @@ -8954,7 +8962,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "finality-grandpa", "futures", @@ -8975,7 +8983,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "ansi_term", "futures", @@ -8992,10 +9000,10 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ + "array-bytes", "async-trait", - "hex", "parking_lot 0.12.1", "serde_json", "sp-application-crypto", @@ -9007,8 +9015,9 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ + "array-bytes", "async-trait", "asynchronous-codec", "bitflags", @@ -9019,7 +9028,6 @@ dependencies = [ "fork-tree", "futures", "futures-timer", - "hex", "ip_network", "libp2p", "linked-hash-map", @@ -9054,7 +9062,7 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "cid", "futures", @@ -9074,7 +9082,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "async-trait", "bitflags", @@ -9097,7 +9105,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "ahash", "futures", @@ -9115,10 +9123,10 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ + "array-bytes", "futures", - "hex", "libp2p", "log", "parity-scale-codec", @@ -9136,11 +9144,11 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ + "array-bytes", "fork-tree", "futures", - "hex", "libp2p", "log", "lru 0.7.8", @@ -9164,13 +9172,13 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ + "array-bytes", "bytes", "fnv", "futures", "futures-timer", - "hex", "hyper", "hyper-rustls", "libp2p", @@ -9194,7 +9202,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "futures", "libp2p", @@ -9207,7 +9215,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -9216,7 +9224,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "futures", "hash-db", @@ -9246,7 +9254,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "futures", "jsonrpsee", @@ -9269,7 +9277,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "futures", "jsonrpsee", @@ -9282,7 +9290,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "async-trait", "directories", @@ -9351,7 +9359,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "log", "parity-scale-codec", @@ -9365,7 +9373,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -9384,7 +9392,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "futures", "libc", @@ -9403,7 +9411,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "chrono", "futures", @@ -9421,7 +9429,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "ansi_term", "atty", @@ -9452,7 +9460,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -9463,7 +9471,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "futures", "futures-timer", @@ -9489,7 +9497,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "futures", "log", @@ -9502,7 +9510,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "futures", "futures-timer", @@ -9988,7 +9996,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "hash-db", "log", @@ -10006,7 +10014,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "blake2", "proc-macro-crate", @@ -10018,7 +10026,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "parity-scale-codec", "scale-info", @@ -10031,7 +10039,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "integer-sqrt", "num-traits", @@ -10046,7 +10054,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "parity-scale-codec", "scale-info", @@ -10059,7 +10067,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "async-trait", "parity-scale-codec", @@ -10071,7 +10079,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "parity-scale-codec", "sp-api", @@ -10083,7 +10091,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "futures", "log", @@ -10101,7 +10109,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "async-trait", "futures", @@ -10120,7 +10128,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "async-trait", "merlin", @@ -10143,7 +10151,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "parity-scale-codec", "scale-info", @@ -10157,7 +10165,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "parity-scale-codec", "scale-info", @@ -10170,8 +10178,9 @@ dependencies = [ [[package]] name = "sp-core" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ + "array-bytes", "base58", "bitflags", "blake2", @@ -10181,7 +10190,6 @@ dependencies = [ "futures", "hash-db", "hash256-std-hasher", - "hex", "impl-serde", "lazy_static", "libsecp256k1", @@ -10216,7 +10224,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "blake2", "byteorder", @@ -10230,7 +10238,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "proc-macro2", "quote", @@ -10241,7 +10249,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -10250,7 +10258,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "proc-macro2", "quote", @@ -10260,7 +10268,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "environmental", "parity-scale-codec", @@ -10271,7 +10279,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "finality-grandpa", "log", @@ -10289,7 +10297,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -10303,7 +10311,7 @@ dependencies = [ [[package]] name = "sp-io" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "bytes", "futures", @@ -10329,7 +10337,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "lazy_static", "sp-core", @@ -10340,7 +10348,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "async-trait", "futures", @@ -10357,7 +10365,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "thiserror", "zstd", @@ -10366,7 +10374,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "log", "parity-scale-codec", @@ -10381,7 +10389,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "parity-scale-codec", "scale-info", @@ -10395,7 +10403,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "sp-api", "sp-core", @@ -10405,7 +10413,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "backtrace", "lazy_static", @@ -10415,7 +10423,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "rustc-hash", "serde", @@ -10425,7 +10433,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "either", "hash256-std-hasher", @@ -10448,7 +10456,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -10466,7 +10474,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "Inflector", "proc-macro-crate", @@ -10478,7 +10486,7 @@ dependencies = [ [[package]] name = "sp-sandbox" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "log", "parity-scale-codec", @@ -10492,7 +10500,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "parity-scale-codec", "scale-info", @@ -10506,7 +10514,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "parity-scale-codec", "scale-info", @@ -10517,7 +10525,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "hash-db", "log", @@ -10539,12 +10547,12 @@ dependencies = [ [[package]] name = "sp-std" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" [[package]] name = "sp-storage" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "impl-serde", "parity-scale-codec", @@ -10557,7 +10565,7 @@ dependencies = [ [[package]] name = "sp-tasks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "log", "sp-core", @@ -10570,7 +10578,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "async-trait", "futures-timer", @@ -10586,7 +10594,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "parity-scale-codec", "sp-std", @@ -10598,7 +10606,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "sp-api", "sp-runtime", @@ -10607,7 +10615,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "async-trait", "log", @@ -10623,7 +10631,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "ahash", "hash-db", @@ -10646,7 +10654,7 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "impl-serde", "parity-scale-codec", @@ -10663,7 +10671,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -10674,7 +10682,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "impl-trait-for-tuples", "log", @@ -10687,7 +10695,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -10902,7 +10910,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "platforms", ] @@ -10910,7 +10918,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -10931,7 +10939,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "futures-util", "hyper", @@ -10944,7 +10952,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "jsonrpsee", "log", @@ -10965,11 +10973,11 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ + "array-bytes", "async-trait", "futures", - "hex", "parity-scale-codec", "sc-client-api", "sc-client-db", @@ -10991,7 +10999,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "futures", "substrate-test-utils-derive", @@ -11001,7 +11009,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -11012,7 +11020,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "ansi_term", "build-helper", @@ -11726,7 +11734,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#a47f200eebeb88a5bde6f1ed2be9728b82536dde" +source = "git+https://github.com/paritytech/substrate?branch=master#be976154078ae8df932802f32350bfaff78a1e57" dependencies = [ "clap", "frame-try-runtime", @@ -12150,18 +12158,18 @@ dependencies = [ [[package]] name = "wasmparser" -version = "0.88.0" +version = "0.89.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fb8cf7dd82407fe68161bedcd57fde15596f32ebf6e9b3bdbf3ae1da20e38e5e" +checksum = "ab5d3e08b13876f96dd55608d03cd4883a0545884932d5adf11925876c96daef" dependencies = [ "indexmap", ] [[package]] name = "wasmtime" -version = "0.40.1" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a020a3f6587fa7a7d98a021156177735ebb07212a6239a85ab5f14b2f728508f" +checksum = "8a10dc9784d8c3a33c970e3939180424955f08af2e7f20368ec02685a0e8f065" dependencies = [ "anyhow", "bincode", @@ -12187,18 +12195,18 @@ dependencies = [ [[package]] name = "wasmtime-asm-macros" -version = "0.40.1" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fed4ada1fdd4d9a2aa37be652abcc31ae3188ad0efcefb4571ef4f785be2d777" +checksum = "ee4dbdc6daf68528cad1275ac91e3f51848ce9824385facc94c759f529decdf8" dependencies = [ "cfg-if 1.0.0", ] [[package]] name = "wasmtime-cache" -version = "0.40.1" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d96a03a5732ef39b83943d9d72de8ac2d58623d3bfaaea4d9a92aea5fcd9acf5" +checksum = "9f507f3fa1ee1b2f9a83644e2514242b1dfe580782c0eb042f1ef70255bc4ffe" dependencies = [ "anyhow", "base64", @@ -12216,9 +12224,9 @@ dependencies = [ [[package]] name = "wasmtime-cranelift" -version = "0.40.1" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1fc59c28fe895112db09e262fb9c483f9e7b82c78a82a6ded69567ccc0e9795b" +checksum = "8f03cf79d982fc68e94ba0bea6a300a3b94621c4eb9705eece0a4f06b235a3b5" dependencies = [ "anyhow", "cranelift-codegen", @@ -12237,9 +12245,9 @@ dependencies = [ [[package]] name = "wasmtime-environ" -version = "0.40.1" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "11086e573d2635a45ac0d44697a8e4586e058cf1b190f76bea466ca2ec36c30a" +checksum = "5c587c62e91c5499df62012b87b88890d0eb470b2ffecc5964e9da967b70c77c" dependencies = [ "anyhow", "cranelift-entity", @@ -12256,9 +12264,9 @@ dependencies = [ [[package]] name = "wasmtime-jit" -version = "0.40.1" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d5444a78b74144718633f8642eccd7c4858f4c6f0c98ae6a3668998adf177ba2" +checksum = "047839b5dabeae5424a078c19b8cc897e5943a7fadc69e3d888b9c9a897666b3" dependencies = [ "addr2line", "anyhow", @@ -12281,9 +12289,9 @@ dependencies = [ [[package]] name = "wasmtime-jit-debug" -version = "0.40.1" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c2bf6a667d2a29b2b0ed42bcf7564f00c595d92c24acb4d241c7c4d950b1910c" +checksum = "b299569abf6f99b7b8e020afaf84a700e8636c6a42e242069267322cd5818235" dependencies = [ "object 0.29.0", "once_cell", @@ -12292,9 +12300,9 @@ dependencies = [ [[package]] name = "wasmtime-runtime" -version = "0.40.1" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ee064ce7b563cc201cdf3bb1cc4b233f386d8c57a96e55f4c4afe6103f4bd6a1" +checksum = "ae79e0515160bd5abee5df50a16c4eb8db9f71b530fc988ae1d9ce34dcb8dd01" dependencies = [ "anyhow", "cc", @@ -12317,9 +12325,9 @@ dependencies = [ [[package]] name = "wasmtime-types" -version = "0.40.1" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "01e104bd9e625181d53ead85910bbc0863aa5f0c6ef96836fe9a5cc65da11b69" +checksum = "790cf43ee8e2d5dad1780af30f00d7a972b74725fb1e4f90c28d62733819b185" dependencies = [ "cranelift-entity", "serde", From c18fbb9ae56bfbe1f79f264a0790a44c57c0a5ac Mon Sep 17 00:00:00 2001 From: kianenigma Date: Wed, 21 Sep 2022 14:34:43 +0000 Subject: [PATCH 12/12] mark migration job as failable --- .gitlab-ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 62e983e72c23..798939d006c8 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -651,6 +651,7 @@ check-runtime-migration: else echo "runtimemigration label not found. Skipping" fi + allow_failure: true check-no-default-features: