From 61e6ea88f9db45958348c35787d4319cbffe0cd6 Mon Sep 17 00:00:00 2001 From: Niklas Adolfsson Date: Tue, 18 Oct 2022 13:14:03 +0200 Subject: [PATCH 1/5] companion for #12212 --- utils/staking-miner/src/main.rs | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/utils/staking-miner/src/main.rs b/utils/staking-miner/src/main.rs index b10f87950445..57ea82b051f4 100644 --- a/utils/staking-miner/src/main.rs +++ b/utils/staking-miner/src/main.rs @@ -295,11 +295,16 @@ frame_support::parameter_types! { /// Build the Ext at hash with all the data of `ElectionProviderMultiPhase` and any additional /// pallets. -async fn create_election_ext( +async fn create_election_ext( client: SharedRpcClient, at: Option, additional: Vec, -) -> Result> { +) -> Result> +where + T: EPM::Config, + B: BlockT, + B::Header: DeserializeOwned +{ use frame_support::{storage::generator::StorageMap, traits::PalletInfo}; use sp_core::hashing::twox_128; From 43e09e8c529d1d02af25d5a0060d7b5339297f9b Mon Sep 17 00:00:00 2001 From: Niklas Adolfsson Date: Tue, 18 Oct 2022 13:20:14 +0200 Subject: [PATCH 2/5] cargo fmt --- utils/staking-miner/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/staking-miner/src/main.rs b/utils/staking-miner/src/main.rs index 57ea82b051f4..4a7784f371e0 100644 --- a/utils/staking-miner/src/main.rs +++ b/utils/staking-miner/src/main.rs @@ -303,7 +303,7 @@ async fn create_election_ext( where T: EPM::Config, B: BlockT, - B::Header: DeserializeOwned + B::Header: DeserializeOwned, { use frame_support::{storage::generator::StorageMap, traits::PalletInfo}; use sp_core::hashing::twox_128; From 9c4b29e0cf1f9c69b26e52e6a992746cd0c1d2e0 Mon Sep 17 00:00:00 2001 From: Niklas Adolfsson Date: Tue, 18 Oct 2022 16:28:24 +0200 Subject: [PATCH 3/5] fix build --- Cargo.lock | 2905 ++++++++++++++++++++++++++++++----------------- Cargo.toml | 2 +- tests/common.rs | 8 +- 3 files changed, 1853 insertions(+), 1062 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0c5afe871760..4a4edffe40b8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -446,25 +446,25 @@ dependencies = [ "log", "parity-scale-codec", "parking_lot 0.12.1", - "sc-chain-spec", - "sc-client-api", - "sc-consensus", + "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-finality-grandpa", "sc-keystore", "sc-network", - "sc-network-common", + "sc-network-common 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sc-network-gossip", - "sc-utils", - "sp-api", - "sp-application-crypto", - "sp-arithmetic", - "sp-blockchain", - "sp-consensus", - "sp-core", - "sp-keystore", + "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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-arithmetic 5.0.0 (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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-mmr-primitives", - "sp-runtime", - "substrate-prometheus-endpoint", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", "wasm-timer", ] @@ -482,10 +482,10 @@ dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", "sc-rpc", - "sc-utils", + "sc-utils 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "serde", - "sp-core", - "sp-runtime", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", ] @@ -495,8 +495,8 @@ version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=master#e8a4408c53ae2a1a0ef6cb2f7b603887a231c16f" dependencies = [ "beefy-primitives", - "sp-api", - "sp-runtime", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -506,13 +506,13 @@ source = "git+https://github.com/paritytech/substrate?branch=master#e8a4408c53ae dependencies = [ "parity-scale-codec", "scale-info", - "sp-api", - "sp-application-crypto", - "sp-core", - "sp-io", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-mmr-primitives", - "sp-runtime", - "sp-std", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -2015,14 +2015,14 @@ dependencies = [ "paste", "scale-info", "serde", - "sp-api", - "sp-application-crypto", - "sp-core", - "sp-io", - "sp-runtime", - "sp-runtime-interface", - "sp-std", - "sp-storage", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-storage 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -2052,25 +2052,25 @@ dependencies = [ "rand_pcg 0.3.1", "sc-block-builder", "sc-cli", - "sc-client-api", + "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sc-client-db", - "sc-executor", + "sc-executor 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sc-service", "sc-sysinfo", "serde", "serde_json", "serde_nanos", - "sp-api", - "sp-blockchain", - "sp-core", - "sp-database", - "sp-externalities", - "sp-inherents", - "sp-keystore", - "sp-runtime", - "sp-state-machine", - "sp-storage", - "sp-trie", + "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 6.0.0 (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.12.0 (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.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-storage 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "tempfile", "thiserror", "thousands", @@ -2097,10 +2097,10 @@ dependencies = [ "frame-system", "parity-scale-codec", "scale-info", - "sp-arithmetic", + "sp-arithmetic 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-npos-elections", - "sp-runtime", - "sp-std", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -2113,11 +2113,11 @@ dependencies = [ "frame-try-runtime", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", - "sp-tracing", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -2149,18 +2149,18 @@ dependencies = [ "scale-info", "serde", "smallvec", - "sp-api", - "sp-arithmetic", - "sp-core", - "sp-core-hashing-proc-macro", - "sp-inherents", - "sp-io", - "sp-runtime", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-arithmetic 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core-hashing-proc-macro 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-staking", - "sp-state-machine", - "sp-std", - "sp-tracing", - "sp-weights", + "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-weights 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "tt-call", ] @@ -2213,13 +2213,13 @@ dependencies = [ "rustversion", "scale-info", "serde", - "sp-arithmetic", - "sp-core", - "sp-io", - "sp-runtime", - "sp-state-machine", - "sp-std", - "sp-version", + "sp-arithmetic 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "trybuild", ] @@ -2244,12 +2244,12 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", - "sp-version", - "sp-weights", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-weights 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -2262,9 +2262,9 @@ dependencies = [ "frame-system", "parity-scale-codec", "scale-info", - "sp-core", - "sp-runtime", - "sp-std", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -2273,7 +2273,7 @@ version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=master#e8a4408c53ae2a1a0ef6cb2f7b603887a231c16f" dependencies = [ "parity-scale-codec", - "sp-api", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -2283,9 +2283,9 @@ source = "git+https://github.com/paritytech/substrate?branch=master#e8a4408c53ae dependencies = [ "frame-support", "parity-scale-codec", - "sp-api", - "sp-runtime", - "sp-std", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -2459,7 +2459,7 @@ dependencies = [ "git2", "num-format", "pallet-staking", - "sp-io", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -3247,26 +3247,26 @@ dependencies = [ "serde_derive", "serde_json", "smallvec", - "sp-api", - "sp-arithmetic", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-arithmetic 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-authority-discovery", "sp-block-builder", "sp-consensus-babe", - "sp-core", - "sp-inherents", - "sp-io", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-keyring", "sp-mmr-primitives", "sp-npos-elections", "sp-offchain", - "sp-runtime", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-session", "sp-staking", - "sp-std", - "sp-tracing", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-transaction-pool", - "sp-trie", - "sp-version", + "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "static_assertions", "substrate-wasm-builder", "tiny-keccak", @@ -3284,7 +3284,7 @@ dependencies = [ "polkadot-primitives", "polkadot-runtime-common", "smallvec", - "sp-runtime", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -4621,8 +4621,8 @@ dependencies = [ "frame-system", "parity-scale-codec", "scale-info", - "sp-runtime", - "sp-std", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -4635,10 +4635,10 @@ dependencies = [ "pallet-session", "parity-scale-codec", "scale-info", - "sp-application-crypto", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-authority-discovery", - "sp-runtime", - "sp-std", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -4652,8 +4652,8 @@ dependencies = [ "parity-scale-codec", "scale-info", "sp-authorship", - "sp-runtime", - "sp-std", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -4670,14 +4670,14 @@ dependencies = [ "pallet-timestamp", "parity-scale-codec", "scale-info", - "sp-application-crypto", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-consensus-babe", "sp-consensus-vrf", - "sp-io", - "sp-runtime", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-session", "sp-staking", - "sp-std", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -4693,11 +4693,11 @@ dependencies = [ "pallet-balances", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", - "sp-tracing", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -4712,11 +4712,11 @@ dependencies = [ "pallet-bags-list", "pallet-staking", "remote-externalities", - "sp-core", - "sp-runtime", - "sp-std", - "sp-storage", - "sp-tracing", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-storage 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -4730,8 +4730,8 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-runtime", - "sp-std", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -4746,8 +4746,8 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-runtime", - "sp-std", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -4767,10 +4767,10 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -4785,10 +4785,10 @@ dependencies = [ "pallet-treasury", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -4804,10 +4804,10 @@ dependencies = [ "pallet-treasury", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -4821,10 +4821,10 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -4839,9 +4839,9 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-io", - "sp-runtime", - "sp-std", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -4856,10 +4856,10 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -4876,12 +4876,12 @@ dependencies = [ "parity-scale-codec", "rand 0.7.3", "scale-info", - "sp-arithmetic", - "sp-core", - "sp-io", + "sp-arithmetic 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-npos-elections", - "sp-runtime", - "sp-std", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "static_assertions", "strum", ] @@ -4896,7 +4896,7 @@ dependencies = [ "frame-system", "parity-scale-codec", "sp-npos-elections", - "sp-runtime", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -4910,11 +4910,11 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-npos-elections", - "sp-runtime", - "sp-std", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -4932,10 +4932,10 @@ dependencies = [ "pallet-timestamp", "parity-scale-codec", "scale-info", - "sp-io", - "sp-runtime", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-staking", - "sp-std", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -4948,9 +4948,9 @@ dependencies = [ "frame-system", "parity-scale-codec", "scale-info", - "sp-arithmetic", - "sp-runtime", - "sp-std", + "sp-arithmetic 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -4966,14 +4966,14 @@ dependencies = [ "pallet-session", "parity-scale-codec", "scale-info", - "sp-application-crypto", - "sp-core", - "sp-finality-grandpa", - "sp-io", - "sp-runtime", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-session", "sp-staking", - "sp-std", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -4987,9 +4987,9 @@ dependencies = [ "frame-system", "parity-scale-codec", "scale-info", - "sp-io", - "sp-runtime", - "sp-std", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5004,12 +5004,12 @@ dependencies = [ "pallet-authorship", "parity-scale-codec", "scale-info", - "sp-application-crypto", - "sp-core", - "sp-io", - "sp-runtime", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-staking", - "sp-std", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5022,11 +5022,11 @@ dependencies = [ "frame-system", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-keyring", - "sp-runtime", - "sp-std", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5040,10 +5040,10 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5057,11 +5057,11 @@ dependencies = [ "frame-system", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-mmr-primitives", - "sp-runtime", - "sp-std", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5072,11 +5072,11 @@ dependencies = [ "jsonrpsee", "parity-scale-codec", "serde", - "sp-api", - "sp-blockchain", - "sp-core", + "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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-mmr-primitives", - "sp-runtime", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5090,9 +5090,9 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-io", - "sp-runtime", - "sp-std", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5105,11 +5105,11 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-staking", - "sp-std", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5126,10 +5126,10 @@ dependencies = [ "pallet-staking", "parity-scale-codec", "scale-info", - "sp-runtime", - "sp-runtime-interface", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-staking", - "sp-std", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5138,8 +5138,8 @@ version = "1.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=master#e8a4408c53ae2a1a0ef6cb2f7b603887a231c16f" dependencies = [ "parity-scale-codec", - "sp-api", - "sp-std", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5154,9 +5154,9 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-runtime", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-staking", - "sp-std", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5177,9 +5177,9 @@ dependencies = [ "pallet-staking", "parity-scale-codec", "scale-info", - "sp-runtime", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-staking", - "sp-std", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5193,10 +5193,10 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5209,9 +5209,9 @@ dependencies = [ "frame-system", "parity-scale-codec", "scale-info", - "sp-io", - "sp-runtime", - "sp-std", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5225,11 +5225,11 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-arithmetic", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-arithmetic 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5242,9 +5242,9 @@ dependencies = [ "frame-system", "parity-scale-codec", "scale-info", - "sp-io", - "sp-runtime", - "sp-std", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5259,10 +5259,10 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-arithmetic", - "sp-io", - "sp-runtime", - "sp-std", + "sp-arithmetic 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5276,9 +5276,9 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-io", - "sp-runtime", - "sp-std", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5293,13 +5293,13 @@ dependencies = [ "pallet-timestamp", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-session", "sp-staking", - "sp-std", - "sp-trie", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5313,9 +5313,9 @@ dependencies = [ "pallet-session", "pallet-staking", "rand 0.7.3", - "sp-runtime", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-session", - "sp-std", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5328,8 +5328,8 @@ dependencies = [ "parity-scale-codec", "rand_chacha 0.2.2", "scale-info", - "sp-runtime", - "sp-std", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5348,11 +5348,11 @@ dependencies = [ "rand_chacha 0.2.2", "scale-info", "serde", - "sp-application-crypto", - "sp-io", - "sp-runtime", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-staking", - "sp-std", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5372,7 +5372,7 @@ version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=master#e8a4408c53ae2a1a0ef6cb2f7b603887a231c16f" dependencies = [ "log", - "sp-arithmetic", + "sp-arithmetic 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5384,9 +5384,9 @@ dependencies = [ "frame-system", "parity-scale-codec", "scale-info", - "sp-io", - "sp-runtime", - "sp-std", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5400,10 +5400,10 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-inherents", - "sp-io", - "sp-runtime", - "sp-std", + "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-timestamp", ] @@ -5420,10 +5420,10 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5436,10 +5436,10 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5450,11 +5450,11 @@ dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", "parity-scale-codec", - "sp-api", - "sp-blockchain", - "sp-core", - "sp-rpc", - "sp-runtime", + "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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-rpc 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5464,8 +5464,8 @@ source = "git+https://github.com/paritytech/substrate?branch=master#e8a4408c53ae dependencies = [ "pallet-transaction-payment", "parity-scale-codec", - "sp-api", - "sp-runtime", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5481,8 +5481,8 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-runtime", - "sp-std", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5495,10 +5495,10 @@ dependencies = [ "frame-system", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5512,8 +5512,8 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-runtime", - "sp-std", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5526,9 +5526,9 @@ dependencies = [ "frame-system", "parity-scale-codec", "scale-info", - "sp-api", - "sp-runtime", - "sp-std", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5544,10 +5544,10 @@ dependencies = [ "polkadot-runtime-parachains", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "xcm", "xcm-builder", "xcm-executor", @@ -5568,11 +5568,11 @@ dependencies = [ "polkadot-primitives", "polkadot-runtime-common", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", - "sp-tracing", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "xcm", "xcm-builder", "xcm-executor", @@ -5888,7 +5888,7 @@ dependencies = [ "parity-util-mem", "polkadot-cli", "polkadot-core-primitives", - "remote-externalities", + "substrate-rpc-client", "tempfile", "tokio", ] @@ -5913,7 +5913,7 @@ dependencies = [ "rand_core 0.5.1", "schnorrkel", "sp-authority-discovery", - "sp-core", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "tracing-gum", ] @@ -5934,11 +5934,11 @@ dependencies = [ "polkadot-primitives", "rand 0.8.5", "rand_chacha 0.3.1", - "sp-application-crypto", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-authority-discovery", - "sp-core", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-keyring", - "sp-keystore", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", "tracing-gum", ] @@ -5963,10 +5963,10 @@ dependencies = [ "polkadot-primitives-test-helpers", "rand 0.8.5", "sc-network", - "sp-core", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-keyring", - "sp-keystore", - "sp-tracing", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", "tracing-gum", ] @@ -5993,8 +5993,8 @@ dependencies = [ "polkadot-primitives-test-helpers", "rand 0.8.5", "sc-network", - "sp-application-crypto", - "sp-core", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-keyring", "thiserror", "tracing-gum", @@ -6018,9 +6018,9 @@ dependencies = [ "sc-service", "sc-sysinfo", "sc-tracing", - "sp-core", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-keyring", - "sp-trie", + "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "substrate-build-script-utils", "thiserror", "try-runtime-cli", @@ -6044,25 +6044,25 @@ dependencies = [ "polkadot-runtime", "polkadot-runtime-common", "rococo-runtime", - "sc-client-api", - "sc-consensus", - "sc-executor", + "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", - "sp-api", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sp-authority-discovery", "sp-block-builder", - "sp-blockchain", - "sp-consensus", + "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-consensus-babe", - "sp-core", - "sp-finality-grandpa", - "sp-inherents", + "sp-core 6.0.0 (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", "sp-mmr-primitives", "sp-offchain", - "sp-runtime", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-session", - "sp-storage", + "sp-storage 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-timestamp", "sp-transaction-pool", "westend-runtime", @@ -6089,10 +6089,10 @@ dependencies = [ "polkadot-primitives", "polkadot-primitives-test-helpers", "sc-network", - "sp-core", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-keyring", - "sp-keystore", - "sp-runtime", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", "tracing-gum", ] @@ -6104,9 +6104,9 @@ dependencies = [ "parity-scale-codec", "parity-util-mem", "scale-info", - "sp-core", - "sp-runtime", - "sp-std", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -6133,10 +6133,10 @@ dependencies = [ "polkadot-primitives-test-helpers", "sc-keystore", "sc-network", - "sp-application-crypto", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-keyring", - "sp-keystore", - "sp-tracing", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", "tracing-gum", ] @@ -6149,8 +6149,8 @@ dependencies = [ "polkadot-node-primitives", "polkadot-primitives", "reed-solomon-novelpoly", - "sp-core", - "sp-trie", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", ] @@ -6171,13 +6171,13 @@ dependencies = [ "rand 0.8.5", "rand_chacha 0.3.1", "sc-network", - "sp-application-crypto", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-authority-discovery", "sp-consensus-babe", - "sp-core", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-keyring", - "sp-keystore", - "sp-tracing", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "tracing-gum", ] @@ -6202,9 +6202,9 @@ dependencies = [ "polkadot-primitives", "polkadot-primitives-test-helpers", "sc-network", - "sc-network-common", - "sp-consensus", - "sp-core", + "sc-network-common 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)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-keyring", "thiserror", "tracing-gum", @@ -6223,8 +6223,8 @@ dependencies = [ "polkadot-node-subsystem-util", "polkadot-primitives", "polkadot-primitives-test-helpers", - "sp-core", - "sp-maybe-compressed-blob", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-maybe-compressed-blob 4.1.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", "tracing-gum", ] @@ -6256,14 +6256,14 @@ dependencies = [ "rand_core 0.5.1", "sc-keystore", "schnorrkel", - "sp-application-crypto", - "sp-consensus", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sp-consensus-babe", "sp-consensus-slots", - "sp-core", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-keyring", - "sp-keystore", - "sp-runtime", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", "tracing-gum", ] @@ -6290,7 +6290,7 @@ dependencies = [ "polkadot-overseer", "polkadot-primitives", "polkadot-primitives-test-helpers", - "sp-core", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-keyring", "thiserror", "tracing-gum", @@ -6313,11 +6313,11 @@ dependencies = [ "polkadot-primitives-test-helpers", "polkadot-statement-table", "sc-keystore", - "sp-application-crypto", - "sp-core", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-keyring", - "sp-keystore", - "sp-tracing", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", "tracing-gum", ] @@ -6332,7 +6332,7 @@ dependencies = [ "polkadot-node-subsystem-util", "polkadot-primitives", "polkadot-primitives-test-helpers", - "sp-keystore", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", "tracing-gum", "wasm-timer", @@ -6354,9 +6354,9 @@ dependencies = [ "polkadot-parachain", "polkadot-primitives", "polkadot-primitives-test-helpers", - "sp-core", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-keyring", - "sp-maybe-compressed-blob", + "sp-maybe-compressed-blob 4.1.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "tracing-gum", ] @@ -6372,10 +6372,10 @@ dependencies = [ "polkadot-node-subsystem-test-helpers", "polkadot-node-subsystem-util", "polkadot-primitives", - "sc-client-api", + "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sc-consensus-babe", - "sp-blockchain", - "sp-core", + "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "tracing-gum", ] @@ -6395,7 +6395,7 @@ dependencies = [ "polkadot-node-subsystem-test-helpers", "polkadot-node-subsystem-util", "polkadot-primitives", - "sp-core", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", "tracing-gum", ] @@ -6419,10 +6419,10 @@ dependencies = [ "polkadot-primitives", "polkadot-primitives-test-helpers", "sc-keystore", - "sp-application-crypto", - "sp-core", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-keyring", - "sp-keystore", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", "tracing-gum", ] @@ -6436,9 +6436,9 @@ dependencies = [ "futures-timer", "polkadot-node-subsystem", "polkadot-primitives", - "sp-blockchain", - "sp-inherents", - "sp-runtime", + "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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", "tracing-gum", ] @@ -6458,8 +6458,8 @@ dependencies = [ "polkadot-primitives", "polkadot-primitives-test-helpers", "rand 0.8.5", - "sp-application-crypto", - "sp-keystore", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", "tracing-gum", ] @@ -6482,16 +6482,16 @@ dependencies = [ "polkadot-parachain", "rand 0.8.5", "rayon", - "sc-executor", - "sc-executor-common", + "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-wasmtime", "slotmap", - "sp-core", - "sp-externalities", - "sp-io", - "sp-maybe-compressed-blob", - "sp-tracing", - "sp-wasm-interface", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-externalities 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-maybe-compressed-blob 4.1.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-wasm-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "tempfile", "test-parachain-adder", "test-parachain-halt", @@ -6512,11 +6512,11 @@ dependencies = [ "polkadot-primitives", "polkadot-primitives-test-helpers", "sc-keystore", - "sp-application-crypto", - "sp-core", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-keyring", - "sp-keystore", - "sp-runtime", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", "tracing-gum", ] @@ -6535,10 +6535,10 @@ dependencies = [ "polkadot-node-subsystem-util", "polkadot-primitives", "polkadot-primitives-test-helpers", - "sp-api", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sp-authority-discovery", "sp-consensus-babe", - "sp-core", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-keyring", "tracing-gum", ] @@ -6556,7 +6556,7 @@ dependencies = [ "polkadot-node-primitives", "polkadot-primitives", "sc-network", - "sp-core", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", ] @@ -6577,11 +6577,11 @@ dependencies = [ "prioritized-metered-channel", "prometheus-parse", "sc-cli", - "sc-client-api", + "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sc-service", "sc-tracing", "sp-keyring", - "substrate-prometheus-endpoint", + "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "substrate-test-utils", "tempfile", "tokio", @@ -6605,7 +6605,7 @@ dependencies = [ "rand_chacha 0.3.1", "sc-authority-discovery", "sc-network", - "sc-network-common", + "sc-network-common 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "strum", "thiserror", "tracing-gum", @@ -6623,12 +6623,12 @@ dependencies = [ "polkadot-primitives", "schnorrkel", "serde", - "sp-application-crypto", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-consensus-babe", "sp-consensus-vrf", - "sp-core", - "sp-keystore", - "sp-maybe-compressed-blob", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-maybe-compressed-blob 4.1.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", "zstd", ] @@ -6654,10 +6654,10 @@ dependencies = [ "polkadot-overseer", "polkadot-primitives", "sc-keystore", - "sp-application-crypto", - "sp-core", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-keyring", - "sp-keystore", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -6675,10 +6675,10 @@ dependencies = [ "polkadot-statement-table", "sc-network", "smallvec", - "sp-api", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sp-authority-discovery", "sp-consensus-babe", - "substrate-prometheus-endpoint", + "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", ] @@ -6714,9 +6714,9 @@ dependencies = [ "polkadot-primitives-test-helpers", "prioritized-metered-channel", "rand 0.8.5", - "sp-application-crypto", - "sp-core", - "sp-keystore", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", "tempfile", "thiserror", "tracing-gum", @@ -6742,9 +6742,9 @@ dependencies = [ "polkadot-primitives", "polkadot-primitives-test-helpers", "prioritized-metered-channel", - "sc-client-api", - "sp-api", - "sp-core", + "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-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "tracing-gum", ] @@ -6759,9 +6759,9 @@ dependencies = [ "polkadot-core-primitives", "scale-info", "serde", - "sp-core", - "sp-runtime", - "sp-std", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -6791,20 +6791,20 @@ dependencies = [ "polkadot-parachain", "scale-info", "serde", - "sp-api", - "sp-application-crypto", - "sp-arithmetic", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-arithmetic 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-authority-discovery", "sp-consensus-slots", - "sp-core", - "sp-inherents", - "sp-io", - "sp-keystore", - "sp-runtime", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-staking", - "sp-std", - "sp-trie", - "sp-version", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -6813,10 +6813,10 @@ version = "0.9.29" dependencies = [ "polkadot-primitives", "rand 0.8.5", - "sp-application-crypto", - "sp-core", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-keyring", - "sp-runtime", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -6829,8 +6829,8 @@ dependencies = [ "pallet-mmr-rpc", "pallet-transaction-payment-rpc", "polkadot-primitives", - "sc-chain-spec", - "sc-client-api", + "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-babe", "sc-consensus-babe-rpc", "sc-consensus-epochs", @@ -6838,14 +6838,14 @@ dependencies = [ "sc-finality-grandpa-rpc", "sc-rpc", "sc-sync-state-rpc", - "sc-transaction-pool-api", - "sp-api", + "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", - "sp-blockchain", - "sp-consensus", + "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-consensus-babe", - "sp-keystore", - "sp-runtime", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "substrate-frame-rpc-system", "substrate-state-trie-migration-rpc", ] @@ -6918,25 +6918,25 @@ dependencies = [ "serde_derive", "serde_json", "smallvec", - "sp-api", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sp-authority-discovery", "sp-block-builder", "sp-consensus-babe", - "sp-core", - "sp-inherents", - "sp-io", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-keyring", "sp-mmr-primitives", "sp-npos-elections", "sp-offchain", - "sp-runtime", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-session", "sp-staking", - "sp-std", - "sp-tracing", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-transaction-pool", - "sp-trie", - "sp-version", + "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "static_assertions", "substrate-wasm-builder", "tiny-keccak", @@ -6983,16 +6983,16 @@ dependencies = [ "serde_derive", "serde_json", "slot-range-helper", - "sp-api", - "sp-core", - "sp-inherents", - "sp-io", - "sp-keystore", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-npos-elections", - "sp-runtime", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-session", "sp-staking", - "sp-std", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "static_assertions", "xcm", ] @@ -7005,7 +7005,7 @@ dependencies = [ "polkadot-primitives", "polkadot-runtime-common", "smallvec", - "sp-runtime", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -7015,8 +7015,8 @@ dependencies = [ "bs58", "parity-scale-codec", "polkadot-primitives", - "sp-std", - "sp-tracing", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -7052,18 +7052,18 @@ dependencies = [ "sc-keystore", "scale-info", "serde", - "sp-api", - "sp-application-crypto", - "sp-core", - "sp-inherents", - "sp-io", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-keyring", - "sp-keystore", - "sp-runtime", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-session", "sp-staking", - "sp-std", - "sp-tracing", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "static_assertions", "thousands", "xcm", @@ -7136,45 +7136,45 @@ dependencies = [ "sc-authority-discovery", "sc-basic-authorship", "sc-block-builder", - "sc-chain-spec", - "sc-client-api", + "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", - "sc-consensus", + "sc-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sc-consensus-babe", "sc-consensus-slots", - "sc-executor", + "sc-executor 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sc-finality-grandpa", "sc-keystore", "sc-network", - "sc-network-common", + "sc-network-common 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sc-offchain", "sc-service", "sc-sync-state-rpc", "sc-sysinfo", - "sc-telemetry", + "sc-telemetry 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sc-transaction-pool", "serde", "serde_json", - "sp-api", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sp-authority-discovery", "sp-block-builder", - "sp-blockchain", - "sp-consensus", + "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-consensus-babe", - "sp-core", - "sp-finality-grandpa", - "sp-inherents", - "sp-io", - "sp-keystore", + "sp-core 6.0.0 (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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-offchain", - "sp-runtime", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-session", - "sp-state-machine", - "sp-storage", + "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-storage 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-timestamp", "sp-transaction-pool", - "sp-trie", - "substrate-prometheus-endpoint", + "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "tempfile", "thiserror", "tracing-gum", @@ -7202,13 +7202,13 @@ dependencies = [ "polkadot-primitives-test-helpers", "sc-keystore", "sc-network", - "sp-application-crypto", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-authority-discovery", - "sp-core", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-keyring", - "sp-keystore", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-staking", - "sp-tracing", + "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", "tracing-gum", ] @@ -7219,7 +7219,7 @@ version = "0.9.29" dependencies = [ "parity-scale-codec", "polkadot-primitives", - "sp-core", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -7233,17 +7233,17 @@ dependencies = [ "polkadot-test-runtime", "polkadot-test-service", "sc-block-builder", - "sc-consensus", + "sc-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sc-service", - "sp-api", - "sp-blockchain", - "sp-consensus", + "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-consensus-babe", - "sp-core", - "sp-inherents", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sp-keyring", - "sp-runtime", - "sp-state-machine", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-timestamp", "substrate-test-client", ] @@ -7272,8 +7272,8 @@ dependencies = [ "polkadot-node-subsystem-util", "polkadot-primitives", "rand 0.8.5", - "sp-core", - "sp-keystore", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", "tracing-gum", ] @@ -7317,23 +7317,23 @@ dependencies = [ "serde_derive", "serde_json", "smallvec", - "sp-api", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sp-authority-discovery", "sp-block-builder", "sp-consensus-babe", - "sp-core", - "sp-inherents", - "sp-io", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-keyring", "sp-mmr-primitives", "sp-offchain", - "sp-runtime", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-session", "sp-staking", - "sp-std", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-transaction-pool", - "sp-trie", - "sp-version", + "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "substrate-wasm-builder", "test-runtime-constants", "tiny-keccak", @@ -7365,30 +7365,30 @@ dependencies = [ "polkadot-test-runtime", "rand 0.8.5", "sc-authority-discovery", - "sc-chain-spec", + "sc-chain-spec 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sc-cli", - "sc-client-api", - "sc-consensus", + "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-consensus-babe", - "sc-executor", + "sc-executor 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sc-finality-grandpa", "sc-network", - "sc-network-common", + "sc-network-common 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sc-service", "sc-tracing", "sc-transaction-pool", "serde_json", - "sp-arithmetic", + "sp-arithmetic 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-authority-discovery", - "sp-blockchain", - "sp-consensus", + "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-consensus-babe", - "sp-core", - "sp-finality-grandpa", - "sp-inherents", + "sp-core 6.0.0 (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", - "sp-runtime", - "sp-state-machine", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", "substrate-test-client", "substrate-test-utils", "tempfile", @@ -7405,7 +7405,7 @@ dependencies = [ "generate-bags", "kusama-runtime", "polkadot-runtime", - "sp-io", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "westend-runtime", ] @@ -7992,8 +7992,8 @@ dependencies = [ "pallet-bags-list-remote-tests", "polkadot-runtime", "polkadot-runtime-constants", - "sp-core", - "sp-tracing", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "tokio", "westend-runtime", "westend-runtime-constants", @@ -8010,10 +8010,10 @@ dependencies = [ "parity-scale-codec", "serde", "serde_json", - "sp-core", - "sp-io", - "sp-runtime", - "sp-version", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -8171,23 +8171,23 @@ dependencies = [ "serde_derive", "serde_json", "smallvec", - "sp-api", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sp-authority-discovery", "sp-block-builder", "sp-consensus-babe", - "sp-core", - "sp-inherents", - "sp-io", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-keyring", "sp-mmr-primitives", "sp-offchain", - "sp-runtime", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-session", "sp-staking", - "sp-std", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-transaction-pool", - "sp-trie", - "sp-version", + "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "static_assertions", "substrate-wasm-builder", "tiny-keccak", @@ -8204,7 +8204,7 @@ dependencies = [ "polkadot-primitives", "polkadot-runtime-common", "smallvec", - "sp-runtime", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -8344,8 +8344,19 @@ version = "4.1.0-dev" source = "git+https://github.com/paritytech/substrate?branch=master#e8a4408c53ae2a1a0ef6cb2f7b603887a231c16f" dependencies = [ "log", - "sp-core", - "sp-wasm-interface", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-wasm-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "thiserror", +] + +[[package]] +name = "sc-allocator" +version = "4.1.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "log", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-wasm-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", "thiserror", ] @@ -8364,15 +8375,15 @@ dependencies = [ "prost", "prost-build", "rand 0.7.3", - "sc-client-api", - "sc-network-common", - "sp-api", + "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-network-common 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-authority-discovery", - "sp-blockchain", - "sp-core", - "sp-keystore", - "sp-runtime", - "substrate-prometheus-endpoint", + "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", ] @@ -8386,17 +8397,17 @@ dependencies = [ "log", "parity-scale-codec", "sc-block-builder", - "sc-client-api", + "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sc-proposer-metrics", - "sc-telemetry", - "sc-transaction-pool-api", - "sp-api", - "sp-blockchain", - "sp-consensus", - "sp-core", - "sp-inherents", - "sp-runtime", - "substrate-prometheus-endpoint", + "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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -8405,14 +8416,14 @@ version = "0.10.0-dev" source = "git+https://github.com/paritytech/substrate?branch=master#e8a4408c53ae2a1a0ef6cb2f7b603887a231c16f" dependencies = [ "parity-scale-codec", - "sc-client-api", - "sp-api", + "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", - "sp-blockchain", - "sp-core", - "sp-inherents", - "sp-runtime", - "sp-state-machine", + "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -8423,13 +8434,30 @@ dependencies = [ "impl-trait-for-tuples", "memmap2 0.5.0", "parity-scale-codec", - "sc-chain-spec-derive", - "sc-network-common", - "sc-telemetry", + "sc-chain-spec-derive 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-network-common 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)", + "serde", + "serde_json", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (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=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +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=na-jsonrpc-client-utils)", + "sc-network-common 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sc-telemetry 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", "serde", "serde_json", - "sp-core", - "sp-runtime", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", ] [[package]] @@ -8443,6 +8471,17 @@ dependencies = [ "syn", ] +[[package]] +name = "sc-chain-spec-derive" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "proc-macro-crate", + "proc-macro2", + "quote", + "syn", +] + [[package]] name = "sc-cli" version = "0.10.0-dev" @@ -8460,24 +8499,24 @@ dependencies = [ "rand 0.7.3", "regex", "rpassword", - "sc-client-api", + "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sc-client-db", "sc-keystore", "sc-network", - "sc-network-common", + "sc-network-common 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sc-service", - "sc-telemetry", + "sc-telemetry 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sc-tracing", - "sc-utils", + "sc-utils 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "serde", "serde_json", - "sp-blockchain", - "sp-core", + "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-keyring", - "sp-keystore", - "sp-panic-handler", - "sp-runtime", - "sp-version", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-panic-handler 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", "tiny-bip39", "tokio", @@ -8494,21 +8533,49 @@ dependencies = [ "log", "parity-scale-codec", "parking_lot 0.12.1", - "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", + "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 6.0.0 (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.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-storage 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", +] + +[[package]] +name = "sc-client-api" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "fnv", + "futures", + "hash-db", + "log", + "parity-scale-codec", + "parking_lot 0.12.1", + "sc-executor 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sc-transaction-pool-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sc-utils 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-database 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-externalities 0.12.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-storage 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", ] [[package]] @@ -8525,15 +8592,15 @@ dependencies = [ "parity-db", "parity-scale-codec", "parking_lot 0.12.1", - "sc-client-api", + "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sc-state-db", - "sp-arithmetic", - "sp-blockchain", - "sp-core", - "sp-database", - "sp-runtime", - "sp-state-machine", - "sp-trie", + "sp-arithmetic 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-database 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -8547,16 +8614,40 @@ dependencies = [ "libp2p", "log", "parking_lot 0.12.1", - "sc-client-api", - "sc-utils", + "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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "thiserror", +] + +[[package]] +name = "sc-consensus" +version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "async-trait", + "futures", + "futures-timer", + "libp2p", + "log", + "parking_lot 0.12.1", + "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sc-utils 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", "serde", - "sp-api", - "sp-blockchain", - "sp-consensus", - "sp-core", - "sp-runtime", - "sp-state-machine", - "substrate-prometheus-endpoint", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", "thiserror", ] @@ -8576,29 +8667,29 @@ dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", "rand 0.7.3", - "sc-client-api", - "sc-consensus", + "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-consensus-epochs", "sc-consensus-slots", "sc-keystore", - "sc-telemetry", + "sc-telemetry 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "schnorrkel", "serde", - "sp-api", - "sp-application-crypto", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-block-builder", - "sp-blockchain", - "sp-consensus", + "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-consensus-babe", "sp-consensus-slots", "sp-consensus-vrf", - "sp-core", - "sp-inherents", - "sp-io", - "sp-keystore", - "sp-runtime", - "sp-version", - "substrate-prometheus-endpoint", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", ] @@ -8611,16 +8702,16 @@ dependencies = [ "jsonrpsee", "sc-consensus-babe", "sc-consensus-epochs", - "sc-rpc-api", + "sc-rpc-api 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "serde", - "sp-api", - "sp-application-crypto", - "sp-blockchain", - "sp-consensus", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-application-crypto 6.0.0 (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-consensus-babe", - "sp-core", - "sp-keystore", - "sp-runtime", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", ] @@ -8631,10 +8722,10 @@ source = "git+https://github.com/paritytech/substrate?branch=master#e8a4408c53ae dependencies = [ "fork-tree", "parity-scale-codec", - "sc-client-api", - "sc-consensus", - "sp-blockchain", - "sp-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)", + "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -8647,17 +8738,17 @@ dependencies = [ "futures-timer", "log", "parity-scale-codec", - "sc-client-api", - "sc-consensus", - "sc-telemetry", - "sp-arithmetic", - "sp-blockchain", - "sp-consensus", + "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-arithmetic 5.0.0 (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-consensus-slots", - "sp-core", - "sp-inherents", - "sp-runtime", - "sp-state-machine", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", ] @@ -8670,20 +8761,46 @@ dependencies = [ "lru 0.7.8", "parity-scale-codec", "parking_lot 0.12.1", - "sc-executor-common", - "sc-executor-wasmi", + "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-wasmtime", - "sp-api", - "sp-core", - "sp-core-hashing-proc-macro", - "sp-externalities", - "sp-io", - "sp-panic-handler", - "sp-runtime-interface", - "sp-tasks", - "sp-trie", - "sp-version", - "sp-wasm-interface", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core-hashing-proc-macro 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-externalities 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-panic-handler 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-tasks 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-wasm-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "tracing", + "wasmi", +] + +[[package]] +name = "sc-executor" +version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "lazy_static", + "lru 0.7.8", + "parity-scale-codec", + "parking_lot 0.12.1", + "sc-executor-common 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sc-executor-wasmi 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-core-hashing-proc-macro 5.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-externalities 0.12.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-panic-handler 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-runtime-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-tasks 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-wasm-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", "tracing", "wasmi", ] @@ -8695,10 +8812,26 @@ source = "git+https://github.com/paritytech/substrate?branch=master#e8a4408c53ae dependencies = [ "environmental", "parity-scale-codec", - "sc-allocator", - "sp-maybe-compressed-blob", - "sp-sandbox", - "sp-wasm-interface", + "sc-allocator 4.1.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-maybe-compressed-blob 4.1.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-sandbox 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-wasm-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "thiserror", + "wasm-instrument", + "wasmi", +] + +[[package]] +name = "sc-executor-common" +version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "environmental", + "parity-scale-codec", + "sc-allocator 4.1.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-maybe-compressed-blob 4.1.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-sandbox 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-wasm-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", "thiserror", "wasm-instrument", "wasmi", @@ -8711,11 +8844,26 @@ source = "git+https://github.com/paritytech/substrate?branch=master#e8a4408c53ae dependencies = [ "log", "parity-scale-codec", - "sc-allocator", - "sc-executor-common", - "sp-runtime-interface", - "sp-sandbox", - "sp-wasm-interface", + "sc-allocator 4.1.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)", + "sp-runtime-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-sandbox 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-wasm-interface 6.0.0 (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=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "log", + "parity-scale-codec", + "sc-allocator 4.1.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sc-executor-common 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-runtime-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-sandbox 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-wasm-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", "wasmi", ] @@ -8731,11 +8879,11 @@ dependencies = [ "parity-scale-codec", "parity-wasm 0.45.0", "rustix", - "sc-allocator", - "sc-executor-common", - "sp-runtime-interface", - "sp-sandbox", - "sp-wasm-interface", + "sc-allocator 4.1.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)", + "sp-runtime-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-sandbox 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-wasm-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "wasmtime", ] @@ -8757,26 +8905,26 @@ dependencies = [ "parking_lot 0.12.1", "rand 0.8.5", "sc-block-builder", - "sc-chain-spec", - "sc-client-api", - "sc-consensus", + "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-keystore", "sc-network", - "sc-network-common", + "sc-network-common 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sc-network-gossip", - "sc-telemetry", - "sc-utils", + "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)", "serde_json", - "sp-api", - "sp-application-crypto", - "sp-arithmetic", - "sp-blockchain", - "sp-consensus", - "sp-core", - "sp-finality-grandpa", - "sp-keystore", - "sp-runtime", - "substrate-prometheus-endpoint", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-arithmetic 5.0.0 (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 6.0.0 (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.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", ] @@ -8790,14 +8938,14 @@ dependencies = [ "jsonrpsee", "log", "parity-scale-codec", - "sc-client-api", + "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sc-finality-grandpa", "sc-rpc", "serde", "serde_json", - "sp-blockchain", - "sp-core", - "sp-runtime", + "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", ] @@ -8811,11 +8959,11 @@ dependencies = [ "futures-timer", "log", "parity-util-mem", - "sc-client-api", - "sc-network-common", - "sc-transaction-pool-api", - "sp-blockchain", - "sp-runtime", + "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-network-common 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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -8827,9 +8975,9 @@ dependencies = [ "async-trait", "parking_lot 0.12.1", "serde_json", - "sp-application-crypto", - "sp-core", - "sp-keystore", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", ] @@ -8861,20 +9009,20 @@ dependencies = [ "prost", "rand 0.7.3", "sc-block-builder", - "sc-client-api", - "sc-consensus", - "sc-network-common", - "sc-peerset", - "sc-utils", + "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-network-common 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", - "sp-blockchain", - "sp-consensus", - "sp-core", - "sp-runtime", - "substrate-prometheus-endpoint", + "sp-arithmetic 5.0.0 (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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", "unsigned-varint", "zeroize", @@ -8891,10 +9039,10 @@ dependencies = [ "log", "prost", "prost-build", - "sc-client-api", - "sc-network-common", - "sp-blockchain", - "sp-runtime", + "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-network-common 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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", "unsigned-varint", "void", @@ -8914,15 +9062,41 @@ dependencies = [ "linked_hash_set", "parity-scale-codec", "prost-build", - "sc-consensus", - "sc-peerset", + "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)", + "serde", + "smallvec", + "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-finality-grandpa 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "thiserror", +] + +[[package]] +name = "sc-network-common" +version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "async-trait", + "bitflags", + "bytes", + "futures", + "futures-timer", + "libp2p", + "linked_hash_set", + "parity-scale-codec", + "prost-build", + "sc-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sc-peerset 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", "serde", "smallvec", - "sp-blockchain", - "sp-consensus", - "sp-finality-grandpa", - "sp-runtime", - "substrate-prometheus-endpoint", + "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-finality-grandpa 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", "thiserror", ] @@ -8937,10 +9111,10 @@ dependencies = [ "libp2p", "log", "lru 0.7.8", - "sc-network-common", - "sc-peerset", - "sp-runtime", - "substrate-prometheus-endpoint", + "sc-network-common 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)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "tracing", ] @@ -8956,12 +9130,12 @@ dependencies = [ "parity-scale-codec", "prost", "prost-build", - "sc-client-api", - "sc-network-common", - "sc-peerset", - "sp-blockchain", - "sp-core", - "sp-runtime", + "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-network-common 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)", + "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", ] @@ -8980,18 +9154,18 @@ dependencies = [ "parity-scale-codec", "prost", "prost-build", - "sc-client-api", - "sc-consensus", - "sc-network-common", - "sc-peerset", - "sc-utils", + "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-network-common 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)", "smallvec", - "sp-arithmetic", - "sp-blockchain", - "sp-consensus", - "sp-core", - "sp-finality-grandpa", - "sp-runtime", + "sp-arithmetic 5.0.0 (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 6.0.0 (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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", ] @@ -9007,11 +9181,11 @@ dependencies = [ "log", "parity-scale-codec", "pin-project", - "sc-network-common", - "sc-peerset", - "sp-consensus", - "sp-runtime", - "substrate-prometheus-endpoint", + "sc-network-common 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)", + "sp-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -9032,14 +9206,14 @@ dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", "rand 0.7.3", - "sc-client-api", - "sc-network-common", - "sc-peerset", - "sc-utils", - "sp-api", - "sp-core", + "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-network-common 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)", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-offchain", - "sp-runtime", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "threadpool", "tracing", ] @@ -9052,7 +9226,20 @@ dependencies = [ "futures", "libp2p", "log", - "sc-utils", + "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=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "futures", + "libp2p", + "log", + "sc-utils 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", "serde_json", "wasm-timer", ] @@ -9063,7 +9250,7 @@ version = "0.10.0-dev" source = "git+https://github.com/paritytech/substrate?branch=master#e8a4408c53ae2a1a0ef6cb2f7b603887a231c16f" dependencies = [ "log", - "substrate-prometheus-endpoint", + "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -9078,22 +9265,22 @@ dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", "sc-block-builder", - "sc-chain-spec", - "sc-client-api", - "sc-rpc-api", + "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", - "sc-transaction-pool-api", - "sc-utils", + "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", - "sp-blockchain", - "sp-core", - "sp-keystore", + "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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-offchain", - "sp-rpc", - "sp-runtime", + "sp-rpc 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-session", - "sp-version", + "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -9106,16 +9293,39 @@ dependencies = [ "log", "parity-scale-codec", "parking_lot 0.12.1", - "sc-chain-spec", - "sc-transaction-pool-api", + "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)", + "scale-info", + "serde", + "serde_json", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-rpc 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "thiserror", +] + +[[package]] +name = "sc-rpc-api" +version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "futures", + "jsonrpsee", + "log", + "parity-scale-codec", + "parking_lot 0.12.1", + "sc-chain-spec 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sc-transaction-pool-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", "scale-info", "serde", "serde_json", - "sp-core", - "sp-rpc", - "sp-runtime", - "sp-tracing", - "sp-version", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-rpc 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", "thiserror", ] @@ -9128,7 +9338,7 @@ dependencies = [ "jsonrpsee", "log", "serde_json", - "substrate-prometheus-endpoint", + "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "tokio", ] @@ -9141,13 +9351,13 @@ dependencies = [ "hex", "jsonrpsee", "parity-scale-codec", - "sc-chain-spec", - "sc-transaction-pool-api", + "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", - "sp-api", - "sp-blockchain", - "sp-core", - "sp-runtime", + "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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", ] @@ -9170,16 +9380,16 @@ dependencies = [ "pin-project", "rand 0.7.3", "sc-block-builder", - "sc-chain-spec", - "sc-client-api", + "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", - "sc-consensus", - "sc-executor", + "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", "sc-keystore", "sc-network", "sc-network-bitswap", - "sc-network-common", + "sc-network-common 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sc-network-light", "sc-network-sync", "sc-network-transactions", @@ -9188,33 +9398,33 @@ dependencies = [ "sc-rpc-server", "sc-rpc-spec-v2", "sc-sysinfo", - "sc-telemetry", + "sc-telemetry 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sc-tracing", "sc-transaction-pool", - "sc-transaction-pool-api", - "sc-utils", + "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", - "sp-application-crypto", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-block-builder", - "sp-blockchain", - "sp-consensus", - "sp-core", - "sp-externalities", - "sp-inherents", - "sp-keystore", - "sp-runtime", + "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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-externalities 0.12.0 (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.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-session", - "sp-state-machine", - "sp-storage", - "sp-tracing", + "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-storage 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-transaction-pool", "sp-transaction-storage-proof", - "sp-trie", - "sp-version", + "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "static_init 1.0.3", - "substrate-prometheus-endpoint", + "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "tempfile", "thiserror", "tokio", @@ -9232,8 +9442,8 @@ dependencies = [ "parity-util-mem", "parity-util-mem-derive", "parking_lot 0.12.1", - "sc-client-api", - "sp-core", + "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -9243,15 +9453,15 @@ source = "git+https://github.com/paritytech/substrate?branch=master#e8a4408c53ae dependencies = [ "jsonrpsee", "parity-scale-codec", - "sc-chain-spec", - "sc-client-api", + "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-babe", "sc-consensus-epochs", "sc-finality-grandpa", "serde", "serde_json", - "sp-blockchain", - "sp-runtime", + "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", ] @@ -9266,12 +9476,12 @@ dependencies = [ "rand 0.7.3", "rand_pcg 0.2.1", "regex", - "sc-telemetry", + "sc-telemetry 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "serde", "serde_json", - "sp-core", - "sp-io", - "sp-std", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -9292,6 +9502,24 @@ dependencies = [ "wasm-timer", ] +[[package]] +name = "sc-telemetry" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "chrono", + "futures", + "libp2p", + "log", + "parking_lot 0.12.1", + "pin-project", + "rand 0.7.3", + "serde", + "serde_json", + "thiserror", + "wasm-timer", +] + [[package]] name = "sc-tracing" version = "4.0.0-dev" @@ -9307,16 +9535,16 @@ dependencies = [ "parking_lot 0.12.1", "regex", "rustc-hash", - "sc-client-api", + "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sc-rpc-server", "sc-tracing-proc-macro", "serde", - "sp-api", - "sp-blockchain", - "sp-core", - "sp-rpc", - "sp-runtime", - "sp-tracing", + "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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-rpc 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", "tracing", "tracing-log", @@ -9347,17 +9575,17 @@ dependencies = [ "parity-scale-codec", "parity-util-mem", "parking_lot 0.12.1", - "sc-client-api", - "sc-transaction-pool-api", - "sc-utils", + "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", - "sp-blockchain", - "sp-core", - "sp-runtime", - "sp-tracing", + "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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-transaction-pool", - "substrate-prometheus-endpoint", + "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", ] @@ -9370,8 +9598,22 @@ dependencies = [ "futures", "log", "serde", - "sp-blockchain", - "sp-runtime", + "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "thiserror", +] + +[[package]] +name = "sc-transaction-pool-api" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "async-trait", + "futures", + "log", + "serde", + "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", "thiserror", ] @@ -9388,6 +9630,19 @@ dependencies = [ "prometheus", ] +[[package]] +name = "sc-utils" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "futures", + "futures-timer", + "lazy_static", + "log", + "parking_lot 0.12.1", + "prometheus", +] + [[package]] name = "scale-info" version = "2.1.2" @@ -9781,8 +10036,8 @@ dependencies = [ "enumn", "parity-scale-codec", "paste", - "sp-runtime", - "sp-std", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -9857,13 +10112,31 @@ dependencies = [ "hash-db", "log", "parity-scale-codec", - "sp-api-proc-macro", - "sp-core", - "sp-runtime", - "sp-state-machine", - "sp-std", - "sp-trie", - "sp-version", + "sp-api-proc-macro 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-version 5.0.0 (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=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "hash-db", + "log", + "parity-scale-codec", + "sp-api-proc-macro 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", "thiserror", ] @@ -9879,6 +10152,18 @@ dependencies = [ "syn", ] +[[package]] +name = "sp-api-proc-macro" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "blake2", + "proc-macro-crate", + "proc-macro2", + "quote", + "syn", +] + [[package]] name = "sp-application-crypto" version = "6.0.0" @@ -9887,9 +10172,22 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-std", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", +] + +[[package]] +name = "sp-application-crypto" +version = "6.0.0" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "parity-scale-codec", + "scale-info", + "serde", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", ] [[package]] @@ -9902,8 +10200,23 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-debug-derive", - "sp-std", + "sp-debug-derive 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "static_assertions", +] + +[[package]] +name = "sp-arithmetic" +version = "5.0.0" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "integer-sqrt", + "num-traits", + "parity-scale-codec", + "scale-info", + "serde", + "sp-debug-derive 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", "static_assertions", ] @@ -9914,10 +10227,10 @@ source = "git+https://github.com/paritytech/substrate?branch=master#e8a4408c53ae dependencies = [ "parity-scale-codec", "scale-info", - "sp-api", - "sp-application-crypto", - "sp-runtime", - "sp-std", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -9927,9 +10240,9 @@ source = "git+https://github.com/paritytech/substrate?branch=master#e8a4408c53ae dependencies = [ "async-trait", "parity-scale-codec", - "sp-inherents", - "sp-runtime", - "sp-std", + "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -9938,10 +10251,10 @@ version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=master#e8a4408c53ae2a1a0ef6cb2f7b603887a231c16f" dependencies = [ "parity-scale-codec", - "sp-api", - "sp-inherents", - "sp-runtime", - "sp-std", + "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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -9954,11 +10267,29 @@ dependencies = [ "lru 0.7.8", "parity-scale-codec", "parking_lot 0.12.1", - "sp-api", - "sp-consensus", - "sp-database", - "sp-runtime", - "sp-state-machine", + "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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-state-machine 0.12.0 (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=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "futures", + "log", + "lru 0.7.8", + "parity-scale-codec", + "parking_lot 0.12.1", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-database 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", "thiserror", ] @@ -9972,12 +10303,31 @@ dependencies = [ "futures-timer", "log", "parity-scale-codec", - "sp-core", - "sp-inherents", - "sp-runtime", - "sp-state-machine", - "sp-std", - "sp-version", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-version 5.0.0 (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=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "async-trait", + "futures", + "futures-timer", + "log", + "parity-scale-codec", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", "thiserror", ] @@ -9991,16 +10341,16 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-api", - "sp-application-crypto", - "sp-consensus", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sp-consensus-slots", "sp-consensus-vrf", - "sp-core", - "sp-inherents", - "sp-keystore", - "sp-runtime", - "sp-std", + "sp-core 6.0.0 (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.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-timestamp", ] @@ -10012,9 +10362,9 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-arithmetic", - "sp-runtime", - "sp-std", + "sp-arithmetic 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-timestamp", ] @@ -10026,9 +10376,9 @@ dependencies = [ "parity-scale-codec", "scale-info", "schnorrkel", - "sp-core", - "sp-runtime", - "sp-std", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -10063,12 +10413,12 @@ dependencies = [ "secp256k1", "secrecy", "serde", - "sp-core-hashing", - "sp-debug-derive", - "sp-externalities", - "sp-runtime-interface", - "sp-std", - "sp-storage", + "sp-core-hashing 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-debug-derive 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-externalities 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-storage 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "ss58-registry", "substrate-bip39", "thiserror", @@ -10078,27 +10428,98 @@ dependencies = [ ] [[package]] -name = "sp-core-hashing" -version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e8a4408c53ae2a1a0ef6cb2f7b603887a231c16f" +name = "sp-core" +version = "6.0.0" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" dependencies = [ + "array-bytes", + "base58", + "bitflags", "blake2", "byteorder", - "digest 0.10.3", - "sha2 0.10.2", - "sha3", - "sp-std", - "twox-hash", -] - -[[package]] -name = "sp-core-hashing-proc-macro" -version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e8a4408c53ae2a1a0ef6cb2f7b603887a231c16f" + "dyn-clonable", + "ed25519-zebra", + "futures", + "hash-db", + "hash256-std-hasher", + "impl-serde", + "lazy_static", + "libsecp256k1", + "log", + "merlin", + "num-traits", + "parity-scale-codec", + "parity-util-mem", + "parking_lot 0.12.1", + "primitive-types", + "rand 0.7.3", + "regex", + "scale-info", + "schnorrkel", + "secp256k1", + "secrecy", + "serde", + "sp-core-hashing 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-debug-derive 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-externalities 0.12.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-runtime-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-storage 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "ss58-registry", + "substrate-bip39", + "thiserror", + "tiny-bip39", + "wasmi", + "zeroize", +] + +[[package]] +name = "sp-core-hashing" +version = "4.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#e8a4408c53ae2a1a0ef6cb2f7b603887a231c16f" +dependencies = [ + "blake2", + "byteorder", + "digest 0.10.3", + "sha2 0.10.2", + "sha3", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "twox-hash", +] + +[[package]] +name = "sp-core-hashing" +version = "4.0.0" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "blake2", + "byteorder", + "digest 0.10.3", + "sha2 0.10.2", + "sha3", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "twox-hash", +] + +[[package]] +name = "sp-core-hashing-proc-macro" +version = "5.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#e8a4408c53ae2a1a0ef6cb2f7b603887a231c16f" dependencies = [ "proc-macro2", "quote", - "sp-core-hashing", + "sp-core-hashing 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "syn", +] + +[[package]] +name = "sp-core-hashing-proc-macro" +version = "5.0.0" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "proc-macro2", + "quote", + "sp-core-hashing 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", "syn", ] @@ -10111,6 +10532,15 @@ dependencies = [ "parking_lot 0.12.1", ] +[[package]] +name = "sp-database" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "kvdb", + "parking_lot 0.12.1", +] + [[package]] name = "sp-debug-derive" version = "4.0.0" @@ -10121,6 +10551,16 @@ dependencies = [ "syn", ] +[[package]] +name = "sp-debug-derive" +version = "4.0.0" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + [[package]] name = "sp-externalities" version = "0.12.0" @@ -10128,8 +10568,19 @@ source = "git+https://github.com/paritytech/substrate?branch=master#e8a4408c53ae dependencies = [ "environmental", "parity-scale-codec", - "sp-std", - "sp-storage", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-storage 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", +] + +[[package]] +name = "sp-externalities" +version = "0.12.0" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "environmental", + "parity-scale-codec", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-storage 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", ] [[package]] @@ -10142,12 +10593,30 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-api", - "sp-application-crypto", - "sp-core", - "sp-keystore", - "sp-runtime", - "sp-std", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (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=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "finality-grandpa", + "log", + "parity-scale-codec", + "scale-info", + "serde", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", ] [[package]] @@ -10158,9 +10627,23 @@ dependencies = [ "async-trait", "impl-trait-for-tuples", "parity-scale-codec", - "sp-core", - "sp-runtime", - "sp-std", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "thiserror", +] + +[[package]] +name = "sp-inherents" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "async-trait", + "impl-trait-for-tuples", + "parity-scale-codec", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", "thiserror", ] @@ -10177,15 +10660,41 @@ dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", "secp256k1", - "sp-core", - "sp-externalities", - "sp-keystore", - "sp-runtime-interface", - "sp-state-machine", - "sp-std", - "sp-tracing", - "sp-trie", - "sp-wasm-interface", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-externalities 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-wasm-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "tracing", + "tracing-core", +] + +[[package]] +name = "sp-io" +version = "6.0.0" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "bytes", + "futures", + "hash-db", + "libsecp256k1", + "log", + "parity-scale-codec", + "parking_lot 0.12.1", + "secp256k1", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-externalities 0.12.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-runtime-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-wasm-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", "tracing", "tracing-core", ] @@ -10196,8 +10705,8 @@ version = "6.0.0" source = "git+https://github.com/paritytech/substrate?branch=master#e8a4408c53ae2a1a0ef6cb2f7b603887a231c16f" dependencies = [ "lazy_static", - "sp-core", - "sp-runtime", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "strum", ] @@ -10213,8 +10722,24 @@ dependencies = [ "parking_lot 0.12.1", "schnorrkel", "serde", - "sp-core", - "sp-externalities", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-externalities 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "thiserror", +] + +[[package]] +name = "sp-keystore" +version = "0.12.0" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "async-trait", + "futures", + "merlin", + "parity-scale-codec", + "parking_lot 0.12.1", + "schnorrkel", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-externalities 0.12.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", "thiserror", ] @@ -10227,6 +10752,15 @@ dependencies = [ "zstd", ] +[[package]] +name = "sp-maybe-compressed-blob" +version = "4.1.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "thiserror", + "zstd", +] + [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" @@ -10236,11 +10770,11 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-api", - "sp-core", - "sp-debug-derive", - "sp-runtime", - "sp-std", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-debug-derive 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -10251,10 +10785,10 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-arithmetic", - "sp-core", - "sp-runtime", - "sp-std", + "sp-arithmetic 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -10262,9 +10796,9 @@ name = "sp-offchain" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=master#e8a4408c53ae2a1a0ef6cb2f7b603887a231c16f" dependencies = [ - "sp-api", - "sp-core", - "sp-runtime", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -10277,6 +10811,16 @@ dependencies = [ "regex", ] +[[package]] +name = "sp-panic-handler" +version = "4.0.0" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "backtrace", + "lazy_static", + "regex", +] + [[package]] name = "sp-rpc" version = "6.0.0" @@ -10284,7 +10828,17 @@ source = "git+https://github.com/paritytech/substrate?branch=master#e8a4408c53ae dependencies = [ "rustc-hash", "serde", - "sp-core", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", +] + +[[package]] +name = "sp-rpc" +version = "6.0.0" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "rustc-hash", + "serde", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", ] [[package]] @@ -10302,12 +10856,35 @@ dependencies = [ "rand 0.7.3", "scale-info", "serde", - "sp-application-crypto", - "sp-arithmetic", - "sp-core", - "sp-io", - "sp-std", - "sp-weights", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-arithmetic 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-weights 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", +] + +[[package]] +name = "sp-runtime" +version = "6.0.0" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "either", + "hash256-std-hasher", + "impl-trait-for-tuples", + "log", + "parity-scale-codec", + "parity-util-mem", + "paste", + "rand 0.7.3", + "scale-info", + "serde", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-arithmetic 5.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-weights 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", ] [[package]] @@ -10319,12 +10896,30 @@ dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", "primitive-types", - "sp-externalities", - "sp-runtime-interface-proc-macro", - "sp-std", - "sp-storage", - "sp-tracing", - "sp-wasm-interface", + "sp-externalities 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime-interface-proc-macro 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-storage 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-wasm-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "static_assertions", +] + +[[package]] +name = "sp-runtime-interface" +version = "6.0.0" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "bytes", + "impl-trait-for-tuples", + "parity-scale-codec", + "primitive-types", + "sp-externalities 0.12.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-runtime-interface-proc-macro 5.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-storage 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-wasm-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", "static_assertions", ] @@ -10340,6 +10935,18 @@ dependencies = [ "syn", ] +[[package]] +name = "sp-runtime-interface-proc-macro" +version = "5.0.0" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "Inflector", + "proc-macro-crate", + "proc-macro2", + "quote", + "syn", +] + [[package]] name = "sp-sandbox" version = "0.10.0-dev" @@ -10347,10 +10954,24 @@ source = "git+https://github.com/paritytech/substrate?branch=master#e8a4408c53ae dependencies = [ "log", "parity-scale-codec", - "sp-core", - "sp-io", - "sp-std", - "sp-wasm-interface", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-wasm-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "wasmi", +] + +[[package]] +name = "sp-sandbox" +version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "log", + "parity-scale-codec", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-wasm-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", "wasmi", ] @@ -10361,11 +10982,11 @@ source = "git+https://github.com/paritytech/substrate?branch=master#e8a4408c53ae dependencies = [ "parity-scale-codec", "scale-info", - "sp-api", - "sp-core", - "sp-runtime", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-staking", - "sp-std", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -10375,8 +10996,8 @@ source = "git+https://github.com/paritytech/substrate?branch=master#e8a4408c53ae dependencies = [ "parity-scale-codec", "scale-info", - "sp-runtime", - "sp-std", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -10391,11 +11012,33 @@ dependencies = [ "parking_lot 0.12.1", "rand 0.7.3", "smallvec", - "sp-core", - "sp-externalities", - "sp-panic-handler", - "sp-std", - "sp-trie", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-externalities 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-panic-handler 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "thiserror", + "tracing", + "trie-root", +] + +[[package]] +name = "sp-state-machine" +version = "0.12.0" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "hash-db", + "log", + "num-traits", + "parity-scale-codec", + "parking_lot 0.12.1", + "rand 0.7.3", + "smallvec", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-externalities 0.12.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-panic-handler 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", "thiserror", "tracing", "trie-root", @@ -10406,6 +11049,11 @@ name = "sp-std" version = "4.0.0" source = "git+https://github.com/paritytech/substrate?branch=master#e8a4408c53ae2a1a0ef6cb2f7b603887a231c16f" +[[package]] +name = "sp-std" +version = "4.0.0" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" + [[package]] name = "sp-storage" version = "6.0.0" @@ -10415,8 +11063,21 @@ dependencies = [ "parity-scale-codec", "ref-cast", "serde", - "sp-debug-derive", - "sp-std", + "sp-debug-derive 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", +] + +[[package]] +name = "sp-storage" +version = "6.0.0" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "impl-serde", + "parity-scale-codec", + "ref-cast", + "serde", + "sp-debug-derive 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", ] [[package]] @@ -10425,11 +11086,24 @@ version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=master#e8a4408c53ae2a1a0ef6cb2f7b603887a231c16f" dependencies = [ "log", - "sp-core", - "sp-externalities", - "sp-io", - "sp-runtime-interface", - "sp-std", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-externalities 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", +] + +[[package]] +name = "sp-tasks" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "log", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-externalities 0.12.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-runtime-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", ] [[package]] @@ -10441,10 +11115,10 @@ dependencies = [ "futures-timer", "log", "parity-scale-codec", - "sp-api", - "sp-inherents", - "sp-runtime", - "sp-std", + "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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", ] @@ -10454,7 +11128,19 @@ version = "5.0.0" source = "git+https://github.com/paritytech/substrate?branch=master#e8a4408c53ae2a1a0ef6cb2f7b603887a231c16f" dependencies = [ "parity-scale-codec", - "sp-std", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "tracing", + "tracing-core", + "tracing-subscriber 0.2.25", +] + +[[package]] +name = "sp-tracing" +version = "5.0.0" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "parity-scale-codec", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", "tracing", "tracing-core", "tracing-subscriber 0.2.25", @@ -10465,8 +11151,8 @@ name = "sp-transaction-pool" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=master#e8a4408c53ae2a1a0ef6cb2f7b603887a231c16f" dependencies = [ - "sp-api", - "sp-runtime", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -10478,11 +11164,11 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-core", - "sp-inherents", - "sp-runtime", - "sp-std", - "sp-trie", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -10500,8 +11186,31 @@ dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", "scale-info", - "sp-core", - "sp-std", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "thiserror", + "tracing", + "trie-db", + "trie-root", +] + +[[package]] +name = "sp-trie" +version = "6.0.0" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "ahash", + "hash-db", + "hashbrown", + "lazy_static", + "lru 0.7.8", + "memory-db", + "nohash-hasher", + "parity-scale-codec", + "parking_lot 0.12.1", + "scale-info", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", "thiserror", "tracing", "trie-db", @@ -10518,10 +11227,27 @@ dependencies = [ "parity-wasm 0.45.0", "scale-info", "serde", - "sp-core-hashing-proc-macro", - "sp-runtime", - "sp-std", - "sp-version-proc-macro", + "sp-core-hashing-proc-macro 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (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 = "5.0.0" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "impl-serde", + "parity-scale-codec", + "parity-wasm 0.45.0", + "scale-info", + "serde", + "sp-core-hashing-proc-macro 5.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-version-proc-macro 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", "thiserror", ] @@ -10536,6 +11262,17 @@ dependencies = [ "syn", ] +[[package]] +name = "sp-version-proc-macro" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "parity-scale-codec", + "proc-macro2", + "quote", + "syn", +] + [[package]] name = "sp-wasm-interface" version = "6.0.0" @@ -10544,11 +11281,23 @@ dependencies = [ "impl-trait-for-tuples", "log", "parity-scale-codec", - "sp-std", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "wasmi", "wasmtime", ] +[[package]] +name = "sp-wasm-interface" +version = "6.0.0" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "impl-trait-for-tuples", + "log", + "parity-scale-codec", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "wasmi", +] + [[package]] name = "sp-weights" version = "4.0.0" @@ -10559,10 +11308,26 @@ dependencies = [ "scale-info", "serde", "smallvec", - "sp-arithmetic", - "sp-core", - "sp-debug-derive", - "sp-std", + "sp-arithmetic 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-debug-derive 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", +] + +[[package]] +name = "sp-weights" +version = "4.0.0" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "impl-trait-for-tuples", + "parity-scale-codec", + "scale-info", + "serde", + "smallvec", + "sp-arithmetic 5.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-debug-derive 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", ] [[package]] @@ -10626,16 +11391,16 @@ dependencies = [ "polkadot-runtime", "polkadot-runtime-common", "remote-externalities", - "sc-transaction-pool-api", + "sc-transaction-pool-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "serde", "serde_json", "signal-hook", "signal-hook-tokio", - "sp-core", - "sp-io", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-npos-elections", - "sp-runtime", - "sp-version", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sub-tokens", "thiserror", "tokio", @@ -10782,15 +11547,15 @@ dependencies = [ "jsonrpsee", "log", "parity-scale-codec", - "sc-client-api", - "sc-rpc-api", - "sc-transaction-pool-api", + "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)", "serde_json", - "sp-api", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sp-block-builder", - "sp-blockchain", - "sp-core", - "sp-runtime", + "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -10806,6 +11571,32 @@ dependencies = [ "tokio", ] +[[package]] +name = "substrate-prometheus-endpoint" +version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "futures-util", + "hyper", + "log", + "prometheus", + "thiserror", + "tokio", +] + +[[package]] +name = "substrate-rpc-client" +version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "async-trait", + "jsonrpsee", + "log", + "sc-rpc-api 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "serde", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", +] + [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" @@ -10814,16 +11605,16 @@ dependencies = [ "jsonrpsee", "log", "parity-scale-codec", - "sc-client-api", - "sc-rpc-api", + "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)", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-runtime", - "sp-state-machine", - "sp-std", - "sp-trie", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "trie-db", ] @@ -10836,21 +11627,21 @@ dependencies = [ "async-trait", "futures", "parity-scale-codec", - "sc-client-api", + "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sc-client-db", - "sc-consensus", - "sc-executor", + "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-offchain", "sc-service", "serde", "serde_json", - "sp-blockchain", - "sp-consensus", - "sp-core", + "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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-keyring", - "sp-keystore", - "sp-runtime", - "sp-state-machine", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -10883,7 +11674,7 @@ dependencies = [ "build-helper", "cargo_metadata", "filetime", - "sp-maybe-compressed-blob", + "sp-maybe-compressed-blob 4.1.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "strum", "tempfile", "toml", @@ -11021,8 +11812,8 @@ dependencies = [ "dlmalloc", "parity-scale-codec", "polkadot-parachain", - "sp-io", - "sp-std", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "substrate-wasm-builder", "tiny-keccak", ] @@ -11046,7 +11837,7 @@ dependencies = [ "polkadot-test-service", "sc-cli", "sc-service", - "sp-core", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-keyring", "substrate-test-utils", "test-parachain-adder", @@ -11068,8 +11859,8 @@ dependencies = [ "log", "parity-scale-codec", "polkadot-parachain", - "sp-io", - "sp-std", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "substrate-wasm-builder", "tiny-keccak", ] @@ -11093,7 +11884,7 @@ dependencies = [ "polkadot-test-service", "sc-cli", "sc-service", - "sp-core", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-keyring", "substrate-test-utils", "test-parachain-undying", @@ -11105,7 +11896,7 @@ name = "test-parachains" version = "0.9.29" dependencies = [ "parity-scale-codec", - "sp-core", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "test-parachain-adder", "test-parachain-halt", "tiny-keccak", @@ -11119,7 +11910,7 @@ dependencies = [ "polkadot-primitives", "polkadot-runtime-common", "smallvec", - "sp-runtime", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -11592,19 +12383,19 @@ dependencies = [ "log", "parity-scale-codec", "remote-externalities", - "sc-chain-spec", + "sc-chain-spec 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sc-cli", - "sc-executor", + "sc-executor 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sc-service", "serde", - "sp-core", - "sp-externalities", - "sp-io", - "sp-keystore", - "sp-runtime", - "sp-state-machine", - "sp-version", - "sp-weights", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-externalities 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-weights 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "zstd", ] @@ -12292,25 +13083,25 @@ dependencies = [ "serde_derive", "serde_json", "smallvec", - "sp-api", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sp-authority-discovery", "sp-block-builder", "sp-consensus-babe", - "sp-core", - "sp-inherents", - "sp-io", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-keyring", "sp-mmr-primitives", "sp-npos-elections", "sp-offchain", - "sp-runtime", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-session", "sp-staking", - "sp-std", - "sp-tracing", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-transaction-pool", - "sp-trie", - "sp-version", + "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "substrate-wasm-builder", "tiny-keccak", "tokio", @@ -12328,7 +13119,7 @@ dependencies = [ "polkadot-primitives", "polkadot-runtime-common", "smallvec", - "sp-runtime", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -12555,7 +13346,7 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-runtime", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "xcm-procedural", ] @@ -12573,11 +13364,11 @@ dependencies = [ "polkadot-parachain", "polkadot-runtime-parachains", "scale-info", - "sp-arithmetic", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-arithmetic 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "xcm", "xcm-executor", ] @@ -12591,11 +13382,11 @@ dependencies = [ "impl-trait-for-tuples", "log", "parity-scale-codec", - "sp-arithmetic", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-arithmetic 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "xcm", ] @@ -12610,11 +13401,11 @@ dependencies = [ "polkadot-test-client", "polkadot-test-runtime", "polkadot-test-service", - "sp-consensus", + "sp-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sp-keyring", - "sp-runtime", - "sp-state-machine", - "sp-tracing", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "xcm", "xcm-executor", ] @@ -12639,8 +13430,8 @@ dependencies = [ "polkadot-core-primitives", "polkadot-parachain", "polkadot-runtime-parachains", - "sp-io", - "sp-std", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "xcm", "xcm-executor", ] @@ -12658,10 +13449,10 @@ dependencies = [ "polkadot-parachain", "polkadot-runtime-parachains", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "xcm", "xcm-builder", "xcm-executor", @@ -12682,10 +13473,10 @@ dependencies = [ "polkadot-parachain", "polkadot-runtime-parachains", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "xcm", "xcm-builder", "xcm-executor", diff --git a/Cargo.toml b/Cargo.toml index 0ed0892593d9..45e0df1d0fcb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,7 +22,7 @@ assert_cmd = "2.0.4" nix = "0.24.1" tempfile = "3.2.0" tokio = "1.19.2" -remote-externalities = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-rpc-client = { git = "https://github.com/paritytech/substrate", branch = "master" } polkadot-core-primitives = { path = "core-primitives" } [workspace] diff --git a/tests/common.rs b/tests/common.rs index 325bffd125ad..3f040208972c 100644 --- a/tests/common.rs +++ b/tests/common.rs @@ -14,14 +14,14 @@ // You should have received a copy of the GNU General Public License // along with Substrate. If not, see . -use polkadot_core_primitives::Block; -use remote_externalities::rpc_api::RpcService; +use polkadot_core_primitives::{Block, Hash, Header}; use std::{ io::{BufRead, BufReader, Read}, process::{Child, ExitStatus}, thread, time::Duration, }; +use substrate_rpc_client::{ws_client, ChainApi}; use tokio::time::timeout; /// Wait for the given `child` the given amount of `secs`. @@ -56,12 +56,12 @@ async fn wait_n_finalized_blocks_from(n: usize, url: &str) { let mut interval = tokio::time::interval(Duration::from_secs(6)); loop { - let rpc_service = match RpcService::new(url, false).await { + let rpc = match ws_client(url).await { Ok(rpc_service) => rpc_service, Err(_) => continue, }; - if let Ok(block) = rpc_service.get_finalized_head::().await { + if let Ok(block) = ChainApi::<(), Hash, Header, Block>::finalized_head(&rpc).await { built_blocks.insert(block); if built_blocks.len() > n { break From b4a692657b9ce5601bb28de95aa34ad9f0fbf436 Mon Sep 17 00:00:00 2001 From: Niklas Adolfsson Date: Tue, 18 Oct 2022 17:08:37 +0200 Subject: [PATCH 4/5] update Cargo.lock --- Cargo.lock | 2905 +++++++++++++++++++++++++++++++++------------------- 1 file changed, 1848 insertions(+), 1057 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index bfe222666e5e..8a03b06df945 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -446,25 +446,25 @@ dependencies = [ "log", "parity-scale-codec", "parking_lot 0.12.1", - "sc-chain-spec", - "sc-client-api", - "sc-consensus", + "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-finality-grandpa", "sc-keystore", "sc-network", - "sc-network-common", + "sc-network-common 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sc-network-gossip", - "sc-utils", - "sp-api", - "sp-application-crypto", - "sp-arithmetic", - "sp-blockchain", - "sp-consensus", - "sp-core", - "sp-keystore", + "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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-arithmetic 5.0.0 (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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-mmr-primitives", - "sp-runtime", - "substrate-prometheus-endpoint", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", "wasm-timer", ] @@ -482,10 +482,10 @@ dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", "sc-rpc", - "sc-utils", + "sc-utils 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "serde", - "sp-core", - "sp-runtime", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", ] @@ -495,8 +495,8 @@ version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "beefy-primitives", - "sp-api", - "sp-runtime", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -507,13 +507,13 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-api", - "sp-application-crypto", - "sp-core", - "sp-io", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-mmr-primitives", - "sp-runtime", - "sp-std", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -2016,14 +2016,14 @@ dependencies = [ "paste", "scale-info", "serde", - "sp-api", - "sp-application-crypto", - "sp-core", - "sp-io", - "sp-runtime", - "sp-runtime-interface", - "sp-std", - "sp-storage", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-storage 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -2053,25 +2053,25 @@ dependencies = [ "rand_pcg 0.3.1", "sc-block-builder", "sc-cli", - "sc-client-api", + "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sc-client-db", - "sc-executor", + "sc-executor 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sc-service", "sc-sysinfo", "serde", "serde_json", "serde_nanos", - "sp-api", - "sp-blockchain", - "sp-core", - "sp-database", - "sp-externalities", - "sp-inherents", - "sp-keystore", - "sp-runtime", - "sp-state-machine", - "sp-storage", - "sp-trie", + "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 6.0.0 (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.12.0 (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.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-storage 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "tempfile", "thiserror", "thousands", @@ -2098,10 +2098,10 @@ dependencies = [ "frame-system", "parity-scale-codec", "scale-info", - "sp-arithmetic", + "sp-arithmetic 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-npos-elections", - "sp-runtime", - "sp-std", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -2114,11 +2114,11 @@ dependencies = [ "frame-try-runtime", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", - "sp-tracing", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -2150,18 +2150,18 @@ dependencies = [ "scale-info", "serde", "smallvec", - "sp-api", - "sp-arithmetic", - "sp-core", - "sp-core-hashing-proc-macro", - "sp-inherents", - "sp-io", - "sp-runtime", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-arithmetic 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core-hashing-proc-macro 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-staking", - "sp-state-machine", - "sp-std", - "sp-tracing", - "sp-weights", + "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-weights 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "tt-call", ] @@ -2214,13 +2214,13 @@ dependencies = [ "rustversion", "scale-info", "serde", - "sp-arithmetic", - "sp-core", - "sp-io", - "sp-runtime", - "sp-state-machine", - "sp-std", - "sp-version", + "sp-arithmetic 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "trybuild", ] @@ -2245,12 +2245,12 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", - "sp-version", - "sp-weights", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-weights 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -2263,9 +2263,9 @@ dependencies = [ "frame-system", "parity-scale-codec", "scale-info", - "sp-core", - "sp-runtime", - "sp-std", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -2274,7 +2274,7 @@ version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "parity-scale-codec", - "sp-api", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -2284,9 +2284,9 @@ source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818 dependencies = [ "frame-support", "parity-scale-codec", - "sp-api", - "sp-runtime", - "sp-std", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -2460,7 +2460,7 @@ dependencies = [ "git2", "num-format", "pallet-staking", - "sp-io", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -3248,26 +3248,26 @@ dependencies = [ "serde_derive", "serde_json", "smallvec", - "sp-api", - "sp-arithmetic", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-arithmetic 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-authority-discovery", "sp-block-builder", "sp-consensus-babe", - "sp-core", - "sp-inherents", - "sp-io", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-keyring", "sp-mmr-primitives", "sp-npos-elections", "sp-offchain", - "sp-runtime", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-session", "sp-staking", - "sp-std", - "sp-tracing", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-transaction-pool", - "sp-trie", - "sp-version", + "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "static_assertions", "substrate-wasm-builder", "tiny-keccak", @@ -3285,7 +3285,7 @@ dependencies = [ "polkadot-primitives", "polkadot-runtime-common", "smallvec", - "sp-runtime", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -4622,8 +4622,8 @@ dependencies = [ "frame-system", "parity-scale-codec", "scale-info", - "sp-runtime", - "sp-std", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -4636,10 +4636,10 @@ dependencies = [ "pallet-session", "parity-scale-codec", "scale-info", - "sp-application-crypto", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-authority-discovery", - "sp-runtime", - "sp-std", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -4653,8 +4653,8 @@ dependencies = [ "parity-scale-codec", "scale-info", "sp-authorship", - "sp-runtime", - "sp-std", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -4671,14 +4671,14 @@ dependencies = [ "pallet-timestamp", "parity-scale-codec", "scale-info", - "sp-application-crypto", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-consensus-babe", "sp-consensus-vrf", - "sp-io", - "sp-runtime", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-session", "sp-staking", - "sp-std", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -4694,11 +4694,11 @@ dependencies = [ "pallet-balances", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", - "sp-tracing", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -4713,11 +4713,11 @@ dependencies = [ "pallet-bags-list", "pallet-staking", "remote-externalities", - "sp-core", - "sp-runtime", - "sp-std", - "sp-storage", - "sp-tracing", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-storage 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -4731,8 +4731,8 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-runtime", - "sp-std", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -4747,8 +4747,8 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-runtime", - "sp-std", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -4768,10 +4768,10 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -4786,10 +4786,10 @@ dependencies = [ "pallet-treasury", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -4805,10 +4805,10 @@ dependencies = [ "pallet-treasury", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -4822,10 +4822,10 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -4840,9 +4840,9 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-io", - "sp-runtime", - "sp-std", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -4857,10 +4857,10 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -4877,12 +4877,12 @@ dependencies = [ "parity-scale-codec", "rand 0.7.3", "scale-info", - "sp-arithmetic", - "sp-core", - "sp-io", + "sp-arithmetic 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-npos-elections", - "sp-runtime", - "sp-std", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "static_assertions", "strum", ] @@ -4897,7 +4897,7 @@ dependencies = [ "frame-system", "parity-scale-codec", "sp-npos-elections", - "sp-runtime", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -4911,11 +4911,11 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-npos-elections", - "sp-runtime", - "sp-std", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -4933,10 +4933,10 @@ dependencies = [ "pallet-timestamp", "parity-scale-codec", "scale-info", - "sp-io", - "sp-runtime", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-staking", - "sp-std", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -4949,9 +4949,9 @@ dependencies = [ "frame-system", "parity-scale-codec", "scale-info", - "sp-arithmetic", - "sp-runtime", - "sp-std", + "sp-arithmetic 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -4967,14 +4967,14 @@ dependencies = [ "pallet-session", "parity-scale-codec", "scale-info", - "sp-application-crypto", - "sp-core", - "sp-finality-grandpa", - "sp-io", - "sp-runtime", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-session", "sp-staking", - "sp-std", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -4988,9 +4988,9 @@ dependencies = [ "frame-system", "parity-scale-codec", "scale-info", - "sp-io", - "sp-runtime", - "sp-std", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5005,12 +5005,12 @@ dependencies = [ "pallet-authorship", "parity-scale-codec", "scale-info", - "sp-application-crypto", - "sp-core", - "sp-io", - "sp-runtime", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-staking", - "sp-std", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5023,11 +5023,11 @@ dependencies = [ "frame-system", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-keyring", - "sp-runtime", - "sp-std", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5041,10 +5041,10 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5058,11 +5058,11 @@ dependencies = [ "frame-system", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-mmr-primitives", - "sp-runtime", - "sp-std", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5073,11 +5073,11 @@ dependencies = [ "jsonrpsee", "parity-scale-codec", "serde", - "sp-api", - "sp-blockchain", - "sp-core", + "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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-mmr-primitives", - "sp-runtime", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5091,9 +5091,9 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-io", - "sp-runtime", - "sp-std", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5106,11 +5106,11 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-staking", - "sp-std", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5127,10 +5127,10 @@ dependencies = [ "pallet-staking", "parity-scale-codec", "scale-info", - "sp-runtime", - "sp-runtime-interface", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-staking", - "sp-std", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5139,8 +5139,8 @@ version = "1.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "parity-scale-codec", - "sp-api", - "sp-std", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5155,9 +5155,9 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-runtime", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-staking", - "sp-std", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5178,9 +5178,9 @@ dependencies = [ "pallet-staking", "parity-scale-codec", "scale-info", - "sp-runtime", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-staking", - "sp-std", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5194,10 +5194,10 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5210,9 +5210,9 @@ dependencies = [ "frame-system", "parity-scale-codec", "scale-info", - "sp-io", - "sp-runtime", - "sp-std", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5226,11 +5226,11 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-arithmetic", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-arithmetic 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5243,9 +5243,9 @@ dependencies = [ "frame-system", "parity-scale-codec", "scale-info", - "sp-io", - "sp-runtime", - "sp-std", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5260,10 +5260,10 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-arithmetic", - "sp-io", - "sp-runtime", - "sp-std", + "sp-arithmetic 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5277,9 +5277,9 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-io", - "sp-runtime", - "sp-std", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5294,13 +5294,13 @@ dependencies = [ "pallet-timestamp", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-session", "sp-staking", - "sp-std", - "sp-trie", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5314,9 +5314,9 @@ dependencies = [ "pallet-session", "pallet-staking", "rand 0.7.3", - "sp-runtime", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-session", - "sp-std", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5329,8 +5329,8 @@ dependencies = [ "parity-scale-codec", "rand_chacha 0.2.2", "scale-info", - "sp-runtime", - "sp-std", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5349,11 +5349,11 @@ dependencies = [ "rand_chacha 0.2.2", "scale-info", "serde", - "sp-application-crypto", - "sp-io", - "sp-runtime", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-staking", - "sp-std", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5373,7 +5373,7 @@ version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "log", - "sp-arithmetic", + "sp-arithmetic 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5385,9 +5385,9 @@ dependencies = [ "frame-system", "parity-scale-codec", "scale-info", - "sp-io", - "sp-runtime", - "sp-std", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5401,10 +5401,10 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-inherents", - "sp-io", - "sp-runtime", - "sp-std", + "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-timestamp", ] @@ -5421,10 +5421,10 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5437,10 +5437,10 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5451,11 +5451,11 @@ dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", "parity-scale-codec", - "sp-api", - "sp-blockchain", - "sp-core", - "sp-rpc", - "sp-runtime", + "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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-rpc 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5465,8 +5465,8 @@ source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818 dependencies = [ "pallet-transaction-payment", "parity-scale-codec", - "sp-api", - "sp-runtime", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5482,8 +5482,8 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-runtime", - "sp-std", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5496,10 +5496,10 @@ dependencies = [ "frame-system", "parity-scale-codec", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5513,8 +5513,8 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-runtime", - "sp-std", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5527,9 +5527,9 @@ dependencies = [ "frame-system", "parity-scale-codec", "scale-info", - "sp-api", - "sp-runtime", - "sp-std", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -5545,10 +5545,10 @@ dependencies = [ "polkadot-runtime-parachains", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "xcm", "xcm-builder", "xcm-executor", @@ -5569,11 +5569,11 @@ dependencies = [ "polkadot-primitives", "polkadot-runtime-common", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", - "sp-tracing", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "xcm", "xcm-builder", "xcm-executor", @@ -5889,7 +5889,7 @@ dependencies = [ "parity-util-mem", "polkadot-cli", "polkadot-core-primitives", - "remote-externalities", + "substrate-rpc-client", "tempfile", "tokio", ] @@ -5914,7 +5914,7 @@ dependencies = [ "rand_core 0.5.1", "schnorrkel", "sp-authority-discovery", - "sp-core", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "tracing-gum", ] @@ -5935,11 +5935,11 @@ dependencies = [ "polkadot-primitives", "rand 0.8.5", "rand_chacha 0.3.1", - "sp-application-crypto", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-authority-discovery", - "sp-core", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-keyring", - "sp-keystore", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", "tracing-gum", ] @@ -5964,10 +5964,10 @@ dependencies = [ "polkadot-primitives-test-helpers", "rand 0.8.5", "sc-network", - "sp-core", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-keyring", - "sp-keystore", - "sp-tracing", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", "tracing-gum", ] @@ -5994,8 +5994,8 @@ dependencies = [ "polkadot-primitives-test-helpers", "rand 0.8.5", "sc-network", - "sp-application-crypto", - "sp-core", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-keyring", "thiserror", "tracing-gum", @@ -6019,9 +6019,9 @@ dependencies = [ "sc-service", "sc-sysinfo", "sc-tracing", - "sp-core", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-keyring", - "sp-trie", + "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "substrate-build-script-utils", "thiserror", "try-runtime-cli", @@ -6045,25 +6045,25 @@ dependencies = [ "polkadot-runtime", "polkadot-runtime-common", "rococo-runtime", - "sc-client-api", - "sc-consensus", - "sc-executor", + "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", - "sp-api", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sp-authority-discovery", "sp-block-builder", - "sp-blockchain", - "sp-consensus", + "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-consensus-babe", - "sp-core", - "sp-finality-grandpa", - "sp-inherents", + "sp-core 6.0.0 (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", "sp-mmr-primitives", "sp-offchain", - "sp-runtime", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-session", - "sp-storage", + "sp-storage 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-timestamp", "sp-transaction-pool", "westend-runtime", @@ -6090,10 +6090,10 @@ dependencies = [ "polkadot-primitives", "polkadot-primitives-test-helpers", "sc-network", - "sp-core", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-keyring", - "sp-keystore", - "sp-runtime", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", "tracing-gum", ] @@ -6105,9 +6105,9 @@ dependencies = [ "parity-scale-codec", "parity-util-mem", "scale-info", - "sp-core", - "sp-runtime", - "sp-std", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -6134,10 +6134,10 @@ dependencies = [ "polkadot-primitives-test-helpers", "sc-keystore", "sc-network", - "sp-application-crypto", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-keyring", - "sp-keystore", - "sp-tracing", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", "tracing-gum", ] @@ -6150,8 +6150,8 @@ dependencies = [ "polkadot-node-primitives", "polkadot-primitives", "reed-solomon-novelpoly", - "sp-core", - "sp-trie", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", ] @@ -6172,13 +6172,13 @@ dependencies = [ "rand 0.8.5", "rand_chacha 0.3.1", "sc-network", - "sp-application-crypto", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-authority-discovery", "sp-consensus-babe", - "sp-core", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-keyring", - "sp-keystore", - "sp-tracing", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "tracing-gum", ] @@ -6203,9 +6203,9 @@ dependencies = [ "polkadot-primitives", "polkadot-primitives-test-helpers", "sc-network", - "sc-network-common", - "sp-consensus", - "sp-core", + "sc-network-common 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)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-keyring", "thiserror", "tracing-gum", @@ -6224,8 +6224,8 @@ dependencies = [ "polkadot-node-subsystem-util", "polkadot-primitives", "polkadot-primitives-test-helpers", - "sp-core", - "sp-maybe-compressed-blob", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-maybe-compressed-blob 4.1.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", "tracing-gum", ] @@ -6257,14 +6257,14 @@ dependencies = [ "rand_core 0.5.1", "sc-keystore", "schnorrkel", - "sp-application-crypto", - "sp-consensus", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sp-consensus-babe", "sp-consensus-slots", - "sp-core", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-keyring", - "sp-keystore", - "sp-runtime", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", "tracing-gum", ] @@ -6291,7 +6291,7 @@ dependencies = [ "polkadot-overseer", "polkadot-primitives", "polkadot-primitives-test-helpers", - "sp-core", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-keyring", "thiserror", "tracing-gum", @@ -6314,11 +6314,11 @@ dependencies = [ "polkadot-primitives-test-helpers", "polkadot-statement-table", "sc-keystore", - "sp-application-crypto", - "sp-core", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-keyring", - "sp-keystore", - "sp-tracing", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", "tracing-gum", ] @@ -6333,7 +6333,7 @@ dependencies = [ "polkadot-node-subsystem-util", "polkadot-primitives", "polkadot-primitives-test-helpers", - "sp-keystore", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", "tracing-gum", "wasm-timer", @@ -6355,9 +6355,9 @@ dependencies = [ "polkadot-parachain", "polkadot-primitives", "polkadot-primitives-test-helpers", - "sp-core", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-keyring", - "sp-maybe-compressed-blob", + "sp-maybe-compressed-blob 4.1.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "tracing-gum", ] @@ -6373,10 +6373,10 @@ dependencies = [ "polkadot-node-subsystem-test-helpers", "polkadot-node-subsystem-util", "polkadot-primitives", - "sc-client-api", + "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sc-consensus-babe", - "sp-blockchain", - "sp-core", + "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "tracing-gum", ] @@ -6396,7 +6396,7 @@ dependencies = [ "polkadot-node-subsystem-test-helpers", "polkadot-node-subsystem-util", "polkadot-primitives", - "sp-core", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", "tracing-gum", ] @@ -6420,10 +6420,10 @@ dependencies = [ "polkadot-primitives", "polkadot-primitives-test-helpers", "sc-keystore", - "sp-application-crypto", - "sp-core", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-keyring", - "sp-keystore", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", "tracing-gum", ] @@ -6437,9 +6437,9 @@ dependencies = [ "futures-timer", "polkadot-node-subsystem", "polkadot-primitives", - "sp-blockchain", - "sp-inherents", - "sp-runtime", + "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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", "tracing-gum", ] @@ -6459,8 +6459,8 @@ dependencies = [ "polkadot-primitives", "polkadot-primitives-test-helpers", "rand 0.8.5", - "sp-application-crypto", - "sp-keystore", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", "tracing-gum", ] @@ -6483,16 +6483,16 @@ dependencies = [ "polkadot-parachain", "rand 0.8.5", "rayon", - "sc-executor", - "sc-executor-common", + "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-wasmtime", "slotmap", - "sp-core", - "sp-externalities", - "sp-io", - "sp-maybe-compressed-blob", - "sp-tracing", - "sp-wasm-interface", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-externalities 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-maybe-compressed-blob 4.1.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-wasm-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "tempfile", "test-parachain-adder", "test-parachain-halt", @@ -6513,11 +6513,11 @@ dependencies = [ "polkadot-primitives", "polkadot-primitives-test-helpers", "sc-keystore", - "sp-application-crypto", - "sp-core", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-keyring", - "sp-keystore", - "sp-runtime", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", "tracing-gum", ] @@ -6536,10 +6536,10 @@ dependencies = [ "polkadot-node-subsystem-util", "polkadot-primitives", "polkadot-primitives-test-helpers", - "sp-api", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sp-authority-discovery", "sp-consensus-babe", - "sp-core", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-keyring", "tracing-gum", ] @@ -6557,7 +6557,7 @@ dependencies = [ "polkadot-node-primitives", "polkadot-primitives", "sc-network", - "sp-core", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", ] @@ -6578,11 +6578,11 @@ dependencies = [ "prioritized-metered-channel", "prometheus-parse", "sc-cli", - "sc-client-api", + "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sc-service", "sc-tracing", "sp-keyring", - "substrate-prometheus-endpoint", + "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "substrate-test-utils", "tempfile", "tokio", @@ -6606,7 +6606,7 @@ dependencies = [ "rand_chacha 0.3.1", "sc-authority-discovery", "sc-network", - "sc-network-common", + "sc-network-common 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "strum", "thiserror", "tracing-gum", @@ -6624,12 +6624,12 @@ dependencies = [ "polkadot-primitives", "schnorrkel", "serde", - "sp-application-crypto", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-consensus-babe", "sp-consensus-vrf", - "sp-core", - "sp-keystore", - "sp-maybe-compressed-blob", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-maybe-compressed-blob 4.1.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", "zstd", ] @@ -6655,10 +6655,10 @@ dependencies = [ "polkadot-overseer", "polkadot-primitives", "sc-keystore", - "sp-application-crypto", - "sp-core", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-keyring", - "sp-keystore", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -6676,10 +6676,10 @@ dependencies = [ "polkadot-statement-table", "sc-network", "smallvec", - "sp-api", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sp-authority-discovery", "sp-consensus-babe", - "substrate-prometheus-endpoint", + "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", ] @@ -6715,9 +6715,9 @@ dependencies = [ "polkadot-primitives-test-helpers", "prioritized-metered-channel", "rand 0.8.5", - "sp-application-crypto", - "sp-core", - "sp-keystore", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", "tempfile", "thiserror", "tracing-gum", @@ -6743,9 +6743,9 @@ dependencies = [ "polkadot-primitives", "polkadot-primitives-test-helpers", "prioritized-metered-channel", - "sc-client-api", - "sp-api", - "sp-core", + "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-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "tracing-gum", ] @@ -6760,9 +6760,9 @@ dependencies = [ "polkadot-core-primitives", "scale-info", "serde", - "sp-core", - "sp-runtime", - "sp-std", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -6792,20 +6792,20 @@ dependencies = [ "polkadot-parachain", "scale-info", "serde", - "sp-api", - "sp-application-crypto", - "sp-arithmetic", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-arithmetic 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-authority-discovery", "sp-consensus-slots", - "sp-core", - "sp-inherents", - "sp-io", - "sp-keystore", - "sp-runtime", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-staking", - "sp-std", - "sp-trie", - "sp-version", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -6814,10 +6814,10 @@ version = "0.9.29" dependencies = [ "polkadot-primitives", "rand 0.8.5", - "sp-application-crypto", - "sp-core", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-keyring", - "sp-runtime", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -6830,8 +6830,8 @@ dependencies = [ "pallet-mmr-rpc", "pallet-transaction-payment-rpc", "polkadot-primitives", - "sc-chain-spec", - "sc-client-api", + "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-babe", "sc-consensus-babe-rpc", "sc-consensus-epochs", @@ -6839,14 +6839,14 @@ dependencies = [ "sc-finality-grandpa-rpc", "sc-rpc", "sc-sync-state-rpc", - "sc-transaction-pool-api", - "sp-api", + "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", - "sp-blockchain", - "sp-consensus", + "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-consensus-babe", - "sp-keystore", - "sp-runtime", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "substrate-frame-rpc-system", "substrate-state-trie-migration-rpc", ] @@ -6919,25 +6919,25 @@ dependencies = [ "serde_derive", "serde_json", "smallvec", - "sp-api", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sp-authority-discovery", "sp-block-builder", "sp-consensus-babe", - "sp-core", - "sp-inherents", - "sp-io", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-keyring", "sp-mmr-primitives", "sp-npos-elections", "sp-offchain", - "sp-runtime", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-session", "sp-staking", - "sp-std", - "sp-tracing", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-transaction-pool", - "sp-trie", - "sp-version", + "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "static_assertions", "substrate-wasm-builder", "tiny-keccak", @@ -6984,16 +6984,16 @@ dependencies = [ "serde_derive", "serde_json", "slot-range-helper", - "sp-api", - "sp-core", - "sp-inherents", - "sp-io", - "sp-keystore", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-npos-elections", - "sp-runtime", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-session", "sp-staking", - "sp-std", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "static_assertions", "xcm", ] @@ -7006,7 +7006,7 @@ dependencies = [ "polkadot-primitives", "polkadot-runtime-common", "smallvec", - "sp-runtime", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -7016,8 +7016,8 @@ dependencies = [ "bs58", "parity-scale-codec", "polkadot-primitives", - "sp-std", - "sp-tracing", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -7053,18 +7053,18 @@ dependencies = [ "sc-keystore", "scale-info", "serde", - "sp-api", - "sp-application-crypto", - "sp-core", - "sp-inherents", - "sp-io", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-keyring", - "sp-keystore", - "sp-runtime", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-session", "sp-staking", - "sp-std", - "sp-tracing", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "static_assertions", "thousands", "xcm", @@ -7137,45 +7137,45 @@ dependencies = [ "sc-authority-discovery", "sc-basic-authorship", "sc-block-builder", - "sc-chain-spec", - "sc-client-api", + "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", - "sc-consensus", + "sc-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sc-consensus-babe", "sc-consensus-slots", - "sc-executor", + "sc-executor 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sc-finality-grandpa", "sc-keystore", "sc-network", - "sc-network-common", + "sc-network-common 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sc-offchain", "sc-service", "sc-sync-state-rpc", "sc-sysinfo", - "sc-telemetry", + "sc-telemetry 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sc-transaction-pool", "serde", "serde_json", - "sp-api", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sp-authority-discovery", "sp-block-builder", - "sp-blockchain", - "sp-consensus", + "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-consensus-babe", - "sp-core", - "sp-finality-grandpa", - "sp-inherents", - "sp-io", - "sp-keystore", + "sp-core 6.0.0 (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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-offchain", - "sp-runtime", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-session", - "sp-state-machine", - "sp-storage", + "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-storage 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-timestamp", "sp-transaction-pool", - "sp-trie", - "substrate-prometheus-endpoint", + "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "tempfile", "thiserror", "tracing-gum", @@ -7203,13 +7203,13 @@ dependencies = [ "polkadot-primitives-test-helpers", "sc-keystore", "sc-network", - "sp-application-crypto", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-authority-discovery", - "sp-core", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-keyring", - "sp-keystore", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-staking", - "sp-tracing", + "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", "tracing-gum", ] @@ -7220,7 +7220,7 @@ version = "0.9.29" dependencies = [ "parity-scale-codec", "polkadot-primitives", - "sp-core", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -7234,17 +7234,17 @@ dependencies = [ "polkadot-test-runtime", "polkadot-test-service", "sc-block-builder", - "sc-consensus", + "sc-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sc-service", - "sp-api", - "sp-blockchain", - "sp-consensus", + "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-consensus-babe", - "sp-core", - "sp-inherents", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sp-keyring", - "sp-runtime", - "sp-state-machine", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-timestamp", "substrate-test-client", ] @@ -7273,8 +7273,8 @@ dependencies = [ "polkadot-node-subsystem-util", "polkadot-primitives", "rand 0.8.5", - "sp-core", - "sp-keystore", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", "tracing-gum", ] @@ -7318,23 +7318,23 @@ dependencies = [ "serde_derive", "serde_json", "smallvec", - "sp-api", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sp-authority-discovery", "sp-block-builder", "sp-consensus-babe", - "sp-core", - "sp-inherents", - "sp-io", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-keyring", "sp-mmr-primitives", "sp-offchain", - "sp-runtime", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-session", "sp-staking", - "sp-std", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-transaction-pool", - "sp-trie", - "sp-version", + "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "substrate-wasm-builder", "test-runtime-constants", "tiny-keccak", @@ -7366,30 +7366,30 @@ dependencies = [ "polkadot-test-runtime", "rand 0.8.5", "sc-authority-discovery", - "sc-chain-spec", + "sc-chain-spec 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sc-cli", - "sc-client-api", - "sc-consensus", + "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-consensus-babe", - "sc-executor", + "sc-executor 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sc-finality-grandpa", "sc-network", - "sc-network-common", + "sc-network-common 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sc-service", "sc-tracing", "sc-transaction-pool", "serde_json", - "sp-arithmetic", + "sp-arithmetic 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-authority-discovery", - "sp-blockchain", - "sp-consensus", + "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-consensus-babe", - "sp-core", - "sp-finality-grandpa", - "sp-inherents", + "sp-core 6.0.0 (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", - "sp-runtime", - "sp-state-machine", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", "substrate-test-client", "substrate-test-utils", "tempfile", @@ -7406,7 +7406,7 @@ dependencies = [ "generate-bags", "kusama-runtime", "polkadot-runtime", - "sp-io", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "westend-runtime", ] @@ -7993,8 +7993,8 @@ dependencies = [ "pallet-bags-list-remote-tests", "polkadot-runtime", "polkadot-runtime-constants", - "sp-core", - "sp-tracing", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "tokio", "westend-runtime", "westend-runtime-constants", @@ -8011,10 +8011,10 @@ dependencies = [ "parity-scale-codec", "serde", "serde_json", - "sp-core", - "sp-io", - "sp-runtime", - "sp-version", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -8172,23 +8172,23 @@ dependencies = [ "serde_derive", "serde_json", "smallvec", - "sp-api", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sp-authority-discovery", "sp-block-builder", "sp-consensus-babe", - "sp-core", - "sp-inherents", - "sp-io", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-keyring", "sp-mmr-primitives", "sp-offchain", - "sp-runtime", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-session", "sp-staking", - "sp-std", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-transaction-pool", - "sp-trie", - "sp-version", + "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "static_assertions", "substrate-wasm-builder", "tiny-keccak", @@ -8205,7 +8205,7 @@ dependencies = [ "polkadot-primitives", "polkadot-runtime-common", "smallvec", - "sp-runtime", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -8345,8 +8345,19 @@ version = "4.1.0-dev" source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "log", - "sp-core", - "sp-wasm-interface", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-wasm-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "thiserror", +] + +[[package]] +name = "sc-allocator" +version = "4.1.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "log", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-wasm-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", "thiserror", ] @@ -8365,15 +8376,15 @@ dependencies = [ "prost", "prost-build", "rand 0.7.3", - "sc-client-api", - "sc-network-common", - "sp-api", + "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-network-common 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-authority-discovery", - "sp-blockchain", - "sp-core", - "sp-keystore", - "sp-runtime", - "substrate-prometheus-endpoint", + "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", ] @@ -8387,17 +8398,17 @@ dependencies = [ "log", "parity-scale-codec", "sc-block-builder", - "sc-client-api", + "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sc-proposer-metrics", - "sc-telemetry", - "sc-transaction-pool-api", - "sp-api", - "sp-blockchain", - "sp-consensus", - "sp-core", - "sp-inherents", - "sp-runtime", - "substrate-prometheus-endpoint", + "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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -8406,14 +8417,14 @@ version = "0.10.0-dev" source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "parity-scale-codec", - "sc-client-api", - "sp-api", + "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", - "sp-blockchain", - "sp-core", - "sp-inherents", - "sp-runtime", - "sp-state-machine", + "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -8424,13 +8435,30 @@ dependencies = [ "impl-trait-for-tuples", "memmap2 0.5.0", "parity-scale-codec", - "sc-chain-spec-derive", - "sc-network-common", - "sc-telemetry", + "sc-chain-spec-derive 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-network-common 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)", + "serde", + "serde_json", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (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=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +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=na-jsonrpc-client-utils)", + "sc-network-common 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sc-telemetry 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", "serde", "serde_json", - "sp-core", - "sp-runtime", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", ] [[package]] @@ -8444,6 +8472,17 @@ dependencies = [ "syn", ] +[[package]] +name = "sc-chain-spec-derive" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "proc-macro-crate", + "proc-macro2", + "quote", + "syn", +] + [[package]] name = "sc-cli" version = "0.10.0-dev" @@ -8461,24 +8500,24 @@ dependencies = [ "rand 0.7.3", "regex", "rpassword", - "sc-client-api", + "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sc-client-db", "sc-keystore", "sc-network", - "sc-network-common", + "sc-network-common 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sc-service", - "sc-telemetry", + "sc-telemetry 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sc-tracing", - "sc-utils", + "sc-utils 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "serde", "serde_json", - "sp-blockchain", - "sp-core", + "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-keyring", - "sp-keystore", - "sp-panic-handler", - "sp-runtime", - "sp-version", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-panic-handler 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", "tiny-bip39", "tokio", @@ -8495,21 +8534,49 @@ dependencies = [ "log", "parity-scale-codec", "parking_lot 0.12.1", - "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", + "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 6.0.0 (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.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-storage 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", +] + +[[package]] +name = "sc-client-api" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "fnv", + "futures", + "hash-db", + "log", + "parity-scale-codec", + "parking_lot 0.12.1", + "sc-executor 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sc-transaction-pool-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sc-utils 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-database 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-externalities 0.12.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-storage 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", ] [[package]] @@ -8526,15 +8593,15 @@ dependencies = [ "parity-db", "parity-scale-codec", "parking_lot 0.12.1", - "sc-client-api", + "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sc-state-db", - "sp-arithmetic", - "sp-blockchain", - "sp-core", - "sp-database", - "sp-runtime", - "sp-state-machine", - "sp-trie", + "sp-arithmetic 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-database 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -8548,16 +8615,40 @@ dependencies = [ "libp2p", "log", "parking_lot 0.12.1", - "sc-client-api", - "sc-utils", + "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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "thiserror", +] + +[[package]] +name = "sc-consensus" +version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "async-trait", + "futures", + "futures-timer", + "libp2p", + "log", + "parking_lot 0.12.1", + "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sc-utils 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", "serde", - "sp-api", - "sp-blockchain", - "sp-consensus", - "sp-core", - "sp-runtime", - "sp-state-machine", - "substrate-prometheus-endpoint", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", "thiserror", ] @@ -8577,29 +8668,29 @@ dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", "rand 0.7.3", - "sc-client-api", - "sc-consensus", + "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-consensus-epochs", "sc-consensus-slots", "sc-keystore", - "sc-telemetry", + "sc-telemetry 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "schnorrkel", "serde", - "sp-api", - "sp-application-crypto", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-block-builder", - "sp-blockchain", - "sp-consensus", + "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-consensus-babe", "sp-consensus-slots", "sp-consensus-vrf", - "sp-core", - "sp-inherents", - "sp-io", - "sp-keystore", - "sp-runtime", - "sp-version", - "substrate-prometheus-endpoint", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", ] @@ -8612,16 +8703,16 @@ dependencies = [ "jsonrpsee", "sc-consensus-babe", "sc-consensus-epochs", - "sc-rpc-api", + "sc-rpc-api 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "serde", - "sp-api", - "sp-application-crypto", - "sp-blockchain", - "sp-consensus", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-application-crypto 6.0.0 (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-consensus-babe", - "sp-core", - "sp-keystore", - "sp-runtime", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", ] @@ -8632,10 +8723,10 @@ source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818 dependencies = [ "fork-tree", "parity-scale-codec", - "sc-client-api", - "sc-consensus", - "sp-blockchain", - "sp-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)", + "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -8648,17 +8739,17 @@ dependencies = [ "futures-timer", "log", "parity-scale-codec", - "sc-client-api", - "sc-consensus", - "sc-telemetry", - "sp-arithmetic", - "sp-blockchain", - "sp-consensus", + "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-arithmetic 5.0.0 (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-consensus-slots", - "sp-core", - "sp-inherents", - "sp-runtime", - "sp-state-machine", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", ] @@ -8671,20 +8762,46 @@ dependencies = [ "lru 0.7.8", "parity-scale-codec", "parking_lot 0.12.1", - "sc-executor-common", - "sc-executor-wasmi", + "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-wasmtime", - "sp-api", - "sp-core", - "sp-core-hashing-proc-macro", - "sp-externalities", - "sp-io", - "sp-panic-handler", - "sp-runtime-interface", - "sp-tasks", - "sp-trie", - "sp-version", - "sp-wasm-interface", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core-hashing-proc-macro 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-externalities 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-panic-handler 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-tasks 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-wasm-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "tracing", + "wasmi", +] + +[[package]] +name = "sc-executor" +version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "lazy_static", + "lru 0.7.8", + "parity-scale-codec", + "parking_lot 0.12.1", + "sc-executor-common 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sc-executor-wasmi 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-core-hashing-proc-macro 5.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-externalities 0.12.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-panic-handler 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-runtime-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-tasks 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-wasm-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", "tracing", "wasmi", ] @@ -8696,10 +8813,26 @@ source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818 dependencies = [ "environmental", "parity-scale-codec", - "sc-allocator", - "sp-maybe-compressed-blob", - "sp-sandbox", - "sp-wasm-interface", + "sc-allocator 4.1.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-maybe-compressed-blob 4.1.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-sandbox 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-wasm-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "thiserror", + "wasm-instrument", + "wasmi", +] + +[[package]] +name = "sc-executor-common" +version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "environmental", + "parity-scale-codec", + "sc-allocator 4.1.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-maybe-compressed-blob 4.1.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-sandbox 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-wasm-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", "thiserror", "wasm-instrument", "wasmi", @@ -8712,11 +8845,26 @@ source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818 dependencies = [ "log", "parity-scale-codec", - "sc-allocator", - "sc-executor-common", - "sp-runtime-interface", - "sp-sandbox", - "sp-wasm-interface", + "sc-allocator 4.1.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)", + "sp-runtime-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-sandbox 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-wasm-interface 6.0.0 (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=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "log", + "parity-scale-codec", + "sc-allocator 4.1.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sc-executor-common 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-runtime-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-sandbox 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-wasm-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", "wasmi", ] @@ -8732,11 +8880,11 @@ dependencies = [ "parity-scale-codec", "parity-wasm 0.45.0", "rustix", - "sc-allocator", - "sc-executor-common", - "sp-runtime-interface", - "sp-sandbox", - "sp-wasm-interface", + "sc-allocator 4.1.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)", + "sp-runtime-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-sandbox 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-wasm-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "wasmtime", ] @@ -8758,26 +8906,26 @@ dependencies = [ "parking_lot 0.12.1", "rand 0.8.5", "sc-block-builder", - "sc-chain-spec", - "sc-client-api", - "sc-consensus", + "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-keystore", "sc-network", - "sc-network-common", + "sc-network-common 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sc-network-gossip", - "sc-telemetry", - "sc-utils", + "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)", "serde_json", - "sp-api", - "sp-application-crypto", - "sp-arithmetic", - "sp-blockchain", - "sp-consensus", - "sp-core", - "sp-finality-grandpa", - "sp-keystore", - "sp-runtime", - "substrate-prometheus-endpoint", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-arithmetic 5.0.0 (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 6.0.0 (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.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", ] @@ -8791,14 +8939,14 @@ dependencies = [ "jsonrpsee", "log", "parity-scale-codec", - "sc-client-api", + "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sc-finality-grandpa", "sc-rpc", "serde", "serde_json", - "sp-blockchain", - "sp-core", - "sp-runtime", + "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", ] @@ -8812,11 +8960,11 @@ dependencies = [ "futures-timer", "log", "parity-util-mem", - "sc-client-api", - "sc-network-common", - "sc-transaction-pool-api", - "sp-blockchain", - "sp-runtime", + "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-network-common 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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -8828,9 +8976,9 @@ dependencies = [ "async-trait", "parking_lot 0.12.1", "serde_json", - "sp-application-crypto", - "sp-core", - "sp-keystore", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", ] @@ -8862,20 +9010,20 @@ dependencies = [ "prost", "rand 0.7.3", "sc-block-builder", - "sc-client-api", - "sc-consensus", - "sc-network-common", - "sc-peerset", - "sc-utils", + "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-network-common 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", - "sp-blockchain", - "sp-consensus", - "sp-core", - "sp-runtime", - "substrate-prometheus-endpoint", + "sp-arithmetic 5.0.0 (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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", "unsigned-varint", "zeroize", @@ -8892,10 +9040,10 @@ dependencies = [ "log", "prost", "prost-build", - "sc-client-api", - "sc-network-common", - "sp-blockchain", - "sp-runtime", + "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-network-common 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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", "unsigned-varint", "void", @@ -8915,15 +9063,41 @@ dependencies = [ "linked_hash_set", "parity-scale-codec", "prost-build", - "sc-consensus", - "sc-peerset", + "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)", + "serde", + "smallvec", + "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-finality-grandpa 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "thiserror", +] + +[[package]] +name = "sc-network-common" +version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "async-trait", + "bitflags", + "bytes", + "futures", + "futures-timer", + "libp2p", + "linked_hash_set", + "parity-scale-codec", + "prost-build", + "sc-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sc-peerset 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", "serde", "smallvec", - "sp-blockchain", - "sp-consensus", - "sp-finality-grandpa", - "sp-runtime", - "substrate-prometheus-endpoint", + "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-finality-grandpa 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", "thiserror", ] @@ -8938,10 +9112,10 @@ dependencies = [ "libp2p", "log", "lru 0.7.8", - "sc-network-common", - "sc-peerset", - "sp-runtime", - "substrate-prometheus-endpoint", + "sc-network-common 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)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "tracing", ] @@ -8957,12 +9131,12 @@ dependencies = [ "parity-scale-codec", "prost", "prost-build", - "sc-client-api", - "sc-network-common", - "sc-peerset", - "sp-blockchain", - "sp-core", - "sp-runtime", + "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-network-common 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)", + "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", ] @@ -8981,18 +9155,18 @@ dependencies = [ "parity-scale-codec", "prost", "prost-build", - "sc-client-api", - "sc-consensus", - "sc-network-common", - "sc-peerset", - "sc-utils", + "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-network-common 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)", "smallvec", - "sp-arithmetic", - "sp-blockchain", - "sp-consensus", - "sp-core", - "sp-finality-grandpa", - "sp-runtime", + "sp-arithmetic 5.0.0 (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 6.0.0 (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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", ] @@ -9008,11 +9182,11 @@ dependencies = [ "log", "parity-scale-codec", "pin-project", - "sc-network-common", - "sc-peerset", - "sp-consensus", - "sp-runtime", - "substrate-prometheus-endpoint", + "sc-network-common 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)", + "sp-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -9033,14 +9207,14 @@ dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", "rand 0.7.3", - "sc-client-api", - "sc-network-common", - "sc-peerset", - "sc-utils", - "sp-api", - "sp-core", + "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-network-common 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)", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-offchain", - "sp-runtime", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "threadpool", "tracing", ] @@ -9053,7 +9227,20 @@ dependencies = [ "futures", "libp2p", "log", - "sc-utils", + "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=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "futures", + "libp2p", + "log", + "sc-utils 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", "serde_json", "wasm-timer", ] @@ -9064,7 +9251,7 @@ version = "0.10.0-dev" source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "log", - "substrate-prometheus-endpoint", + "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -9079,22 +9266,22 @@ dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", "sc-block-builder", - "sc-chain-spec", - "sc-client-api", - "sc-rpc-api", + "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", - "sc-transaction-pool-api", - "sc-utils", + "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", - "sp-blockchain", - "sp-core", - "sp-keystore", + "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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-offchain", - "sp-rpc", - "sp-runtime", + "sp-rpc 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-session", - "sp-version", + "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -9107,16 +9294,39 @@ dependencies = [ "log", "parity-scale-codec", "parking_lot 0.12.1", - "sc-chain-spec", - "sc-transaction-pool-api", + "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)", + "scale-info", + "serde", + "serde_json", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-rpc 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "thiserror", +] + +[[package]] +name = "sc-rpc-api" +version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "futures", + "jsonrpsee", + "log", + "parity-scale-codec", + "parking_lot 0.12.1", + "sc-chain-spec 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sc-transaction-pool-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", "scale-info", "serde", "serde_json", - "sp-core", - "sp-rpc", - "sp-runtime", - "sp-tracing", - "sp-version", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-rpc 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", "thiserror", ] @@ -9129,7 +9339,7 @@ dependencies = [ "jsonrpsee", "log", "serde_json", - "substrate-prometheus-endpoint", + "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "tokio", ] @@ -9142,13 +9352,13 @@ dependencies = [ "hex", "jsonrpsee", "parity-scale-codec", - "sc-chain-spec", - "sc-transaction-pool-api", + "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", - "sp-api", - "sp-blockchain", - "sp-core", - "sp-runtime", + "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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", ] @@ -9171,16 +9381,16 @@ dependencies = [ "pin-project", "rand 0.7.3", "sc-block-builder", - "sc-chain-spec", - "sc-client-api", + "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", - "sc-consensus", - "sc-executor", + "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", "sc-keystore", "sc-network", "sc-network-bitswap", - "sc-network-common", + "sc-network-common 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sc-network-light", "sc-network-sync", "sc-network-transactions", @@ -9189,33 +9399,33 @@ dependencies = [ "sc-rpc-server", "sc-rpc-spec-v2", "sc-sysinfo", - "sc-telemetry", + "sc-telemetry 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sc-tracing", "sc-transaction-pool", - "sc-transaction-pool-api", - "sc-utils", + "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", - "sp-application-crypto", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-block-builder", - "sp-blockchain", - "sp-consensus", - "sp-core", - "sp-externalities", - "sp-inherents", - "sp-keystore", - "sp-runtime", + "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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-externalities 0.12.0 (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.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-session", - "sp-state-machine", - "sp-storage", - "sp-tracing", + "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-storage 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-transaction-pool", "sp-transaction-storage-proof", - "sp-trie", - "sp-version", + "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "static_init 1.0.3", - "substrate-prometheus-endpoint", + "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "tempfile", "thiserror", "tokio", @@ -9233,8 +9443,8 @@ dependencies = [ "parity-util-mem", "parity-util-mem-derive", "parking_lot 0.12.1", - "sc-client-api", - "sp-core", + "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -9244,15 +9454,15 @@ source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818 dependencies = [ "jsonrpsee", "parity-scale-codec", - "sc-chain-spec", - "sc-client-api", + "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-babe", "sc-consensus-epochs", "sc-finality-grandpa", "serde", "serde_json", - "sp-blockchain", - "sp-runtime", + "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", ] @@ -9267,12 +9477,12 @@ dependencies = [ "rand 0.7.3", "rand_pcg 0.2.1", "regex", - "sc-telemetry", + "sc-telemetry 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "serde", "serde_json", - "sp-core", - "sp-io", - "sp-std", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -9293,6 +9503,24 @@ dependencies = [ "wasm-timer", ] +[[package]] +name = "sc-telemetry" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "chrono", + "futures", + "libp2p", + "log", + "parking_lot 0.12.1", + "pin-project", + "rand 0.7.3", + "serde", + "serde_json", + "thiserror", + "wasm-timer", +] + [[package]] name = "sc-tracing" version = "4.0.0-dev" @@ -9308,16 +9536,16 @@ dependencies = [ "parking_lot 0.12.1", "regex", "rustc-hash", - "sc-client-api", + "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sc-rpc-server", "sc-tracing-proc-macro", "serde", - "sp-api", - "sp-blockchain", - "sp-core", - "sp-rpc", - "sp-runtime", - "sp-tracing", + "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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-rpc 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", "tracing", "tracing-log", @@ -9348,17 +9576,17 @@ dependencies = [ "parity-scale-codec", "parity-util-mem", "parking_lot 0.12.1", - "sc-client-api", - "sc-transaction-pool-api", - "sc-utils", + "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", - "sp-blockchain", - "sp-core", - "sp-runtime", - "sp-tracing", + "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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-transaction-pool", - "substrate-prometheus-endpoint", + "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", ] @@ -9371,8 +9599,22 @@ dependencies = [ "futures", "log", "serde", - "sp-blockchain", - "sp-runtime", + "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "thiserror", +] + +[[package]] +name = "sc-transaction-pool-api" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "async-trait", + "futures", + "log", + "serde", + "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", "thiserror", ] @@ -9389,6 +9631,19 @@ dependencies = [ "prometheus", ] +[[package]] +name = "sc-utils" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "futures", + "futures-timer", + "lazy_static", + "log", + "parking_lot 0.12.1", + "prometheus", +] + [[package]] name = "scale-info" version = "2.1.2" @@ -9782,8 +10037,8 @@ dependencies = [ "enumn", "parity-scale-codec", "paste", - "sp-runtime", - "sp-std", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -9858,13 +10113,31 @@ dependencies = [ "hash-db", "log", "parity-scale-codec", - "sp-api-proc-macro", - "sp-core", - "sp-runtime", - "sp-state-machine", - "sp-std", - "sp-trie", - "sp-version", + "sp-api-proc-macro 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-version 5.0.0 (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=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "hash-db", + "log", + "parity-scale-codec", + "sp-api-proc-macro 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", "thiserror", ] @@ -9880,6 +10153,18 @@ dependencies = [ "syn", ] +[[package]] +name = "sp-api-proc-macro" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "blake2", + "proc-macro-crate", + "proc-macro2", + "quote", + "syn", +] + [[package]] name = "sp-application-crypto" version = "6.0.0" @@ -9888,9 +10173,22 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-std", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", +] + +[[package]] +name = "sp-application-crypto" +version = "6.0.0" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "parity-scale-codec", + "scale-info", + "serde", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", ] [[package]] @@ -9903,8 +10201,23 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-debug-derive", - "sp-std", + "sp-debug-derive 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "static_assertions", +] + +[[package]] +name = "sp-arithmetic" +version = "5.0.0" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "integer-sqrt", + "num-traits", + "parity-scale-codec", + "scale-info", + "serde", + "sp-debug-derive 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", "static_assertions", ] @@ -9915,10 +10228,10 @@ source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818 dependencies = [ "parity-scale-codec", "scale-info", - "sp-api", - "sp-application-crypto", - "sp-runtime", - "sp-std", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -9928,9 +10241,9 @@ source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818 dependencies = [ "async-trait", "parity-scale-codec", - "sp-inherents", - "sp-runtime", - "sp-std", + "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -9939,10 +10252,10 @@ version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "parity-scale-codec", - "sp-api", - "sp-inherents", - "sp-runtime", - "sp-std", + "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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -9955,11 +10268,29 @@ dependencies = [ "lru 0.7.8", "parity-scale-codec", "parking_lot 0.12.1", - "sp-api", - "sp-consensus", - "sp-database", - "sp-runtime", - "sp-state-machine", + "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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-state-machine 0.12.0 (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=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "futures", + "log", + "lru 0.7.8", + "parity-scale-codec", + "parking_lot 0.12.1", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-database 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", "thiserror", ] @@ -9973,12 +10304,31 @@ dependencies = [ "futures-timer", "log", "parity-scale-codec", - "sp-core", - "sp-inherents", - "sp-runtime", - "sp-state-machine", - "sp-std", - "sp-version", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-version 5.0.0 (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=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "async-trait", + "futures", + "futures-timer", + "log", + "parity-scale-codec", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", "thiserror", ] @@ -9992,16 +10342,16 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-api", - "sp-application-crypto", - "sp-consensus", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sp-consensus-slots", "sp-consensus-vrf", - "sp-core", - "sp-inherents", - "sp-keystore", - "sp-runtime", - "sp-std", + "sp-core 6.0.0 (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.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-timestamp", ] @@ -10013,9 +10363,9 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-arithmetic", - "sp-runtime", - "sp-std", + "sp-arithmetic 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-timestamp", ] @@ -10027,9 +10377,9 @@ dependencies = [ "parity-scale-codec", "scale-info", "schnorrkel", - "sp-core", - "sp-runtime", - "sp-std", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -10064,12 +10414,12 @@ dependencies = [ "secp256k1", "secrecy", "serde", - "sp-core-hashing", - "sp-debug-derive", - "sp-externalities", - "sp-runtime-interface", - "sp-std", - "sp-storage", + "sp-core-hashing 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-debug-derive 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-externalities 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-storage 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "ss58-registry", "substrate-bip39", "thiserror", @@ -10079,27 +10429,98 @@ dependencies = [ ] [[package]] -name = "sp-core-hashing" -version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +name = "sp-core" +version = "6.0.0" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" dependencies = [ + "array-bytes", + "base58", + "bitflags", "blake2", "byteorder", - "digest 0.10.3", - "sha2 0.10.2", - "sha3", - "sp-std", - "twox-hash", -] - -[[package]] -name = "sp-core-hashing-proc-macro" -version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" + "dyn-clonable", + "ed25519-zebra", + "futures", + "hash-db", + "hash256-std-hasher", + "impl-serde", + "lazy_static", + "libsecp256k1", + "log", + "merlin", + "num-traits", + "parity-scale-codec", + "parity-util-mem", + "parking_lot 0.12.1", + "primitive-types", + "rand 0.7.3", + "regex", + "scale-info", + "schnorrkel", + "secp256k1", + "secrecy", + "serde", + "sp-core-hashing 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-debug-derive 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-externalities 0.12.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-runtime-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-storage 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "ss58-registry", + "substrate-bip39", + "thiserror", + "tiny-bip39", + "wasmi", + "zeroize", +] + +[[package]] +name = "sp-core-hashing" +version = "4.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +dependencies = [ + "blake2", + "byteorder", + "digest 0.10.3", + "sha2 0.10.2", + "sha3", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "twox-hash", +] + +[[package]] +name = "sp-core-hashing" +version = "4.0.0" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "blake2", + "byteorder", + "digest 0.10.3", + "sha2 0.10.2", + "sha3", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "twox-hash", +] + +[[package]] +name = "sp-core-hashing-proc-macro" +version = "5.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "proc-macro2", "quote", - "sp-core-hashing", + "sp-core-hashing 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "syn", +] + +[[package]] +name = "sp-core-hashing-proc-macro" +version = "5.0.0" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "proc-macro2", + "quote", + "sp-core-hashing 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", "syn", ] @@ -10112,6 +10533,15 @@ dependencies = [ "parking_lot 0.12.1", ] +[[package]] +name = "sp-database" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "kvdb", + "parking_lot 0.12.1", +] + [[package]] name = "sp-debug-derive" version = "4.0.0" @@ -10122,6 +10552,16 @@ dependencies = [ "syn", ] +[[package]] +name = "sp-debug-derive" +version = "4.0.0" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + [[package]] name = "sp-externalities" version = "0.12.0" @@ -10129,8 +10569,19 @@ source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818 dependencies = [ "environmental", "parity-scale-codec", - "sp-std", - "sp-storage", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-storage 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", +] + +[[package]] +name = "sp-externalities" +version = "0.12.0" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "environmental", + "parity-scale-codec", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-storage 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", ] [[package]] @@ -10143,12 +10594,30 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-api", - "sp-application-crypto", - "sp-core", - "sp-keystore", - "sp-runtime", - "sp-std", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (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=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "finality-grandpa", + "log", + "parity-scale-codec", + "scale-info", + "serde", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", ] [[package]] @@ -10159,9 +10628,23 @@ dependencies = [ "async-trait", "impl-trait-for-tuples", "parity-scale-codec", - "sp-core", - "sp-runtime", - "sp-std", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "thiserror", +] + +[[package]] +name = "sp-inherents" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "async-trait", + "impl-trait-for-tuples", + "parity-scale-codec", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", "thiserror", ] @@ -10178,15 +10661,41 @@ dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", "secp256k1", - "sp-core", - "sp-externalities", - "sp-keystore", - "sp-runtime-interface", - "sp-state-machine", - "sp-std", - "sp-tracing", - "sp-trie", - "sp-wasm-interface", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-externalities 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-wasm-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "tracing", + "tracing-core", +] + +[[package]] +name = "sp-io" +version = "6.0.0" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "bytes", + "futures", + "hash-db", + "libsecp256k1", + "log", + "parity-scale-codec", + "parking_lot 0.12.1", + "secp256k1", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-externalities 0.12.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-runtime-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-wasm-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", "tracing", "tracing-core", ] @@ -10197,8 +10706,8 @@ version = "6.0.0" source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "lazy_static", - "sp-core", - "sp-runtime", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "strum", ] @@ -10214,8 +10723,24 @@ dependencies = [ "parking_lot 0.12.1", "schnorrkel", "serde", - "sp-core", - "sp-externalities", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-externalities 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "thiserror", +] + +[[package]] +name = "sp-keystore" +version = "0.12.0" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "async-trait", + "futures", + "merlin", + "parity-scale-codec", + "parking_lot 0.12.1", + "schnorrkel", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-externalities 0.12.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", "thiserror", ] @@ -10228,6 +10753,15 @@ dependencies = [ "zstd", ] +[[package]] +name = "sp-maybe-compressed-blob" +version = "4.1.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "thiserror", + "zstd", +] + [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" @@ -10237,11 +10771,11 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-api", - "sp-core", - "sp-debug-derive", - "sp-runtime", - "sp-std", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-debug-derive 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -10252,10 +10786,10 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-arithmetic", - "sp-core", - "sp-runtime", - "sp-std", + "sp-arithmetic 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -10263,9 +10797,9 @@ name = "sp-offchain" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ - "sp-api", - "sp-core", - "sp-runtime", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -10278,6 +10812,16 @@ dependencies = [ "regex", ] +[[package]] +name = "sp-panic-handler" +version = "4.0.0" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "backtrace", + "lazy_static", + "regex", +] + [[package]] name = "sp-rpc" version = "6.0.0" @@ -10285,7 +10829,17 @@ source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818 dependencies = [ "rustc-hash", "serde", - "sp-core", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", +] + +[[package]] +name = "sp-rpc" +version = "6.0.0" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "rustc-hash", + "serde", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", ] [[package]] @@ -10303,12 +10857,35 @@ dependencies = [ "rand 0.7.3", "scale-info", "serde", - "sp-application-crypto", - "sp-arithmetic", - "sp-core", - "sp-io", - "sp-std", - "sp-weights", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-arithmetic 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-weights 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", +] + +[[package]] +name = "sp-runtime" +version = "6.0.0" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "either", + "hash256-std-hasher", + "impl-trait-for-tuples", + "log", + "parity-scale-codec", + "parity-util-mem", + "paste", + "rand 0.7.3", + "scale-info", + "serde", + "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-arithmetic 5.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-weights 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", ] [[package]] @@ -10320,12 +10897,30 @@ dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", "primitive-types", - "sp-externalities", - "sp-runtime-interface-proc-macro", - "sp-std", - "sp-storage", - "sp-tracing", - "sp-wasm-interface", + "sp-externalities 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime-interface-proc-macro 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-storage 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-wasm-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "static_assertions", +] + +[[package]] +name = "sp-runtime-interface" +version = "6.0.0" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "bytes", + "impl-trait-for-tuples", + "parity-scale-codec", + "primitive-types", + "sp-externalities 0.12.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-runtime-interface-proc-macro 5.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-storage 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-wasm-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", "static_assertions", ] @@ -10341,6 +10936,18 @@ dependencies = [ "syn", ] +[[package]] +name = "sp-runtime-interface-proc-macro" +version = "5.0.0" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "Inflector", + "proc-macro-crate", + "proc-macro2", + "quote", + "syn", +] + [[package]] name = "sp-sandbox" version = "0.10.0-dev" @@ -10348,10 +10955,24 @@ source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818 dependencies = [ "log", "parity-scale-codec", - "sp-core", - "sp-io", - "sp-std", - "sp-wasm-interface", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-wasm-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "wasmi", +] + +[[package]] +name = "sp-sandbox" +version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "log", + "parity-scale-codec", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-wasm-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", "wasmi", ] @@ -10362,11 +10983,11 @@ source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818 dependencies = [ "parity-scale-codec", "scale-info", - "sp-api", - "sp-core", - "sp-runtime", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-staking", - "sp-std", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -10376,8 +10997,8 @@ source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818 dependencies = [ "parity-scale-codec", "scale-info", - "sp-runtime", - "sp-std", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -10392,11 +11013,33 @@ dependencies = [ "parking_lot 0.12.1", "rand 0.7.3", "smallvec", - "sp-core", - "sp-externalities", - "sp-panic-handler", - "sp-std", - "sp-trie", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-externalities 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-panic-handler 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "thiserror", + "tracing", + "trie-root", +] + +[[package]] +name = "sp-state-machine" +version = "0.12.0" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "hash-db", + "log", + "num-traits", + "parity-scale-codec", + "parking_lot 0.12.1", + "rand 0.7.3", + "smallvec", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-externalities 0.12.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-panic-handler 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", "thiserror", "tracing", "trie-root", @@ -10407,6 +11050,11 @@ name = "sp-std" version = "4.0.0" source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +[[package]] +name = "sp-std" +version = "4.0.0" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" + [[package]] name = "sp-storage" version = "6.0.0" @@ -10416,8 +11064,21 @@ dependencies = [ "parity-scale-codec", "ref-cast", "serde", - "sp-debug-derive", - "sp-std", + "sp-debug-derive 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", +] + +[[package]] +name = "sp-storage" +version = "6.0.0" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "impl-serde", + "parity-scale-codec", + "ref-cast", + "serde", + "sp-debug-derive 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", ] [[package]] @@ -10426,11 +11087,24 @@ version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "log", - "sp-core", - "sp-externalities", - "sp-io", - "sp-runtime-interface", - "sp-std", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-externalities 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", +] + +[[package]] +name = "sp-tasks" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "log", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-externalities 0.12.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-runtime-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", ] [[package]] @@ -10442,10 +11116,10 @@ dependencies = [ "futures-timer", "log", "parity-scale-codec", - "sp-api", - "sp-inherents", - "sp-runtime", - "sp-std", + "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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "thiserror", ] @@ -10455,7 +11129,19 @@ version = "5.0.0" source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ "parity-scale-codec", - "sp-std", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "tracing", + "tracing-core", + "tracing-subscriber 0.2.25", +] + +[[package]] +name = "sp-tracing" +version = "5.0.0" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "parity-scale-codec", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", "tracing", "tracing-core", "tracing-subscriber 0.2.25", @@ -10466,8 +11152,8 @@ name = "sp-transaction-pool" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" dependencies = [ - "sp-api", - "sp-runtime", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -10479,11 +11165,11 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-core", - "sp-inherents", - "sp-runtime", - "sp-std", - "sp-trie", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -10501,8 +11187,31 @@ dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", "scale-info", - "sp-core", - "sp-std", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "thiserror", + "tracing", + "trie-db", + "trie-root", +] + +[[package]] +name = "sp-trie" +version = "6.0.0" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "ahash", + "hash-db", + "hashbrown", + "lazy_static", + "lru 0.7.8", + "memory-db", + "nohash-hasher", + "parity-scale-codec", + "parking_lot 0.12.1", + "scale-info", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", "thiserror", "tracing", "trie-db", @@ -10519,10 +11228,27 @@ dependencies = [ "parity-wasm 0.45.0", "scale-info", "serde", - "sp-core-hashing-proc-macro", - "sp-runtime", - "sp-std", - "sp-version-proc-macro", + "sp-core-hashing-proc-macro 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (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 = "5.0.0" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "impl-serde", + "parity-scale-codec", + "parity-wasm 0.45.0", + "scale-info", + "serde", + "sp-core-hashing-proc-macro 5.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-version-proc-macro 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", "thiserror", ] @@ -10537,6 +11263,17 @@ dependencies = [ "syn", ] +[[package]] +name = "sp-version-proc-macro" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "parity-scale-codec", + "proc-macro2", + "quote", + "syn", +] + [[package]] name = "sp-wasm-interface" version = "6.0.0" @@ -10545,11 +11282,23 @@ dependencies = [ "impl-trait-for-tuples", "log", "parity-scale-codec", - "sp-std", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "wasmi", "wasmtime", ] +[[package]] +name = "sp-wasm-interface" +version = "6.0.0" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "impl-trait-for-tuples", + "log", + "parity-scale-codec", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "wasmi", +] + [[package]] name = "sp-weights" version = "4.0.0" @@ -10560,10 +11309,26 @@ dependencies = [ "scale-info", "serde", "smallvec", - "sp-arithmetic", - "sp-core", - "sp-debug-derive", - "sp-std", + "sp-arithmetic 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-debug-derive 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", +] + +[[package]] +name = "sp-weights" +version = "4.0.0" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "impl-trait-for-tuples", + "parity-scale-codec", + "scale-info", + "serde", + "smallvec", + "sp-arithmetic 5.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-debug-derive 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", ] [[package]] @@ -10627,16 +11392,16 @@ dependencies = [ "polkadot-runtime", "polkadot-runtime-common", "remote-externalities", - "sc-transaction-pool-api", + "sc-transaction-pool-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "serde", "serde_json", "signal-hook", "signal-hook-tokio", - "sp-core", - "sp-io", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-npos-elections", - "sp-runtime", - "sp-version", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sub-tokens", "thiserror", "tokio", @@ -10783,15 +11548,15 @@ dependencies = [ "jsonrpsee", "log", "parity-scale-codec", - "sc-client-api", - "sc-rpc-api", - "sc-transaction-pool-api", + "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)", "serde_json", - "sp-api", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sp-block-builder", - "sp-blockchain", - "sp-core", - "sp-runtime", + "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -10807,6 +11572,32 @@ dependencies = [ "tokio", ] +[[package]] +name = "substrate-prometheus-endpoint" +version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "futures-util", + "hyper", + "log", + "prometheus", + "thiserror", + "tokio", +] + +[[package]] +name = "substrate-rpc-client" +version = "0.10.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +dependencies = [ + "async-trait", + "jsonrpsee", + "log", + "sc-rpc-api 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "serde", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", +] + [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" @@ -10815,16 +11606,16 @@ dependencies = [ "jsonrpsee", "log", "parity-scale-codec", - "sc-client-api", - "sc-rpc-api", + "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)", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-runtime", - "sp-state-machine", - "sp-std", - "sp-trie", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "trie-db", ] @@ -10837,21 +11628,21 @@ dependencies = [ "async-trait", "futures", "parity-scale-codec", - "sc-client-api", + "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sc-client-db", - "sc-consensus", - "sc-executor", + "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-offchain", "sc-service", "serde", "serde_json", - "sp-blockchain", - "sp-consensus", - "sp-core", + "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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-keyring", - "sp-keystore", - "sp-runtime", - "sp-state-machine", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -10884,7 +11675,7 @@ dependencies = [ "build-helper", "cargo_metadata", "filetime", - "sp-maybe-compressed-blob", + "sp-maybe-compressed-blob 4.1.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "strum", "tempfile", "toml", @@ -11022,8 +11813,8 @@ dependencies = [ "dlmalloc", "parity-scale-codec", "polkadot-parachain", - "sp-io", - "sp-std", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "substrate-wasm-builder", "tiny-keccak", ] @@ -11047,7 +11838,7 @@ dependencies = [ "polkadot-test-service", "sc-cli", "sc-service", - "sp-core", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-keyring", "substrate-test-utils", "test-parachain-adder", @@ -11069,8 +11860,8 @@ dependencies = [ "log", "parity-scale-codec", "polkadot-parachain", - "sp-io", - "sp-std", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "substrate-wasm-builder", "tiny-keccak", ] @@ -11094,7 +11885,7 @@ dependencies = [ "polkadot-test-service", "sc-cli", "sc-service", - "sp-core", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-keyring", "substrate-test-utils", "test-parachain-undying", @@ -11106,7 +11897,7 @@ name = "test-parachains" version = "0.9.29" dependencies = [ "parity-scale-codec", - "sp-core", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "test-parachain-adder", "test-parachain-halt", "tiny-keccak", @@ -11120,7 +11911,7 @@ dependencies = [ "polkadot-primitives", "polkadot-runtime-common", "smallvec", - "sp-runtime", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -11593,19 +12384,19 @@ dependencies = [ "log", "parity-scale-codec", "remote-externalities", - "sc-chain-spec", + "sc-chain-spec 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sc-cli", - "sc-executor", + "sc-executor 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sc-service", "serde", - "sp-core", - "sp-externalities", - "sp-io", - "sp-keystore", - "sp-runtime", - "sp-state-machine", - "sp-version", - "sp-weights", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-externalities 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-weights 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "zstd", ] @@ -12293,25 +13084,25 @@ dependencies = [ "serde_derive", "serde_json", "smallvec", - "sp-api", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sp-authority-discovery", "sp-block-builder", "sp-consensus-babe", - "sp-core", - "sp-inherents", - "sp-io", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-keyring", "sp-mmr-primitives", "sp-npos-elections", "sp-offchain", - "sp-runtime", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-session", "sp-staking", - "sp-std", - "sp-tracing", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "sp-transaction-pool", - "sp-trie", - "sp-version", + "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "substrate-wasm-builder", "tiny-keccak", "tokio", @@ -12329,7 +13120,7 @@ dependencies = [ "polkadot-primitives", "polkadot-runtime-common", "smallvec", - "sp-runtime", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", ] [[package]] @@ -12556,7 +13347,7 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-runtime", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "xcm-procedural", ] @@ -12574,11 +13365,11 @@ dependencies = [ "polkadot-parachain", "polkadot-runtime-parachains", "scale-info", - "sp-arithmetic", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-arithmetic 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "xcm", "xcm-executor", ] @@ -12592,11 +13383,11 @@ dependencies = [ "impl-trait-for-tuples", "log", "parity-scale-codec", - "sp-arithmetic", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-arithmetic 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "xcm", ] @@ -12611,11 +13402,11 @@ dependencies = [ "polkadot-test-client", "polkadot-test-runtime", "polkadot-test-service", - "sp-consensus", + "sp-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", "sp-keyring", - "sp-runtime", - "sp-state-machine", - "sp-tracing", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "xcm", "xcm-executor", ] @@ -12640,8 +13431,8 @@ dependencies = [ "polkadot-core-primitives", "polkadot-parachain", "polkadot-runtime-parachains", - "sp-io", - "sp-std", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "xcm", "xcm-executor", ] @@ -12659,10 +13450,10 @@ dependencies = [ "polkadot-parachain", "polkadot-runtime-parachains", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "xcm", "xcm-builder", "xcm-executor", @@ -12683,10 +13474,10 @@ dependencies = [ "polkadot-parachain", "polkadot-runtime-parachains", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std", + "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", "xcm", "xcm-builder", "xcm-executor", From 4b51155e5f423f1b6cb54024d868475bd9fde522 Mon Sep 17 00:00:00 2001 From: Niklas Adolfsson Date: Tue, 18 Oct 2022 19:08:37 +0200 Subject: [PATCH 5/5] update Cargo.lock --- Cargo.lock | 3236 ++++++++++++++++++++-------------------------------- 1 file changed, 1229 insertions(+), 2007 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8a03b06df945..fa13fa8365a8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -435,7 +435,7 @@ dependencies = [ [[package]] name = "beefy-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "array-bytes", "async-trait", @@ -446,25 +446,25 @@ dependencies = [ "log", "parity-scale-codec", "parking_lot 0.12.1", - "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-finality-grandpa", "sc-keystore", "sc-network", - "sc-network-common 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-network-common", "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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-arithmetic 5.0.0 (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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sc-utils", + "sp-api", + "sp-application-crypto", + "sp-arithmetic", + "sp-blockchain", + "sp-consensus", + "sp-core", + "sp-keystore", "sp-mmr-primitives", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime", + "substrate-prometheus-endpoint", "thiserror", "wasm-timer", ] @@ -472,7 +472,7 @@ dependencies = [ [[package]] name = "beefy-gadget-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "beefy-gadget", "beefy-primitives", @@ -482,38 +482,38 @@ dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", "sc-rpc", - "sc-utils 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-utils", "serde", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-runtime", "thiserror", ] [[package]] name = "beefy-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "beefy-primitives", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", + "sp-runtime", ] [[package]] name = "beefy-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", + "sp-application-crypto", + "sp-core", + "sp-io", "sp-mmr-primitives", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime", + "sp-std", ] [[package]] @@ -1982,7 +1982,7 @@ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "parity-scale-codec", ] @@ -2006,7 +2006,7 @@ checksum = "85dcb89d2b10c5f6133de2efd8c11959ce9dbb46a2f7a4cab208c4eeda6ce1ab" [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "frame-support", "frame-system", @@ -2016,20 +2016,20 @@ dependencies = [ "paste", "scale-info", "serde", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-storage 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", + "sp-application-crypto", + "sp-core", + "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#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "Inflector", "array-bytes", @@ -2053,25 +2053,25 @@ dependencies = [ "rand_pcg 0.3.1", "sc-block-builder", "sc-cli", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-client-api", "sc-client-db", - "sc-executor 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-executor", "sc-service", "sc-sysinfo", "serde", "serde_json", "serde_nanos", - "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 6.0.0 (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.12.0 (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.12.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-storage 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", + "sp-blockchain", + "sp-core", + "sp-database", + "sp-externalities", + "sp-inherents", + "sp-keystore", + "sp-runtime", + "sp-state-machine", + "sp-storage", + "sp-trie", "tempfile", "thiserror", "thousands", @@ -2080,7 +2080,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2091,34 +2091,34 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "frame-election-provider-solution-type", "frame-support", "frame-system", "parity-scale-codec", "scale-info", - "sp-arithmetic 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-arithmetic", "sp-npos-elections", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime", + "sp-std", ] [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "frame-support", "frame-system", "frame-try-runtime", "parity-scale-codec", "scale-info", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", + "sp-tracing", ] [[package]] @@ -2136,7 +2136,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "bitflags", "frame-metadata", @@ -2150,25 +2150,25 @@ dependencies = [ "scale-info", "serde", "smallvec", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-arithmetic 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core-hashing-proc-macro 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", + "sp-arithmetic", + "sp-core", + "sp-core-hashing-proc-macro", + "sp-inherents", + "sp-io", + "sp-runtime", "sp-staking", - "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-weights 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-state-machine", + "sp-std", + "sp-tracing", + "sp-weights", "tt-call", ] [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "Inflector", "cfg-expr", @@ -2182,7 +2182,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -2194,7 +2194,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "proc-macro2", "quote", @@ -2204,7 +2204,7 @@ dependencies = [ [[package]] name = "frame-support-test" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "frame-support", "frame-support-test-pallet", @@ -2214,20 +2214,20 @@ dependencies = [ "rustversion", "scale-info", "serde", - "sp-arithmetic 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-arithmetic", + "sp-core", + "sp-io", + "sp-runtime", + "sp-state-machine", + "sp-std", + "sp-version", "trybuild", ] [[package]] name = "frame-support-test-pallet" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "frame-support", "frame-system", @@ -2238,55 +2238,55 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "frame-support", "log", "parity-scale-codec", "scale-info", "serde", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-weights 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", + "sp-version", + "sp-weights", ] [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "frame-benchmarking", "frame-support", "frame-system", "parity-scale-codec", "scale-info", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (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#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" 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#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "frame-support", "parity-scale-codec", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", + "sp-runtime", + "sp-std", ] [[package]] @@ -2451,7 +2451,7 @@ dependencies = [ [[package]] name = "generate-bags" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "chrono", "frame-election-provider-support", @@ -2460,7 +2460,7 @@ dependencies = [ "git2", "num-format", "pallet-staking", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io", ] [[package]] @@ -3248,26 +3248,26 @@ dependencies = [ "serde_derive", "serde_json", "smallvec", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-arithmetic 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", + "sp-arithmetic", "sp-authority-discovery", "sp-block-builder", "sp-consensus-babe", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-inherents", + "sp-io", "sp-keyring", "sp-mmr-primitives", "sp-npos-elections", "sp-offchain", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime", "sp-session", "sp-staking", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std", + "sp-tracing", "sp-transaction-pool", - "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-trie", + "sp-version", "static_assertions", "substrate-wasm-builder", "tiny-keccak", @@ -3285,7 +3285,7 @@ dependencies = [ "polkadot-primitives", "polkadot-runtime-common", "smallvec", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime", ] [[package]] @@ -4615,37 +4615,37 @@ checksum = "20448fd678ec04e6ea15bbe0476874af65e98a01515d667aa49f1434dc44ebf4" [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "frame-benchmarking", "frame-support", "frame-system", "parity-scale-codec", "scale-info", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (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#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "frame-support", "frame-system", "pallet-session", "parity-scale-codec", "scale-info", - "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-application-crypto", "sp-authority-discovery", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (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#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "frame-support", "frame-system", @@ -4653,14 +4653,14 @@ dependencies = [ "parity-scale-codec", "scale-info", "sp-authorship", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (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#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "frame-benchmarking", "frame-support", @@ -4671,20 +4671,20 @@ dependencies = [ "pallet-timestamp", "parity-scale-codec", "scale-info", - "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-application-crypto", "sp-consensus-babe", "sp-consensus-vrf", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io", + "sp-runtime", "sp-session", "sp-staking", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std", ] [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -4694,17 +4694,17 @@ dependencies = [ "pallet-balances", "parity-scale-codec", "scale-info", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", + "sp-tracing", ] [[package]] name = "pallet-bags-list-remote-tests" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "frame-election-provider-support", "frame-support", @@ -4713,17 +4713,17 @@ dependencies = [ "pallet-bags-list", "pallet-staking", "remote-externalities", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-storage 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-runtime", + "sp-std", + "sp-storage", + "sp-tracing", ] [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "frame-benchmarking", "frame-support", @@ -4731,14 +4731,14 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (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#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "beefy-primitives", "frame-support", @@ -4747,14 +4747,14 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (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#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "array-bytes", "beefy-merkle-tree", @@ -4768,16 +4768,16 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (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#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "frame-benchmarking", "frame-support", @@ -4786,16 +4786,16 @@ dependencies = [ "pallet-treasury", "parity-scale-codec", "scale-info", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "frame-benchmarking", "frame-support", @@ -4805,16 +4805,16 @@ dependencies = [ "pallet-treasury", "parity-scale-codec", "scale-info", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "frame-benchmarking", "frame-support", @@ -4822,16 +4822,16 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] name = "pallet-conviction-voting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "assert_matches", "frame-benchmarking", @@ -4840,15 +4840,15 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "frame-benchmarking", "frame-support", @@ -4857,16 +4857,16 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "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#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -4877,12 +4877,12 @@ dependencies = [ "parity-scale-codec", "rand 0.7.3", "scale-info", - "sp-arithmetic 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-arithmetic", + "sp-core", + "sp-io", "sp-npos-elections", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime", + "sp-std", "static_assertions", "strum", ] @@ -4890,20 +4890,20 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "frame-benchmarking", "frame-election-provider-support", "frame-system", "parity-scale-codec", "sp-npos-elections", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime", ] [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "frame-benchmarking", "frame-support", @@ -4911,17 +4911,17 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-io", "sp-npos-elections", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime", + "sp-std", ] [[package]] name = "pallet-fast-unstake" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -4933,31 +4933,31 @@ dependencies = [ "pallet-timestamp", "parity-scale-codec", "scale-info", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io", + "sp-runtime", "sp-staking", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std", ] [[package]] name = "pallet-gilt" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "frame-benchmarking", "frame-support", "frame-system", "parity-scale-codec", "scale-info", - "sp-arithmetic 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (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#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "frame-benchmarking", "frame-support", @@ -4967,20 +4967,20 @@ dependencies = [ "pallet-session", "parity-scale-codec", "scale-info", - "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 6.0.0 (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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (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 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std", ] [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "enumflags2", "frame-benchmarking", @@ -4988,15 +4988,15 @@ dependencies = [ "frame-system", "parity-scale-codec", "scale-info", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (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#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "frame-benchmarking", "frame-support", @@ -5005,35 +5005,35 @@ dependencies = [ "pallet-authorship", "parity-scale-codec", "scale-info", - "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-application-crypto", + "sp-core", + "sp-io", + "sp-runtime", "sp-staking", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std", ] [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "frame-benchmarking", "frame-support", "frame-system", "parity-scale-codec", "scale-info", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-io", "sp-keyring", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime", + "sp-std", ] [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "frame-benchmarking", "frame-support", @@ -5041,16 +5041,16 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (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#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -5058,32 +5058,32 @@ dependencies = [ "frame-system", "parity-scale-codec", "scale-info", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-io", "sp-mmr-primitives", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime", + "sp-std", ] [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "jsonrpsee", "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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", + "sp-blockchain", + "sp-core", "sp-mmr-primitives", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime", ] [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "frame-benchmarking", "frame-support", @@ -5091,32 +5091,32 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "frame-support", "frame-system", "log", "parity-scale-codec", "scale-info", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-io", + "sp-runtime", "sp-staking", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std", ] [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5127,26 +5127,26 @@ dependencies = [ "pallet-staking", "parity-scale-codec", "scale-info", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime", + "sp-runtime-interface", "sp-staking", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std", ] [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "parity-scale-codec", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", + "sp-std", ] [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "frame-support", "frame-system", @@ -5155,15 +5155,15 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime", "sp-staking", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std", ] [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5178,15 +5178,15 @@ dependencies = [ "pallet-staking", "parity-scale-codec", "scale-info", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime", "sp-staking", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std", ] [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "frame-benchmarking", "frame-support", @@ -5194,31 +5194,31 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "frame-benchmarking", "frame-support", "frame-system", "parity-scale-codec", "scale-info", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] name = "pallet-ranked-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "frame-benchmarking", "frame-support", @@ -5226,32 +5226,32 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-arithmetic 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-arithmetic", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "frame-benchmarking", "frame-support", "frame-system", "parity-scale-codec", "scale-info", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] name = "pallet-referenda" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "assert_matches", "frame-benchmarking", @@ -5260,16 +5260,16 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-arithmetic 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-arithmetic", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "frame-benchmarking", "frame-support", @@ -5277,15 +5277,15 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (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#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "frame-support", "frame-system", @@ -5294,19 +5294,19 @@ dependencies = [ "pallet-timestamp", "parity-scale-codec", "scale-info", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-io", + "sp-runtime", "sp-session", "sp-staking", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std", + "sp-trie", ] [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "frame-benchmarking", "frame-support", @@ -5314,29 +5314,29 @@ dependencies = [ "pallet-session", "pallet-staking", "rand 0.7.3", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime", "sp-session", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std", ] [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "frame-support", "frame-system", "parity-scale-codec", "rand_chacha 0.2.2", "scale-info", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (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#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5349,17 +5349,17 @@ dependencies = [ "rand_chacha 0.2.2", "scale-info", "serde", - "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-application-crypto", + "sp-io", + "sp-runtime", "sp-staking", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std", ] [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -5370,30 +5370,30 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "log", - "sp-arithmetic 5.0.0 (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#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "frame-support", "frame-system", "parity-scale-codec", "scale-info", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io", + "sp-runtime", + "sp-std", ] [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "frame-benchmarking", "frame-support", @@ -5401,17 +5401,17 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (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#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "frame-benchmarking", "frame-support", @@ -5421,58 +5421,58 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (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#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "frame-support", "frame-system", "parity-scale-codec", "scale-info", "serde", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (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#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "jsonrpsee", "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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-rpc 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (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#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (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#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "frame-benchmarking", "frame-support", @@ -5482,30 +5482,30 @@ dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (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#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "frame-benchmarking", "frame-support", "frame-system", "parity-scale-codec", "scale-info", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (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#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "frame-benchmarking", "frame-support", @@ -5513,23 +5513,23 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime", + "sp-std", ] [[package]] name = "pallet-whitelist" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "frame-benchmarking", "frame-support", "frame-system", "parity-scale-codec", "scale-info", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", + "sp-runtime", + "sp-std", ] [[package]] @@ -5545,10 +5545,10 @@ dependencies = [ "polkadot-runtime-parachains", "scale-info", "serde", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", "xcm", "xcm-builder", "xcm-executor", @@ -5569,11 +5569,11 @@ dependencies = [ "polkadot-primitives", "polkadot-runtime-common", "scale-info", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", + "sp-tracing", "xcm", "xcm-builder", "xcm-executor", @@ -5914,7 +5914,7 @@ dependencies = [ "rand_core 0.5.1", "schnorrkel", "sp-authority-discovery", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", "tracing-gum", ] @@ -5935,11 +5935,11 @@ dependencies = [ "polkadot-primitives", "rand 0.8.5", "rand_chacha 0.3.1", - "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-application-crypto", "sp-authority-discovery", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", "sp-keyring", - "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-keystore", "tracing-gum", ] @@ -5964,10 +5964,10 @@ dependencies = [ "polkadot-primitives-test-helpers", "rand 0.8.5", "sc-network", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", "sp-keyring", - "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-keystore", + "sp-tracing", "thiserror", "tracing-gum", ] @@ -5994,8 +5994,8 @@ dependencies = [ "polkadot-primitives-test-helpers", "rand 0.8.5", "sc-network", - "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-application-crypto", + "sp-core", "sp-keyring", "thiserror", "tracing-gum", @@ -6019,9 +6019,9 @@ dependencies = [ "sc-service", "sc-sysinfo", "sc-tracing", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", "sp-keyring", - "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-trie", "substrate-build-script-utils", "thiserror", "try-runtime-cli", @@ -6045,25 +6045,25 @@ dependencies = [ "polkadot-runtime", "polkadot-runtime-common", "rococo-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-client-api", + "sc-consensus", + "sc-executor", "sc-service", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", "sp-authority-discovery", "sp-block-builder", - "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 6.0.0 (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-core", + "sp-finality-grandpa", + "sp-inherents", "sp-keyring", "sp-mmr-primitives", "sp-offchain", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime", "sp-session", - "sp-storage 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-storage", "sp-timestamp", "sp-transaction-pool", "westend-runtime", @@ -6090,10 +6090,10 @@ dependencies = [ "polkadot-primitives", "polkadot-primitives-test-helpers", "sc-network", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", "sp-keyring", - "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-keystore", + "sp-runtime", "thiserror", "tracing-gum", ] @@ -6105,9 +6105,9 @@ dependencies = [ "parity-scale-codec", "parity-util-mem", "scale-info", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-runtime", + "sp-std", ] [[package]] @@ -6134,10 +6134,10 @@ dependencies = [ "polkadot-primitives-test-helpers", "sc-keystore", "sc-network", - "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-application-crypto", "sp-keyring", - "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-keystore", + "sp-tracing", "thiserror", "tracing-gum", ] @@ -6150,8 +6150,8 @@ dependencies = [ "polkadot-node-primitives", "polkadot-primitives", "reed-solomon-novelpoly", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-trie", "thiserror", ] @@ -6172,13 +6172,13 @@ dependencies = [ "rand 0.8.5", "rand_chacha 0.3.1", "sc-network", - "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-application-crypto", "sp-authority-discovery", "sp-consensus-babe", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", "sp-keyring", - "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-keystore", + "sp-tracing", "tracing-gum", ] @@ -6203,9 +6203,9 @@ dependencies = [ "polkadot-primitives", "polkadot-primitives-test-helpers", "sc-network", - "sc-network-common 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)", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sc-network-common", + "sp-consensus", + "sp-core", "sp-keyring", "thiserror", "tracing-gum", @@ -6224,8 +6224,8 @@ dependencies = [ "polkadot-node-subsystem-util", "polkadot-primitives", "polkadot-primitives-test-helpers", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-maybe-compressed-blob 4.1.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-maybe-compressed-blob", "thiserror", "tracing-gum", ] @@ -6257,14 +6257,14 @@ dependencies = [ "rand_core 0.5.1", "sc-keystore", "schnorrkel", - "sp-application-crypto 6.0.0 (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-babe", "sp-consensus-slots", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", "sp-keyring", - "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-keystore", + "sp-runtime", "thiserror", "tracing-gum", ] @@ -6291,7 +6291,7 @@ dependencies = [ "polkadot-overseer", "polkadot-primitives", "polkadot-primitives-test-helpers", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", "sp-keyring", "thiserror", "tracing-gum", @@ -6314,11 +6314,11 @@ dependencies = [ "polkadot-primitives-test-helpers", "polkadot-statement-table", "sc-keystore", - "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-application-crypto", + "sp-core", "sp-keyring", - "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-keystore", + "sp-tracing", "thiserror", "tracing-gum", ] @@ -6333,7 +6333,7 @@ dependencies = [ "polkadot-node-subsystem-util", "polkadot-primitives", "polkadot-primitives-test-helpers", - "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-keystore", "thiserror", "tracing-gum", "wasm-timer", @@ -6355,9 +6355,9 @@ dependencies = [ "polkadot-parachain", "polkadot-primitives", "polkadot-primitives-test-helpers", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", "sp-keyring", - "sp-maybe-compressed-blob 4.1.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-maybe-compressed-blob", "tracing-gum", ] @@ -6373,10 +6373,10 @@ dependencies = [ "polkadot-node-subsystem-test-helpers", "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-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-blockchain", + "sp-core", "tracing-gum", ] @@ -6396,7 +6396,7 @@ dependencies = [ "polkadot-node-subsystem-test-helpers", "polkadot-node-subsystem-util", "polkadot-primitives", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", "thiserror", "tracing-gum", ] @@ -6420,10 +6420,10 @@ dependencies = [ "polkadot-primitives", "polkadot-primitives-test-helpers", "sc-keystore", - "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-application-crypto", + "sp-core", "sp-keyring", - "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-keystore", "thiserror", "tracing-gum", ] @@ -6437,9 +6437,9 @@ dependencies = [ "futures-timer", "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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-blockchain", + "sp-inherents", + "sp-runtime", "thiserror", "tracing-gum", ] @@ -6459,8 +6459,8 @@ dependencies = [ "polkadot-primitives", "polkadot-primitives-test-helpers", "rand 0.8.5", - "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-application-crypto", + "sp-keystore", "thiserror", "tracing-gum", ] @@ -6483,16 +6483,16 @@ dependencies = [ "polkadot-parachain", "rand 0.8.5", "rayon", - "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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-externalities 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-maybe-compressed-blob 4.1.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-wasm-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-externalities", + "sp-io", + "sp-maybe-compressed-blob", + "sp-tracing", + "sp-wasm-interface", "tempfile", "test-parachain-adder", "test-parachain-halt", @@ -6513,11 +6513,11 @@ dependencies = [ "polkadot-primitives", "polkadot-primitives-test-helpers", "sc-keystore", - "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-application-crypto", + "sp-core", "sp-keyring", - "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-keystore", + "sp-runtime", "thiserror", "tracing-gum", ] @@ -6536,10 +6536,10 @@ dependencies = [ "polkadot-node-subsystem-util", "polkadot-primitives", "polkadot-primitives-test-helpers", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", "sp-authority-discovery", "sp-consensus-babe", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", "sp-keyring", "tracing-gum", ] @@ -6557,7 +6557,7 @@ dependencies = [ "polkadot-node-primitives", "polkadot-primitives", "sc-network", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", "thiserror", ] @@ -6578,11 +6578,11 @@ dependencies = [ "prioritized-metered-channel", "prometheus-parse", "sc-cli", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-client-api", "sc-service", "sc-tracing", "sp-keyring", - "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "substrate-prometheus-endpoint", "substrate-test-utils", "tempfile", "tokio", @@ -6606,7 +6606,7 @@ dependencies = [ "rand_chacha 0.3.1", "sc-authority-discovery", "sc-network", - "sc-network-common 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-network-common", "strum", "thiserror", "tracing-gum", @@ -6624,12 +6624,12 @@ dependencies = [ "polkadot-primitives", "schnorrkel", "serde", - "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-application-crypto", "sp-consensus-babe", "sp-consensus-vrf", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-maybe-compressed-blob 4.1.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-keystore", + "sp-maybe-compressed-blob", "thiserror", "zstd", ] @@ -6655,10 +6655,10 @@ dependencies = [ "polkadot-overseer", "polkadot-primitives", "sc-keystore", - "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-application-crypto", + "sp-core", "sp-keyring", - "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-keystore", ] [[package]] @@ -6676,10 +6676,10 @@ dependencies = [ "polkadot-statement-table", "sc-network", "smallvec", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", "sp-authority-discovery", "sp-consensus-babe", - "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "substrate-prometheus-endpoint", "thiserror", ] @@ -6715,9 +6715,9 @@ dependencies = [ "polkadot-primitives-test-helpers", "prioritized-metered-channel", "rand 0.8.5", - "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-application-crypto", + "sp-core", + "sp-keystore", "tempfile", "thiserror", "tracing-gum", @@ -6743,9 +6743,9 @@ dependencies = [ "polkadot-primitives", "polkadot-primitives-test-helpers", "prioritized-metered-channel", - "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-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sc-client-api", + "sp-api", + "sp-core", "tracing-gum", ] @@ -6760,9 +6760,9 @@ dependencies = [ "polkadot-core-primitives", "scale-info", "serde", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-runtime", + "sp-std", ] [[package]] @@ -6792,20 +6792,20 @@ dependencies = [ "polkadot-parachain", "scale-info", "serde", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-arithmetic 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", + "sp-application-crypto", + "sp-arithmetic", "sp-authority-discovery", "sp-consensus-slots", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-inherents", + "sp-io", + "sp-keystore", + "sp-runtime", "sp-staking", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std", + "sp-trie", + "sp-version", ] [[package]] @@ -6814,10 +6814,10 @@ version = "0.9.29" dependencies = [ "polkadot-primitives", "rand 0.8.5", - "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-application-crypto", + "sp-core", "sp-keyring", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime", ] [[package]] @@ -6830,8 +6830,8 @@ 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", @@ -6839,14 +6839,14 @@ dependencies = [ "sc-finality-grandpa-rpc", "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)", + "sc-transaction-pool-api", + "sp-api", "sp-block-builder", - "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-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-keystore", + "sp-runtime", "substrate-frame-rpc-system", "substrate-state-trie-migration-rpc", ] @@ -6919,25 +6919,25 @@ dependencies = [ "serde_derive", "serde_json", "smallvec", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", "sp-authority-discovery", "sp-block-builder", "sp-consensus-babe", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-inherents", + "sp-io", "sp-keyring", "sp-mmr-primitives", "sp-npos-elections", "sp-offchain", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime", "sp-session", "sp-staking", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std", + "sp-tracing", "sp-transaction-pool", - "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-trie", + "sp-version", "static_assertions", "substrate-wasm-builder", "tiny-keccak", @@ -6984,16 +6984,16 @@ dependencies = [ "serde_derive", "serde_json", "slot-range-helper", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", + "sp-core", + "sp-inherents", + "sp-io", + "sp-keystore", "sp-npos-elections", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime", "sp-session", "sp-staking", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std", "static_assertions", "xcm", ] @@ -7006,7 +7006,7 @@ dependencies = [ "polkadot-primitives", "polkadot-runtime-common", "smallvec", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime", ] [[package]] @@ -7016,8 +7016,8 @@ dependencies = [ "bs58", "parity-scale-codec", "polkadot-primitives", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std", + "sp-tracing", ] [[package]] @@ -7053,18 +7053,18 @@ dependencies = [ "sc-keystore", "scale-info", "serde", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", + "sp-application-crypto", + "sp-core", + "sp-inherents", + "sp-io", "sp-keyring", - "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-keystore", + "sp-runtime", "sp-session", "sp-staking", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std", + "sp-tracing", "static_assertions", "thousands", "xcm", @@ -7137,45 +7137,45 @@ dependencies = [ "sc-authority-discovery", "sc-basic-authorship", "sc-block-builder", - "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-client-db", - "sc-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-consensus", "sc-consensus-babe", "sc-consensus-slots", - "sc-executor 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-executor", "sc-finality-grandpa", "sc-keystore", "sc-network", - "sc-network-common 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-network-common", "sc-offchain", "sc-service", "sc-sync-state-rpc", "sc-sysinfo", - "sc-telemetry 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-telemetry", "sc-transaction-pool", "serde", "serde_json", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", "sp-authority-discovery", "sp-block-builder", - "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 6.0.0 (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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-finality-grandpa", + "sp-inherents", + "sp-io", + "sp-keystore", "sp-offchain", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime", "sp-session", - "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-storage 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-state-machine", + "sp-storage", "sp-timestamp", "sp-transaction-pool", - "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-trie", + "substrate-prometheus-endpoint", "tempfile", "thiserror", "tracing-gum", @@ -7203,13 +7203,13 @@ dependencies = [ "polkadot-primitives-test-helpers", "sc-keystore", "sc-network", - "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-application-crypto", "sp-authority-discovery", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", "sp-keyring", - "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-keystore", "sp-staking", - "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-tracing", "thiserror", "tracing-gum", ] @@ -7220,7 +7220,7 @@ version = "0.9.29" dependencies = [ "parity-scale-codec", "polkadot-primitives", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", ] [[package]] @@ -7234,17 +7234,17 @@ dependencies = [ "polkadot-test-runtime", "polkadot-test-service", "sc-block-builder", - "sc-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-consensus", "sc-service", - "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-api", + "sp-blockchain", + "sp-consensus", "sp-consensus-babe", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-inherents", "sp-keyring", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime", + "sp-state-machine", "sp-timestamp", "substrate-test-client", ] @@ -7273,8 +7273,8 @@ dependencies = [ "polkadot-node-subsystem-util", "polkadot-primitives", "rand 0.8.5", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-keystore", "tracing-gum", ] @@ -7318,23 +7318,23 @@ dependencies = [ "serde_derive", "serde_json", "smallvec", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", "sp-authority-discovery", "sp-block-builder", "sp-consensus-babe", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-inherents", + "sp-io", "sp-keyring", "sp-mmr-primitives", "sp-offchain", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime", "sp-session", "sp-staking", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std", "sp-transaction-pool", - "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-trie", + "sp-version", "substrate-wasm-builder", "test-runtime-constants", "tiny-keccak", @@ -7366,30 +7366,30 @@ dependencies = [ "polkadot-test-runtime", "rand 0.8.5", "sc-authority-discovery", - "sc-chain-spec 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-chain-spec", "sc-cli", - "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-babe", - "sc-executor 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-executor", "sc-finality-grandpa", "sc-network", - "sc-network-common 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-network-common", "sc-service", "sc-tracing", "sc-transaction-pool", "serde_json", - "sp-arithmetic 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "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 6.0.0 (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-core", + "sp-finality-grandpa", + "sp-inherents", "sp-keyring", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime", + "sp-state-machine", "substrate-test-client", "substrate-test-utils", "tempfile", @@ -7406,7 +7406,7 @@ dependencies = [ "generate-bags", "kusama-runtime", "polkadot-runtime", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io", "westend-runtime", ] @@ -7993,8 +7993,8 @@ dependencies = [ "pallet-bags-list-remote-tests", "polkadot-runtime", "polkadot-runtime-constants", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-tracing", "tokio", "westend-runtime", "westend-runtime-constants", @@ -8003,18 +8003,18 @@ dependencies = [ [[package]] name = "remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "env_logger 0.9.0", - "jsonrpsee", "log", "parity-scale-codec", "serde", "serde_json", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-io", + "sp-runtime", + "sp-version", + "substrate-rpc-client", ] [[package]] @@ -8172,23 +8172,23 @@ dependencies = [ "serde_derive", "serde_json", "smallvec", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", "sp-authority-discovery", "sp-block-builder", "sp-consensus-babe", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-inherents", + "sp-io", "sp-keyring", "sp-mmr-primitives", "sp-offchain", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime", "sp-session", "sp-staking", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std", "sp-transaction-pool", - "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-trie", + "sp-version", "static_assertions", "substrate-wasm-builder", "tiny-keccak", @@ -8205,7 +8205,7 @@ dependencies = [ "polkadot-primitives", "polkadot-runtime-common", "smallvec", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime", ] [[package]] @@ -8342,29 +8342,18 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" -dependencies = [ - "log", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-wasm-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "thiserror", -] - -[[package]] -name = "sc-allocator" -version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "log", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-wasm-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "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#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "async-trait", "futures", @@ -8376,106 +8365,78 @@ dependencies = [ "prost", "prost-build", "rand 0.7.3", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-network-common 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-common", + "sp-api", "sp-authority-discovery", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-blockchain", + "sp-core", + "sp-keystore", + "sp-runtime", + "substrate-prometheus-endpoint", "thiserror", ] [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "futures", "futures-timer", "log", "parity-scale-codec", "sc-block-builder", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "substrate-prometheus-endpoint 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=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" 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)", + "sc-client-api", + "sp-api", "sp-block-builder", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-state-machine 0.12.0 (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=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" -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-common 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)", - "serde", - "serde_json", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "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=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" 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=na-jsonrpc-client-utils)", - "sc-network-common 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sc-telemetry 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sc-chain-spec-derive", + "sc-network-common", + "sc-telemetry", "serde", "serde_json", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", -] - -[[package]] -name = "sc-chain-spec-derive" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" -dependencies = [ - "proc-macro-crate", - "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=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -8486,7 +8447,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "array-bytes", "chrono", @@ -8500,24 +8461,24 @@ dependencies = [ "rand 0.7.3", "regex", "rpassword", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-client-api", "sc-client-db", "sc-keystore", "sc-network", - "sc-network-common 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-network-common", "sc-service", - "sc-telemetry 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-telemetry", "sc-tracing", - "sc-utils 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-utils", "serde", "serde_json", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-blockchain", + "sp-core", "sp-keyring", - "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-panic-handler 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-keystore", + "sp-panic-handler", + "sp-runtime", + "sp-version", "thiserror", "tiny-bip39", "tokio", @@ -8526,35 +8487,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" -dependencies = [ - "fnv", - "futures", - "hash-db", - "log", - "parity-scale-codec", - "parking_lot 0.12.1", - "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 6.0.0 (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.12.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-storage 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", -] - -[[package]] -name = "sc-client-api" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "fnv", "futures", @@ -8562,27 +8495,27 @@ dependencies = [ "log", "parity-scale-codec", "parking_lot 0.12.1", - "sc-executor 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sc-transaction-pool-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sc-utils 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-database 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-externalities 0.12.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-storage 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "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#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "hash-db", "kvdb", @@ -8593,45 +8526,21 @@ dependencies = [ "parity-db", "parity-scale-codec", "parking_lot 0.12.1", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-client-api", "sc-state-db", - "sp-arithmetic 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-database 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", -] - -[[package]] -name = "sc-consensus" -version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" -dependencies = [ - "async-trait", - "futures", - "futures-timer", - "libp2p", - "log", - "parking_lot 0.12.1", - "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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", - "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "thiserror", + "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=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "async-trait", "futures", @@ -8639,23 +8548,23 @@ dependencies = [ "libp2p", "log", "parking_lot 0.12.1", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sc-utils 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sc-client-api", + "sc-utils", "serde", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-api", + "sp-blockchain", + "sp-consensus", + "sp-core", + "sp-runtime", + "sp-state-machine", + "substrate-prometheus-endpoint", "thiserror", ] [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "async-trait", "fork-tree", @@ -8668,140 +8577,114 @@ dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", "rand 0.7.3", - "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", - "sc-telemetry 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-telemetry", "schnorrkel", "serde", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", + "sp-application-crypto", "sp-block-builder", - "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-consensus-slots", "sp-consensus-vrf", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-inherents", + "sp-io", + "sp-keystore", + "sp-runtime", + "sp-version", + "substrate-prometheus-endpoint", "thiserror", ] [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "futures", "jsonrpsee", "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 6.0.0 (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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-keystore", + "sp-runtime", "thiserror", ] [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "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 6.0.0 (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#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "async-trait", "futures", "futures-timer", "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-arithmetic 5.0.0 (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-arithmetic", + "sp-blockchain", + "sp-consensus", "sp-consensus-slots", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-inherents", + "sp-runtime", + "sp-state-machine", "thiserror", ] [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "lazy_static", "lru 0.7.8", "parity-scale-codec", "parking_lot 0.12.1", - "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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core-hashing-proc-macro 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-externalities 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-panic-handler 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-tasks 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-wasm-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "tracing", - "wasmi", -] - -[[package]] -name = "sc-executor" -version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" -dependencies = [ - "lazy_static", - "lru 0.7.8", - "parity-scale-codec", - "parking_lot 0.12.1", - "sc-executor-common 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sc-executor-wasmi 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-core-hashing-proc-macro 5.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-externalities 0.12.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-panic-handler 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-runtime-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-tasks 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-wasm-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-api", + "sp-core", + "sp-core-hashing-proc-macro", + "sp-externalities", + "sp-io", + "sp-panic-handler", + "sp-runtime-interface", + "sp-tasks", + "sp-trie", + "sp-version", + "sp-wasm-interface", "tracing", "wasmi", ] @@ -8809,30 +8692,14 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" -dependencies = [ - "environmental", - "parity-scale-codec", - "sc-allocator 4.1.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-maybe-compressed-blob 4.1.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-sandbox 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-wasm-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "thiserror", - "wasm-instrument", - "wasmi", -] - -[[package]] -name = "sc-executor-common" -version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "environmental", "parity-scale-codec", - "sc-allocator 4.1.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-maybe-compressed-blob 4.1.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-sandbox 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-wasm-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sc-allocator", + "sp-maybe-compressed-blob", + "sp-sandbox", + "sp-wasm-interface", "thiserror", "wasm-instrument", "wasmi", @@ -8841,37 +8708,22 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "log", "parity-scale-codec", - "sc-allocator 4.1.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)", - "sp-runtime-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-sandbox 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-wasm-interface 6.0.0 (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=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" -dependencies = [ - "log", - "parity-scale-codec", - "sc-allocator 4.1.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sc-executor-common 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-runtime-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-sandbox 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-wasm-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sc-allocator", + "sc-executor-common", + "sp-runtime-interface", + "sp-sandbox", + "sp-wasm-interface", "wasmi", ] [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "cfg-if 1.0.0", "libc", @@ -8880,18 +8732,18 @@ dependencies = [ "parity-scale-codec", "parity-wasm 0.45.0", "rustix", - "sc-allocator 4.1.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)", - "sp-runtime-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-sandbox 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-wasm-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sc-allocator", + "sc-executor-common", + "sp-runtime-interface", + "sp-sandbox", + "sp-wasm-interface", "wasmtime", ] [[package]] name = "sc-finality-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "ahash", "array-bytes", @@ -8906,86 +8758,86 @@ dependencies = [ "parking_lot 0.12.1", "rand 0.8.5", "sc-block-builder", - "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-keystore", "sc-network", - "sc-network-common 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-network-common", "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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-arithmetic 5.0.0 (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 6.0.0 (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.12.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", + "sp-application-crypto", + "sp-arithmetic", + "sp-blockchain", + "sp-consensus", + "sp-core", + "sp-finality-grandpa", + "sp-keystore", + "sp-runtime", + "substrate-prometheus-endpoint", "thiserror", ] [[package]] name = "sc-finality-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "finality-grandpa", "futures", "jsonrpsee", "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", "serde", "serde_json", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-blockchain", + "sp-core", + "sp-runtime", "thiserror", ] [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "ansi_term", "futures", "futures-timer", "log", "parity-util-mem", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-network-common 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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sc-client-api", + "sc-network-common", + "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=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "array-bytes", "async-trait", "parking_lot 0.12.1", "serde_json", - "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-application-crypto", + "sp-core", + "sp-keystore", "thiserror", ] [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "array-bytes", "async-trait", @@ -9010,20 +8862,20 @@ dependencies = [ "prost", "rand 0.7.3", "sc-block-builder", - "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-network-common 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)", + "sc-client-api", + "sc-consensus", + "sc-network-common", + "sc-peerset", + "sc-utils", "serde", "serde_json", "smallvec", - "sp-arithmetic 5.0.0 (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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-arithmetic", + "sp-blockchain", + "sp-consensus", + "sp-core", + "sp-runtime", + "substrate-prometheus-endpoint", "thiserror", "unsigned-varint", "zeroize", @@ -9032,7 +8884,7 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "cid", "futures", @@ -9040,10 +8892,10 @@ dependencies = [ "log", "prost", "prost-build", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-network-common 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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sc-client-api", + "sc-network-common", + "sp-blockchain", + "sp-runtime", "thiserror", "unsigned-varint", "void", @@ -9052,33 +8904,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" -dependencies = [ - "async-trait", - "bitflags", - "bytes", - "futures", - "futures-timer", - "libp2p", - "linked_hash_set", - "parity-scale-codec", - "prost-build", - "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)", - "serde", - "smallvec", - "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-finality-grandpa 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "thiserror", -] - -[[package]] -name = "sc-network-common" -version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "async-trait", "bitflags", @@ -9089,22 +8915,22 @@ dependencies = [ "linked_hash_set", "parity-scale-codec", "prost-build", - "sc-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sc-peerset 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sc-consensus", + "sc-peerset", "serde", "smallvec", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-finality-grandpa 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-blockchain", + "sp-consensus", + "sp-finality-grandpa", + "sp-runtime", + "substrate-prometheus-endpoint", "thiserror", ] [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "ahash", "futures", @@ -9112,17 +8938,17 @@ dependencies = [ "libp2p", "log", "lru 0.7.8", - "sc-network-common 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)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-network-common", + "sc-peerset", + "sp-runtime", + "substrate-prometheus-endpoint", "tracing", ] [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "array-bytes", "futures", @@ -9131,19 +8957,19 @@ dependencies = [ "parity-scale-codec", "prost", "prost-build", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-network-common 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)", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sc-client-api", + "sc-network-common", + "sc-peerset", + "sp-blockchain", + "sp-core", + "sp-runtime", "thiserror", ] [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "array-bytes", "fork-tree", @@ -9155,25 +8981,25 @@ dependencies = [ "parity-scale-codec", "prost", "prost-build", - "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-network-common 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)", + "sc-client-api", + "sc-consensus", + "sc-network-common", + "sc-peerset", + "sc-utils", "smallvec", - "sp-arithmetic 5.0.0 (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 6.0.0 (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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-arithmetic", + "sp-blockchain", + "sp-consensus", + "sp-core", + "sp-finality-grandpa", + "sp-runtime", "thiserror", ] [[package]] name = "sc-network-transactions" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "array-bytes", "futures", @@ -9182,17 +9008,17 @@ dependencies = [ "log", "parity-scale-codec", "pin-project", - "sc-network-common 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)", - "sp-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-network-common", + "sc-peerset", + "sp-consensus", + "sp-runtime", + "substrate-prometheus-endpoint", ] [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "array-bytes", "bytes", @@ -9207,14 +9033,14 @@ dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", "rand 0.7.3", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sc-network-common 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)", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sc-client-api", + "sc-network-common", + "sc-peerset", + "sc-utils", + "sp-api", + "sp-core", "sp-offchain", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime", "threadpool", "tracing", ] @@ -9222,25 +9048,12 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" -dependencies = [ - "futures", - "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=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "futures", "libp2p", "log", - "sc-utils 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sc-utils", "serde_json", "wasm-timer", ] @@ -9248,16 +9061,16 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "log", - "substrate-prometheus-endpoint 0.10.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=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "futures", "hash-db", @@ -9266,106 +9079,83 @@ dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", "sc-block-builder", - "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-chain-spec", + "sc-client-api", + "sc-rpc-api", "sc-tracing", - "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)", + "sc-transaction-pool-api", + "sc-utils", "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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", + "sp-blockchain", + "sp-core", + "sp-keystore", "sp-offchain", - "sp-rpc 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-rpc", + "sp-runtime", "sp-session", - "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", -] - -[[package]] -name = "sc-rpc-api" -version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" -dependencies = [ - "futures", - "jsonrpsee", - "log", - "parity-scale-codec", - "parking_lot 0.12.1", - "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)", - "scale-info", - "serde", - "serde_json", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-rpc 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "thiserror", + "sp-version", ] [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "futures", "jsonrpsee", "log", "parity-scale-codec", "parking_lot 0.12.1", - "sc-chain-spec 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sc-transaction-pool-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sc-chain-spec", + "sc-transaction-pool-api", "scale-info", "serde", "serde_json", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-rpc 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "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#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "futures", "jsonrpsee", "log", "serde_json", - "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "substrate-prometheus-endpoint", "tokio", ] [[package]] name = "sc-rpc-spec-v2" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "futures", "hex", "jsonrpsee", "parity-scale-codec", - "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)", + "sc-chain-spec", + "sc-transaction-pool-api", "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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", + "sp-blockchain", + "sp-core", + "sp-runtime", "thiserror", ] [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "async-trait", "directories", @@ -9381,16 +9171,16 @@ dependencies = [ "pin-project", "rand 0.7.3", "sc-block-builder", - "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-client-db", - "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-consensus", + "sc-executor", "sc-informant", "sc-keystore", "sc-network", "sc-network-bitswap", - "sc-network-common 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-network-common", "sc-network-light", "sc-network-sync", "sc-network-transactions", @@ -9399,33 +9189,33 @@ dependencies = [ "sc-rpc-server", "sc-rpc-spec-v2", "sc-sysinfo", - "sc-telemetry 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-telemetry", "sc-tracing", "sc-transaction-pool", - "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)", + "sc-transaction-pool-api", + "sc-utils", "serde", "serde_json", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", + "sp-application-crypto", "sp-block-builder", - "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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-externalities 0.12.0 (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.12.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-blockchain", + "sp-consensus", + "sp-core", + "sp-externalities", + "sp-inherents", + "sp-keystore", + "sp-runtime", "sp-session", - "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-storage 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-state-machine", + "sp-storage", + "sp-tracing", "sp-transaction-pool", "sp-transaction-storage-proof", - "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-trie", + "sp-version", "static_init 1.0.3", - "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "substrate-prometheus-endpoint", "tempfile", "thiserror", "tokio", @@ -9436,40 +9226,40 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "log", "parity-scale-codec", "parity-util-mem", "parity-util-mem-derive", "parking_lot 0.12.1", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "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#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "jsonrpsee", "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", "serde", "serde_json", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-blockchain", + "sp-runtime", "thiserror", ] [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "futures", "libc", @@ -9477,36 +9267,18 @@ dependencies = [ "rand 0.7.3", "rand_pcg 0.2.1", "regex", - "sc-telemetry 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "serde", - "serde_json", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", -] - -[[package]] -name = "sc-telemetry" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" -dependencies = [ - "chrono", - "futures", - "libp2p", - "log", - "parking_lot 0.12.1", - "pin-project", - "rand 0.7.3", + "sc-telemetry", "serde", "serde_json", - "thiserror", - "wasm-timer", + "sp-core", + "sp-io", + "sp-std", ] [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "chrono", "futures", @@ -9524,7 +9296,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "ansi_term", "atty", @@ -9536,16 +9308,16 @@ dependencies = [ "parking_lot 0.12.1", "regex", "rustc-hash", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-client-api", "sc-rpc-server", "sc-tracing-proc-macro", "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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-rpc 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", + "sp-blockchain", + "sp-core", + "sp-rpc", + "sp-runtime", + "sp-tracing", "thiserror", "tracing", "tracing-log", @@ -9555,7 +9327,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -9566,7 +9338,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "async-trait", "futures", @@ -9576,65 +9348,38 @@ dependencies = [ "parity-scale-codec", "parity-util-mem", "parking_lot 0.12.1", - "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)", + "sc-client-api", + "sc-transaction-pool-api", + "sc-utils", "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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", + "sp-blockchain", + "sp-core", + "sp-runtime", + "sp-tracing", "sp-transaction-pool", - "substrate-prometheus-endpoint 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "thiserror", -] - -[[package]] -name = "sc-transaction-pool-api" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" -dependencies = [ - "async-trait", - "futures", - "log", - "serde", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "substrate-prometheus-endpoint", "thiserror", ] [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "async-trait", "futures", "log", "serde", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-blockchain", + "sp-runtime", "thiserror", ] [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" -dependencies = [ - "futures", - "futures-timer", - "lazy_static", - "log", - "parking_lot 0.12.1", - "prometheus", -] - -[[package]] -name = "sc-utils" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "futures", "futures-timer", @@ -10037,8 +9782,8 @@ dependencies = [ "enumn", "parity-scale-codec", "paste", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime", + "sp-std", ] [[package]] @@ -10108,55 +9853,25 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" -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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-version 5.0.0 (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=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "hash-db", "log", "parity-scale-codec", - "sp-api-proc-macro 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-api-proc-macro", + "sp-core", + "sp-runtime", + "sp-state-machine", + "sp-std", + "sp-trie", + "sp-version", "thiserror", ] [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" -dependencies = [ - "blake2", - "proc-macro-crate", - "proc-macro2", - "quote", - "syn", -] - -[[package]] -name = "sp-api-proc-macro" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "blake2", "proc-macro-crate", @@ -10168,224 +9883,159 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" -dependencies = [ - "parity-scale-codec", - "scale-info", - "serde", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", -] - -[[package]] -name = "sp-application-crypto" -version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" -dependencies = [ - "parity-scale-codec", - "scale-info", - "serde", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", -] - -[[package]] -name = "sp-arithmetic" -version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ - "integer-sqrt", - "num-traits", "parity-scale-codec", "scale-info", "serde", - "sp-debug-derive 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "static_assertions", + "sp-core", + "sp-io", + "sp-std", ] [[package]] name = "sp-arithmetic" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "integer-sqrt", "num-traits", "parity-scale-codec", "scale-info", "serde", - "sp-debug-derive 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "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#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "parity-scale-codec", "scale-info", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (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#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "async-trait", "parity-scale-codec", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (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=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" -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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", -] - -[[package]] -name = "sp-blockchain" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ - "futures", - "log", - "lru 0.7.8", "parity-scale-codec", - "parking_lot 0.12.1", - "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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", - "thiserror", + "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=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "futures", "log", "lru 0.7.8", "parity-scale-codec", "parking_lot 0.12.1", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-database 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "thiserror", -] - -[[package]] -name = "sp-consensus" -version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" -dependencies = [ - "async-trait", - "futures", - "futures-timer", - "log", - "parity-scale-codec", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "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=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "async-trait", "futures", "futures-timer", "log", "parity-scale-codec", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-core", + "sp-inherents", + "sp-runtime", + "sp-state-machine", + "sp-std", + "sp-version", "thiserror", ] [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" 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 6.0.0 (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 6.0.0 (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.12.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (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#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-arithmetic 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-arithmetic", + "sp-runtime", + "sp-std", "sp-timestamp", ] [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "parity-scale-codec", "scale-info", "schnorrkel", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-runtime", + "sp-std", ] [[package]] name = "sp-core" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "array-bytes", "base58", @@ -10414,12 +10064,12 @@ dependencies = [ "secp256k1", "secrecy", "serde", - "sp-core-hashing 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-debug-derive 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-externalities 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-storage 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core-hashing", + "sp-debug-derive", + "sp-externalities", + "sp-runtime-interface", + "sp-std", + "sp-storage", "ss58-registry", "substrate-bip39", "thiserror", @@ -10429,114 +10079,34 @@ dependencies = [ ] [[package]] -name = "sp-core" -version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" -dependencies = [ - "array-bytes", - "base58", - "bitflags", - "blake2", - "byteorder", - "dyn-clonable", - "ed25519-zebra", - "futures", - "hash-db", - "hash256-std-hasher", - "impl-serde", - "lazy_static", - "libsecp256k1", - "log", - "merlin", - "num-traits", - "parity-scale-codec", - "parity-util-mem", - "parking_lot 0.12.1", - "primitive-types", - "rand 0.7.3", - "regex", - "scale-info", - "schnorrkel", - "secp256k1", - "secrecy", - "serde", - "sp-core-hashing 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-debug-derive 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-externalities 0.12.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-runtime-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-storage 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "ss58-registry", - "substrate-bip39", - "thiserror", - "tiny-bip39", - "wasmi", - "zeroize", -] - -[[package]] -name = "sp-core-hashing" -version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" -dependencies = [ - "blake2", - "byteorder", - "digest 0.10.3", - "sha2 0.10.2", - "sha3", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "twox-hash", -] - -[[package]] -name = "sp-core-hashing" -version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +name = "sp-core-hashing" +version = "4.0.0" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "blake2", "byteorder", "digest 0.10.3", "sha2 0.10.2", "sha3", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-std", "twox-hash", ] [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" -dependencies = [ - "proc-macro2", - "quote", - "sp-core-hashing 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "syn", -] - -[[package]] -name = "sp-core-hashing-proc-macro" -version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "proc-macro2", "quote", - "sp-core-hashing 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-core-hashing", "syn", ] [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" -dependencies = [ - "kvdb", - "parking_lot 0.12.1", -] - -[[package]] -name = "sp-database" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -10545,17 +10115,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" -dependencies = [ - "proc-macro2", - "quote", - "syn", -] - -[[package]] -name = "sp-debug-derive" -version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "proc-macro2", "quote", @@ -10565,119 +10125,50 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" -dependencies = [ - "environmental", - "parity-scale-codec", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-storage 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", -] - -[[package]] -name = "sp-externalities" -version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "environmental", "parity-scale-codec", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-storage 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-std", + "sp-storage", ] [[package]] name = "sp-finality-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" 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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (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=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" -dependencies = [ - "finality-grandpa", - "log", - "parity-scale-codec", - "scale-info", - "serde", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", -] - -[[package]] -name = "sp-inherents" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" -dependencies = [ - "async-trait", - "impl-trait-for-tuples", - "parity-scale-codec", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (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=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "async-trait", "impl-trait-for-tuples", "parity-scale-codec", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-core", + "sp-runtime", + "sp-std", "thiserror", ] [[package]] name = "sp-io" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" -dependencies = [ - "bytes", - "futures", - "hash-db", - "libsecp256k1", - "log", - "parity-scale-codec", - "parking_lot 0.12.1", - "secp256k1", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-externalities 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-wasm-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "tracing", - "tracing-core", -] - -[[package]] -name = "sp-io" -version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "bytes", "futures", @@ -10687,15 +10178,15 @@ dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", "secp256k1", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-externalities 0.12.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-runtime-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-wasm-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-core", + "sp-externalities", + "sp-keystore", + "sp-runtime-interface", + "sp-state-machine", + "sp-std", + "sp-tracing", + "sp-trie", + "sp-wasm-interface", "tracing", "tracing-core", ] @@ -10703,18 +10194,18 @@ dependencies = [ [[package]] name = "sp-keyring" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "lazy_static", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-runtime", "strum", ] [[package]] name = "sp-keystore" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "async-trait", "futures", @@ -10723,40 +10214,15 @@ dependencies = [ "parking_lot 0.12.1", "schnorrkel", "serde", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-externalities 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-externalities", "thiserror", ] -[[package]] -name = "sp-keystore" -version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" -dependencies = [ - "async-trait", - "futures", - "merlin", - "parity-scale-codec", - "parking_lot 0.12.1", - "schnorrkel", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-externalities 0.12.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "thiserror", -] - -[[package]] -name = "sp-maybe-compressed-blob" -version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" -dependencies = [ - "thiserror", - "zstd", -] - [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "thiserror", "zstd", @@ -10765,57 +10231,47 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "log", "parity-scale-codec", "scale-info", "serde", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-debug-derive 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", + "sp-core", + "sp-debug-derive", + "sp-runtime", + "sp-std", ] [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-arithmetic 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-arithmetic", + "sp-core", + "sp-runtime", + "sp-std", ] [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", + "sp-core", + "sp-runtime", ] [[package]] name = "sp-panic-handler" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" -dependencies = [ - "backtrace", - "lazy_static", - "regex", -] - -[[package]] -name = "sp-panic-handler" -version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "backtrace", "lazy_static", @@ -10825,50 +10281,17 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "rustc-hash", "serde", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", -] - -[[package]] -name = "sp-rpc" -version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" -dependencies = [ - "rustc-hash", - "serde", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", -] - -[[package]] -name = "sp-runtime" -version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" -dependencies = [ - "either", - "hash256-std-hasher", - "impl-trait-for-tuples", - "log", - "parity-scale-codec", - "parity-util-mem", - "paste", - "rand 0.7.3", - "scale-info", - "serde", - "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-arithmetic 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-weights 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", ] [[package]] name = "sp-runtime" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "either", "hash256-std-hasher", @@ -10880,66 +10303,36 @@ dependencies = [ "rand 0.7.3", "scale-info", "serde", - "sp-application-crypto 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-arithmetic 5.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-weights 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", -] - -[[package]] -name = "sp-runtime-interface" -version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" -dependencies = [ - "bytes", - "impl-trait-for-tuples", - "parity-scale-codec", - "primitive-types", - "sp-externalities 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime-interface-proc-macro 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-storage 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-wasm-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "static_assertions", + "sp-application-crypto", + "sp-arithmetic", + "sp-core", + "sp-io", + "sp-std", + "sp-weights", ] [[package]] name = "sp-runtime-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "bytes", "impl-trait-for-tuples", "parity-scale-codec", "primitive-types", - "sp-externalities 0.12.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-runtime-interface-proc-macro 5.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-storage 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-wasm-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "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 = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" -dependencies = [ - "Inflector", - "proc-macro-crate", - "proc-macro2", - "quote", - "syn", -] - -[[package]] -name = "sp-runtime-interface-proc-macro" -version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "Inflector", "proc-macro-crate", @@ -10951,82 +10344,46 @@ dependencies = [ [[package]] name = "sp-sandbox" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" -dependencies = [ - "log", - "parity-scale-codec", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-wasm-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "wasmi", -] - -[[package]] -name = "sp-sandbox" -version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "log", "parity-scale-codec", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-wasm-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-core", + "sp-io", + "sp-std", + "sp-wasm-interface", "wasmi", ] [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "parity-scale-codec", "scale-info", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", + "sp-core", + "sp-runtime", "sp-staking", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std", ] [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "parity-scale-codec", "scale-info", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", -] - -[[package]] -name = "sp-state-machine" -version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" -dependencies = [ - "hash-db", - "log", - "num-traits", - "parity-scale-codec", - "parking_lot 0.12.1", - "rand 0.7.3", - "smallvec", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-externalities 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-panic-handler 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "thiserror", - "tracing", - "trie-root", + "sp-runtime", + "sp-std", ] [[package]] name = "sp-state-machine" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "hash-db", "log", @@ -11035,11 +10392,11 @@ dependencies = [ "parking_lot 0.12.1", "rand 0.7.3", "smallvec", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-externalities 0.12.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-panic-handler 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-core", + "sp-externalities", + "sp-panic-handler", + "sp-std", + "sp-trie", "thiserror", "tracing", "trie-root", @@ -11048,100 +10405,57 @@ dependencies = [ [[package]] name = "sp-std" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" - -[[package]] -name = "sp-std" -version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" - -[[package]] -name = "sp-storage" -version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" -dependencies = [ - "impl-serde", - "parity-scale-codec", - "ref-cast", - "serde", - "sp-debug-derive 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", -] +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" [[package]] name = "sp-storage" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "impl-serde", "parity-scale-codec", "ref-cast", "serde", - "sp-debug-derive 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", -] - -[[package]] -name = "sp-tasks" -version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" -dependencies = [ - "log", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-externalities 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (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=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "log", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-externalities 0.12.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-runtime-interface 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "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#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "async-trait", "futures-timer", "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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", + "sp-inherents", + "sp-runtime", + "sp-std", "thiserror", ] [[package]] name = "sp-tracing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "parity-scale-codec", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "tracing", - "tracing-core", - "tracing-subscriber 0.2.25", -] - -[[package]] -name = "sp-tracing" -version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" -dependencies = [ - "parity-scale-codec", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-std", "tracing", "tracing-core", "tracing-subscriber 0.2.25", @@ -11150,55 +10464,32 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (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=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "async-trait", "log", "parity-scale-codec", "scale-info", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", -] - -[[package]] -name = "sp-trie" -version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" -dependencies = [ - "ahash", - "hash-db", - "hashbrown", - "lazy_static", - "lru 0.7.8", - "memory-db", - "nohash-hasher", - "parity-scale-codec", - "parking_lot 0.12.1", - "scale-info", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "thiserror", - "tracing", - "trie-db", - "trie-root", + "sp-core", + "sp-inherents", + "sp-runtime", + "sp-std", + "sp-trie", ] [[package]] name = "sp-trie" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "ahash", "hash-db", @@ -11210,8 +10501,8 @@ dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", "scale-info", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-core", + "sp-std", "thiserror", "tracing", "trie-db", @@ -11221,52 +10512,24 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" -dependencies = [ - "impl-serde", - "parity-scale-codec", - "parity-wasm 0.45.0", - "scale-info", - "serde", - "sp-core-hashing-proc-macro 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (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 = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "impl-serde", "parity-scale-codec", "parity-wasm 0.45.0", "scale-info", "serde", - "sp-core-hashing-proc-macro 5.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-version-proc-macro 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-core-hashing-proc-macro", + "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#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" -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=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -11277,58 +10540,30 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "impl-trait-for-tuples", "log", "parity-scale-codec", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std", "wasmi", "wasmtime", ] -[[package]] -name = "sp-wasm-interface" -version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" -dependencies = [ - "impl-trait-for-tuples", - "log", - "parity-scale-codec", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "wasmi", -] - [[package]] name = "sp-weights" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", "scale-info", "serde", "smallvec", - "sp-arithmetic 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-debug-derive 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", -] - -[[package]] -name = "sp-weights" -version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" -dependencies = [ - "impl-trait-for-tuples", - "parity-scale-codec", - "scale-info", - "serde", - "smallvec", - "sp-arithmetic 5.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-debug-derive 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-arithmetic", + "sp-core", + "sp-debug-derive", + "sp-std", ] [[package]] @@ -11392,16 +10627,16 @@ dependencies = [ "polkadot-runtime", "polkadot-runtime-common", "remote-externalities", - "sc-transaction-pool-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-transaction-pool-api", "serde", "serde_json", "signal-hook", "signal-hook-tokio", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-io", "sp-npos-elections", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime", + "sp-version", "sub-tokens", "thiserror", "tokio", @@ -11533,7 +10768,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "platforms", ] @@ -11541,41 +10776,28 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "frame-system-rpc-runtime-api", "futures", "jsonrpsee", "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)", + "sc-client-api", + "sc-rpc-api", + "sc-transaction-pool-api", "serde_json", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", "sp-block-builder", - "sp-blockchain 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "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#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" -dependencies = [ - "futures-util", - "hyper", - "log", - "prometheus", - "thiserror", - "tokio", -] - -[[package]] -name = "substrate-prometheus-endpoint" -version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "futures-util", "hyper", @@ -11588,67 +10810,67 @@ dependencies = [ [[package]] name = "substrate-rpc-client" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils#4e2fc0d1fbfd2adff7fd9965ca43433ae16498e6" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "async-trait", "jsonrpsee", "log", - "sc-rpc-api 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sc-rpc-api", "serde", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=na-jsonrpc-client-utils)", + "sp-runtime", ] [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "jsonrpsee", "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-client-api", + "sc-rpc-api", "scale-info", "serde", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-io", + "sp-runtime", + "sp-state-machine", + "sp-std", + "sp-trie", "trie-db", ] [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "array-bytes", "async-trait", "futures", "parity-scale-codec", - "sc-client-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-client-api", "sc-client-db", - "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-consensus", + "sc-executor", "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 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-blockchain", + "sp-consensus", + "sp-core", "sp-keyring", - "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-keystore", + "sp-runtime", + "sp-state-machine", ] [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "futures", "substrate-test-utils-derive", @@ -11658,7 +10880,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -11669,13 +10891,13 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "ansi_term", "build-helper", "cargo_metadata", "filetime", - "sp-maybe-compressed-blob 4.1.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-maybe-compressed-blob", "strum", "tempfile", "toml", @@ -11813,8 +11035,8 @@ dependencies = [ "dlmalloc", "parity-scale-codec", "polkadot-parachain", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io", + "sp-std", "substrate-wasm-builder", "tiny-keccak", ] @@ -11838,7 +11060,7 @@ dependencies = [ "polkadot-test-service", "sc-cli", "sc-service", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", "sp-keyring", "substrate-test-utils", "test-parachain-adder", @@ -11860,8 +11082,8 @@ dependencies = [ "log", "parity-scale-codec", "polkadot-parachain", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io", + "sp-std", "substrate-wasm-builder", "tiny-keccak", ] @@ -11885,7 +11107,7 @@ dependencies = [ "polkadot-test-service", "sc-cli", "sc-service", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", "sp-keyring", "substrate-test-utils", "test-parachain-undying", @@ -11897,7 +11119,7 @@ name = "test-parachains" version = "0.9.29" dependencies = [ "parity-scale-codec", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", "test-parachain-adder", "test-parachain-halt", "tiny-keccak", @@ -11911,7 +11133,7 @@ dependencies = [ "polkadot-primitives", "polkadot-runtime-common", "smallvec", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime", ] [[package]] @@ -12376,27 +11598,27 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#e34b840b8818856a5bb8dbfe91d5b8a918e44fb8" +source = "git+https://github.com/paritytech/substrate?branch=master#49734dd1d72a00b9d3b87ba397661a63e0e17af3" dependencies = [ "clap", "frame-try-runtime", - "jsonrpsee", "log", "parity-scale-codec", "remote-externalities", - "sc-chain-spec 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-chain-spec", "sc-cli", - "sc-executor 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sc-executor", "sc-service", "serde", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-externalities 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-keystore 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-weights 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-externalities", + "sp-io", + "sp-keystore", + "sp-runtime", + "sp-state-machine", + "sp-version", + "sp-weights", + "substrate-rpc-client", "zstd", ] @@ -13084,25 +12306,25 @@ dependencies = [ "serde_derive", "serde_json", "smallvec", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-api", "sp-authority-discovery", "sp-block-builder", "sp-consensus-babe", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-inherents", + "sp-io", "sp-keyring", "sp-mmr-primitives", "sp-npos-elections", "sp-offchain", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime", "sp-session", "sp-staking", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-std", + "sp-tracing", "sp-transaction-pool", - "sp-trie 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-trie", + "sp-version", "substrate-wasm-builder", "tiny-keccak", "tokio", @@ -13120,7 +12342,7 @@ dependencies = [ "polkadot-primitives", "polkadot-runtime-common", "smallvec", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime", ] [[package]] @@ -13347,7 +12569,7 @@ dependencies = [ "log", "parity-scale-codec", "scale-info", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime", "xcm-procedural", ] @@ -13365,11 +12587,11 @@ dependencies = [ "polkadot-parachain", "polkadot-runtime-parachains", "scale-info", - "sp-arithmetic 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-arithmetic", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", "xcm", "xcm-executor", ] @@ -13383,11 +12605,11 @@ dependencies = [ "impl-trait-for-tuples", "log", "parity-scale-codec", - "sp-arithmetic 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-arithmetic", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", "xcm", ] @@ -13402,11 +12624,11 @@ dependencies = [ "polkadot-test-client", "polkadot-test-runtime", "polkadot-test-service", - "sp-consensus 0.10.0-dev (git+https://github.com/paritytech/substrate?branch=master)", + "sp-consensus", "sp-keyring", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-state-machine 0.12.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-tracing 5.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-runtime", + "sp-state-machine", + "sp-tracing", "xcm", "xcm-executor", ] @@ -13431,8 +12653,8 @@ dependencies = [ "polkadot-core-primitives", "polkadot-parachain", "polkadot-runtime-parachains", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-io", + "sp-std", "xcm", "xcm-executor", ] @@ -13450,10 +12672,10 @@ dependencies = [ "polkadot-parachain", "polkadot-runtime-parachains", "scale-info", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", "xcm", "xcm-builder", "xcm-executor", @@ -13474,10 +12696,10 @@ dependencies = [ "polkadot-parachain", "polkadot-runtime-parachains", "scale-info", - "sp-core 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-io 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-runtime 6.0.0 (git+https://github.com/paritytech/substrate?branch=master)", - "sp-std 4.0.0 (git+https://github.com/paritytech/substrate?branch=master)", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", "xcm", "xcm-builder", "xcm-executor",