From c0f94ef0050cc05a0146021b1fbc66d3b2afee5d Mon Sep 17 00:00:00 2001 From: Andrei Sandu Date: Tue, 9 Nov 2021 09:43:05 +0000 Subject: [PATCH 1/5] Use blank task group name Signed-off-by: Andrei Sandu --- client/collator/src/lib.rs | 2 +- client/network/src/lib.rs | 1 + client/service/src/lib.rs | 4 ++-- parachain-template/node/src/service.rs | 2 +- polkadot-parachains/src/service.rs | 2 +- 5 files changed, 6 insertions(+), 5 deletions(-) diff --git a/client/collator/src/lib.rs b/client/collator/src/lib.rs index 4799d441ee2..bdc9946498c 100644 --- a/client/collator/src/lib.rs +++ b/client/collator/src/lib.rs @@ -390,7 +390,7 @@ mod tests { .build() .expect("Builds overseer"); - spawner.spawn("overseer", overseer.run().then(|_| async { () }).boxed()); + spawner.spawn("overseer", "", overseer.run().then(|_| async { () }).boxed()); let collator_start = start_collator(StartCollatorParams { runtime_api: client.clone(), diff --git a/client/network/src/lib.rs b/client/network/src/lib.rs index e183fcd461c..bc917301f7c 100644 --- a/client/network/src/lib.rs +++ b/client/network/src/lib.rs @@ -522,6 +522,7 @@ impl WaitToAnnounce { self.spawner.spawn( "cumulus-wait-to-announce", + "", async move { tracing::debug!( target: "cumulus-network", diff --git a/client/service/src/lib.rs b/client/service/src/lib.rs index 10723ebc106..843241c5119 100644 --- a/client/service/src/lib.rs +++ b/client/service/src/lib.rs @@ -237,7 +237,7 @@ where self.announce_block, ); - self.task_manager.spawn_essential_handle().spawn("cumulus-consensus", consensus); + self.task_manager.spawn_essential_handle().spawn("cumulus-consensus", "", consensus); } } @@ -283,7 +283,7 @@ where self.task_manager .spawn_essential_handle() - .spawn("cumulus-pov-recovery", pov_recovery.run()); + .spawn("cumulus-pov-recovery", "", pov_recovery.run()); Ok(()) } diff --git a/parachain-template/node/src/service.rs b/parachain-template/node/src/service.rs index ff11038ad0f..508096adef8 100644 --- a/parachain-template/node/src/service.rs +++ b/parachain-template/node/src/service.rs @@ -127,7 +127,7 @@ where let telemetry_worker_handle = telemetry.as_ref().map(|(worker, _)| worker.handle()); let telemetry = telemetry.map(|(worker, telemetry)| { - task_manager.spawn_handle().spawn("telemetry", worker.run()); + task_manager.spawn_handle().spawn("telemetry", "", worker.run()); telemetry }); diff --git a/polkadot-parachains/src/service.rs b/polkadot-parachains/src/service.rs index a896cad242b..79fe144cb4b 100644 --- a/polkadot-parachains/src/service.rs +++ b/polkadot-parachains/src/service.rs @@ -209,7 +209,7 @@ where let telemetry_worker_handle = telemetry.as_ref().map(|(worker, _)| worker.handle()); let telemetry = telemetry.map(|(worker, telemetry)| { - task_manager.spawn_handle().spawn("telemetry", worker.run()); + task_manager.spawn_handle().spawn("telemetry", "", worker.run()); telemetry }); From 56fe4f9e4fa79768172fb01c45266842d9e12bfe Mon Sep 17 00:00:00 2001 From: Andrei Sandu Date: Tue, 9 Nov 2021 09:59:30 +0000 Subject: [PATCH 2/5] cargo fmt Signed-off-by: Andrei Sandu --- client/service/src/lib.rs | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/client/service/src/lib.rs b/client/service/src/lib.rs index 843241c5119..0a7a20d7dc7 100644 --- a/client/service/src/lib.rs +++ b/client/service/src/lib.rs @@ -237,7 +237,9 @@ where self.announce_block, ); - self.task_manager.spawn_essential_handle().spawn("cumulus-consensus", "", consensus); + self.task_manager + .spawn_essential_handle() + .spawn("cumulus-consensus", "", consensus); } } @@ -281,9 +283,11 @@ where self.para_id, ); - self.task_manager - .spawn_essential_handle() - .spawn("cumulus-pov-recovery", "", pov_recovery.run()); + self.task_manager.spawn_essential_handle().spawn( + "cumulus-pov-recovery", + "", + pov_recovery.run(), + ); Ok(()) } From ea44607fdda83e48e22b90423d78ab63acd0663d Mon Sep 17 00:00:00 2001 From: Andrei Sandu Date: Wed, 10 Nov 2021 14:13:00 +0000 Subject: [PATCH 3/5] Update Signed-off-by: Andrei Sandu --- client/collator/src/lib.rs | 2 +- client/network/src/lib.rs | 2 +- client/service/src/lib.rs | 4 ++-- pallets/dmp-queue/src/lib.rs | 2 +- parachain-template/node/src/service.rs | 2 +- polkadot-parachains/src/service.rs | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/client/collator/src/lib.rs b/client/collator/src/lib.rs index bdc9946498c..fc204f99e90 100644 --- a/client/collator/src/lib.rs +++ b/client/collator/src/lib.rs @@ -390,7 +390,7 @@ mod tests { .build() .expect("Builds overseer"); - spawner.spawn("overseer", "", overseer.run().then(|_| async { () }).boxed()); + spawner.spawn("overseer", None, overseer.run().then(|_| async { () }).boxed()); let collator_start = start_collator(StartCollatorParams { runtime_api: client.clone(), diff --git a/client/network/src/lib.rs b/client/network/src/lib.rs index bc917301f7c..97987c0f42d 100644 --- a/client/network/src/lib.rs +++ b/client/network/src/lib.rs @@ -522,7 +522,7 @@ impl WaitToAnnounce { self.spawner.spawn( "cumulus-wait-to-announce", - "", + None, async move { tracing::debug!( target: "cumulus-network", diff --git a/client/service/src/lib.rs b/client/service/src/lib.rs index 0a7a20d7dc7..692d73bb909 100644 --- a/client/service/src/lib.rs +++ b/client/service/src/lib.rs @@ -239,7 +239,7 @@ where self.task_manager .spawn_essential_handle() - .spawn("cumulus-consensus", "", consensus); + .spawn("cumulus-consensus", None, consensus); } } @@ -285,7 +285,7 @@ where self.task_manager.spawn_essential_handle().spawn( "cumulus-pov-recovery", - "", + None, pov_recovery.run(), ); diff --git a/pallets/dmp-queue/src/lib.rs b/pallets/dmp-queue/src/lib.rs index 1a6baf21b36..251d3acbb38 100644 --- a/pallets/dmp-queue/src/lib.rs +++ b/pallets/dmp-queue/src/lib.rs @@ -307,7 +307,7 @@ pub mod pallet { id, remaining, required, )); } - }, + } } } // Cannot be an `else` here since the `maybe_enqueue_page` may have changed. diff --git a/parachain-template/node/src/service.rs b/parachain-template/node/src/service.rs index 508096adef8..48a4f25225f 100644 --- a/parachain-template/node/src/service.rs +++ b/parachain-template/node/src/service.rs @@ -127,7 +127,7 @@ where let telemetry_worker_handle = telemetry.as_ref().map(|(worker, _)| worker.handle()); let telemetry = telemetry.map(|(worker, telemetry)| { - task_manager.spawn_handle().spawn("telemetry", "", worker.run()); + task_manager.spawn_handle().spawn("telemetry", None, worker.run()); telemetry }); diff --git a/polkadot-parachains/src/service.rs b/polkadot-parachains/src/service.rs index 79fe144cb4b..21d181516eb 100644 --- a/polkadot-parachains/src/service.rs +++ b/polkadot-parachains/src/service.rs @@ -209,7 +209,7 @@ where let telemetry_worker_handle = telemetry.as_ref().map(|(worker, _)| worker.handle()); let telemetry = telemetry.map(|(worker, telemetry)| { - task_manager.spawn_handle().spawn("telemetry", "", worker.run()); + task_manager.spawn_handle().spawn("telemetry", None, worker.run()); telemetry }); From ce9d0944a66b16da6a515c5b3ad26f88a5e2a15d Mon Sep 17 00:00:00 2001 From: Andronik Ordian Date: Thu, 11 Nov 2021 20:01:28 +0100 Subject: [PATCH 4/5] update Cargo.lock and switch from 0.9.12 to master --- Cargo.lock | 4532 ++++++++++++++------------------------- test/service/Cargo.toml | 4 +- 2 files changed, 1630 insertions(+), 2906 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9ce6babba84..22ff2d72f35 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -412,19 +412,6 @@ dependencies = [ "rustc-demangle", ] -[[package]] -name = "bae" -version = "0.1.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ec107f431ee3d8a8e45e6dd117adab769556ef463959e77bf6a4888d5fd500cf" -dependencies = [ - "heck", - "proc-macro-error 0.4.12", - "proc-macro2", - "quote", - "syn", -] - [[package]] name = "base-x" version = "0.2.8" @@ -461,7 +448,7 @@ dependencies = [ [[package]] name = "beefy-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "beefy-primitives", "fnv", @@ -469,19 +456,19 @@ dependencies = [ "log", "parity-scale-codec", "parking_lot 0.11.2", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-keystore 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-network 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-client-api", + "sc-keystore", + "sc-network", "sc-network-gossip", - "sc-utils 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-application-crypto 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-arithmetic 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-keystore 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "substrate-prometheus-endpoint 0.10.0-dev", + "sc-utils", + "sp-api", + "sp-application-crypto", + "sp-arithmetic", + "sp-blockchain", + "sp-core", + "sp-keystore", + "sp-runtime", + "substrate-prometheus-endpoint", "thiserror", "wasm-timer", ] @@ -489,7 +476,7 @@ dependencies = [ [[package]] name = "beefy-gadget-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "beefy-gadget", "beefy-primitives", @@ -500,29 +487,29 @@ dependencies = [ "jsonrpc-pubsub", "log", "parity-scale-codec", - "sc-rpc 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-rpc", "serde", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-runtime", ] [[package]] name = "beefy-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" [[package]] name = "beefy-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "parity-scale-codec", "scale-info", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-application-crypto 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", + "sp-application-crypto", + "sp-core", + "sp-runtime", + "sp-std", ] [[package]] @@ -704,35 +691,35 @@ dependencies = [ [[package]] name = "bp-header-chain" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "finality-grandpa", "frame-support", "parity-scale-codec", "scale-info", "serde", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-finality-grandpa 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-finality-grandpa", + "sp-runtime", + "sp-std", ] [[package]] name = "bp-message-dispatch" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "bp-runtime", "frame-support", "parity-scale-codec", "scale-info", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std", ] [[package]] name = "bp-messages" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "bitvec 0.20.4", "bp-runtime", @@ -742,13 +729,13 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std", ] [[package]] name = "bp-polkadot-core" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "bp-messages", "bp-runtime", @@ -756,32 +743,32 @@ dependencies = [ "frame-system", "parity-scale-codec", "scale-info", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-version 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", + "sp-core", + "sp-runtime", + "sp-std", + "sp-version", ] [[package]] name = "bp-rialto" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "bp-messages", "bp-runtime", "frame-support", "frame-system", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", + "sp-core", + "sp-runtime", + "sp-std", ] [[package]] name = "bp-rococo" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "bp-messages", "bp-polkadot-core", @@ -789,64 +776,64 @@ dependencies = [ "frame-support", "parity-scale-codec", "smallvec", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-version 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", + "sp-runtime", + "sp-std", + "sp-version", ] [[package]] name = "bp-runtime" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "frame-support", "hash-db", "num-traits", "parity-scale-codec", "scale-info", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-state-machine 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-trie 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-io", + "sp-runtime", + "sp-state-machine", + "sp-std", + "sp-trie", ] [[package]] name = "bp-test-utils" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "bp-header-chain", "ed25519-dalek", "finality-grandpa", "parity-scale-codec", - "sp-application-crypto 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-finality-grandpa 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-application-crypto", + "sp-finality-grandpa", + "sp-runtime", + "sp-std", ] [[package]] name = "bp-wococo" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "bp-messages", "bp-polkadot-core", "bp-rococo", "bp-runtime", "parity-scale-codec", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", + "sp-runtime", + "sp-std", ] [[package]] name = "bridge-runtime-common" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "bp-message-dispatch", "bp-messages", @@ -859,11 +846,11 @@ dependencies = [ "pallet-transaction-payment", "parity-scale-codec", "scale-info", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-state-machine 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-trie 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-runtime", + "sp-state-machine", + "sp-std", + "sp-trie", ] [[package]] @@ -1460,8 +1447,8 @@ dependencies = [ name = "cumulus-client-cli" version = "0.1.0" dependencies = [ - "sc-cli 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-service 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-cli", + "sc-service", "structopt", ] @@ -1483,13 +1470,13 @@ dependencies = [ "polkadot-node-subsystem-test-helpers", "polkadot-overseer", "polkadot-primitives", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-state-machine 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-tracing 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-client-api", + "sp-api", + "sp-consensus", + "sp-core", + "sp-runtime", + "sp-state-machine", + "sp-tracing", "tracing", ] @@ -1503,22 +1490,22 @@ dependencies = [ "futures 0.3.17", "parity-scale-codec", "polkadot-client", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-client-api", + "sc-consensus", "sc-consensus-aura", "sc-consensus-slots", - "sc-telemetry 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-application-crypto 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-block-builder 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-telemetry", + "sp-api", + "sp-application-crypto", + "sp-block-builder", + "sp-blockchain", + "sp-consensus", "sp-consensus-aura", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-keystore 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "substrate-prometheus-endpoint 0.10.0-dev", + "sp-core", + "sp-inherents", + "sp-keystore", + "sp-runtime", + "substrate-prometheus-endpoint", "tracing", ] @@ -1533,14 +1520,14 @@ dependencies = [ "futures-timer 3.0.2", "parity-scale-codec", "polkadot-primitives", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-tracing 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-trie 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-client-api", + "sc-consensus", + "sp-api", + "sp-blockchain", + "sp-consensus", + "sp-runtime", + "sp-tracing", + "sp-trie", "tracing", ] @@ -1554,16 +1541,16 @@ dependencies = [ "futures 0.3.17", "parking_lot 0.10.2", "polkadot-client", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-block-builder 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "substrate-prometheus-endpoint 0.10.0-dev", + "sc-client-api", + "sc-consensus", + "sp-api", + "sp-block-builder", + "sp-blockchain", + "sp-consensus", + "sp-core", + "sp-inherents", + "sp-runtime", + "substrate-prometheus-endpoint", "tracing", ] @@ -1583,17 +1570,17 @@ dependencies = [ "polkadot-parachain", "polkadot-primitives", "polkadot-test-client", - "sc-cli 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-service 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-keyring 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-keystore 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "substrate-test-utils 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-cli", + "sc-client-api", + "sc-service", + "sp-api", + "sp-blockchain", + "sp-consensus", + "sp-core", + "sp-keyring", + "sp-keystore", + "sp-runtime", + "substrate-test-utils", "tokio", "tracing", ] @@ -1612,15 +1599,15 @@ dependencies = [ "polkadot-overseer", "polkadot-primitives", "rand 0.8.4", - "sc-cli 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-service 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-maybe-compressed-blob 4.1.0-dev", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "substrate-test-utils 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-cli", + "sc-client-api", + "sc-consensus", + "sc-service", + "sp-api", + "sp-consensus", + "sp-maybe-compressed-blob", + "sp-runtime", + "substrate-test-utils", "tokio", "tracing", ] @@ -1638,18 +1625,18 @@ dependencies = [ "polkadot-overseer", "polkadot-primitives", "polkadot-service", - "sc-chain-spec 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-chain-spec", + "sc-client-api", + "sc-consensus", "sc-consensus-babe", - "sc-service 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-telemetry 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-tracing 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-service", + "sc-telemetry", + "sc-tracing", + "sp-api", + "sp-blockchain", + "sp-consensus", + "sp-core", + "sp-runtime", "tracing", ] @@ -1665,10 +1652,10 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-application-crypto 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-application-crypto", "sp-consensus-aura", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime", + "sp-std", ] [[package]] @@ -1681,11 +1668,11 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-version 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", + "sp-version", "xcm", "xcm-executor", ] @@ -1708,20 +1695,20 @@ dependencies = [ "pallet-balances", "parity-scale-codec", "polkadot-parachain", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-client-api", "scale-info", "serde", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-externalities 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-keyring 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-state-machine 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-tracing 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-trie 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-version 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-externalities", + "sp-inherents", + "sp-io", + "sp-keyring", + "sp-runtime", + "sp-state-machine", + "sp-std", + "sp-tracing", + "sp-trie", + "sp-version", "xcm", ] @@ -1743,8 +1730,8 @@ dependencies = [ "frame-support", "frame-system", "pallet-session", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime", + "sp-std", ] [[package]] @@ -1757,9 +1744,9 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io", + "sp-runtime", + "sp-std", "xcm", ] @@ -1776,10 +1763,10 @@ dependencies = [ "parity-scale-codec", "rand_chacha 0.3.1", "scale-info", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", "xcm", "xcm-builder", "xcm-executor", @@ -1796,8 +1783,8 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime", + "sp-std", "xcm", ] @@ -1811,10 +1798,10 @@ dependencies = [ "polkadot-core-primitives", "polkadot-parachain", "polkadot-primitives", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-trie 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", + "sp-runtime", + "sp-std", + "sp-trie", ] [[package]] @@ -1826,15 +1813,15 @@ dependencies = [ "cumulus-test-relay-sproof-builder", "parity-scale-codec", "polkadot-client", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-client-api", "scale-info", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-state-machine 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-trie 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", + "sp-core", + "sp-inherents", + "sp-runtime", + "sp-state-machine", + "sp-std", + "sp-trie", "tracing", ] @@ -1847,12 +1834,12 @@ dependencies = [ "cumulus-test-relay-sproof-builder", "futures 0.3.17", "parity-scale-codec", - "sp-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-consensus", + "sp-inherents", + "sp-runtime", + "sp-std", "sp-timestamp", - "sp-tracing 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-tracing", ] [[package]] @@ -1865,9 +1852,9 @@ dependencies = [ "polkadot-core-primitives", "polkadot-parachain", "polkadot-primitives", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-trie 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime", + "sp-std", + "sp-trie", "xcm", ] @@ -1886,18 +1873,18 @@ dependencies = [ "parity-scale-codec", "polkadot-parachain", "polkadot-primitives", - "sc-block-builder 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-executor 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-executor-common 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-service 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-keyring 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-block-builder", + "sc-consensus", + "sc-executor", + "sc-executor-common", + "sc-service", + "sp-api", + "sp-blockchain", + "sp-core", + "sp-inherents", + "sp-io", + "sp-keyring", + "sp-runtime", "sp-timestamp", "substrate-test-client", ] @@ -1909,9 +1896,9 @@ dependencies = [ "cumulus-primitives-core", "parity-scale-codec", "polkadot-primitives", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-state-machine 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime", + "sp-state-machine", + "sp-std", ] [[package]] @@ -1939,17 +1926,17 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-block-builder 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-offchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-session 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-transaction-pool 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-version 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", + "sp-block-builder", + "sp-core", + "sp-inherents", + "sp-io", + "sp-offchain", + "sp-runtime", + "sp-session", + "sp-std", + "sp-transaction-pool", + "sp-version", "substrate-wasm-builder", ] @@ -1978,30 +1965,30 @@ dependencies = [ "polkadot-test-service", "rand 0.7.3", "sc-basic-authorship", - "sc-chain-spec 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-cli 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-executor 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-network 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-rpc 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-service 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-tracing 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-transaction-pool 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-transaction-pool-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "serde", - "sp-arithmetic 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-keyring 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-state-machine 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-chain-spec", + "sc-cli", + "sc-client-api", + "sc-consensus", + "sc-executor", + "sc-network", + "sc-rpc", + "sc-service", + "sc-tracing", + "sc-transaction-pool", + "sc-transaction-pool-api", + "serde", + "sp-arithmetic", + "sp-blockchain", + "sp-core", + "sp-io", + "sp-keyring", + "sp-runtime", + "sp-state-machine", "sp-timestamp", - "sp-tracing 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-trie 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-tracing", + "sp-trie", "substrate-test-client", - "substrate-test-utils 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", + "substrate-test-utils", "tokio", ] @@ -2105,15 +2092,6 @@ dependencies = [ "generic-array 0.14.4", ] -[[package]] -name = "directories" -version = "3.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e69600ff1703123957937708eb27f7a564e48885c537782722ed0ba3189ce1d7" -dependencies = [ - "dirs-sys", -] - [[package]] name = "directories" version = "4.0.1" @@ -2485,15 +2463,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" -dependencies = [ - "parity-scale-codec", -] - -[[package]] -name = "fork-tree" -version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "parity-scale-codec", ] @@ -2511,7 +2481,7 @@ dependencies = [ [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "frame-support", "frame-system", @@ -2520,18 +2490,18 @@ dependencies = [ "parity-scale-codec", "paste", "scale-info", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime-interface 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-storage 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", + "sp-io", + "sp-runtime", + "sp-runtime-interface", + "sp-std", + "sp-storage", ] [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "Inflector", "chrono", @@ -2541,47 +2511,47 @@ dependencies = [ "linked-hash-map", "log", "parity-scale-codec", - "sc-cli 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-client-db 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-executor 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-service 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-cli", + "sc-client-db", + "sc-executor", + "sc-service", "serde", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-externalities 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-keystore 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-state-machine 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-externalities", + "sp-keystore", + "sp-runtime", + "sp-state-machine", "structopt", ] [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "frame-support", "frame-system", "parity-scale-codec", "scale-info", - "sp-arithmetic 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-arithmetic", "sp-npos-elections", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std", ] [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "frame-support", "frame-system", "parity-scale-codec", "scale-info", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-tracing 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", + "sp-tracing", ] [[package]] @@ -2599,7 +2569,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "bitflags", "frame-metadata", @@ -2612,23 +2582,23 @@ dependencies = [ "scale-info", "serde", "smallvec", - "sp-arithmetic 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-arithmetic", + "sp-core", "sp-core-hashing-proc-macro", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-staking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-state-machine 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-tracing 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-inherents", + "sp-io", + "sp-runtime", + "sp-staking", + "sp-state-machine", + "sp-std", + "sp-tracing", "tt-call", ] [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "Inflector", "frame-support-procedural-tools", @@ -2640,7 +2610,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate 1.1.0", @@ -2652,7 +2622,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "proc-macro2", "quote", @@ -2662,53 +2632,53 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "frame-support", "log", "parity-scale-codec", "scale-info", "serde", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-version 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", + "sp-version", ] [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "frame-benchmarking", "frame-support", "frame-system", "parity-scale-codec", "scale-info", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-runtime", + "sp-std", ] [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "parity-scale-codec", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", ] [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "frame-support", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", + "sp-runtime", + "sp-std", ] [[package]] @@ -3577,14 +3547,25 @@ dependencies = [ "slab", ] +[[package]] +name = "jsonrpsee" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6373a33d987866ccfe1af4bc11b089dce941764313f9fd8b7cf13fcb51b72dc5" +dependencies = [ + "jsonrpsee-proc-macros", + "jsonrpsee-types", + "jsonrpsee-utils", + "jsonrpsee-ws-client", +] + [[package]] name = "jsonrpsee-proc-macros" -version = "0.3.1" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8edb341d35279b59c79d7fe9e060a51aec29d45af99cc7c72ea7caa350fa71a4" +checksum = "d802063f7a3c867456955f9d2f15eb3ee0edb5ec9ec2b5526324756759221c0f" dependencies = [ - "Inflector", - "bae", + "log", "proc-macro-crate 1.1.0", "proc-macro2", "quote", @@ -3593,10 +3574,11 @@ dependencies = [ [[package]] name = "jsonrpsee-types" -version = "0.3.1" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4cc738fd55b676ada3271ef7c383a14a0867a2a88b0fa941311bf5fc0a29d498" +checksum = "62f778cf245158fbd8f5d50823a2e9e4c708a40be164766bd35e9fb1d86715b2" dependencies = [ + "anyhow", "async-trait", "beef", "futures-channel", @@ -3605,32 +3587,43 @@ dependencies = [ "log", "serde", "serde_json", - "soketto 0.6.0", + "soketto 0.7.1", "thiserror", ] +[[package]] +name = "jsonrpsee-utils" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0109c4f972058f3b1925b73a17210aff7b63b65967264d0045d15ee88fe84f0c" +dependencies = [ + "arrayvec 0.7.1", + "beef", + "jsonrpsee-types", +] + [[package]] name = "jsonrpsee-ws-client" -version = "0.3.1" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9841352dbecf4c2ed5dc71698df9f1660262ae4e0b610e968602529bdbcf7b30" +checksum = "559aa56fc402af206c00fc913dc2be1d9d788dcde045d14df141a535245d35ef" dependencies = [ + "arrayvec 0.7.1", "async-trait", "fnv", "futures 0.3.17", + "http", "jsonrpsee-types", "log", "pin-project 1.0.8", - "rustls", "rustls-native-certs", "serde", "serde_json", - "soketto 0.6.0", + "soketto 0.7.1", "thiserror", "tokio", "tokio-rustls", "tokio-util", - "url 2.2.2", ] [[package]] @@ -3652,7 +3645,7 @@ dependencies = [ [[package]] name = "kusama-runtime" version = "0.9.12" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "beefy-primitives", "bitvec 0.20.4", @@ -3712,22 +3705,22 @@ dependencies = [ "serde", "serde_derive", "smallvec", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-arithmetic 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", + "sp-arithmetic", "sp-authority-discovery", - "sp-block-builder 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-block-builder", "sp-consensus-babe", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-inherents", + "sp-io", "sp-npos-elections", - "sp-offchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-session 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-staking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-transaction-pool 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-version 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-offchain", + "sp-runtime", + "sp-session", + "sp-staking", + "sp-std", + "sp-transaction-pool", + "sp-version", "static_assertions", "substrate-wasm-builder", "xcm", @@ -4624,7 +4617,7 @@ dependencies = [ [[package]] name = "metered-channel" version = "0.9.12" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "derive_more", "futures 0.3.17", @@ -4811,7 +4804,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "424f6e86263cd5294cbd7f1e95746b95aca0e0d66bff31e5a40d6baa87b4aa99" dependencies = [ "proc-macro-crate 1.1.0", - "proc-macro-error 1.0.4", + "proc-macro-error", "proc-macro2", "quote", "syn", @@ -4908,9 +4901,9 @@ dependencies = [ "frame-system", "parity-scale-codec", "scale-info", - "sp-application-crypto 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-application-crypto", + "sp-core", + "sp-runtime", ] [[package]] @@ -5102,11 +5095,11 @@ dependencies = [ "serde", "serde_json", "smallvec", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-storage 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", + "sp-storage", ] [[package]] @@ -5119,8 +5112,8 @@ dependencies = [ "frame-system", "parity-scale-codec", "scale-info", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime", + "sp-std", ] [[package]] @@ -5133,32 +5126,32 @@ dependencies = [ "pallet-timestamp", "parity-scale-codec", "scale-info", - "sp-application-crypto 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-application-crypto", "sp-consensus-aura", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime", + "sp-std", ] [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "frame-support", "frame-system", "pallet-session", "parity-scale-codec", "scale-info", - "sp-application-crypto 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-application-crypto", "sp-authority-discovery", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime", + "sp-std", ] [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "frame-support", "frame-system", @@ -5166,14 +5159,14 @@ dependencies = [ "parity-scale-codec", "scale-info", "sp-authorship", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime", + "sp-std", ] [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "frame-benchmarking", "frame-support", @@ -5184,20 +5177,20 @@ dependencies = [ "pallet-timestamp", "parity-scale-codec", "scale-info", - "sp-application-crypto 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-application-crypto", "sp-consensus-babe", "sp-consensus-vrf", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-session 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-staking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io", + "sp-runtime", + "sp-session", + "sp-staking", + "sp-std", ] [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5207,17 +5200,17 @@ dependencies = [ "pallet-balances", "parity-scale-codec", "scale-info", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-tracing 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", + "sp-tracing", ] [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "frame-benchmarking", "frame-support", @@ -5225,14 +5218,14 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime", + "sp-std", ] [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "beefy-primitives", "frame-support", @@ -5241,14 +5234,14 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime", + "sp-std", ] [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "beefy-merkle-tree", "beefy-primitives", @@ -5264,16 +5257,16 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "frame-benchmarking", "frame-support", @@ -5282,16 +5275,16 @@ dependencies = [ "pallet-treasury", "parity-scale-codec", "scale-info", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] name = "pallet-bridge-dispatch" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "bp-message-dispatch", "bp-runtime", @@ -5300,15 +5293,15 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-runtime", + "sp-std", ] [[package]] name = "pallet-bridge-grandpa" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "bp-header-chain", "bp-runtime", @@ -5321,16 +5314,16 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-finality-grandpa 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-trie 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-finality-grandpa", + "sp-runtime", + "sp-std", + "sp-trie", ] [[package]] name = "pallet-bridge-messages" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "bitvec 0.20.4", "bp-message-dispatch", @@ -5344,9 +5337,9 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-runtime", + "sp-std", ] [[package]] @@ -5367,18 +5360,18 @@ dependencies = [ "scale-info", "serde", "sp-consensus-aura", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-staking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-tracing 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-io", + "sp-runtime", + "sp-staking", + "sp-std", + "sp-tracing", ] [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "frame-benchmarking", "frame-support", @@ -5386,16 +5379,16 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "frame-benchmarking", "frame-support", @@ -5403,15 +5396,15 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5421,21 +5414,21 @@ dependencies = [ "parity-scale-codec", "rand 0.7.3", "scale-info", - "sp-arithmetic 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-arithmetic", + "sp-core", + "sp-io", "sp-npos-elections", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime", + "sp-std", "static_assertions", - "strum 0.22.0", - "strum_macros 0.22.0", + "strum", + "strum_macros", ] [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "frame-benchmarking", "frame-support", @@ -5443,32 +5436,32 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-io", "sp-npos-elections", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime", + "sp-std", ] [[package]] name = "pallet-gilt" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "frame-benchmarking", "frame-support", "frame-system", "parity-scale-codec", "scale-info", - "sp-arithmetic 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-arithmetic", + "sp-runtime", + "sp-std", ] [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "frame-benchmarking", "frame-support", @@ -5478,20 +5471,20 @@ dependencies = [ "pallet-session", "parity-scale-codec", "scale-info", - "sp-application-crypto 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-finality-grandpa 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-session 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-staking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-application-crypto", + "sp-core", + "sp-finality-grandpa", + "sp-io", + "sp-runtime", + "sp-session", + "sp-staking", + "sp-std", ] [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5499,15 +5492,15 @@ dependencies = [ "frame-system", "parity-scale-codec", "scale-info", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "frame-benchmarking", "frame-support", @@ -5516,35 +5509,35 @@ dependencies = [ "pallet-authorship", "parity-scale-codec", "scale-info", - "sp-application-crypto 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-staking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-application-crypto", + "sp-core", + "sp-io", + "sp-runtime", + "sp-staking", + "sp-std", ] [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "frame-benchmarking", "frame-support", "frame-system", "parity-scale-codec", "scale-info", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-keyring 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-io", + "sp-keyring", + "sp-runtime", + "sp-std", ] [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "frame-benchmarking", "frame-support", @@ -5552,16 +5545,16 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -5570,32 +5563,32 @@ dependencies = [ "pallet-mmr-primitives", "parity-scale-codec", "scale-info", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] name = "pallet-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "frame-support", "frame-system", "log", "parity-scale-codec", "serde", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", + "sp-core", + "sp-runtime", + "sp-std", ] [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "jsonrpc-core", "jsonrpc-core-client", @@ -5603,45 +5596,45 @@ dependencies = [ "pallet-mmr-primitives", "parity-scale-codec", "serde", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", + "sp-blockchain", + "sp-core", + "sp-runtime", ] [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "frame-benchmarking", "frame-support", "frame-system", "parity-scale-codec", "scale-info", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] name = "pallet-nicks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "frame-support", "frame-system", "parity-scale-codec", "scale-info", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "frame-support", "frame-system", @@ -5650,15 +5643,15 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-staking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime", + "sp-staking", + "sp-std", ] [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5673,44 +5666,44 @@ dependencies = [ "pallet-staking", "parity-scale-codec", "scale-info", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-staking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime", + "sp-staking", + "sp-std", ] [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "frame-benchmarking", "frame-support", "frame-system", "parity-scale-codec", "scale-info", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "frame-support", "frame-system", "parity-scale-codec", "scale-info", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "frame-benchmarking", "frame-support", @@ -5718,15 +5711,15 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "frame-support", "frame-system", @@ -5735,19 +5728,19 @@ dependencies = [ "pallet-timestamp", "parity-scale-codec", "scale-info", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-session 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-staking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-trie 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-io", + "sp-runtime", + "sp-session", + "sp-staking", + "sp-std", + "sp-trie", ] [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "frame-benchmarking", "frame-support", @@ -5755,29 +5748,29 @@ dependencies = [ "pallet-session", "pallet-staking", "rand 0.7.3", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-session 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime", + "sp-session", + "sp-std", ] [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "frame-support", "frame-system", "parity-scale-codec", "rand_chacha 0.2.2", "scale-info", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime", + "sp-std", ] [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5790,17 +5783,17 @@ dependencies = [ "rand_chacha 0.2.2", "scale-info", "serde", - "sp-application-crypto 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-staking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-application-crypto", + "sp-io", + "sp-runtime", + "sp-staking", + "sp-std", ] [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "proc-macro-crate 1.1.0", "proc-macro2", @@ -5811,24 +5804,24 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "log", - "sp-arithmetic 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-arithmetic", ] [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "frame-support", "frame-system", "parity-scale-codec", "scale-info", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] @@ -5841,15 +5834,15 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-io", + "sp-runtime", ] [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "frame-benchmarking", "frame-support", @@ -5857,17 +5850,17 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-inherents", + "sp-io", + "sp-runtime", + "sp-std", "sp-timestamp", ] [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "frame-benchmarking", "frame-support", @@ -5877,16 +5870,16 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "frame-support", "frame-system", @@ -5894,44 +5887,44 @@ dependencies = [ "scale-info", "serde", "smallvec", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "jsonrpc-core", "jsonrpc-core-client", "jsonrpc-derive", "pallet-transaction-payment-rpc-runtime-api", "parity-scale-codec", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-rpc 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", + "sp-blockchain", + "sp-core", + "sp-rpc", + "sp-runtime", ] [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", + "sp-runtime", ] [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "frame-benchmarking", "frame-support", @@ -5941,8 +5934,8 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime", + "sp-std", ] [[package]] @@ -5955,30 +5948,30 @@ dependencies = [ "frame-system", "parity-scale-codec", "scale-info", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime", + "sp-std", ] [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "frame-benchmarking", "frame-support", "frame-system", "parity-scale-codec", "scale-info", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "frame-benchmarking", "frame-support", @@ -5986,14 +5979,14 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime", + "sp-std", ] [[package]] name = "pallet-xcm" version = "0.9.12" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "frame-support", "frame-system", @@ -6001,9 +5994,9 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-runtime", + "sp-std", "xcm", "xcm-executor", ] @@ -6011,7 +6004,7 @@ dependencies = [ [[package]] name = "pallet-xcm-benchmarks" version = "0.9.8" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "frame-benchmarking", "frame-support", @@ -6019,8 +6012,8 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime", + "sp-std", "xcm", "xcm-executor", ] @@ -6064,38 +6057,38 @@ dependencies = [ "polkadot-service", "polkadot-test-service", "sc-basic-authorship", - "sc-chain-spec 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-cli 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-executor 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-keystore 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-network 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-rpc 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-rpc-api 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-service 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-telemetry 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-tracing 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-transaction-pool 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-transaction-pool-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "serde", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-block-builder 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-chain-spec", + "sc-cli", + "sc-client-api", + "sc-consensus", + "sc-executor", + "sc-keystore", + "sc-network", + "sc-rpc", + "sc-rpc-api", + "sc-service", + "sc-telemetry", + "sc-tracing", + "sc-transaction-pool", + "sc-transaction-pool-api", + "serde", + "sp-api", + "sp-block-builder", + "sp-blockchain", + "sp-consensus", "sp-consensus-aura", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-keystore 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-offchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-session 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-inherents", + "sp-keystore", + "sp-offchain", + "sp-runtime", + "sp-session", "sp-timestamp", - "sp-transaction-pool 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-transaction-pool", "structopt", "substrate-build-script-utils", "substrate-frame-rpc-system", - "substrate-prometheus-endpoint 0.10.0-dev", + "substrate-prometheus-endpoint", ] [[package]] @@ -6137,18 +6130,18 @@ dependencies = [ "scale-info", "serde", "smallvec", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-block-builder 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", + "sp-block-builder", "sp-consensus-aura", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-offchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-session 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-transaction-pool 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-version 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-inherents", + "sp-io", + "sp-offchain", + "sp-runtime", + "sp-session", + "sp-std", + "sp-transaction-pool", + "sp-version", "substrate-wasm-builder", "xcm", "xcm-builder", @@ -6172,10 +6165,10 @@ dependencies = [ "polkadot-runtime-common", "scale-info", "sp-consensus-aura", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", "substrate-wasm-builder", "xcm", "xcm-executor", @@ -6569,7 +6562,7 @@ dependencies = [ [[package]] name = "polkadot-approval-distribution" version = "0.9.12" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "futures 0.3.17", "polkadot-node-network-protocol", @@ -6583,7 +6576,7 @@ dependencies = [ [[package]] name = "polkadot-availability-bitfield-distribution" version = "0.9.12" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "futures 0.3.17", "polkadot-node-network-protocol", @@ -6596,7 +6589,7 @@ dependencies = [ [[package]] name = "polkadot-availability-distribution" version = "0.9.12" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "derive_more", "futures 0.3.17", @@ -6609,8 +6602,8 @@ dependencies = [ "polkadot-node-subsystem-util", "polkadot-primitives", "rand 0.8.4", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-keystore 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-keystore", "thiserror", "tracing", ] @@ -6618,7 +6611,7 @@ dependencies = [ [[package]] name = "polkadot-availability-recovery" version = "0.9.12" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "futures 0.3.17", "lru 0.7.0", @@ -6630,7 +6623,7 @@ dependencies = [ "polkadot-node-subsystem-util", "polkadot-primitives", "rand 0.8.4", - "sc-network 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-network", "thiserror", "tracing", ] @@ -6638,17 +6631,17 @@ dependencies = [ [[package]] name = "polkadot-cli" version = "0.9.12" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "frame-benchmarking-cli", "futures 0.3.17", "log", "polkadot-node-core-pvf", "polkadot-service", - "sc-cli 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-service 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-trie 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-cli", + "sc-service", + "sp-core", + "sp-trie", "structopt", "substrate-build-script-utils", "thiserror", @@ -6658,7 +6651,7 @@ dependencies = [ [[package]] name = "polkadot-client" version = "0.9.12" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "beefy-primitives", "frame-benchmarking", @@ -6667,22 +6660,22 @@ dependencies = [ "pallet-transaction-payment-rpc-runtime-api", "polkadot-primitives", "polkadot-runtime", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-executor 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-service 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-client-api", + "sc-consensus", + "sc-executor", + "sc-service", + "sp-api", "sp-authority-discovery", - "sp-block-builder 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-block-builder", + "sp-blockchain", + "sp-consensus", "sp-consensus-babe", - "sp-finality-grandpa 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-offchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-session 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-storage 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-transaction-pool 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-finality-grandpa", + "sp-offchain", + "sp-runtime", + "sp-session", + "sp-storage", + "sp-transaction-pool", ] [[package]] @@ -6715,40 +6708,40 @@ dependencies = [ "polkadot-service", "rococo-runtime 0.1.0", "sc-basic-authorship", - "sc-chain-spec 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-cli 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-executor 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-network 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-rpc 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-service 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-telemetry 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-tracing 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-transaction-pool 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-transaction-pool-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-chain-spec", + "sc-cli", + "sc-client-api", + "sc-consensus", + "sc-executor", + "sc-network", + "sc-rpc", + "sc-service", + "sc-telemetry", + "sc-tracing", + "sc-transaction-pool", + "sc-transaction-pool-api", "serde", "shell-runtime", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-block-builder 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", + "sp-block-builder", + "sp-blockchain", + "sp-consensus", "sp-consensus-aura", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-keystore 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-offchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-session 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-inherents", + "sp-io", + "sp-keystore", + "sp-offchain", + "sp-runtime", + "sp-session", "sp-timestamp", - "sp-transaction-pool 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-transaction-pool", "statemine-runtime", "statemint-runtime", "structopt", "substrate-build-script-utils", "substrate-frame-rpc-system", - "substrate-prometheus-endpoint 0.10.0-dev", + "substrate-prometheus-endpoint", "tempfile", "westmint-runtime", ] @@ -6756,7 +6749,7 @@ dependencies = [ [[package]] name = "polkadot-collator-protocol" version = "0.9.12" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "always-assert", "derive_more", @@ -6767,9 +6760,9 @@ dependencies = [ "polkadot-node-subsystem", "polkadot-node-subsystem-util", "polkadot-primitives", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-keystore 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-keystore", + "sp-runtime", "thiserror", "tracing", ] @@ -6777,20 +6770,20 @@ dependencies = [ [[package]] name = "polkadot-core-primitives" version = "0.9.12" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "parity-scale-codec", "parity-util-mem", "scale-info", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-runtime", + "sp-std", ] [[package]] name = "polkadot-dispute-distribution" version = "0.9.12" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "derive_more", "futures 0.3.17", @@ -6802,9 +6795,9 @@ dependencies = [ "polkadot-node-subsystem", "polkadot-node-subsystem-util", "polkadot-primitives", - "sc-network 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-application-crypto 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-keystore 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-network", + "sp-application-crypto", + "sp-keystore", "thiserror", "tracing", ] @@ -6812,21 +6805,21 @@ dependencies = [ [[package]] name = "polkadot-erasure-coding" version = "0.9.12" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "parity-scale-codec", "polkadot-node-primitives", "polkadot-primitives", "reed-solomon-novelpoly", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-trie 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-trie", "thiserror", ] [[package]] name = "polkadot-gossip-support" version = "0.9.12" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "futures 0.3.17", "futures-timer 3.0.2", @@ -6836,17 +6829,17 @@ dependencies = [ "polkadot-primitives", "rand 0.8.4", "rand_chacha 0.3.1", - "sc-network 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-application-crypto 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-keystore 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-network", + "sp-application-crypto", + "sp-core", + "sp-keystore", "tracing", ] [[package]] name = "polkadot-network-bridge" version = "0.9.12" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "async-trait", "futures 0.3.17", @@ -6857,15 +6850,15 @@ dependencies = [ "polkadot-node-subsystem-util", "polkadot-overseer", "polkadot-primitives", - "sc-network 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-network", + "sp-consensus", "tracing", ] [[package]] name = "polkadot-node-collation-generation" version = "0.9.12" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "futures 0.3.17", "parity-scale-codec", @@ -6874,8 +6867,8 @@ dependencies = [ "polkadot-node-subsystem", "polkadot-node-subsystem-util", "polkadot-primitives", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-maybe-compressed-blob 4.1.0-dev", + "sp-core", + "sp-maybe-compressed-blob", "thiserror", "tracing", ] @@ -6883,7 +6876,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-approval-voting" version = "0.9.12" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "bitvec 0.20.4", "derive_more", @@ -6899,19 +6892,19 @@ dependencies = [ "polkadot-node-subsystem-util", "polkadot-overseer", "polkadot-primitives", - "sc-keystore 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-keystore", "schnorrkel", - "sp-application-crypto 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-application-crypto", + "sp-consensus", "sp-consensus-slots", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime", "tracing", ] [[package]] name = "polkadot-node-core-av-store" version = "0.9.12" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "bitvec 0.20.4", "futures 0.3.17", @@ -6931,7 +6924,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-backing" version = "0.9.12" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "bitvec 0.20.4", "futures 0.3.17", @@ -6941,7 +6934,7 @@ dependencies = [ "polkadot-node-subsystem-util", "polkadot-primitives", "polkadot-statement-table", - "sp-keystore 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-keystore", "thiserror", "tracing", ] @@ -6949,13 +6942,13 @@ dependencies = [ [[package]] name = "polkadot-node-core-bitfield-signing" version = "0.9.12" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "futures 0.3.17", "polkadot-node-subsystem", "polkadot-node-subsystem-util", "polkadot-primitives", - "sp-keystore 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-keystore", "thiserror", "tracing", "wasm-timer", @@ -6964,7 +6957,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-candidate-validation" version = "0.9.12" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "async-trait", "futures 0.3.17", @@ -6975,29 +6968,29 @@ dependencies = [ "polkadot-node-subsystem-util", "polkadot-parachain", "polkadot-primitives", - "sp-maybe-compressed-blob 4.1.0-dev", + "sp-maybe-compressed-blob", "tracing", ] [[package]] name = "polkadot-node-core-chain-api" version = "0.9.12" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "futures 0.3.17", "polkadot-node-subsystem", "polkadot-node-subsystem-util", "polkadot-primitives", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-client-api", "sc-consensus-babe", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-blockchain", "tracing", ] [[package]] name = "polkadot-node-core-chain-selection" version = "0.9.12" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "futures 0.3.17", "futures-timer 3.0.2", @@ -7014,7 +7007,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-dispute-coordinator" version = "0.9.12" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "bitvec 0.20.4", "derive_more", @@ -7025,7 +7018,7 @@ dependencies = [ "polkadot-node-subsystem", "polkadot-node-subsystem-util", "polkadot-primitives", - "sc-keystore 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-keystore", "thiserror", "tracing", ] @@ -7033,7 +7026,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-dispute-participation" version = "0.9.12" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "futures 0.3.17", "polkadot-node-primitives", @@ -7046,16 +7039,16 @@ dependencies = [ [[package]] name = "polkadot-node-core-parachains-inherent" version = "0.9.12" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "async-trait", "futures 0.3.17", "futures-timer 3.0.2", "polkadot-node-subsystem", "polkadot-primitives", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-blockchain", + "sp-inherents", + "sp-runtime", "thiserror", "tracing", ] @@ -7063,7 +7056,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-provisioner" version = "0.9.12" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "bitvec 0.20.4", "futures 0.3.17", @@ -7078,7 +7071,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf" version = "0.9.12" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "always-assert", "assert_matches", @@ -7093,23 +7086,23 @@ dependencies = [ "polkadot-node-subsystem-util", "polkadot-parachain", "rand 0.8.4", - "sc-executor 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-executor-common 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-executor", + "sc-executor-common", "sc-executor-wasmtime", "slotmap", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-externalities 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-maybe-compressed-blob 4.1.0-dev", - "sp-tracing 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-wasm-interface 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-externalities", + "sp-io", + "sp-maybe-compressed-blob", + "sp-tracing", + "sp-wasm-interface", "tracing", ] [[package]] name = "polkadot-node-core-runtime-api" version = "0.9.12" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "futures 0.3.17", "memory-lru", @@ -7117,17 +7110,17 @@ dependencies = [ "polkadot-node-subsystem", "polkadot-node-subsystem-util", "polkadot-primitives", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", "sp-authority-discovery", "sp-consensus-babe", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", "tracing", ] [[package]] name = "polkadot-node-jaeger" version = "0.9.12" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "async-std", "lazy_static", @@ -7137,26 +7130,26 @@ dependencies = [ "parking_lot 0.11.2", "polkadot-node-primitives", "polkadot-primitives", - "sc-network 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-network", + "sp-core", "thiserror", ] [[package]] name = "polkadot-node-metrics" version = "0.9.12" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "futures 0.3.17", "futures-timer 3.0.2", "metered-channel", - "substrate-prometheus-endpoint 0.10.0-dev", + "substrate-prometheus-endpoint", ] [[package]] name = "polkadot-node-network-protocol" version = "0.9.12" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "async-trait", "derive_more", @@ -7166,15 +7159,15 @@ dependencies = [ "polkadot-node-primitives", "polkadot-primitives", "sc-authority-discovery", - "sc-network 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "strum 0.22.0", + "sc-network", + "strum", "thiserror", ] [[package]] name = "polkadot-node-primitives" version = "0.9.12" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "bounded-vec", "futures 0.3.17", @@ -7183,12 +7176,12 @@ dependencies = [ "polkadot-primitives", "schnorrkel", "serde", - "sp-application-crypto 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-application-crypto", "sp-consensus-babe", "sp-consensus-vrf", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-keystore 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-maybe-compressed-blob 4.1.0-dev", + "sp-core", + "sp-keystore", + "sp-maybe-compressed-blob", "thiserror", "zstd", ] @@ -7196,7 +7189,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem" version = "0.9.12" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "polkadot-node-jaeger", "polkadot-node-subsystem-types", @@ -7206,7 +7199,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-test-helpers" version = "0.9.12" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "async-trait", "futures 0.3.17", @@ -7214,17 +7207,17 @@ dependencies = [ "polkadot-node-subsystem", "polkadot-node-subsystem-util", "polkadot-primitives", - "sc-keystore 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-application-crypto 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-keyring 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-keystore 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-keystore", + "sp-application-crypto", + "sp-core", + "sp-keyring", + "sp-keystore", ] [[package]] name = "polkadot-node-subsystem-types" version = "0.9.12" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "derive_more", "futures 0.3.17", @@ -7234,16 +7227,16 @@ dependencies = [ "polkadot-overseer-gen", "polkadot-primitives", "polkadot-statement-table", - "sc-network 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-network", "smallvec", - "substrate-prometheus-endpoint 0.10.0-dev", + "substrate-prometheus-endpoint", "thiserror", ] [[package]] name = "polkadot-node-subsystem-util" version = "0.9.12" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "async-trait", "derive_more", @@ -7260,9 +7253,9 @@ dependencies = [ "polkadot-overseer", "polkadot-primitives", "rand 0.8.4", - "sp-application-crypto 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-keystore 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-application-crypto", + "sp-core", + "sp-keystore", "thiserror", "tracing", ] @@ -7270,7 +7263,7 @@ dependencies = [ [[package]] name = "polkadot-overseer" version = "0.9.12" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "futures 0.3.17", "futures-timer 3.0.2", @@ -7283,15 +7276,15 @@ dependencies = [ "polkadot-node-subsystem-types", "polkadot-overseer-gen", "polkadot-primitives", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-client-api", + "sp-api", "tracing", ] [[package]] name = "polkadot-overseer-gen" version = "0.9.12" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "async-trait", "futures 0.3.17", @@ -7308,7 +7301,7 @@ dependencies = [ [[package]] name = "polkadot-overseer-gen-proc-macro" version = "0.9.12" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "proc-macro-crate 1.1.0", "proc-macro2", @@ -7319,7 +7312,7 @@ dependencies = [ [[package]] name = "polkadot-parachain" version = "0.9.12" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "derive_more", "frame-support", @@ -7328,15 +7321,15 @@ dependencies = [ "polkadot-core-primitives", "scale-info", "serde", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-runtime", + "sp-std", ] [[package]] name = "polkadot-primitives" version = "0.9.12" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "bitvec 0.20.4", "frame-system", @@ -7347,26 +7340,26 @@ dependencies = [ "polkadot-parachain", "scale-info", "serde", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-application-crypto 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-arithmetic 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", + "sp-application-crypto", + "sp-arithmetic", "sp-authority-discovery", "sp-consensus-slots", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-keystore 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-staking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-trie 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-version 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-inherents", + "sp-io", + "sp-keystore", + "sp-runtime", + "sp-staking", + "sp-std", + "sp-trie", + "sp-version", ] [[package]] name = "polkadot-rpc" version = "0.9.12" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "beefy-gadget", "beefy-gadget-rpc", @@ -7374,30 +7367,30 @@ dependencies = [ "pallet-mmr-rpc", "pallet-transaction-payment-rpc", "polkadot-primitives", - "sc-chain-spec 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-chain-spec", + "sc-client-api", "sc-consensus-babe", "sc-consensus-babe-rpc", "sc-consensus-epochs", "sc-finality-grandpa", "sc-finality-grandpa-rpc", - "sc-rpc 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-rpc", "sc-sync-state-rpc", - "sc-transaction-pool-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-block-builder 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-transaction-pool-api", + "sp-api", + "sp-block-builder", + "sp-blockchain", + "sp-consensus", "sp-consensus-babe", - "sp-keystore 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-keystore", + "sp-runtime", "substrate-frame-rpc-system", ] [[package]] name = "polkadot-runtime" version = "0.9.12" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "beefy-primitives", "bitvec 0.20.4", @@ -7453,21 +7446,21 @@ dependencies = [ "serde", "serde_derive", "smallvec", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", "sp-authority-discovery", - "sp-block-builder 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-block-builder", "sp-consensus-babe", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-inherents", + "sp-io", "sp-npos-elections", - "sp-offchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-session 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-staking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-transaction-pool 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-version 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-offchain", + "sp-runtime", + "sp-session", + "sp-staking", + "sp-std", + "sp-transaction-pool", + "sp-version", "static_assertions", "substrate-wasm-builder", ] @@ -7475,7 +7468,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-common" version = "0.9.12" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "beefy-primitives", "bitvec 0.20.4", @@ -7506,15 +7499,15 @@ dependencies = [ "serde", "serde_derive", "slot-range-helper", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", + "sp-core", + "sp-inherents", + "sp-io", "sp-npos-elections", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-session 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-staking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime", + "sp-session", + "sp-staking", + "sp-std", "static_assertions", "xcm", ] @@ -7522,7 +7515,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-parachains" version = "0.9.12" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "bitflags", "bitvec 0.20.4", @@ -7545,15 +7538,15 @@ dependencies = [ "rustc-hex", "scale-info", "serde", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-keystore 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-session 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-staking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", + "sp-core", + "sp-inherents", + "sp-io", + "sp-keystore", + "sp-runtime", + "sp-session", + "sp-staking", + "sp-std", "xcm", "xcm-executor", ] @@ -7561,7 +7554,7 @@ dependencies = [ [[package]] name = "polkadot-service" version = "0.9.12" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "async-trait", "beefy-gadget", @@ -7614,44 +7607,44 @@ dependencies = [ "rococo-runtime 0.9.12", "sc-authority-discovery", "sc-basic-authorship", - "sc-block-builder 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-chain-spec 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-client-db 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-block-builder", + "sc-chain-spec", + "sc-client-api", + "sc-client-db", + "sc-consensus", "sc-consensus-babe", "sc-consensus-slots", "sc-consensus-uncles", - "sc-executor 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-executor", "sc-finality-grandpa", - "sc-keystore 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-network 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-offchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-service 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-keystore", + "sc-network", + "sc-offchain", + "sc-service", "sc-sync-state-rpc", - "sc-telemetry 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-transaction-pool 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-telemetry", + "sc-transaction-pool", "serde", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", "sp-authority-discovery", - "sp-block-builder 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-block-builder", + "sp-blockchain", + "sp-consensus", "sp-consensus-babe", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-finality-grandpa 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-keystore 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-offchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-session 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-state-machine 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-storage 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-finality-grandpa", + "sp-inherents", + "sp-io", + "sp-keystore", + "sp-offchain", + "sp-runtime", + "sp-session", + "sp-state-machine", + "sp-storage", "sp-timestamp", - "sp-transaction-pool 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-trie 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "substrate-prometheus-endpoint 0.10.0-dev", + "sp-transaction-pool", + "sp-trie", + "substrate-prometheus-endpoint", "thiserror", "tracing", "westend-runtime", @@ -7660,7 +7653,7 @@ dependencies = [ [[package]] name = "polkadot-statement-distribution" version = "0.9.12" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "arrayvec 0.5.2", "derive_more", @@ -7672,8 +7665,8 @@ dependencies = [ "polkadot-node-subsystem", "polkadot-node-subsystem-util", "polkadot-primitives", - "sp-keystore 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-staking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-keystore", + "sp-staking", "thiserror", "tracing", ] @@ -7681,34 +7674,34 @@ dependencies = [ [[package]] name = "polkadot-statement-table" version = "0.9.12" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "parity-scale-codec", "polkadot-primitives", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", ] [[package]] name = "polkadot-test-client" version = "0.9.12" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "parity-scale-codec", "polkadot-node-subsystem", "polkadot-primitives", "polkadot-test-runtime", "polkadot-test-service", - "sc-block-builder 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-service 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-block-builder", + "sc-consensus", + "sc-service", + "sp-api", + "sp-blockchain", + "sp-consensus", "sp-consensus-babe", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-state-machine 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-inherents", + "sp-runtime", + "sp-state-machine", "sp-timestamp", "substrate-test-client", ] @@ -7716,7 +7709,7 @@ dependencies = [ [[package]] name = "polkadot-test-runtime" version = "0.9.12" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "beefy-primitives", "bitvec 0.20.4", @@ -7754,20 +7747,20 @@ dependencies = [ "serde", "serde_derive", "smallvec", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", "sp-authority-discovery", - "sp-block-builder 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-block-builder", "sp-consensus-babe", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-offchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-session 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-staking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-transaction-pool 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-version 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-inherents", + "sp-io", + "sp-offchain", + "sp-runtime", + "sp-session", + "sp-staking", + "sp-std", + "sp-transaction-pool", + "sp-version", "substrate-wasm-builder", "xcm", "xcm-builder", @@ -7777,7 +7770,7 @@ dependencies = [ [[package]] name = "polkadot-test-service" version = "0.9.12" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "frame-benchmarking", "frame-system", @@ -7799,28 +7792,28 @@ dependencies = [ "polkadot-test-runtime", "rand 0.8.4", "sc-authority-discovery", - "sc-chain-spec 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-cli 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-chain-spec", + "sc-cli", + "sc-client-api", + "sc-consensus", "sc-consensus-babe", - "sc-executor 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-executor", "sc-finality-grandpa", - "sc-network 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-service 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-tracing 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-transaction-pool 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-arithmetic 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-network", + "sc-service", + "sc-tracing", + "sc-transaction-pool", + "sp-arithmetic", "sp-authority-discovery", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-blockchain", + "sp-consensus", "sp-consensus-babe", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-finality-grandpa 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-keyring 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-state-machine 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-finality-grandpa", + "sp-inherents", + "sp-keyring", + "sp-runtime", + "sp-state-machine", "substrate-test-client", "tempfile", "tokio", @@ -7928,42 +7921,16 @@ dependencies = [ "toml", ] -[[package]] -name = "proc-macro-error" -version = "0.4.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "18f33027081eba0a6d8aba6d1b1c3a3be58cbb12106341c2d5759fcd9b5277e7" -dependencies = [ - "proc-macro-error-attr 0.4.12", - "proc-macro2", - "quote", - "syn", - "version_check", -] - [[package]] name = "proc-macro-error" version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" dependencies = [ - "proc-macro-error-attr 1.0.4", - "proc-macro2", - "quote", - "syn", - "version_check", -] - -[[package]] -name = "proc-macro-error-attr" -version = "0.4.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8a5b4b77fdb63c1eca72173d68d24501c54ab1269409f6b672c85deb18af69de" -dependencies = [ + "proc-macro-error-attr", "proc-macro2", "quote", "syn", - "syn-mid", "version_check", ] @@ -7999,20 +7966,6 @@ dependencies = [ "unicode-xid", ] -[[package]] -name = "prometheus" -version = "0.12.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5986aa8d62380092d2f50f8b1cdba9cb9b6731ffd4b25b51fd126b6c3e05b99c" -dependencies = [ - "cfg-if 1.0.0", - "fnv", - "lazy_static", - "memchr", - "parking_lot 0.11.2", - "thiserror", -] - [[package]] name = "prometheus" version = "0.13.0" @@ -8437,19 +8390,18 @@ dependencies = [ [[package]] name = "remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "env_logger 0.9.0", - "jsonrpsee-proc-macros", - "jsonrpsee-ws-client", + "jsonrpsee", "log", "parity-scale-codec", "serde", "serde_json", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-version 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-io", + "sp-runtime", + "sp-version", ] [[package]] @@ -8544,18 +8496,18 @@ dependencies = [ "polkadot-parachain", "scale-info", "serde", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-block-builder 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", + "sp-block-builder", "sp-consensus-aura", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-offchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-session 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-transaction-pool 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-version 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-inherents", + "sp-io", + "sp-offchain", + "sp-runtime", + "sp-session", + "sp-std", + "sp-transaction-pool", + "sp-version", "substrate-wasm-builder", "xcm", "xcm-builder", @@ -8565,7 +8517,7 @@ dependencies = [ [[package]] name = "rococo-runtime" version = "0.9.12" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "beefy-primitives", "bp-messages", @@ -8616,20 +8568,20 @@ dependencies = [ "serde", "serde_derive", "smallvec", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", "sp-authority-discovery", - "sp-block-builder 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-block-builder", "sp-consensus-babe", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-offchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-session 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-staking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-transaction-pool 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-version 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-inherents", + "sp-io", + "sp-offchain", + "sp-runtime", + "sp-session", + "sp-staking", + "sp-std", + "sp-transaction-pool", + "sp-version", "substrate-wasm-builder", "xcm", "xcm-builder", @@ -8759,32 +8711,21 @@ dependencies = [ "winapi-util", ] -[[package]] -name = "sc-allocator" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" -dependencies = [ - "log", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-wasm-interface 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "thiserror", -] - [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "log", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-wasm-interface 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-wasm-interface", "thiserror", ] [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "async-trait", "derive_more", @@ -8797,120 +8738,77 @@ dependencies = [ "prost 0.8.0", "prost-build 0.9.0", "rand 0.7.3", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-network 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-client-api", + "sc-network", + "sp-api", "sp-authority-discovery", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-keystore 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "substrate-prometheus-endpoint 0.10.0-dev", + "sp-blockchain", + "sp-core", + "sp-keystore", + "sp-runtime", + "substrate-prometheus-endpoint", ] [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "futures 0.3.17", "futures-timer 3.0.2", "log", "parity-scale-codec", - "sc-block-builder 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-block-builder", + "sc-client-api", "sc-proposer-metrics", - "sc-telemetry 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-transaction-pool-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "substrate-prometheus-endpoint 0.10.0-dev", -] - -[[package]] -name = "sc-block-builder" -version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" -dependencies = [ - "parity-scale-codec", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-block-builder 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-state-machine 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-telemetry", + "sc-transaction-pool-api", + "sp-api", + "sp-blockchain", + "sp-consensus", + "sp-core", + "sp-inherents", + "sp-runtime", + "substrate-prometheus-endpoint", ] [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "parity-scale-codec", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-block-builder 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-state-machine 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", + "sc-client-api", + "sp-api", + "sp-block-builder", + "sp-blockchain", + "sp-core", + "sp-inherents", + "sp-runtime", + "sp-state-machine", ] [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "impl-trait-for-tuples", "memmap2 0.5.0", "parity-scale-codec", - "sc-chain-spec-derive 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-network 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-telemetry 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-chain-spec-derive", + "sc-network", + "sc-telemetry", "serde", "serde_json", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", -] - -[[package]] -name = "sc-chain-spec" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" -dependencies = [ - "impl-trait-for-tuples", - "parity-scale-codec", - "sc-chain-spec-derive 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sc-network 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sc-telemetry 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "serde", - "serde_json", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", -] - -[[package]] -name = "sc-chain-spec-derive" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" -dependencies = [ - "proc-macro-crate 1.1.0", - "proc-macro2", - "quote", - "syn", + "sp-core", + "sp-runtime", ] [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "proc-macro-crate 1.1.0", "proc-macro2", @@ -8921,45 +8819,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" -dependencies = [ - "chrono", - "fdlimit", - "futures 0.3.17", - "hex", - "libp2p", - "log", - "names", - "parity-scale-codec", - "rand 0.7.3", - "regex", - "rpassword", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-keystore 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-network 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-service 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-telemetry 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-tracing 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-utils 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "serde", - "serde_json", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-keyring 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-keystore 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-panic-handler 4.0.0-dev", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-version 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "structopt", - "thiserror", - "tiny-bip39", - "tokio", -] - -[[package]] -name = "sc-cli" -version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "chrono", "fdlimit", @@ -8972,22 +8832,22 @@ dependencies = [ "rand 0.7.3", "regex", "rpassword", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sc-keystore 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sc-network 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sc-service 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sc-telemetry 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sc-tracing 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sc-utils 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", + "sc-client-api", + "sc-keystore", + "sc-network", + "sc-service", + "sc-telemetry", + "sc-tracing", + "sc-utils", "serde", "serde_json", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-keyring 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-keystore 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-panic-handler 3.0.0", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-version 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", + "sp-blockchain", + "sp-core", + "sp-keyring", + "sp-keystore", + "sp-panic-handler", + "sp-runtime", + "sp-version", "structopt", "thiserror", "tiny-bip39", @@ -8997,35 +8857,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" -dependencies = [ - "fnv", - "futures 0.3.17", - "hash-db", - "log", - "parity-scale-codec", - "parking_lot 0.11.2", - "sc-executor 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-transaction-pool-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-utils 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-database 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-externalities 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-keystore 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-state-machine 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-storage 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-trie 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "substrate-prometheus-endpoint 0.10.0-dev", -] - -[[package]] -name = "sc-client-api" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "fnv", "futures 0.3.17", @@ -9033,27 +8865,27 @@ dependencies = [ "log", "parity-scale-codec", "parking_lot 0.11.2", - "sc-executor 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sc-transaction-pool-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sc-utils 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-database 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-externalities 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-keystore 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-state-machine 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-storage 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-trie 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "substrate-prometheus-endpoint 0.9.0", + "sc-executor", + "sc-transaction-pool-api", + "sc-utils", + "sp-api", + "sp-blockchain", + "sp-consensus", + "sp-core", + "sp-database", + "sp-externalities", + "sp-keystore", + "sp-runtime", + "sp-state-machine", + "sp-storage", + "sp-trie", + "substrate-prometheus-endpoint", ] [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "hash-db", "kvdb", @@ -9064,44 +8896,21 @@ dependencies = [ "parity-db", "parity-scale-codec", "parking_lot 0.11.2", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-state-db 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-arithmetic 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-database 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-state-machine 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-trie 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", -] - -[[package]] -name = "sc-client-db" -version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" -dependencies = [ - "hash-db", - "kvdb", - "kvdb-memorydb", - "linked-hash-map", - "log", - "parity-scale-codec", - "parking_lot 0.11.2", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sc-state-db 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-arithmetic 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-database 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-state-machine 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-trie 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", + "sc-client-api", + "sc-state-db", + "sp-arithmetic", + "sp-blockchain", + "sp-core", + "sp-database", + "sp-runtime", + "sp-state-machine", + "sp-trie", ] [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "async-trait", "futures 0.3.17", @@ -9109,80 +8918,56 @@ dependencies = [ "libp2p", "log", "parking_lot 0.11.2", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-utils 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "serde", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-state-machine 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "substrate-prometheus-endpoint 0.10.0-dev", + "sc-client-api", + "sc-utils", + "serde", + "sp-api", + "sp-blockchain", + "sp-consensus", + "sp-core", + "sp-runtime", + "sp-state-machine", + "substrate-prometheus-endpoint", "thiserror", ] [[package]] -name = "sc-consensus" +name = "sc-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" +source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" dependencies = [ "async-trait", - "futures 0.3.17", - "futures-timer 3.0.2", - "libp2p", - "log", - "parking_lot 0.11.2", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sc-utils 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "serde", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-state-machine 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "substrate-prometheus-endpoint 0.9.0", - "thiserror", -] - -[[package]] -name = "sc-consensus-aura" -version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" -dependencies = [ - "async-trait", - "derive_more", + "derive_more", "futures 0.3.17", "log", "parity-scale-codec", - "sc-block-builder 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-block-builder", + "sc-client-api", + "sc-consensus", "sc-consensus-slots", - "sc-telemetry 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-application-crypto 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-block-builder 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-telemetry", + "sp-api", + "sp-application-crypto", + "sp-block-builder", + "sp-blockchain", + "sp-consensus", "sp-consensus-aura", "sp-consensus-slots", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-keystore 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "substrate-prometheus-endpoint 0.10.0-dev", + "sp-core", + "sp-inherents", + "sp-keystore", + "sp-runtime", + "substrate-prometheus-endpoint", ] [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "async-trait", "derive_more", - "fork-tree 3.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "fork-tree", "futures 0.3.17", "log", "merlin", @@ -9193,35 +8978,35 @@ dependencies = [ "parking_lot 0.11.2", "rand 0.7.3", "retain_mut", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-client-api", + "sc-consensus", "sc-consensus-epochs", "sc-consensus-slots", - "sc-keystore 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-telemetry 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-keystore", + "sc-telemetry", "schnorrkel", "serde", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-application-crypto 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-block-builder 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", + "sp-application-crypto", + "sp-block-builder", + "sp-blockchain", + "sp-consensus", "sp-consensus-babe", "sp-consensus-slots", "sp-consensus-vrf", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-keystore 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-version 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "substrate-prometheus-endpoint 0.10.0-dev", + "sp-core", + "sp-inherents", + "sp-io", + "sp-keystore", + "sp-runtime", + "sp-version", + "substrate-prometheus-endpoint", ] [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "derive_more", "futures 0.3.17", @@ -9230,53 +9015,53 @@ dependencies = [ "jsonrpc-derive", "sc-consensus-babe", "sc-consensus-epochs", - "sc-rpc-api 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-rpc-api", "serde", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-application-crypto 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", + "sp-application-crypto", + "sp-blockchain", + "sp-consensus", "sp-consensus-babe", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-keystore 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-keystore", + "sp-runtime", ] [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ - "fork-tree 3.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "fork-tree", "parity-scale-codec", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-client-api", + "sc-consensus", + "sp-blockchain", + "sp-runtime", ] [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "async-trait", "futures 0.3.17", "futures-timer 3.0.2", "log", "parity-scale-codec", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-telemetry 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-arithmetic 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-client-api", + "sc-consensus", + "sc-telemetry", + "sp-api", + "sp-arithmetic", + "sp-blockchain", + "sp-consensus", "sp-consensus-slots", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-state-machine 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-inherents", + "sp-runtime", + "sp-state-machine", "sp-timestamp", "thiserror", ] @@ -9284,98 +9069,55 @@ dependencies = [ [[package]] name = "sc-consensus-uncles" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-client-api", "sp-authorship", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime", "thiserror", ] [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "lazy_static", "libsecp256k1 0.6.0", "log", "parity-scale-codec", "parking_lot 0.11.2", - "sc-executor-common 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-executor-wasmi 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-executor-common", + "sc-executor-wasmi", "sc-executor-wasmtime", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", + "sp-core", "sp-core-hashing-proc-macro", - "sp-externalities 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-panic-handler 4.0.0-dev", - "sp-runtime-interface 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-tasks 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-trie 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-version 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-wasm-interface 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "wasmi", -] - -[[package]] -name = "sc-executor" -version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" -dependencies = [ - "lazy_static", - "libsecp256k1 0.6.0", - "log", - "parity-scale-codec", - "parking_lot 0.11.2", - "sc-executor-common 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sc-executor-wasmi 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-externalities 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-panic-handler 3.0.0", - "sp-runtime-interface 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-tasks 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-trie 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-version 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-wasm-interface 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", + "sp-externalities", + "sp-io", + "sp-panic-handler", + "sp-runtime-interface", + "sp-tasks", + "sp-trie", + "sp-version", + "sp-wasm-interface", "wasmi", ] [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" -dependencies = [ - "derive_more", - "environmental", - "parity-scale-codec", - "pwasm-utils", - "sc-allocator 4.1.0-dev", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-maybe-compressed-blob 4.1.0-dev", - "sp-serializer 4.0.0-dev", - "sp-wasm-interface 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "thiserror", - "wasmi", -] - -[[package]] -name = "sc-executor-common" -version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "derive_more", "environmental", "parity-scale-codec", "pwasm-utils", - "sc-allocator 4.0.0-dev", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-maybe-compressed-blob 4.0.0-dev", - "sp-serializer 3.0.0", - "sp-wasm-interface 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", + "sc-allocator", + "sp-core", + "sp-maybe-compressed-blob", + "sp-serializer", + "sp-wasm-interface", "thiserror", "wasmi", ] @@ -9383,94 +9125,78 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" -dependencies = [ - "log", - "parity-scale-codec", - "sc-allocator 4.1.0-dev", - "sc-executor-common 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "scoped-tls", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime-interface 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-wasm-interface 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "wasmi", -] - -[[package]] -name = "sc-executor-wasmi" -version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "log", "parity-scale-codec", - "sc-allocator 4.0.0-dev", - "sc-executor-common 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", + "sc-allocator", + "sc-executor-common", "scoped-tls", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-runtime-interface 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-wasm-interface 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", + "sp-core", + "sp-runtime-interface", + "sp-wasm-interface", "wasmi", ] [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "cfg-if 1.0.0", "libc", "log", "parity-scale-codec", "parity-wasm 0.42.2", - "sc-allocator 4.1.0-dev", - "sc-executor-common 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime-interface 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-wasm-interface 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-allocator", + "sc-executor-common", + "sp-core", + "sp-runtime-interface", + "sp-wasm-interface", "wasmtime", ] [[package]] name = "sc-finality-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "async-trait", "derive_more", "dyn-clone", "finality-grandpa", - "fork-tree 3.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "fork-tree", "futures 0.3.17", "futures-timer 3.0.2", "log", "parity-scale-codec", "parking_lot 0.11.2", "rand 0.8.4", - "sc-block-builder 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-keystore 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-network 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-block-builder", + "sc-client-api", + "sc-consensus", + "sc-keystore", + "sc-network", "sc-network-gossip", - "sc-telemetry 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-utils 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-telemetry", + "sc-utils", "serde_json", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-application-crypto 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-arithmetic 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-finality-grandpa 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-keystore 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "substrate-prometheus-endpoint 0.10.0-dev", + "sp-api", + "sp-application-crypto", + "sp-arithmetic", + "sp-blockchain", + "sp-consensus", + "sp-core", + "sp-finality-grandpa", + "sp-keystore", + "sp-runtime", + "substrate-prometheus-endpoint", ] [[package]] name = "sc-finality-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "derive_more", "finality-grandpa", @@ -9481,120 +9207,70 @@ dependencies = [ "jsonrpc-pubsub", "log", "parity-scale-codec", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-client-api", "sc-finality-grandpa", - "sc-rpc 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-rpc", "serde", "serde_json", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", -] - -[[package]] -name = "sc-informant" -version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" -dependencies = [ - "ansi_term 0.12.1", - "futures 0.3.17", - "futures-timer 3.0.2", - "log", - "parity-util-mem", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-network 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-transaction-pool-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-blockchain", + "sp-core", + "sp-runtime", ] [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "ansi_term 0.12.1", "futures 0.3.17", "futures-timer 3.0.2", "log", "parity-util-mem", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sc-network 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sc-transaction-pool-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", -] - -[[package]] -name = "sc-keystore" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" -dependencies = [ - "async-trait", - "derive_more", - "hex", - "parking_lot 0.11.2", - "serde_json", - "sp-application-crypto 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-keystore 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-client-api", + "sc-network", + "sc-transaction-pool-api", + "sp-blockchain", + "sp-runtime", ] [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "async-trait", "derive_more", "hex", "parking_lot 0.11.2", "serde_json", - "sp-application-crypto 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-keystore 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", -] - -[[package]] -name = "sc-light" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" -dependencies = [ - "hash-db", - "parity-scale-codec", - "parking_lot 0.11.2", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-executor 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-externalities 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-state-machine 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-application-crypto", + "sp-core", + "sp-keystore", ] [[package]] name = "sc-light" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "hash-db", "parity-scale-codec", "parking_lot 0.11.2", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sc-executor 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-externalities 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-state-machine 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", + "sc-client-api", + "sc-executor", + "sp-api", + "sp-blockchain", + "sp-core", + "sp-externalities", + "sp-runtime", + "sp-state-machine", ] [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "async-std", "async-trait", @@ -9605,7 +9281,7 @@ dependencies = [ "derive_more", "either", "fnv", - "fork-tree 3.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "fork-tree", "futures 0.3.17", "futures-timer 3.0.2", "hex", @@ -9621,72 +9297,21 @@ dependencies = [ "prost 0.8.0", "prost-build 0.9.0", "rand 0.7.3", - "sc-block-builder 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-peerset 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-utils 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "serde", - "serde_json", - "smallvec", - "sp-arithmetic 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-finality-grandpa 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "substrate-prometheus-endpoint 0.10.0-dev", - "thiserror", - "unsigned-varint 0.6.0", - "void", - "zeroize", -] - -[[package]] -name = "sc-network" -version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" -dependencies = [ - "async-std", - "async-trait", - "asynchronous-codec 0.5.0", - "bitflags", - "bytes 1.1.0", - "cid", - "derive_more", - "either", - "fnv", - "fork-tree 3.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "futures 0.3.17", - "futures-timer 3.0.2", - "hex", - "ip_network", - "libp2p", - "linked-hash-map", - "linked_hash_set", - "log", - "lru 0.6.6", - "parity-scale-codec", - "parking_lot 0.11.2", - "pin-project 1.0.8", - "prost 0.8.0", - "prost-build 0.8.0", - "rand 0.7.3", - "sc-block-builder 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sc-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sc-peerset 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sc-utils 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", + "sc-block-builder", + "sc-client-api", + "sc-consensus", + "sc-peerset", + "sc-utils", "serde", "serde_json", "smallvec", - "sp-arithmetic 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-finality-grandpa 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "substrate-prometheus-endpoint 0.9.0", + "sp-arithmetic", + "sp-blockchain", + "sp-consensus", + "sp-core", + "sp-finality-grandpa", + "sp-runtime", + "substrate-prometheus-endpoint", "thiserror", "unsigned-varint 0.6.0", "void", @@ -9696,23 +9321,23 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "futures 0.3.17", "futures-timer 3.0.2", "libp2p", "log", "lru 0.7.0", - "sc-network 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "substrate-prometheus-endpoint 0.10.0-dev", + "sc-network", + "sp-runtime", + "substrate-prometheus-endpoint", "tracing", ] [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "bytes 1.1.0", "fnv", @@ -9727,65 +9352,25 @@ dependencies = [ "parity-scale-codec", "parking_lot 0.11.2", "rand 0.7.3", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-network 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-utils 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-offchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "threadpool", -] - -[[package]] -name = "sc-offchain" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" -dependencies = [ - "bytes 1.1.0", - "fnv", - "futures 0.3.17", - "futures-timer 3.0.2", - "hex", - "hyper", - "hyper-rustls", - "log", - "num_cpus", - "parity-scale-codec", - "parking_lot 0.11.2", - "rand 0.7.3", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sc-network 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sc-utils 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-offchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", + "sc-client-api", + "sc-network", + "sc-utils", + "sp-api", + "sp-core", + "sp-offchain", + "sp-runtime", "threadpool", ] [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" -dependencies = [ - "futures 0.3.17", - "libp2p", - "log", - "sc-utils 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "serde_json", - "wasm-timer", -] - -[[package]] -name = "sc-peerset" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "futures 0.3.17", "libp2p", "log", - "sc-utils 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", + "sc-utils", "serde_json", "wasm-timer", ] @@ -9793,47 +9378,16 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" -dependencies = [ - "log", - "substrate-prometheus-endpoint 0.10.0-dev", -] - -[[package]] -name = "sc-rpc" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ - "futures 0.3.17", - "hash-db", - "jsonrpc-core", - "jsonrpc-pubsub", "log", - "parity-scale-codec", - "parking_lot 0.11.2", - "sc-block-builder 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-chain-spec 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-rpc-api 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-tracing 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-transaction-pool-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-utils 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "serde_json", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-keystore 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-offchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-rpc 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-session 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-version 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "substrate-prometheus-endpoint", ] [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "futures 0.3.17", "hash-db", @@ -9842,54 +9396,29 @@ dependencies = [ "log", "parity-scale-codec", "parking_lot 0.11.2", - "sc-block-builder 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sc-chain-spec 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sc-rpc-api 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sc-tracing 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sc-transaction-pool-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sc-utils 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "serde_json", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-keystore 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-offchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-rpc 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-session 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-version 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", -] - -[[package]] -name = "sc-rpc-api" -version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" -dependencies = [ - "futures 0.3.17", - "jsonrpc-core", - "jsonrpc-core-client", - "jsonrpc-derive", - "jsonrpc-pubsub", - "log", - "parity-scale-codec", - "parking_lot 0.11.2", - "sc-chain-spec 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-transaction-pool-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "serde", + "sc-block-builder", + "sc-chain-spec", + "sc-client-api", + "sc-rpc-api", + "sc-tracing", + "sc-transaction-pool-api", + "sc-utils", "serde_json", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-rpc 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-tracing 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-version 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "thiserror", + "sp-api", + "sp-blockchain", + "sp-core", + "sp-keystore", + "sp-offchain", + "sp-rpc", + "sp-runtime", + "sp-session", + "sp-version", ] [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "futures 0.3.17", "jsonrpc-core", @@ -9899,39 +9428,22 @@ dependencies = [ "log", "parity-scale-codec", "parking_lot 0.11.2", - "sc-chain-spec 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sc-transaction-pool-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", + "sc-chain-spec", + "sc-transaction-pool-api", "serde", "serde_json", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-rpc 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-tracing 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-version 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", + "sp-core", + "sp-rpc", + "sp-runtime", + "sp-tracing", + "sp-version", "thiserror", ] [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" -dependencies = [ - "futures 0.3.17", - "jsonrpc-core", - "jsonrpc-http-server", - "jsonrpc-ipc-server", - "jsonrpc-pubsub", - "jsonrpc-ws-server", - "log", - "serde_json", - "substrate-prometheus-endpoint 0.10.0-dev", - "tokio", -] - -[[package]] -name = "sc-rpc-server" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "futures 0.3.17", "jsonrpc-core", @@ -9941,81 +9453,17 @@ dependencies = [ "jsonrpc-ws-server", "log", "serde_json", - "substrate-prometheus-endpoint 0.9.0", - "tokio", -] - -[[package]] -name = "sc-service" -version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" -dependencies = [ - "async-trait", - "directories 4.0.1", - "exit-future", - "futures 0.3.17", - "futures-timer 3.0.2", - "hash-db", - "jsonrpc-core", - "jsonrpc-pubsub", - "log", - "parity-scale-codec", - "parity-util-mem", - "parking_lot 0.11.2", - "pin-project 1.0.8", - "rand 0.7.3", - "sc-block-builder 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-chain-spec 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-client-db 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-executor 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-informant 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-keystore 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-network 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-offchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-rpc 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-rpc-server 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-telemetry 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-tracing 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-transaction-pool 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-transaction-pool-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-utils 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "serde", - "serde_json", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-application-crypto 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-block-builder 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-externalities 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-keystore 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-session 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-state-machine 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-storage 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-tracing 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-transaction-pool 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-transaction-storage-proof 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-trie 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-version 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "substrate-prometheus-endpoint 0.10.0-dev", - "tempfile", - "thiserror", + "substrate-prometheus-endpoint", "tokio", - "tracing", - "tracing-futures", ] [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "async-trait", - "directories 3.0.2", + "directories", "exit-future", "futures 0.3.17", "futures-timer 3.0.2", @@ -10028,45 +9476,44 @@ dependencies = [ "parking_lot 0.11.2", "pin-project 1.0.8", "rand 0.7.3", - "sc-block-builder 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sc-chain-spec 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sc-client-db 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sc-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sc-executor 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sc-informant 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sc-keystore 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sc-light 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sc-network 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sc-offchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sc-rpc 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sc-rpc-server 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sc-telemetry 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sc-tracing 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sc-transaction-pool 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sc-transaction-pool-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sc-utils 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", + "sc-block-builder", + "sc-chain-spec", + "sc-client-api", + "sc-client-db", + "sc-consensus", + "sc-executor", + "sc-informant", + "sc-keystore", + "sc-network", + "sc-offchain", + "sc-rpc", + "sc-rpc-server", + "sc-telemetry", + "sc-tracing", + "sc-transaction-pool", + "sc-transaction-pool-api", + "sc-utils", "serde", "serde_json", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-application-crypto 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-block-builder 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-externalities 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-keystore 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-session 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-state-machine 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-storage 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-tracing 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-transaction-pool 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-transaction-storage-proof 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-trie 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-version 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "substrate-prometheus-endpoint 0.9.0", + "sp-api", + "sp-application-crypto", + "sp-block-builder", + "sp-blockchain", + "sp-consensus", + "sp-core", + "sp-externalities", + "sp-inherents", + "sp-keystore", + "sp-runtime", + "sp-session", + "sp-state-machine", + "sp-storage", + "sp-tracing", + "sp-transaction-pool", + "sp-transaction-storage-proof", + "sp-trie", + "sp-version", + "substrate-prometheus-endpoint", "tempfile", "thiserror", "tokio", @@ -10077,75 +9524,43 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" -dependencies = [ - "log", - "parity-scale-codec", - "parity-util-mem", - "parity-util-mem-derive", - "parking_lot 0.11.2", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", -] - -[[package]] -name = "sc-state-db" -version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "log", "parity-scale-codec", "parity-util-mem", "parity-util-mem-derive", "parking_lot 0.11.2", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", + "sc-client-api", + "sp-core", ] [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "jsonrpc-core", "jsonrpc-core-client", "jsonrpc-derive", "parity-scale-codec", - "sc-chain-spec 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-chain-spec", + "sc-client-api", "sc-consensus-babe", "sc-consensus-epochs", "sc-finality-grandpa", - "sc-rpc-api 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-rpc-api", "serde", "serde_json", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-blockchain", + "sp-runtime", "thiserror", ] [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" -dependencies = [ - "chrono", - "futures 0.3.17", - "libp2p", - "log", - "parking_lot 0.11.2", - "pin-project 1.0.8", - "rand 0.7.3", - "serde", - "serde_json", - "thiserror", - "wasm-timer", -] - -[[package]] -name = "sc-telemetry" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "chrono", "futures 0.3.17", @@ -10163,7 +9578,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "ansi_term 0.12.1", "atty", @@ -10175,46 +9590,16 @@ dependencies = [ "parking_lot 0.11.2", "regex", "rustc-hash", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-rpc-server 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-tracing-proc-macro 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "serde", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-rpc 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-tracing 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "thiserror", - "tracing", - "tracing-log", - "tracing-subscriber", -] - -[[package]] -name = "sc-tracing" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" -dependencies = [ - "ansi_term 0.12.1", - "atty", - "chrono", - "lazy_static", - "log", - "once_cell", - "parking_lot 0.11.2", - "regex", - "rustc-hash", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sc-rpc-server 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sc-tracing-proc-macro 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "serde", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-rpc 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-tracing 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", + "sc-client-api", + "sc-rpc-server", + "sc-tracing-proc-macro", + "serde", + "sp-api", + "sp-blockchain", + "sp-core", + "sp-rpc", + "sp-runtime", + "sp-tracing", "thiserror", "tracing", "tracing-log", @@ -10224,18 +9609,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" -dependencies = [ - "proc-macro-crate 1.1.0", - "proc-macro2", - "quote", - "syn", -] - -[[package]] -name = "sc-tracing-proc-macro" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "proc-macro-crate 1.1.0", "proc-macro2", @@ -10246,34 +9620,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" -dependencies = [ - "futures 0.3.17", - "intervalier", - "linked-hash-map", - "log", - "parity-scale-codec", - "parity-util-mem", - "parking_lot 0.11.2", - "retain_mut", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-transaction-pool-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-utils 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "serde", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-tracing 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-transaction-pool 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "substrate-prometheus-endpoint 0.10.0-dev", - "thiserror", -] - -[[package]] -name = "sc-transaction-pool" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "futures 0.3.17", "intervalier", @@ -10283,68 +9630,43 @@ dependencies = [ "parity-util-mem", "parking_lot 0.11.2", "retain_mut", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sc-transaction-pool-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sc-utils 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "serde", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-tracing 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-transaction-pool 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "substrate-prometheus-endpoint 0.9.0", - "thiserror", -] - -[[package]] -name = "sc-transaction-pool-api" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" -dependencies = [ - "derive_more", - "futures 0.3.17", - "log", - "serde", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-client-api", + "sc-transaction-pool-api", + "sc-utils", + "serde", + "sp-api", + "sp-blockchain", + "sp-core", + "sp-runtime", + "sp-tracing", + "sp-transaction-pool", + "substrate-prometheus-endpoint", "thiserror", ] [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "derive_more", "futures 0.3.17", "log", "serde", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", + "sp-blockchain", + "sp-runtime", "thiserror", ] [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "futures 0.3.17", "futures-timer 3.0.2", "lazy_static", - "prometheus 0.13.0", -] - -[[package]] -name = "sc-utils" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" -dependencies = [ - "futures 0.3.17", - "futures-timer 3.0.2", - "lazy_static", - "prometheus 0.12.0", + "prometheus", ] [[package]] @@ -10624,17 +9946,17 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-block-builder 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-offchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-session 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-transaction-pool 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-version 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", + "sp-block-builder", + "sp-core", + "sp-inherents", + "sp-io", + "sp-offchain", + "sp-runtime", + "sp-session", + "sp-std", + "sp-transaction-pool", + "sp-version", "substrate-wasm-builder", "xcm", "xcm-builder", @@ -10693,13 +10015,13 @@ checksum = "9def91fd1e018fe007022791f865d0ccc9b3a0d5001e01aabb8b40e46000afb5" [[package]] name = "slot-range-helper" version = "0.9.12" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "enumn", "parity-scale-codec", "paste", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime", + "sp-std", ] [[package]] @@ -10780,9 +10102,9 @@ dependencies = [ [[package]] name = "soketto" -version = "0.6.0" +version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a74e48087dbeed4833785c2f3352b59140095dc192dce966a3bfc155020a439f" +checksum = "41d1c5305e39e09653383c2c7244f2f78b3bcae37cf50c64cb4789c9f5096ec2" dependencies = [ "base64 0.13.0", "bytes 1.1.0", @@ -10796,53 +10118,24 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" -dependencies = [ - "hash-db", - "log", - "parity-scale-codec", - "sp-api-proc-macro 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-state-machine 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-version 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "thiserror", -] - -[[package]] -name = "sp-api" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "hash-db", "log", "parity-scale-codec", - "sp-api-proc-macro 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-state-machine 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-version 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", + "sp-api-proc-macro", + "sp-core", + "sp-runtime", + "sp-state-machine", + "sp-std", + "sp-version", "thiserror", ] [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" -dependencies = [ - "blake2-rfc", - "proc-macro-crate 1.1.0", - "proc-macro2", - "quote", - "syn", -] - -[[package]] -name = "sp-api-proc-macro" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "blake2-rfc", "proc-macro-crate 1.1.0", @@ -10854,179 +10147,102 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" -dependencies = [ - "parity-scale-codec", - "scale-info", - "serde", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", -] - -[[package]] -name = "sp-application-crypto" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", + "sp-core", + "sp-io", + "sp-std", ] [[package]] name = "sp-arithmetic" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "integer-sqrt", "num-traits", "parity-scale-codec", "scale-info", "serde", - "sp-debug-derive 4.0.0-dev", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "static_assertions", -] - -[[package]] -name = "sp-arithmetic" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" -dependencies = [ - "integer-sqrt", - "num-traits", - "parity-scale-codec", - "scale-info", - "serde", - "sp-debug-derive 3.0.0", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", + "sp-debug-derive", + "sp-std", "static_assertions", ] [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "parity-scale-codec", "scale-info", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-application-crypto 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", + "sp-application-crypto", + "sp-runtime", + "sp-std", ] [[package]] name = "sp-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "async-trait", "parity-scale-codec", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", -] - -[[package]] -name = "sp-block-builder" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" -dependencies = [ - "parity-scale-codec", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-inherents", + "sp-runtime", + "sp-std", ] [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "parity-scale-codec", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", + "sp-api", + "sp-inherents", + "sp-runtime", + "sp-std", ] [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "futures 0.3.17", "log", "lru 0.7.0", "parity-scale-codec", "parking_lot 0.11.2", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-database 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-state-machine 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "thiserror", -] - -[[package]] -name = "sp-blockchain" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" -dependencies = [ - "futures 0.3.17", - "log", - "lru 0.6.6", - "parity-scale-codec", - "parking_lot 0.11.2", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-database 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-state-machine 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", + "sp-api", + "sp-consensus", + "sp-database", + "sp-runtime", + "sp-state-machine", "thiserror", ] [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "async-trait", "futures 0.3.17", "futures-timer 3.0.2", "log", "parity-scale-codec", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-state-machine 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-version 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "thiserror", -] - -[[package]] -name = "sp-consensus" -version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" -dependencies = [ - "async-trait", - "futures 0.3.17", - "futures-timer 3.0.2", - "log", - "parity-scale-codec", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-state-machine 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-version 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", + "sp-core", + "sp-inherents", + "sp-runtime", + "sp-state-machine", + "sp-std", + "sp-version", "thiserror", ] @@ -11038,67 +10254,67 @@ dependencies = [ "async-trait", "parity-scale-codec", "scale-info", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-application-crypto 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", + "sp-application-crypto", + "sp-consensus", "sp-consensus-slots", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-inherents", + "sp-runtime", + "sp-std", "sp-timestamp", ] [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "async-trait", "merlin", "parity-scale-codec", "scale-info", "serde", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-application-crypto 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", + "sp-application-crypto", + "sp-consensus", "sp-consensus-slots", "sp-consensus-vrf", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-keystore 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-inherents", + "sp-keystore", + "sp-runtime", + "sp-std", "sp-timestamp", ] [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-arithmetic 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-arithmetic", + "sp-runtime", ] [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "parity-scale-codec", "schnorrkel", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-runtime", + "sp-std", ] [[package]] name = "sp-core" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "base58", "bitflags", @@ -11128,57 +10344,11 @@ dependencies = [ "serde", "sha2 0.9.8", "sp-core-hashing", - "sp-debug-derive 4.0.0-dev", - "sp-externalities 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime-interface 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-storage 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "ss58-registry", - "substrate-bip39", - "thiserror", - "tiny-bip39", - "tiny-keccak", - "twox-hash", - "wasmi", - "zeroize", -] - -[[package]] -name = "sp-core" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" -dependencies = [ - "base58", - "blake2-rfc", - "byteorder", - "dyn-clonable", - "ed25519-dalek", - "futures 0.3.17", - "hash-db", - "hash256-std-hasher", - "hex", - "impl-serde", - "lazy_static", - "libsecp256k1 0.6.0", - "log", - "merlin", - "num-traits", - "parity-scale-codec", - "parity-util-mem", - "parking_lot 0.11.2", - "primitive-types", - "rand 0.7.3", - "regex", - "scale-info", - "schnorrkel", - "secrecy", - "serde", - "sha2 0.9.8", - "sp-debug-derive 3.0.0", - "sp-externalities 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-runtime-interface 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-storage 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", + "sp-debug-derive", + "sp-externalities", + "sp-runtime-interface", + "sp-std", + "sp-storage", "ss58-registry", "substrate-bip39", "thiserror", @@ -11192,12 +10362,12 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "blake2-rfc", "byteorder", "sha2 0.9.8", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std", "tiny-keccak", "twox-hash", ] @@ -11205,7 +10375,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "proc-macro2", "quote", @@ -11216,35 +10386,16 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "kvdb", "parking_lot 0.11.2", ] -[[package]] -name = "sp-database" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" -dependencies = [ - "kvdb", - "parking_lot 0.11.2", -] - -[[package]] -name = "sp-debug-derive" -version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" -dependencies = [ - "proc-macro2", - "quote", - "syn", -] - [[package]] name = "sp-debug-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "proc-macro2", "quote", @@ -11254,117 +10405,50 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "environmental", "parity-scale-codec", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-storage 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", -] - -[[package]] -name = "sp-externalities" -version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" -dependencies = [ - "environmental", - "parity-scale-codec", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-storage 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", + "sp-std", + "sp-storage", ] [[package]] name = "sp-finality-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "finality-grandpa", "log", "parity-scale-codec", "scale-info", "serde", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-application-crypto 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-keystore 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", -] - -[[package]] -name = "sp-finality-grandpa" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" -dependencies = [ - "finality-grandpa", - "log", - "parity-scale-codec", - "scale-info", - "serde", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-application-crypto 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-keystore 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", -] - -[[package]] -name = "sp-inherents" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" -dependencies = [ - "async-trait", - "impl-trait-for-tuples", - "parity-scale-codec", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "thiserror", + "sp-api", + "sp-application-crypto", + "sp-core", + "sp-keystore", + "sp-runtime", + "sp-std", ] [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "async-trait", "impl-trait-for-tuples", "parity-scale-codec", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", + "sp-core", + "sp-runtime", + "sp-std", "thiserror", ] [[package]] name = "sp-io" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" -dependencies = [ - "futures 0.3.17", - "hash-db", - "libsecp256k1 0.6.0", - "log", - "parity-scale-codec", - "parking_lot 0.11.2", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-externalities 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-keystore 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime-interface 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-state-machine 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-tracing 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-trie 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-wasm-interface 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "tracing", - "tracing-core", -] - -[[package]] -name = "sp-io" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "futures 0.3.17", "hash-db", @@ -11372,15 +10456,15 @@ dependencies = [ "log", "parity-scale-codec", "parking_lot 0.11.2", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-externalities 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-keystore 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-runtime-interface 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-state-machine 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-tracing 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-trie 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-wasm-interface 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", + "sp-core", + "sp-externalities", + "sp-keystore", + "sp-runtime-interface", + "sp-state-machine", + "sp-std", + "sp-tracing", + "sp-trie", + "sp-wasm-interface", "tracing", "tracing-core", ] @@ -11388,29 +10472,18 @@ dependencies = [ [[package]] name = "sp-keyring" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "lazy_static", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "strum 0.22.0", -] - -[[package]] -name = "sp-keyring" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" -dependencies = [ - "lazy_static", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "strum 0.20.0", + "sp-core", + "sp-runtime", + "strum", ] [[package]] name = "sp-keystore" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "async-trait", "derive_more", @@ -11420,39 +10493,14 @@ dependencies = [ "parking_lot 0.11.2", "schnorrkel", "serde", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-externalities 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", -] - -[[package]] -name = "sp-keystore" -version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" -dependencies = [ - "async-trait", - "derive_more", - "futures 0.3.17", - "merlin", - "parity-scale-codec", - "parking_lot 0.11.2", - "schnorrkel", - "serde", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-externalities 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", -] - -[[package]] -name = "sp-maybe-compressed-blob" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" -dependencies = [ - "zstd", + "sp-core", + "sp-externalities", ] [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "zstd", ] @@ -11460,22 +10508,22 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-arithmetic 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-arithmetic", + "sp-core", "sp-npos-elections-solution-type", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime", + "sp-std", ] [[package]] name = "sp-npos-elections-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "proc-macro-crate 1.1.0", "proc-macro2", @@ -11484,89 +10532,39 @@ dependencies = [ ] [[package]] -name = "sp-offchain" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" -dependencies = [ - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", -] - -[[package]] -name = "sp-offchain" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" -dependencies = [ - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", -] - -[[package]] -name = "sp-panic-handler" -version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" -dependencies = [ - "backtrace", -] - -[[package]] -name = "sp-panic-handler" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" -dependencies = [ - "backtrace", - "lazy_static", - "regex", -] - -[[package]] -name = "sp-rpc" +name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ - "rustc-hash", - "serde", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", + "sp-core", + "sp-runtime", ] [[package]] -name = "sp-rpc" +name = "sp-panic-handler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ - "rustc-hash", - "serde", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", + "backtrace", + "lazy_static", + "regex", ] [[package]] -name = "sp-runtime" +name = "sp-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ - "either", - "hash256-std-hasher", - "impl-trait-for-tuples", - "log", - "parity-scale-codec", - "parity-util-mem", - "paste", - "rand 0.7.3", - "scale-info", + "rustc-hash", "serde", - "sp-application-crypto 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-arithmetic 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", ] [[package]] name = "sp-runtime" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "either", "hash256-std-hasher", @@ -11578,63 +10576,34 @@ dependencies = [ "rand 0.7.3", "scale-info", "serde", - "sp-application-crypto 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-arithmetic 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", -] - -[[package]] -name = "sp-runtime-interface" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" -dependencies = [ - "impl-trait-for-tuples", - "parity-scale-codec", - "primitive-types", - "sp-externalities 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime-interface-proc-macro 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-storage 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-tracing 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-wasm-interface 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "static_assertions", + "sp-application-crypto", + "sp-arithmetic", + "sp-core", + "sp-io", + "sp-std", ] [[package]] name = "sp-runtime-interface" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", "primitive-types", - "sp-externalities 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-runtime-interface-proc-macro 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-storage 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-tracing 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-wasm-interface 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", + "sp-externalities", + "sp-runtime-interface-proc-macro", + "sp-std", + "sp-storage", + "sp-tracing", + "sp-wasm-interface", "static_assertions", ] [[package]] name = "sp-runtime-interface-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" -dependencies = [ - "Inflector", - "proc-macro-crate 1.1.0", - "proc-macro2", - "quote", - "syn", -] - -[[package]] -name = "sp-runtime-interface-proc-macro" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "Inflector", "proc-macro-crate 1.1.0", @@ -11643,19 +10612,10 @@ dependencies = [ "syn", ] -[[package]] -name = "sp-serializer" -version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" -dependencies = [ - "serde", - "serde_json", -] - [[package]] name = "sp-serializer" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "serde", "serde_json", @@ -11664,80 +10624,32 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" -dependencies = [ - "parity-scale-codec", - "scale-info", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-staking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", -] - -[[package]] -name = "sp-session" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" -dependencies = [ - "parity-scale-codec", - "scale-info", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-staking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", -] - -[[package]] -name = "sp-staking" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "parity-scale-codec", "scale-info", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", + "sp-core", + "sp-runtime", + "sp-staking", + "sp-std", ] [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "parity-scale-codec", "scale-info", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", -] - -[[package]] -name = "sp-state-machine" -version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" -dependencies = [ - "hash-db", - "log", - "num-traits", - "parity-scale-codec", - "parking_lot 0.11.2", - "rand 0.7.3", - "smallvec", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-externalities 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-panic-handler 4.0.0-dev", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-trie 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "thiserror", - "tracing", - "trie-db", - "trie-root", + "sp-runtime", + "sp-std", ] [[package]] name = "sp-state-machine" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "hash-db", "log", @@ -11746,11 +10658,11 @@ dependencies = [ "parking_lot 0.11.2", "rand 0.7.3", "smallvec", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-externalities 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-panic-handler 3.0.0", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-trie 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", + "sp-core", + "sp-externalities", + "sp-panic-handler", + "sp-std", + "sp-trie", "thiserror", "tracing", "trie-db", @@ -11760,100 +10672,57 @@ dependencies = [ [[package]] name = "sp-std" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" - -[[package]] -name = "sp-std" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" - -[[package]] -name = "sp-storage" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" -dependencies = [ - "impl-serde", - "parity-scale-codec", - "ref-cast", - "serde", - "sp-debug-derive 4.0.0-dev", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", -] +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" [[package]] name = "sp-storage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "impl-serde", "parity-scale-codec", "ref-cast", "serde", - "sp-debug-derive 3.0.0", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", -] - -[[package]] -name = "sp-tasks" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" -dependencies = [ - "log", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-externalities 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime-interface 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-debug-derive", + "sp-std", ] [[package]] name = "sp-tasks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "log", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-externalities 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-runtime-interface 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", + "sp-core", + "sp-externalities", + "sp-io", + "sp-runtime-interface", + "sp-std", ] [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "async-trait", "futures-timer 3.0.2", "log", "parity-scale-codec", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", + "sp-inherents", + "sp-runtime", + "sp-std", "thiserror", ] [[package]] name = "sp-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" -dependencies = [ - "parity-scale-codec", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "tracing", - "tracing-core", - "tracing-subscriber", -] - -[[package]] -name = "sp-tracing" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "parity-scale-codec", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", + "sp-std", "tracing", "tracing-core", "tracing-subscriber", @@ -11862,79 +10731,39 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" -dependencies = [ - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", -] - -[[package]] -name = "sp-transaction-pool" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" -dependencies = [ - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", -] - -[[package]] -name = "sp-transaction-storage-proof" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ - "async-trait", - "log", - "parity-scale-codec", - "scale-info", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-trie 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", + "sp-runtime", ] [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "async-trait", "log", "parity-scale-codec", "scale-info", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-trie 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", -] - -[[package]] -name = "sp-trie" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" -dependencies = [ - "hash-db", - "memory-db", - "parity-scale-codec", - "scale-info", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "trie-db", - "trie-root", + "sp-core", + "sp-inherents", + "sp-runtime", + "sp-std", + "sp-trie", ] [[package]] name = "sp-trie" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "hash-db", "memory-db", "parity-scale-codec", "scale-info", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", + "sp-core", + "sp-std", "trie-db", "trie-root", ] @@ -11942,50 +10771,23 @@ dependencies = [ [[package]] name = "sp-version" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" -dependencies = [ - "impl-serde", - "parity-scale-codec", - "parity-wasm 0.42.2", - "scale-info", - "serde", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-version-proc-macro 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "thiserror", -] - -[[package]] -name = "sp-version" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "impl-serde", "parity-scale-codec", "parity-wasm 0.42.2", "scale-info", "serde", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", - "sp-version-proc-macro 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", + "sp-runtime", + "sp-std", + "sp-version-proc-macro", "thiserror", ] [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" -dependencies = [ - "parity-scale-codec", - "proc-macro2", - "quote", - "syn", -] - -[[package]] -name = "sp-version-proc-macro" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -11996,22 +10798,11 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" -dependencies = [ - "impl-trait-for-tuples", - "parity-scale-codec", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "wasmi", -] - -[[package]] -name = "sp-wasm-interface" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", + "sp-std", "wasmi", ] @@ -12088,18 +10879,18 @@ dependencies = [ "scale-info", "serde", "smallvec", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-block-builder 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", + "sp-block-builder", "sp-consensus-aura", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-offchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-session 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-transaction-pool 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-version 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-inherents", + "sp-io", + "sp-offchain", + "sp-runtime", + "sp-session", + "sp-std", + "sp-transaction-pool", + "sp-version", "substrate-wasm-builder", "xcm", "xcm-builder", @@ -12153,18 +10944,18 @@ dependencies = [ "scale-info", "serde", "smallvec", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-block-builder 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", + "sp-block-builder", "sp-consensus-aura", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-offchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-session 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-transaction-pool 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-version 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-inherents", + "sp-io", + "sp-offchain", + "sp-runtime", + "sp-session", + "sp-std", + "sp-transaction-pool", + "sp-version", "substrate-wasm-builder", "xcm", "xcm-builder", @@ -12239,40 +11030,19 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dcb5ae327f9cc13b68763b5749770cb9e048a99bd9dfdfa58d0cf05d5f64afe0" dependencies = [ "heck", - "proc-macro-error 1.0.4", + "proc-macro-error", "proc-macro2", "quote", "syn", ] -[[package]] -name = "strum" -version = "0.20.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7318c509b5ba57f18533982607f24070a55d353e90d4cae30c467cdb2ad5ac5c" -dependencies = [ - "strum_macros 0.20.1", -] - [[package]] name = "strum" version = "0.22.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f7ac893c7d471c8a21f31cfe213ec4f6d9afeed25537c772e08ef3f005f8729e" dependencies = [ - "strum_macros 0.22.0", -] - -[[package]] -name = "strum_macros" -version = "0.20.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ee8bc6b87a5112aeeab1f4a9f7ab634fe6cbefc4850006df31267f4cfb9e3149" -dependencies = [ - "heck", - "proc-macro2", - "quote", - "syn", + "strum_macros", ] [[package]] @@ -12303,7 +11073,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "platforms", ] @@ -12311,7 +11081,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "frame-system-rpc-runtime-api", "futures 0.3.17", @@ -12320,69 +11090,55 @@ dependencies = [ "jsonrpc-derive", "log", "parity-scale-codec", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-rpc-api 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-transaction-pool-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-block-builder 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", -] - -[[package]] -name = "substrate-prometheus-endpoint" -version = "0.9.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" -dependencies = [ - "async-std", - "derive_more", - "futures-util", - "hyper", - "log", - "prometheus 0.12.0", - "tokio", + "sc-client-api", + "sc-rpc-api", + "sc-transaction-pool-api", + "sp-api", + "sp-block-builder", + "sp-blockchain", + "sp-core", + "sp-runtime", ] [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "async-std", "derive_more", "futures-util", "hyper", "log", - "prometheus 0.13.0", + "prometheus", "tokio", ] [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "async-trait", "futures 0.3.17", "hex", "parity-scale-codec", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-client-db 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-executor 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-light 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-offchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-service 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-client-api", + "sc-client-db", + "sc-consensus", + "sc-executor", + "sc-light", + "sc-offchain", + "sc-service", "serde", "serde_json", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-keyring 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-keystore 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-state-machine 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-blockchain", + "sp-consensus", + "sp-core", + "sp-keyring", + "sp-keystore", + "sp-runtime", + "sp-state-machine", ] [[package]] @@ -12391,17 +11147,7 @@ version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" dependencies = [ "futures 0.3.17", - "substrate-test-utils-derive 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "tokio", -] - -[[package]] -name = "substrate-test-utils" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" -dependencies = [ - "futures 0.3.17", - "substrate-test-utils-derive 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12)", + "substrate-test-utils-derive", "tokio", ] @@ -12416,26 +11162,15 @@ dependencies = [ "syn", ] -[[package]] -name = "substrate-test-utils-derive" -version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.12#d76f39995315ec36980908e4b99709bd14927044" -dependencies = [ - "proc-macro-crate 1.1.0", - "proc-macro2", - "quote", - "syn", -] - [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ "ansi_term 0.12.1", "build-helper", "cargo_metadata", - "sp-maybe-compressed-blob 4.1.0-dev", + "sp-maybe-compressed-blob", "tempfile", "toml", "walkdir", @@ -12459,17 +11194,6 @@ dependencies = [ "unicode-xid", ] -[[package]] -name = "syn-mid" -version = "0.5.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "baa8e7560a164edb1621a55d18a0c59abf49d360f47aa7b821061dd7eea7fac9" -dependencies = [ - "proc-macro2", - "quote", - "syn", -] - [[package]] name = "synstructure" version = "0.12.6" @@ -12889,24 +11613,24 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#3374a73c9824638b8270062b104906a714ea14f9" +source = "git+https://github.com/paritytech/substrate?branch=master#dc899259640256c0c545b262dd3388b126d52b01" dependencies = [ - "jsonrpsee-ws-client", + "jsonrpsee", "log", "parity-scale-codec", "remote-externalities", - "sc-chain-spec 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-cli 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-executor 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-service 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "serde", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-externalities 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-keystore 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-state-machine 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-version 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-chain-spec", + "sc-cli", + "sc-executor", + "sc-service", + "serde", + "sp-core", + "sp-externalities", + "sp-io", + "sp-keystore", + "sp-runtime", + "sp-state-machine", + "sp-version", "structopt", ] @@ -13464,7 +12188,7 @@ dependencies = [ [[package]] name = "westend-runtime" version = "0.9.12" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "beefy-primitives", "bitvec 0.20.4", @@ -13524,21 +12248,21 @@ dependencies = [ "serde", "serde_derive", "smallvec", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", "sp-authority-discovery", - "sp-block-builder 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-block-builder", "sp-consensus-babe", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-inherents", + "sp-io", "sp-npos-elections", - "sp-offchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-session 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-staking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-transaction-pool 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-version 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-offchain", + "sp-runtime", + "sp-session", + "sp-staking", + "sp-std", + "sp-transaction-pool", + "sp-version", "substrate-wasm-builder", "xcm", "xcm-builder", @@ -13592,18 +12316,18 @@ dependencies = [ "scale-info", "serde", "smallvec", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-block-builder 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", + "sp-block-builder", "sp-consensus-aura", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-offchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-session 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-transaction-pool 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-version 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-inherents", + "sp-io", + "sp-offchain", + "sp-runtime", + "sp-session", + "sp-std", + "sp-transaction-pool", + "sp-version", "substrate-wasm-builder", "xcm", "xcm-builder", @@ -13709,7 +12433,7 @@ dependencies = [ [[package]] name = "xcm" version = "0.9.12" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "derivative", "impl-trait-for-tuples", @@ -13722,7 +12446,7 @@ dependencies = [ [[package]] name = "xcm-builder" version = "0.9.12" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "frame-support", "frame-system", @@ -13731,10 +12455,10 @@ dependencies = [ "parity-scale-codec", "polkadot-parachain", "scale-info", - "sp-arithmetic 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-arithmetic", + "sp-io", + "sp-runtime", + "sp-std", "xcm", "xcm-executor", ] @@ -13742,25 +12466,25 @@ dependencies = [ [[package]] name = "xcm-executor" version = "0.9.12" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "frame-benchmarking", "frame-support", "impl-trait-for-tuples", "log", "parity-scale-codec", - "sp-arithmetic 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-arithmetic", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", "xcm", ] [[package]] name = "xcm-procedural" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot?branch=master#2d583c1ef29e510dae78f75cd8f223c064e8e7fc" +source = "git+https://github.com/paritytech/polkadot?branch=master#9e8b26fe41771ee35a4b63e488e0a9f785fa61bf" dependencies = [ "proc-macro2", "quote", diff --git a/test/service/Cargo.toml b/test/service/Cargo.toml index 716e78df003..56b68827e3e 100644 --- a/test/service/Cargo.toml +++ b/test/service/Cargo.toml @@ -65,8 +65,8 @@ futures = "0.3.5" polkadot-test-service = { git = "https://github.com/paritytech/polkadot", branch = "master" } # Substrate dependencies -sc-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.12" } -substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.12" } +sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "master" } [[bench]] name = "transaction_throughput" From 1b6adcebce9e91a00cebadd0ab1f8eb367b7f264 Mon Sep 17 00:00:00 2001 From: Andronik Ordian Date: Thu, 11 Nov 2021 20:11:28 +0100 Subject: [PATCH 5/5] format with LATEST nightly --- pallets/dmp-queue/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pallets/dmp-queue/src/lib.rs b/pallets/dmp-queue/src/lib.rs index 251d3acbb38..1a6baf21b36 100644 --- a/pallets/dmp-queue/src/lib.rs +++ b/pallets/dmp-queue/src/lib.rs @@ -307,7 +307,7 @@ pub mod pallet { id, remaining, required, )); } - } + }, } } // Cannot be an `else` here since the `maybe_enqueue_page` may have changed.