From 44b9ad198505cb0ea1899bca0c41c2cd3e81efee Mon Sep 17 00:00:00 2001 From: Rakan Alhneiti Date: Fri, 29 May 2020 00:07:41 +0200 Subject: [PATCH 1/2] Cast keystore pointer --- service/src/lib.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/service/src/lib.rs b/service/src/lib.rs index 79228a5e6403..f4facaa5e7d1 100644 --- a/service/src/lib.rs +++ b/service/src/lib.rs @@ -275,6 +275,7 @@ macro_rules! new_full { use sc_network::Event; use sc_client_api::ExecutorProvider; use futures::stream::StreamExt; + use sp_core::traits::BareCryptoStorePtr; let is_collator = $collating_for.is_some(); let role = $config.role.clone(); @@ -473,7 +474,7 @@ macro_rules! new_full { // if the node isn't actively participating in consensus then it doesn't // need a keystore, regardless of which protocol we use below. let keystore = if is_authority { - Some(service.keystore()) + Some(service.keystore() as BareCryptoStorePtr) } else { None }; From a3ed7cb3208bb4278c9dc329f0b31aeeb91457bc Mon Sep 17 00:00:00 2001 From: Rakan Alhneiti Date: Tue, 9 Jun 2020 10:34:09 +0200 Subject: [PATCH 2/2] Update cargo.lock --- Cargo.lock | 539 +++++++++++++++++++++++++++-------------------------- 1 file changed, 270 insertions(+), 269 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9b4b07c6d26a..3428318511c2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1170,16 +1170,16 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "parity-scale-codec", ] [[package]] name = "frame-benchmarking" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "frame-support", "frame-system", @@ -1195,8 +1195,8 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "frame-benchmarking", "parity-scale-codec", @@ -1213,8 +1213,8 @@ dependencies = [ [[package]] name = "frame-executive" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "frame-support", "frame-system", @@ -1228,8 +1228,8 @@ dependencies = [ [[package]] name = "frame-metadata" -version = "11.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "11.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "parity-scale-codec", "serde", @@ -1239,8 +1239,8 @@ dependencies = [ [[package]] name = "frame-support" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "bitmask", "frame-metadata", @@ -1264,8 +1264,8 @@ dependencies = [ [[package]] name = "frame-support-procedural" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "frame-support-procedural-tools", "proc-macro2 1.0.17", @@ -1275,8 +1275,8 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -1287,8 +1287,8 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "proc-macro2 1.0.17", "quote 1.0.6", @@ -1297,8 +1297,8 @@ dependencies = [ [[package]] name = "frame-system" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "frame-support", "impl-trait-for-tuples", @@ -1313,8 +1313,8 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "frame-benchmarking", "frame-support", @@ -1327,8 +1327,8 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "parity-scale-codec", "sp-api", @@ -3229,8 +3229,8 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "frame-support", "frame-system", @@ -3245,8 +3245,8 @@ dependencies = [ [[package]] name = "pallet-authorship" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "frame-support", "frame-system", @@ -3260,8 +3260,8 @@ dependencies = [ [[package]] name = "pallet-babe" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "frame-support", "frame-system", @@ -3282,8 +3282,8 @@ dependencies = [ [[package]] name = "pallet-balances" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "frame-benchmarking", "frame-support", @@ -3296,8 +3296,8 @@ dependencies = [ [[package]] name = "pallet-collective" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "frame-benchmarking", "frame-support", @@ -3312,8 +3312,8 @@ dependencies = [ [[package]] name = "pallet-democracy" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "frame-benchmarking", "frame-support", @@ -3327,8 +3327,8 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "frame-benchmarking", "frame-support", @@ -3342,8 +3342,8 @@ dependencies = [ [[package]] name = "pallet-finality-tracker" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "frame-support", "frame-system", @@ -3358,8 +3358,8 @@ dependencies = [ [[package]] name = "pallet-grandpa" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "frame-support", "frame-system", @@ -3378,8 +3378,8 @@ dependencies = [ [[package]] name = "pallet-identity" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "enumflags2", "frame-benchmarking", @@ -3394,8 +3394,8 @@ dependencies = [ [[package]] name = "pallet-im-online" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "frame-benchmarking", "frame-support", @@ -3414,8 +3414,8 @@ dependencies = [ [[package]] name = "pallet-indices" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "frame-support", "frame-system", @@ -3430,8 +3430,8 @@ dependencies = [ [[package]] name = "pallet-membership" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "frame-support", "frame-system", @@ -3444,8 +3444,8 @@ dependencies = [ [[package]] name = "pallet-multisig" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "frame-support", "frame-system", @@ -3459,8 +3459,8 @@ dependencies = [ [[package]] name = "pallet-nicks" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "frame-support", "frame-system", @@ -3473,8 +3473,8 @@ dependencies = [ [[package]] name = "pallet-offences" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "frame-support", "frame-system", @@ -3488,8 +3488,8 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "frame-benchmarking", "frame-support", @@ -3509,8 +3509,8 @@ dependencies = [ [[package]] name = "pallet-proxy" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "frame-support", "frame-system", @@ -3524,8 +3524,8 @@ dependencies = [ [[package]] name = "pallet-randomness-collective-flip" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "frame-support", "frame-system", @@ -3537,8 +3537,8 @@ dependencies = [ [[package]] name = "pallet-recovery" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "enumflags2", "frame-support", @@ -3552,8 +3552,8 @@ dependencies = [ [[package]] name = "pallet-scheduler" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "frame-benchmarking", "frame-support", @@ -3567,8 +3567,8 @@ dependencies = [ [[package]] name = "pallet-session" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "frame-support", "frame-system", @@ -3585,8 +3585,8 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "frame-benchmarking", "frame-support", @@ -3599,8 +3599,8 @@ dependencies = [ [[package]] name = "pallet-society" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "frame-support", "frame-system", @@ -3613,8 +3613,8 @@ dependencies = [ [[package]] name = "pallet-staking" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "frame-benchmarking", "frame-support", @@ -3635,8 +3635,8 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "proc-macro-crate", "proc-macro2 1.0.17", @@ -3646,8 +3646,8 @@ dependencies = [ [[package]] name = "pallet-sudo" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "frame-support", "frame-system", @@ -3660,8 +3660,8 @@ dependencies = [ [[package]] name = "pallet-timestamp" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "frame-benchmarking", "frame-support", @@ -3678,8 +3678,8 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "frame-support", "frame-system", @@ -3692,8 +3692,8 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "jsonrpc-core", "jsonrpc-core-client", @@ -3710,8 +3710,8 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "frame-support", "parity-scale-codec", @@ -3723,8 +3723,8 @@ dependencies = [ [[package]] name = "pallet-treasury" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "frame-benchmarking", "frame-support", @@ -3738,8 +3738,8 @@ dependencies = [ [[package]] name = "pallet-utility" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "frame-benchmarking", "frame-support", @@ -3754,8 +3754,8 @@ dependencies = [ [[package]] name = "pallet-vesting" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5374,8 +5374,8 @@ dependencies = [ [[package]] name = "sc-authority-discovery" -version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "0.8.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "bytes 0.5.4", "derive_more 0.99.7", @@ -5401,8 +5401,8 @@ dependencies = [ [[package]] name = "sc-basic-authorship" -version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "0.8.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "futures 0.3.5", "futures-timer 3.0.2", @@ -5425,8 +5425,8 @@ dependencies = [ [[package]] name = "sc-block-builder" -version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "0.8.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -5441,8 +5441,8 @@ dependencies = [ [[package]] name = "sc-chain-spec" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "impl-trait-for-tuples", "sc-chain-spec-derive", @@ -5457,8 +5457,8 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "proc-macro-crate", "proc-macro2 1.0.17", @@ -5468,8 +5468,8 @@ dependencies = [ [[package]] name = "sc-cli" -version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "0.8.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "ansi_term 0.12.1", "atty", @@ -5509,8 +5509,8 @@ dependencies = [ [[package]] name = "sc-client-api" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "derive_more 0.99.7", "fnv", @@ -5545,8 +5545,8 @@ dependencies = [ [[package]] name = "sc-client-db" -version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "0.8.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "blake2-rfc", "hash-db", @@ -5574,8 +5574,8 @@ dependencies = [ [[package]] name = "sc-consensus" -version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "0.8.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "sc-client-api", "sp-blockchain", @@ -5585,8 +5585,8 @@ dependencies = [ [[package]] name = "sc-consensus-babe" -version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "0.8.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "derive_more 0.99.7", "fork-tree", @@ -5627,8 +5627,8 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" -version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "0.8.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "derive_more 0.99.7", "futures 0.3.5", @@ -5650,8 +5650,8 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" -version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "0.8.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "fork-tree", "parity-scale-codec", @@ -5663,8 +5663,8 @@ dependencies = [ [[package]] name = "sc-consensus-slots" -version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "0.8.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "futures 0.3.5", "futures-timer 3.0.2", @@ -5685,8 +5685,8 @@ dependencies = [ [[package]] name = "sc-consensus-uncles" -version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "0.8.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "log 0.4.8", "sc-client-api", @@ -5699,8 +5699,8 @@ dependencies = [ [[package]] name = "sc-executor" -version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "0.8.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "derive_more 0.99.7", "lazy_static", @@ -5727,8 +5727,8 @@ dependencies = [ [[package]] name = "sc-executor-common" -version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "0.8.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "derive_more 0.99.7", "log 0.4.8", @@ -5744,8 +5744,8 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" -version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "0.8.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "log 0.4.8", "parity-scale-codec", @@ -5759,8 +5759,8 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" -version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "0.8.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "cranelift-codegen", "cranelift-wasm", @@ -5780,8 +5780,8 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" -version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "0.8.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "assert_matches", "derive_more 0.99.7", @@ -5803,6 +5803,7 @@ dependencies = [ "sc-telemetry", "serde_json", "sp-api", + "sp-application-crypto", "sp-arithmetic", "sp-blockchain", "sp-consensus", @@ -5817,8 +5818,8 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" -version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "0.8.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "derive_more 0.99.7", "finality-grandpa", @@ -5834,8 +5835,8 @@ dependencies = [ [[package]] name = "sc-informant" -version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "0.8.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "ansi_term 0.12.1", "futures 0.3.5", @@ -5851,8 +5852,8 @@ dependencies = [ [[package]] name = "sc-keystore" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "derive_more 0.99.7", "hex", @@ -5866,8 +5867,8 @@ dependencies = [ [[package]] name = "sc-network" -version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "0.8.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "bitflags", "bs58", @@ -5918,8 +5919,8 @@ dependencies = [ [[package]] name = "sc-network-gossip" -version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "0.8.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "futures 0.3.5", "futures-timer 3.0.2", @@ -5933,8 +5934,8 @@ dependencies = [ [[package]] name = "sc-network-test" -version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "0.8.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "env_logger", "futures 0.3.5", @@ -5960,8 +5961,8 @@ dependencies = [ [[package]] name = "sc-offchain" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "bytes 0.5.4", "fnv", @@ -5987,8 +5988,8 @@ dependencies = [ [[package]] name = "sc-peerset" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "futures 0.3.5", "libp2p", @@ -6000,8 +6001,8 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" -version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "0.8.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "log 0.4.8", "substrate-prometheus-endpoint", @@ -6009,8 +6010,8 @@ dependencies = [ [[package]] name = "sc-rpc" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "futures 0.3.5", "hash-db", @@ -6041,8 +6042,8 @@ dependencies = [ [[package]] name = "sc-rpc-api" -version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "0.8.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "derive_more 0.99.7", "futures 0.3.5", @@ -6065,8 +6066,8 @@ dependencies = [ [[package]] name = "sc-rpc-server" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "jsonrpc-core", "jsonrpc-http-server", @@ -6080,8 +6081,8 @@ dependencies = [ [[package]] name = "sc-service" -version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "0.8.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "derive_more 0.99.7", "exit-future", @@ -6139,8 +6140,8 @@ dependencies = [ [[package]] name = "sc-state-db" -version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "0.8.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "log 0.4.8", "parity-scale-codec", @@ -6153,8 +6154,8 @@ dependencies = [ [[package]] name = "sc-telemetry" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "bytes 0.5.4", "futures 0.3.5", @@ -6175,8 +6176,8 @@ dependencies = [ [[package]] name = "sc-tracing" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "erased-serde", "log 0.4.8", @@ -6190,8 +6191,8 @@ dependencies = [ [[package]] name = "sc-transaction-graph" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "derive_more 0.99.7", "futures 0.3.5", @@ -6210,8 +6211,8 @@ dependencies = [ [[package]] name = "sc-transaction-pool" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "derive_more 0.99.7", "futures 0.3.5", @@ -6597,8 +6598,8 @@ dependencies = [ [[package]] name = "sp-allocator" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "derive_more 0.99.7", "log 0.4.8", @@ -6609,8 +6610,8 @@ dependencies = [ [[package]] name = "sp-api" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "hash-db", "parity-scale-codec", @@ -6624,8 +6625,8 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "blake2-rfc", "proc-macro-crate", @@ -6636,8 +6637,8 @@ dependencies = [ [[package]] name = "sp-application-crypto" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "parity-scale-codec", "serde", @@ -6648,8 +6649,8 @@ dependencies = [ [[package]] name = "sp-arithmetic" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "integer-sqrt", "num-traits 0.2.11", @@ -6661,8 +6662,8 @@ dependencies = [ [[package]] name = "sp-authority-discovery" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "parity-scale-codec", "sp-api", @@ -6673,8 +6674,8 @@ dependencies = [ [[package]] name = "sp-authorship" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "parity-scale-codec", "sp-inherents", @@ -6684,8 +6685,8 @@ dependencies = [ [[package]] name = "sp-block-builder" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "parity-scale-codec", "sp-api", @@ -6696,8 +6697,8 @@ dependencies = [ [[package]] name = "sp-blockchain" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "derive_more 0.99.7", "log 0.4.8", @@ -6712,8 +6713,8 @@ dependencies = [ [[package]] name = "sp-chain-spec" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "serde", "serde_json", @@ -6721,8 +6722,8 @@ dependencies = [ [[package]] name = "sp-consensus" -version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "0.8.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "derive_more 0.99.7", "futures 0.3.5", @@ -6744,8 +6745,8 @@ dependencies = [ [[package]] name = "sp-consensus-aura" -version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "0.8.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "parity-scale-codec", "sp-api", @@ -6758,8 +6759,8 @@ dependencies = [ [[package]] name = "sp-consensus-babe" -version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "0.8.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "merlin", "parity-scale-codec", @@ -6775,8 +6776,8 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" -version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "0.8.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "parity-scale-codec", "schnorrkel", @@ -6787,8 +6788,8 @@ dependencies = [ [[package]] name = "sp-core" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "base58", "blake2-rfc", @@ -6829,8 +6830,8 @@ dependencies = [ [[package]] name = "sp-database" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "kvdb", "parking_lot 0.10.2", @@ -6838,8 +6839,8 @@ dependencies = [ [[package]] name = "sp-debug-derive" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "proc-macro2 1.0.17", "quote 1.0.6", @@ -6848,8 +6849,8 @@ dependencies = [ [[package]] name = "sp-externalities" -version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "0.8.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "environmental", "parity-scale-codec", @@ -6859,8 +6860,8 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "finality-grandpa", "log 0.4.8", @@ -6875,8 +6876,8 @@ dependencies = [ [[package]] name = "sp-finality-tracker" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "parity-scale-codec", "sp-inherents", @@ -6885,8 +6886,8 @@ dependencies = [ [[package]] name = "sp-inherents" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "derive_more 0.99.7", "parity-scale-codec", @@ -6897,8 +6898,8 @@ dependencies = [ [[package]] name = "sp-io" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "futures 0.3.5", "hash-db", @@ -6917,8 +6918,8 @@ dependencies = [ [[package]] name = "sp-keyring" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "lazy_static", "sp-core", @@ -6928,8 +6929,8 @@ dependencies = [ [[package]] name = "sp-npos-elections" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "parity-scale-codec", "serde", @@ -6940,8 +6941,8 @@ dependencies = [ [[package]] name = "sp-npos-elections-compact" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "proc-macro-crate", "proc-macro2 1.0.17", @@ -6951,8 +6952,8 @@ dependencies = [ [[package]] name = "sp-offchain" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "sp-api", "sp-core", @@ -6961,8 +6962,8 @@ dependencies = [ [[package]] name = "sp-panic-handler" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "backtrace", "log 0.4.8", @@ -6970,8 +6971,8 @@ dependencies = [ [[package]] name = "sp-rpc" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "serde", "sp-core", @@ -6979,8 +6980,8 @@ dependencies = [ [[package]] name = "sp-runtime" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "hash256-std-hasher", "impl-trait-for-tuples", @@ -7000,8 +7001,8 @@ dependencies = [ [[package]] name = "sp-runtime-interface" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "parity-scale-codec", "primitive-types", @@ -7015,8 +7016,8 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "Inflector", "proc-macro-crate", @@ -7027,8 +7028,8 @@ dependencies = [ [[package]] name = "sp-serializer" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "serde", "serde_json", @@ -7036,8 +7037,8 @@ dependencies = [ [[package]] name = "sp-session" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "parity-scale-codec", "sp-api", @@ -7049,8 +7050,8 @@ dependencies = [ [[package]] name = "sp-staking" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "parity-scale-codec", "sp-runtime", @@ -7059,8 +7060,8 @@ dependencies = [ [[package]] name = "sp-state-machine" -version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "0.8.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "hash-db", "log 0.4.8", @@ -7078,13 +7079,13 @@ dependencies = [ [[package]] name = "sp-std" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" [[package]] name = "sp-storage" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "impl-serde 0.2.3", "ref-cast", @@ -7095,8 +7096,8 @@ dependencies = [ [[package]] name = "sp-timestamp" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -7109,16 +7110,16 @@ dependencies = [ [[package]] name = "sp-tracing" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "tracing", ] [[package]] name = "sp-transaction-pool" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "derive_more 0.99.7", "futures 0.3.5", @@ -7133,8 +7134,8 @@ dependencies = [ [[package]] name = "sp-trie" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "hash-db", "memory-db", @@ -7147,8 +7148,8 @@ dependencies = [ [[package]] name = "sp-utils" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "futures 0.3.5", "futures-core", @@ -7158,8 +7159,8 @@ dependencies = [ [[package]] name = "sp-version" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "impl-serde 0.2.3", "parity-scale-codec", @@ -7170,8 +7171,8 @@ dependencies = [ [[package]] name = "sp-wasm-interface" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -7301,8 +7302,8 @@ dependencies = [ [[package]] name = "substrate-browser-utils" -version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "0.8.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "chrono", "clear_on_drop", @@ -7328,16 +7329,16 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "platforms", ] [[package]] name = "substrate-frame-rpc-system" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "frame-system-rpc-runtime-api", "futures 0.3.5", @@ -7357,8 +7358,8 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" -version = "0.8.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "0.8.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "async-std", "derive_more 0.99.7", @@ -7371,8 +7372,8 @@ dependencies = [ [[package]] name = "substrate-test-client" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "futures 0.3.5", "hash-db", @@ -7392,8 +7393,8 @@ dependencies = [ [[package]] name = "substrate-test-runtime" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "cfg-if", "frame-executive", @@ -7432,8 +7433,8 @@ dependencies = [ [[package]] name = "substrate-test-runtime-client" -version = "2.0.0-rc2" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +version = "2.0.0-rc3" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" dependencies = [ "futures 0.3.5", "parity-scale-codec", @@ -7453,7 +7454,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder-runner" version = "1.0.6" -source = "git+https://github.com/paritytech/substrate#f0eef06cd65f72854188fea5e56397b6e7dc3200" +source = "git+https://github.com/paritytech/substrate#863611ed00324093919557dfdec02c76506ce7d6" [[package]] name = "substrate-wasm-builder-runner"